Changeset 1784 for code/trunk/src/orxonox
- Timestamp:
- Sep 15, 2008, 10:54:25 AM (16 years ago)
- Location:
- code/trunk/src/orxonox
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/Settings.h
r1755 r1784 43 43 #include "util/Debug.h" 44 44 #include "util/MultiType.h" 45 #include "util/Convert.h"46 45 47 46 namespace orxonox -
code/trunk/src/orxonox/gui/OgreCEGUIRenderer.h
r1755 r1784 27 27 This file contains code that is specific to Ogre (http://www.ogre3d.org) 28 28 *************************************************************************/ 29 #ifndef _OgreCEGUIRenderer_ h_30 #define _OgreCEGUIRenderer_ h_29 #ifndef _OgreCEGUIRenderer_H__ 30 #define _OgreCEGUIRenderer_H__ 31 31 32 32 #include <CEGUIBase.h> … … 462 462 463 463 464 #endif // end of guard _OgreCEGUIRenderer_ h_464 #endif // end of guard _OgreCEGUIRenderer_H__ -
code/trunk/src/orxonox/gui/OgreCEGUIResourceProvider.h
r1755 r1784 24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 *************************************************************************/ 26 #ifndef _OgreCEGUIResourceProvider_ h_27 #define _OgreCEGUIResourceProvider_ h_26 #ifndef _OgreCEGUIResourceProvider_H__ 27 #define _OgreCEGUIResourceProvider_H__ 28 28 29 29 #include <CEGUIResourceProvider.h> … … 50 50 } // End of CEGUI namespace section 51 51 52 #endif // end of guard _OgreCEGUIResourceProvider_ h_52 #endif // end of guard _OgreCEGUIResourceProvider_H__ -
code/trunk/src/orxonox/gui/OgreCEGUITexture.h
r1755 r1784 24 24 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 25 25 *************************************************************************/ 26 #ifndef _OgreCEGUITexture_ h_27 #define _OgreCEGUITexture_ h_26 #ifndef _OgreCEGUITexture_H__ 27 #define _OgreCEGUITexture_H__ 28 28 29 29 #include <CEGUIBase.h> … … 177 177 178 178 179 #endif // end of guard _OgreCEGUITexture_ h_179 #endif // end of guard _OgreCEGUITexture_H__ -
code/trunk/src/orxonox/objects/Ambient.cc
r1755 r1784 37 37 #include "tinyxml/tinyxml.h" 38 38 #include "util/SubString.h" 39 #include "util/Convert.h"40 39 #include "util/Math.h" 41 40 #include "util/Debug.h" -
code/trunk/src/orxonox/objects/Camera.cc
r1755 r1784 40 40 #include "tinyxml/tinyxml.h" 41 41 #include "util/SubString.h" 42 #include "util/Convert.h"43 42 #include "util/Math.h" 44 43 #include "util/Debug.h" -
code/trunk/src/orxonox/objects/SpaceShipAI.cc
r1772 r1784 41 41 #include "Settings.h" 42 42 43 #define ACTION_INTERVAL 1.0f44 43 45 44 namespace orxonox 46 45 { 46 const float ACTION_INTERVAL = 1.0f; 47 47 48 SetConsoleCommand(SpaceShipAI, createEnemy, true).defaultValue(0, 1); 48 49 SetConsoleCommand(SpaceShipAI, killEnemies, true).defaultValue(0, 0); -
code/trunk/src/orxonox/objects/SpaceShipAI.h
r1772 r1784 36 36 #include "util/Math.h" 37 37 38 #define NUM_AI_TEAMS 339 38 40 39 namespace orxonox 41 40 { 41 const int NUM_AI_TEAMS = 3; 42 42 43 class SpaceShipAI : public SpaceShip 43 44 { -
code/trunk/src/orxonox/overlays/OverlayText.cc
r1747 r1784 34 34 #include <OgrePanelOverlayElement.h> 35 35 36 #include "util/Convert.h"37 36 #include "util/String.h" 38 37 #include "core/CoreIncludes.h" -
code/trunk/src/orxonox/overlays/console/InGameConsole.cc
r1755 r1784 50 50 #include "GraphicsEngine.h" 51 51 52 #define LINES 3053 #define CHAR_WIDTH 7.45 // fix this please - determine the char-width dynamically54 55 52 namespace orxonox 56 53 { 54 const int LINES = 30; 55 const float CHAR_WIDTH = 7.45f; // fix this please - determine the char-width dynamically 56 57 57 SetConsoleCommand(InGameConsole, openConsole, true); 58 58 SetConsoleCommand(InGameConsole, closeConsole, true);
Note: See TracChangeset
for help on using the changeset viewer.