Changeset 3173
- Timestamp:
- Jun 15, 2009, 9:01:15 AM (15 years ago)
- Location:
- code/branches/pch/src/orxonox/gamestates
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/orxonox/gamestates/GSClient.cc
r3149 r3173 30 30 31 31 #include "util/Exception.h" 32 #include "core/input/InputManager.h"33 32 #include "core/Clock.h" 34 33 #include "core/CommandLine.h" -
code/branches/pch/src/orxonox/gamestates/GSClient.h
r2896 r3173 31 31 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include "core/GameState.h" 34 35 #include "network/NetworkPrereqs.h" -
code/branches/pch/src/orxonox/gamestates/GSDedicated.cc
r3157 r3173 29 29 #include "GSDedicated.h" 30 30 31 #include "util/Debug.h" 32 #include "util/Sleep.h" 31 33 #include "core/Clock.h" 32 34 #include "core/CommandLine.h" 33 35 #include "core/Game.h" 34 36 #include "core/GameMode.h" 35 #include "core/ObjectList.h"36 37 #include "network/Server.h" 37 #include "objects/Tickable.h"38 #include "util/Sleep.h"39 38 40 39 namespace orxonox -
code/branches/pch/src/orxonox/gamestates/GSDedicated.h
r2896 r3173 31 31 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include "core/GameState.h" 34 35 #include "network/NetworkPrereqs.h" -
code/branches/pch/src/orxonox/gamestates/GSGraphics.cc
r3110 r3173 28 28 29 29 /** 30 @file 31 @brief Implementation of Graphics GameState class. 30 @file 31 @brief 32 Implementation of Graphics GameState class. 32 33 */ 33 34 -
code/branches/pch/src/orxonox/gamestates/GSGraphics.h
r3084 r3173 27 27 */ 28 28 29 /** 30 @file 31 @brief Declaration of the Graphics GameState class. 32 */ 29 /** 30 @file 31 @brief 32 Declaration of the Graphics GameState class. 33 */ 33 34 34 35 #ifndef _GSGraphics_H__ … … 36 37 37 38 #include "OrxonoxPrereqs.h" 39 38 40 #include "core/GameState.h" 39 41 #include "tools/WindowEventListener.h" … … 42 44 { 43 45 /** 44 @class GSGraphics45 46 @brief 46 Game state used when displaying graphics of any kind 47 Game state used when displaying graphics of any kind. Another blubb resides here. 47 48 48 49 This game state is only left out if we start a dedicated server where no graphics are present. -
code/branches/pch/src/orxonox/gamestates/GSIOConsole.cc
r3110 r3173 30 30 31 31 #include <iostream> 32 #include <OgreFrameListener.h>33 #include <OgreRoot.h>34 #include <OgreTimer.h>35 32 36 33 #include "core/ConsoleCommand.h" -
code/branches/pch/src/orxonox/gamestates/GSLevel.cc
r3154 r3173 30 30 #include "GSLevel.h" 31 31 32 #include "util/Debug.h" 32 33 #include "core/input/InputManager.h" 33 34 #include "core/input/SimpleInputState.h" 34 35 #include "core/input/KeyBinder.h" 35 #include "core/Loader.h" 36 #include "core/XMLFile.h" 37 #include "core/CommandExecutor.h" 36 #include "core/Clock.h" 37 #include "core/CommandLine.h" 38 38 #include "core/ConsoleCommand.h" 39 #include "core/CommandLine.h"40 39 #include "core/ConfigValueIncludes.h" 41 #include "core/Core.h"42 #include "core/CoreIncludes.h"43 40 #include "core/Game.h" 44 41 #include "core/GameMode.h" 42 #include "core/Loader.h" 43 #include "core/ObjectList.h" 44 #include "core/XMLFile.h" 45 46 #include "objects/Radar.h" 45 47 #include "objects/Tickable.h" 46 #include "objects/Radar.h" 48 #include "objects/quest/QuestManager.h" 49 #include "overlays/notifications/NotificationManager.h" 50 #include "gui/GUIManager.h" 47 51 #include "CameraManager.h" 48 52 #include "GraphicsManager.h" 49 53 #include "LevelManager.h" 50 54 #include "PlayerManager.h" 51 #include "gui/GUIManager.h"52 #include "objects/quest/QuestManager.h"53 #include "overlays/notifications/NotificationManager.h"54 55 55 56 namespace orxonox -
code/branches/pch/src/orxonox/gamestates/GSLevel.h
r3008 r3173 31 31 32 32 #include "OrxonoxPrereqs.h" 33 34 #include <string> 33 35 #include "core/OrxonoxClass.h" 34 36 #include "core/GameState.h" … … 48 50 49 51 static void showIngameGUI(bool show); 50 static void setLevel(std::string levelName);51 52 52 53 static XMLFile* startFile_s; … … 69 70 LevelManager* levelManager_; //!< global level manager 70 71 PlayerManager* playerManager_; //!< player manager for this level 71 QuestManager* 72 QuestManager* questManager_; 72 73 NotificationManager* notificationManager_; 73 74 -
code/branches/pch/src/orxonox/gamestates/GSMainMenu.cc
r3110 r3173 29 29 #include "GSMainMenu.h" 30 30 31 //#include <OgreViewport.h>32 31 #include <OgreSceneManager.h> 32 33 #include "core/input/InputManager.h" 34 #include "core/input/SimpleInputState.h" 35 #include "core/Game.h" 33 36 #include "core/Clock.h" 34 37 #include "core/ConsoleCommand.h" 35 #include "core/Game.h" 36 #include "core/input/InputManager.h" 37 #include "core/input/SimpleInputState.h" 38 #include "objects/Scene.h" 38 39 #include "gui/GUIManager.h" 39 #include " objects/Scene.h"40 #include "sound/SoundMainMenu.h" 40 41 #include "GraphicsManager.h" 41 #include "sound/SoundMainMenu.h"42 42 43 43 namespace orxonox -
code/branches/pch/src/orxonox/gamestates/GSMainMenu.h
r3094 r3173 31 31 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include <OgrePrerequisites.h> 34 35 #include "core/GameState.h" -
code/branches/pch/src/orxonox/gamestates/GSRoot.cc
r3149 r3173 29 29 #include "GSRoot.h" 30 30 31 #include "util/Debug.h"32 31 #include "core/Clock.h" 32 #include "core/CommandLine.h" 33 #include "core/ConsoleCommand.h" 33 34 #include "core/Game.h" 34 35 #include "core/GameMode.h" 35 #include "core/CommandLine.h"36 #include "core/ConsoleCommand.h"37 36 #include "tools/TimeFactorListener.h" 38 37 #include "tools/Timer.h" -
code/branches/pch/src/orxonox/gamestates/GSRoot.h
r3084 r3173 32 32 #include "OrxonoxPrereqs.h" 33 33 #include "core/GameState.h" 34 #include "core/OrxonoxClass.h"35 34 36 35 namespace orxonox -
code/branches/pch/src/orxonox/gamestates/GSServer.h
r2896 r3173 31 31 32 32 #include "OrxonoxPrereqs.h" 33 33 34 #include "core/GameState.h" 34 35 #include "network/NetworkPrereqs.h" -
code/branches/pch/src/orxonox/gamestates/GSStandalone.cc
r3110 r3173 29 29 #include "GSStandalone.h" 30 30 31 #include <OgreViewport.h>32 #include <OgreCamera.h>33 31 #include "core/Game.h" 34 32 #include "core/GameMode.h" 35 #include "core/ConsoleCommand.h"36 #include "gui/GUIManager.h"37 #include "GraphicsManager.h"38 33 39 34 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.