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

Revision 1165, 3.3 KB checked in by szydlowski, 18 years ago (diff)

Started implementing the hierarchy interface for the kdtree scene manager

RevLine 
[59]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
[925]26//#include <OgreVisibilityTerrainSceneManager.h>
27#include <OgreOcclusionCullingSceneManager.h>
[1163]28#include <OgreKdTreeSceneManager.h>
[115]29
[897]30//#include <OgreHeightmapTerrainPageSource.h>
[100]31#include <OgreRoot.h>
[115]32#include <OgreLogManager.h>
[897]33
[74]34#include "VisibilityManager.h"
35#include "VisibilityEnvironment.h"
[897]36               
[74]37GtpVisibility::VisibilityEnvironment *visEnv;
38GtpVisibility::VisibilityManager *visManager;
[59]39
40namespace Ogre {
41
[925]42//VisibilityTerrainSceneManagerFactory *visibilityTerrainPlugin;
43OcclusionCullingSceneManagerFactory *occlusionCullingPlugin;
[1163]44KdTreeSceneManagerFactory *kdTreeFactory;
[59]45
46//-----------------------------------------------------------------------
[133]47extern "C" void __declspec(dllexport) dllStartPlugin(void)
[59]48{
[938]49        // load visibility environment
[120]50        visEnv = new GtpVisibility::VisibilityEnvironment();
[74]51        visManager = new GtpVisibility::VisibilityManager(visEnv);
[115]52
[59]53        // Create new scene manager
[925]54        //visibilityTerrainPlugin = new VisibilityTerrainSceneManagerFactory(visManager);
55        occlusionCullingPlugin = new OcclusionCullingSceneManagerFactory(visManager);
[1165]56        kdTreeFactory = new KdTreeSceneManagerFactory(visManager);
[897]57        // Construct listener manager singleton
58        new TerrainPageSourceListenerManager();
[115]59
60        // Register
[925]61        //Root::getSingleton().addSceneManagerFactory(visibilityTerrainPlugin);
62        Root::getSingleton().addSceneManagerFactory(occlusionCullingPlugin);
[1163]63        Root::getSingleton().addSceneManagerFactory(kdTreeFactory);
[59]64}
[115]65//-----------------------------------------------------------------------
[133]66extern "C" void __declspec(dllexport) dllShutdownPlugin()
[59]67{
[925]68        //Root::getSingleton().removeSceneManagerFactory(visibilityTerrainPlugin);
69        Root::getSingleton().removeSceneManagerFactory(occlusionCullingPlugin);
[1163]70        Root::getSingleton().removeSceneManagerFactory(kdTreeFactory);
[897]71        // destroy listener manager
72        delete TerrainPageSourceListenerManager::getSingletonPtr();
[133]73}
74//-----------------------------------------------------------------------
75extern "C" void __declspec(dllexport) dllStopPlugin()
76{
[657]77        //delete heightmapTerrainPageSource;
[1151]78        // BUG: crashes on delete!!!! FIX this
79
[1153]80        //delete visibilityTerrainPlugin;
[925]81        delete occlusionCullingPlugin;
[1163]82        delete kdTreeFactory;
[925]83
[59]84        delete visManager;
[120]85        delete visEnv;
[59]86}
87
[133]88
[925]89
[59]90} //namespace Ogre
Note: See TracBrowser for help on using the repository browser.