Changeset 6378
- Timestamp:
- Dec 18, 2009, 12:48:19 PM (15 years ago)
- Location:
- code/branches/presentation2/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation2/src/libraries/core/Game.cc
r6318 r6378 143 143 .description("Sets the time in microseconds interval at which average fps, etc. gets calculated."); 144 144 SetConfigValue(fpsLimit_, 50) 145 .description("Sets the desired frame rate (0 for no limit).");145 .description("Sets the desired frame rate (0 for no limit)."); 146 146 } 147 147 -
code/branches/presentation2/src/modules/overlays/hud/HUDNavigation.cc
r6293 r6378 273 273 void HUDNavigation::sizeChanged() 274 274 { 275 // use size to compensate for a pspect ratio if enabled.275 // use size to compensate for aspect ratio if enabled. 276 276 float xScale = this->getActualSize().x; 277 277 float yScale = this->getActualSize().y; -
code/branches/presentation2/src/modules/weapons/projectiles/Rocket.cc
r6315 r6378 29 29 #include "Rocket.h" 30 30 31 #include <BulletDynamics/Dynamics/btRigidBody.h> 32 33 #include "core/CoreIncludes.h" 31 34 #include "core/XMLPort.h" 32 #include " BulletDynamics/Dynamics/btRigidBody.h"35 #include "worldentities/CameraPosition.h" 33 36 #include "worldentities/pawns/Pawn.h" 34 37 #include "graphics/ParticleSpawner.h" … … 37 40 #include "infos/PlayerInfo.h" 38 41 #include "controllers/Controller.h" 39 #include "worldentities/CameraPosition.h"40 41 42 #include "sound/WorldSound.h" 42 43 -
code/branches/presentation2/src/modules/weapons/projectiles/Rocket.h
r6285 r6378 31 31 32 32 #include "weapons/WeaponsPrereqs.h" 33 34 #include "tools/Timer.h" 33 35 #include "worldentities/ControllableEntity.h" 34 36 -
code/branches/presentation2/src/orxonox/gamestates/GSMainMenu.cc
r6349 r6378 37 37 #include "core/ConsoleCommand.h" 38 38 #include "core/ConfigValueIncludes.h" 39 #include "core/CoreIncludes.h" 39 40 #include "core/GraphicsManager.h" 40 41 #include "core/GUIManager.h" -
code/branches/presentation2/src/orxonox/gamestates/GSRoot.cc
r6160 r6378 30 30 31 31 #include "util/Clock.h" 32 #include "core/BaseObject.h" 32 33 #include "core/ConsoleCommand.h" 33 34 #include "core/Game.h" … … 58 59 { 59 60 unsigned int nr=0; 60 for(ObjectList<BaseObject>::iterator it = ObjectList<BaseObject>::begin(); it; ++it){ 61 if( dynamic_cast<Synchronisable*>(*it) ) 61 for (ObjectList<BaseObject>::iterator it = ObjectList<BaseObject>::begin(); it; ++it) 62 { 63 if (dynamic_cast<Synchronisable*>(*it)) 62 64 COUT(0) << "object: " << it->getIdentifier()->getName() << " id: " << dynamic_cast<Synchronisable*>(*it)->getObjectID() << std::endl; 63 65 else … … 66 68 } 67 69 COUT(0) << "currently got " << nr << " objects" << std::endl; 68 69 70 } 70 71 -
code/branches/presentation2/src/orxonox/sound/SoundBuffer.cc
r6340 r6378 35 35 #include "util/Exception.h" 36 36 #include "util/StringUtils.h" 37 #include "core/Resource.h"38 37 #include "sound/SoundManager.h" 39 38 -
code/branches/presentation2/src/orxonox/sound/SoundBuffer.h
r6332 r6378 31 31 32 32 #include "OrxonoxPrereqs.h" 33 34 #include <list> 33 35 #include <boost/shared_ptr.hpp> 36 #include "core/Resource.h" 34 37 35 38 namespace orxonox -
code/branches/presentation2/src/orxonox/sound/SoundManager.cc
r6373 r6378 39 39 #include "util/Clock.h" 40 40 #include "core/ConfigValueIncludes.h" 41 #include "core/CoreIncludes.h" 41 42 #include "core/GameMode.h" 42 43 #include "core/ScopedSingletonManager.h" -
code/branches/presentation2/src/orxonox/sound/SoundStreamer.cc
r6354 r6378 26 26 */ 27 27 #include "SoundStreamer.h" 28 #include "SoundManager.h" 28 29 29 #include <al.h> 30 30 #include <vorbis/vorbisfile.h> 31 #include "SoundManager.h" 31 32 32 33 namespace orxonox -
code/branches/presentation2/src/orxonox/sound/SoundStreamer.h
r6354 r6378 33 33 #include <string> 34 34 #include <OgreDataStream.h> 35 #include "core/CorePrereqs.h" 35 36 36 37 namespace orxonox
Note: See TracChangeset
for help on using the changeset viewer.