source: GTP/trunk/Lib/Vis/OnlineCullingCHC/OGRE/src/OgreVisibilitySceneManagerDll.cpp @ 1320

Revision 1320, 3.7 KB checked in by mattausch, 18 years ago (diff)
Line 
1/*
2-----------------------------------------------------------------------------
3This source file is part of OGRE
4    (Object-oriented Graphics Rendering Engine)
5For the latest info, see http://www.ogre3d.org/
6
7Copyright © 2000-2002 The OGRE Team
8Also see acknowledgements in Readme.html
9
10This program is free software; you can redistribute it and/or modify it under
11the terms of the GNU Lesser General Public License as published by the Free Software
12Foundation; either version 2 of the License, or (at your option) any later
13version.
14
15This program is distributed in the hope that it will be useful, but WITHOUT
16ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
18
19You should have received a copy of the GNU Lesser General Public License along with
20this program; if not, write to the Free Software Foundation, Inc., 59 Temple
21Place - Suite 330, Boston, MA 02111-1307, USA, or go to
22http://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               
36GtpVisibility::VisibilityEnvironment *visEnv;
37GtpVisibility::VisibilityManager *visManager;
38
39namespace Ogre {
40
41
42OcclusionCullingSceneManagerFactory *occlusionCullingFactory;
43KdTreeSceneManagerFactory *kdTreeFactory;
44KdTerrainSceneManagerFactory *kdTerrainFactory;
45BvHierarchySceneManagerFactory *bvHierarchyFactory;
46
47//-----------------------------------------------------------------------
48extern "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//-----------------------------------------------------------------------
71extern "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//-----------------------------------------------------------------------
83extern "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
Note: See TracBrowser for help on using the repository browser.