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

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