Changeset 5816 in orxonox.OLD for branches/world_entities
- Timestamp:
- Nov 29, 2005, 10:39:54 AM (19 years ago)
- Location:
- branches/world_entities/src
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/world_entities/src/defs/globals.h
r4946 r5816 17 17 "Nico Bernold - Physics\n" \ 18 18 "David Gruetter - The ProtoType\n" \ 19 "Aaron von Schroeder - Sensors\n" \ 20 "Lukas Grauer - Phasers\n" \ 19 21 "many more...\n" 22 20 23 #define ORXONOX_WEBPAGE "http://www.orxonox.net" 21 24 … … 90 93 "any later version.\n" 91 94 95 96 92 97 #define GNU_LICENCE_LONG \ 93 98 " GNU GENERAL PUBLIC LICENSE\n" \ -
branches/world_entities/src/defs/stdincl.h
r5075 r5816 17 17 #endif 18 18 19 #include <stdlibincl.h>19 #include "stdlibincl.h" 20 20 21 21 #include "sdlincl.h" 22 22 #include "glincl.h" 23 23 24 #include "error.h"25 #include "globals.h"26 27 24 #include "compiler.h" 28 25 -
branches/world_entities/src/lib/event/key_mapper.h
r5474 r5816 29 29 virtual ~KeyMapper(); 30 30 31 void loadKeyBindings(const char* fileName = DEFAULT_CONFIG_FILE);31 void loadKeyBindings(const char* fileName = NULL); 32 32 void loadKeyBindings(IniParser* iniParser); 33 33 -
branches/world_entities/src/lib/graphics/graphics_engine.cc
r5790 r5816 30 30 #include "text.h" 31 31 32 #include "globals.h" 32 33 33 34 #ifdef __WIN32__ -
branches/world_entities/src/orxonox.cc
r5788 r5816 27 27 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ORXONOX 28 28 #include "orxonox.h" 29 30 #include "globals.h" 29 31 30 32 #include "gui.h" -
branches/world_entities/src/story_entities/world.cc
r5769 r5816 1043 1043 1044 1044 1045 1046 /**1047 \brief commands that the world must catch1048 @returns false if not used by the world1049 */1050 bool World::command(Command* cmd)1051 {1052 if( !strcmp( cmd->cmd, CONFIG_NAME_VIEW0)) this->localCamera->setViewMode(VIEW_NORMAL);1053 else if( !strcmp( cmd->cmd, CONFIG_NAME_VIEW1)) this->localCamera->setViewMode(VIEW_BEHIND);1054 else if( !strcmp( cmd->cmd, CONFIG_NAME_VIEW2)) this->localCamera->setViewMode(VIEW_FRONT);1055 else if( !strcmp( cmd->cmd, CONFIG_NAME_VIEW3)) this->localCamera->setViewMode(VIEW_LEFT);1056 else if( !strcmp( cmd->cmd, CONFIG_NAME_VIEW4)) this->localCamera->setViewMode(VIEW_RIGHT);1057 else if( !strcmp( cmd->cmd, CONFIG_NAME_VIEW5)) this->localCamera->setViewMode(VIEW_TOP);1058 return false;1059 }1060 1061 1045 void World::setPath( const char* name) 1062 1046 { -
branches/world_entities/src/util/loading/game_loader.h
r5139 r5816 12 12 #include "event_listener.h" 13 13 14 #include "error.h" 14 15 15 16 //-----------------------------------------------------------------------------
Note: See TracChangeset
for help on using the changeset viewer.