Changeset 3144 for code/branches/pch/src/orxonox/overlays/map
- Timestamp:
- Jun 10, 2009, 10:58:53 PM (16 years ago)
- Location:
- code/branches/pch/src/orxonox/overlays/map
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/overlays/map/Map.cc
r3110 r3144 24 24 * 25 25 */ 26 26 27 #include "Map.h" 27 28 28 29 #include <string> 29 #include "util/String.h" 30 31 #include <OgreBorderPanelOverlayElement.h> 32 #include <OgreCamera.h> 33 #include <OgreHardwarePixelBuffer.h> 34 #include <OgreMaterialManager.h> 35 #include <OgreMovablePlane.h> 36 #include <OgreOverlay.h> 37 #include <OgreOverlayContainer.h> 38 #include <OgreOverlayManager.h> 39 #include <OgrePass.h> 40 #include <OgreRenderTexture.h> 41 #include <OgreResourceGroupManager.h> 42 #include <OgreRoot.h> 30 43 #include <OgreSceneManager.h> 31 44 #include <OgreSceneNode.h> 32 #include <OgreEntity.h> 33 #include <OgreNode.h> 34 35 36 #include <OgreRenderWindow.h> 37 #include <OgreRenderTexture.h> 45 #include <OgreTechnique.h> 38 46 #include <OgreTexture.h> 47 #include <OgreTextureManager.h> 39 48 #include <OgreViewport.h> 40 49 41 #include <OgreMaterialManager.h> 42 #include <OgreRoot.h> 43 #include <OgreHardwarePixelBuffer.h> 44 #include "objects/worldentities/ControllableEntity.h" 45 #include "objects/worldentities/CameraPosition.h" 46 47 #include <OgreOverlay.h> 48 #include <OgreMovablePlane.h> 49 #include <OgreOverlayElement.h> 50 #include <OgreOverlayManager.h> 51 #include <OgreOverlayContainer.h> 50 #include "core/ConsoleCommand.h" 52 51 #include "core/CoreIncludes.h" 53 #include "core/ ConfigValueIncludes.h"54 #include "core/ ConsoleCommand.h"52 #include "core/Iterator.h" 53 #include "core/XMLPort.h" 55 54 #include "objects/Scene.h" 56 55 #include "objects/RadarViewable.h" 57 56 #include "objects/controllers/HumanController.h" 57 #include "objects/worldentities/CameraPosition.h" 58 #include "objects/worldentities/ControllableEntity.h" 58 59 59 60 namespace orxonox -
code/branches/pch/src/orxonox/overlays/map/Map.h
r3101 r3144 25 25 */ 26 26 27 #ifndef _MAP_H__ 28 #define _MAP_H__ 27 #ifndef _Map_H__ 28 #define _Map_H__ 29 30 #include "OrxonoxPrereqs.h" 29 31 30 32 #include <string> 31 #include "OrxonoxPrereqs.h" 32 #include <OgrePrerequisites.h> 33 #include <OgreSceneManager.h> 34 #include <OgreSceneNode.h> 35 #include <OgreEntity.h> 36 #include <OgreOverlay.h> 37 #include <OgreOverlayElement.h> 38 #include <OgreOverlayManager.h> 39 #include <OgreOverlayContainer.h> 40 #include <OgreMovablePlane.h> 33 #include <OgreMaterial.h> 41 34 42 #include <OgreBorderPanelOverlayElement.h> 43 #include <OgreTextAreaOverlayElement.h> 44 35 #include "util/UtilPrereqs.h" 36 #include "objects/Tickable.h" 45 37 #include "overlays/OrxonoxOverlay.h" 46 #include "objects/Tickable.h"47 48 49 38 50 39 namespace orxonox … … 55 44 public: // functions 56 45 Map(BaseObject* creator); 57 ~Map();46 virtual ~Map(); 58 47 59 48 virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode); … … 126 115 } 127 116 128 #endif /* _M AP_H__ */117 #endif /* _Map_H__ */
Note: See TracChangeset
for help on using the changeset viewer.