Changeset 11358 for code/trunk/src/orxonox
- Timestamp:
- Mar 9, 2017, 4:22:19 PM (8 years ago)
- Location:
- code/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/orxonox/controllers/HumanController.h
r11353 r11358 92 92 //friend class, for mouselook 93 93 friend class Map; 94 static HumanController* localController_s; 94 95 95 96 protected: 96 static HumanController* localController_s;97 97 bool controlPaused_; 98 98 -
code/trunk/src/orxonox/gametypes/Gametype.cc
r11071 r11358 96 96 } 97 97 } 98 98 99 99 /** 100 100 * @brief Initializes sub-objects of the Gametype. This must be called after the constructor. -
code/trunk/src/orxonox/infos/Bot.cc
r9667 r11358 68 68 static const std::string names[] = 69 69 { 70 "Dr. Julius No", 71 "Rosa Klebb", 72 "Auric Goldfinger", 73 "Emilio Largo", 74 "Ernst Stavro Blofeld", 75 "Dr. Kananga", 76 "Francisco Scaramanga", 77 "Karl Stromberg", 78 "Sir Hugo Drax", 79 "Aris Kristatos", 70 "Berkay Berabi", 71 "Louis Meile" 72 "Muten Roshi", 73 "Abradolf Lincler", 74 "Lionel Messi", 80 75 "Kamal Khan", 81 "General Orlov", 82 "Max Zorin", 83 "Brad Whitaker", 84 "General Georgi Koskov", 85 "Franz Sanchez", 86 "Alec Trevelyan", 87 "Elliot Carver", 88 "Elektra King", 89 "Viktor Zokas", 90 "Gustav Graves", 91 "Le Chiffre", 92 "Mr. White", 93 "Dominic Greene" 76 "Karl the Llama", 77 "Thomas the Tankengine", 78 "Rick", 79 "Morty", 80 "Charlie the Unicorn", 81 "Kung Fury", 82 "Postman Pat" 94 83 }; 95 84 static std::vector<std::string> defaultnames(names, names + sizeof(names) / sizeof(std::string)); -
code/trunk/src/orxonox/infos/GametypeInfo.h
r9667 r11358 83 83 inline bool isStartCountdownRunning() const 84 84 { return this->bStartCountdownRunning_; } 85 85 86 void changedStartCountdownRunning(void); // Is called when the start countdown has been either started or stopped. 86 87 … … 132 133 void dispatchStaticMessage(const std::string& message,const ColourValue& colour) const; 133 134 void dispatchFadingMessage(const std::string& message) const; 135 void setStartCountdown(float countdown); // Set the start countdown to the input value. 136 134 137 135 138 protected: 136 139 void start(void); // Inform the GametypeInfo that the game has started. 137 140 void end(void); // Inform the GametypeInfo that the game has ended. 138 void setStartCountdown(float countdown); // Set the start countdown to the input value.139 141 void countdownStartCountdown(float countDown); // Count down the start countdown by the specified value. 140 142 void countDown(); // Count down the start countdown counter. -
code/trunk/src/orxonox/sound/WorldAmbientSound.cc
r11071 r11358 58 58 soundList_.emplace_back("Ganymede.ogg"); 59 59 soundList_.emplace_back("luke_grey_-_hypermode.ogg"); 60 soundList_.emplace_back("racetheme.ogg"); 61 60 62 61 63 }
Note: See TracChangeset
for help on using the changeset viewer.