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

Revision 2280, 3.7 KB checked in by mattausch, 18 years ago (diff)

removed dependency on ogre in gtpvisibility

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#include <fstream>
32
33#include "OgreBvHierarchySceneManager.h"
34#include "VisibilityManager.h"
35#include "VisibilityEnvironment.h"
36#include "CullingManager.h"
37
38
39GtpVisibility::VisibilityEnvironment *visEnv;
40GtpVisibility::VisibilityManager *visManager;
41
42namespace Ogre {
43
44
45OcclusionCullingSceneManagerFactory *occlusionCullingFactory;
46KdTreeSceneManagerFactory *kdTreeFactory;
47KdTerrainSceneManagerFactory *kdTerrainFactory;
48BvHierarchySceneManagerFactory *bvHierarchyFactory;
49
50//-----------------------------------------------------------------------
51extern "C" void __declspec(dllexport) dllStartPlugin(void)
52{
53        // load visibility environment
54        visEnv = new GtpVisibility::VisibilityEnvironment();
55        visManager = new GtpVisibility::VisibilityManager(visEnv);
56
57        // Create new scene manager
58        occlusionCullingFactory = new OcclusionCullingSceneManagerFactory(visManager);
59        kdTreeFactory = new KdTreeSceneManagerFactory(visManager);
60        kdTerrainFactory = new KdTerrainSceneManagerFactory(visManager);
61        bvHierarchyFactory = new BvHierarchySceneManagerFactory(visManager);
62
63        // Construct listener manager singleton
64        new TerrainPageSourceListenerManager();
65        new KdTerrainPageSourceListenerManager();
66
67        // Register
68        Root::getSingleton().addSceneManagerFactory(occlusionCullingFactory);
69        Root::getSingleton().addSceneManagerFactory(kdTreeFactory);
70        Root::getSingleton().addSceneManagerFactory(kdTerrainFactory);
71        Root::getSingleton().addSceneManagerFactory(bvHierarchyFactory);
72}
73//-----------------------------------------------------------------------
74extern "C" void __declspec(dllexport) dllShutdownPlugin()
75{
76        Root::getSingleton().removeSceneManagerFactory(occlusionCullingFactory);
77        Root::getSingleton().removeSceneManagerFactory(kdTreeFactory);
78        Root::getSingleton().removeSceneManagerFactory(kdTerrainFactory);
79        Root::getSingleton().removeSceneManagerFactory(bvHierarchyFactory);
80
81        // destroy listener manager
82        delete TerrainPageSourceListenerManager::getSingletonPtr();
83        delete KdTerrainPageSourceListenerManager::getSingletonPtr();
84}
85//-----------------------------------------------------------------------
86extern "C" void __declspec(dllexport) dllStopPlugin()
87{
88        //delete heightmapTerrainPageSource;
89        // BUG: crashes on delete!!!! FIX this
90        delete occlusionCullingFactory;
91        delete kdTreeFactory;
92        delete kdTerrainFactory;
93        delete bvHierarchyFactory;
94
95        delete visManager;
96        delete visEnv;
97}
98
99
100
101} //namespace Ogre
Note: See TracBrowser for help on using the repository browser.