1 | /*
|
---|
2 | -----------------------------------------------------------------------------
|
---|
3 | This source file is part of OGRE
|
---|
4 | (Object-oriented Graphics Rendering Engine)
|
---|
5 | For the latest info, see http://www.ogre3d.org/
|
---|
6 |
|
---|
7 | Copyright © 2000-2002 The OGRE Team
|
---|
8 | Also see acknowledgements in Readme.html
|
---|
9 |
|
---|
10 | This program is free software; you can redistribute it and/or modify it under
|
---|
11 | the terms of the GNU Lesser General Public License as published by the Free Software
|
---|
12 | Foundation; either version 2 of the License, or (at your option) any later
|
---|
13 | version.
|
---|
14 |
|
---|
15 | This program is distributed in the hope that it will be useful, but WITHOUT
|
---|
16 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
---|
17 | FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
---|
18 |
|
---|
19 | You should have received a copy of the GNU Lesser General Public License along with
|
---|
20 | this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
---|
21 | Place - Suite 330, Boston, MA 02111-1307, USA, or go to
|
---|
22 | http://www.gnu.org/copyleft/lesser.txt.
|
---|
23 | -----------------------------------------------------------------------------
|
---|
24 | */
|
---|
25 |
|
---|
26 | #include "OgreOcclusionCullingSceneManager.h"
|
---|
27 | #include "OgreKdTreeSceneManager.h"
|
---|
28 | #include "OgreKdTerrainSceneManager.h"
|
---|
29 | #include <OgreRoot.h>
|
---|
30 | #include <OgreLogManager.h>
|
---|
31 |
|
---|
32 | #include "OgreBvHierarchySceneManager.h"
|
---|
33 | #include "VisibilityManager.h"
|
---|
34 | #include "VisibilityEnvironment.h"
|
---|
35 |
|
---|
36 | GtpVisibility::VisibilityEnvironment *visEnv;
|
---|
37 | GtpVisibility::VisibilityManager *visManager;
|
---|
38 |
|
---|
39 | namespace Ogre {
|
---|
40 |
|
---|
41 |
|
---|
42 | OcclusionCullingSceneManagerFactory *occlusionCullingFactory;
|
---|
43 | KdTreeSceneManagerFactory *kdTreeFactory;
|
---|
44 | KdTerrainSceneManagerFactory *kdTerrainFactory;
|
---|
45 | BvHierarchySceneManagerFactory *bvHierarchyFactory;
|
---|
46 |
|
---|
47 | //-----------------------------------------------------------------------
|
---|
48 | extern "C" void __declspec(dllexport) dllStartPlugin(void)
|
---|
49 | {
|
---|
50 | // load visibility environment
|
---|
51 | visEnv = new GtpVisibility::VisibilityEnvironment();
|
---|
52 | visManager = new GtpVisibility::VisibilityManager(visEnv);
|
---|
53 |
|
---|
54 | // Create new scene manager
|
---|
55 | occlusionCullingFactory = new OcclusionCullingSceneManagerFactory(visManager);
|
---|
56 | kdTreeFactory = new KdTreeSceneManagerFactory(visManager);
|
---|
57 | kdTerrainFactory = new KdTerrainSceneManagerFactory(visManager);
|
---|
58 | bvHierarchyFactory = new BvHierarchySceneManagerFactory(visManager);
|
---|
59 |
|
---|
60 | // Construct listener manager singleton
|
---|
61 | new TerrainPageSourceListenerManager();
|
---|
62 | new KdTerrainPageSourceListenerManager();
|
---|
63 |
|
---|
64 | // Register
|
---|
65 | Root::getSingleton().addSceneManagerFactory(occlusionCullingFactory);
|
---|
66 | Root::getSingleton().addSceneManagerFactory(kdTreeFactory);
|
---|
67 | Root::getSingleton().addSceneManagerFactory(kdTerrainFactory);
|
---|
68 | Root::getSingleton().addSceneManagerFactory(bvHierarchyFactory);
|
---|
69 | }
|
---|
70 | //-----------------------------------------------------------------------
|
---|
71 | extern "C" void __declspec(dllexport) dllShutdownPlugin()
|
---|
72 | {
|
---|
73 | Root::getSingleton().removeSceneManagerFactory(occlusionCullingFactory);
|
---|
74 | Root::getSingleton().removeSceneManagerFactory(kdTreeFactory);
|
---|
75 | Root::getSingleton().removeSceneManagerFactory(kdTerrainFactory);
|
---|
76 | Root::getSingleton().removeSceneManagerFactory(bvHierarchyFactory);
|
---|
77 |
|
---|
78 | // destroy listener manager
|
---|
79 | delete TerrainPageSourceListenerManager::getSingletonPtr();
|
---|
80 | delete KdTerrainPageSourceListenerManager::getSingletonPtr();
|
---|
81 | }
|
---|
82 | //-----------------------------------------------------------------------
|
---|
83 | extern "C" void __declspec(dllexport) dllStopPlugin()
|
---|
84 | {
|
---|
85 | //delete heightmapTerrainPageSource;
|
---|
86 | // BUG: crashes on delete!!!! FIX this
|
---|
87 | delete occlusionCullingFactory;
|
---|
88 | delete kdTreeFactory;
|
---|
89 | delete kdTerrainFactory;
|
---|
90 | delete bvHierarchyFactory;
|
---|
91 |
|
---|
92 | delete visManager;
|
---|
93 | delete visEnv;
|
---|
94 | }
|
---|
95 |
|
---|
96 |
|
---|
97 |
|
---|
98 | } //namespace Ogre
|
---|