Changeset 786 for code/branches/FICN
- Timestamp:
- Jan 2, 2008, 7:41:46 PM (17 years ago)
- Location:
- code/branches/FICN
- Files:
-
- 1 added
- 1 deleted
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/src/loader/LevelLoader.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <OgreOverlay.h> -
code/branches/FICN/src/orxonox/GraphicsEngine.cc
r784 r786 30 30 */ 31 31 32 #include " StableHeaders.h"32 #include "OrxonoxStableHeaders.h" 33 33 34 34 #include "GraphicsEngine.h" -
code/branches/FICN/src/orxonox/InputManager.cc
r784 r786 1 #include " StableHeaders.h"1 #include "OrxonoxStableHeaders.h" 2 2 3 3 #include "InputManager.h" -
code/branches/FICN/src/orxonox/Main.cc
r784 r786 31 31 */ 32 32 33 #include " StableHeaders.h"33 #include "OrxonoxStableHeaders.h" 34 34 35 35 #include <OgrePlatform.h> … … 86 86 int argc = 2; 87 87 int i; 88 int j; 88 89 for(i = 0; cmd[i] != NULL; i++) 89 90 { … … 91 92 } 92 93 char **argv = new char*[argc]; 93 for ( intj = 0; j < argc; j++)94 for (j = 0; j < argc; j++) 94 95 { 95 96 argv[j] = new char[i]; 96 97 } 97 intj = 1;98 j = 1; 98 99 int k = 0; 99 100 for(int i = 0; cmd[i] != NULL; i++) -
code/branches/FICN/src/orxonox/Orxonox.cc
r784 r786 32 32 33 33 // Precompiled Headers 34 #include " StableHeaders.h"34 #include "OrxonoxStableHeaders.h" 35 35 36 36 //****** OGRE ****** -
code/branches/FICN/src/orxonox/PrecompiledHeaderFiles.cc
r785 r786 31 31 */ 32 32 33 #include " StableHeaders.h"33 #include "OrxonoxStableHeaders.h" -
code/branches/FICN/src/orxonox/SpaceshipSteering.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <OgreNode.h> -
code/branches/FICN/src/orxonox/hud/HUD.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <OgreOverlayManager.h> -
code/branches/FICN/src/orxonox/objects/Ambient.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <vector> -
code/branches/FICN/src/orxonox/objects/Camera.cc
r784 r786 1 1 2 #include " StableHeaders.h"2 #include "OrxonoxStableHeaders.h" 3 3 4 4 #include <string> -
code/branches/FICN/src/orxonox/objects/Explosion.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <OgreParticleSystem.h> -
code/branches/FICN/src/orxonox/objects/Fighter.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <string> -
code/branches/FICN/src/orxonox/objects/Model.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include "util/tinyxml/tinyxml.h" -
code/branches/FICN/src/orxonox/objects/NPC.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include "../core/CoreIncludes.h" -
code/branches/FICN/src/orxonox/objects/Projectile.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include "../core/CoreIncludes.h" -
code/branches/FICN/src/orxonox/objects/Skybox.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <string> -
code/branches/FICN/src/orxonox/objects/SpaceShip.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <string> … … 136 136 SetConfigValue(bInvertYAxis_, false).description("Set this to true for joystick-like mouse behaviour (mouse up = ship down)."); 137 137 SetConfigValue(reloadTime_, 0.125).description("The reload time of the weapon in seconds"); 138 SetConfigValue(testvector_, Vector3()).description("asdfblah"); 138 139 } 139 140 -
code/branches/FICN/src/orxonox/objects/SpaceShip.h
r768 r786 31 31 32 32 private: 33 Vector3 testvector_; 33 34 bool bInvertYAxis_; 34 35 bool setMouseEventCallback_; -
code/branches/FICN/src/orxonox/objects/SpaceshipSteeringObject.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <OgreSceneManager.h> -
code/branches/FICN/src/orxonox/objects/WorldEntity.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <string> -
code/branches/FICN/src/orxonox/objects/weapon/AmmunitionDump.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include "orxonox/Orxonox.h" -
code/branches/FICN/src/orxonox/objects/weapon/BarrelGun.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <OgreStringConverter.h> -
code/branches/FICN/src/orxonox/objects/weapon/BaseWeapon.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <OgreStringConverter.h> -
code/branches/FICN/src/orxonox/objects/weapon/Bullet.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include "Bullet.h" -
code/branches/FICN/src/orxonox/objects/weapon/BulletManager.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include "BulletManager.h" -
code/branches/FICN/src/orxonox/objects/weapon/WeaponStation.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include "BaseWeapon.h" -
code/branches/FICN/src/orxonox/particle/ParticleInterface.cc
r784 r786 31 31 */ 32 32 33 #include " StableHeaders.h"33 #include "OrxonoxStableHeaders.h" 34 34 35 35 #include "ParticleInterface.h" -
code/branches/FICN/src/orxonox/tools/BillboardSet.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <sstream> -
code/branches/FICN/src/orxonox/tools/Light.cc
r784 r786 1 #include " StableHeaders.h"1 #include "OrxonoxStableHeaders.h" 2 2 3 3 #include <sstream> -
code/branches/FICN/src/orxonox/tools/Mesh.cc
r784 r786 26 26 */ 27 27 28 #include " StableHeaders.h"28 #include "OrxonoxStableHeaders.h" 29 29 30 30 #include <sstream> -
code/branches/FICN/visual_studio/orxonox.vcproj
r784 r786 43 43 PreprocessorDefinitions="ORXONOX_SHARED_BUILD; LOADER_STATIC_BUILD" 44 44 UsePrecompiledHeader="2" 45 PrecompiledHeaderThrough=" StableHeaders.h"45 PrecompiledHeaderThrough="OrxonoxStableHeaders.h" 46 46 /> 47 47 <Tool … … 114 114 PreprocessorDefinitions="ORXONOX_SHARED_BUILD; LOADER_STATIC_BUILD" 115 115 UsePrecompiledHeader="2" 116 PrecompiledHeaderThrough=" StableHeaders.h"116 PrecompiledHeaderThrough="OrxonoxStableHeaders.h" 117 117 /> 118 118 <Tool … … 447 447 </File> 448 448 <File 449 RelativePath="..\src\orxonox\OrxonoxStableHeaders.h" 450 > 451 </File> 452 <File 449 453 RelativePath="..\src\orxonox\SpaceshipSteering.h" 450 >451 </File>452 <File453 RelativePath="..\src\orxonox\StableHeaders.h"454 454 > 455 455 </File>
Note: See TracChangeset
for help on using the changeset viewer.