[12210] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Fabian 'x3n' Landau |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
[12212] | 30 | @file OrxoBlox.cc |
---|
| 31 | @brief Implementation of the OrxoBlox class. |
---|
[12210] | 32 | */ |
---|
| 33 | |
---|
[12212] | 34 | #include "OrxoBlox.h" |
---|
[12308] | 35 | #include "Highscore.h" |
---|
[12210] | 36 | |
---|
| 37 | #include "core/CoreIncludes.h" |
---|
| 38 | #include "core/EventIncludes.h" |
---|
| 39 | #include "core/command/Executor.h" |
---|
| 40 | |
---|
[12308] | 41 | |
---|
| 42 | #include "core/config/ConfigValueIncludes.h"//Remove?? |
---|
| 43 | |
---|
[12210] | 44 | #include "gamestates/GSLevel.h" |
---|
| 45 | |
---|
[12308] | 46 | |
---|
| 47 | #include "chat/ChatManager.h"//Remove? |
---|
| 48 | |
---|
[12212] | 49 | #include "OrxoBloxCenterpoint.h" |
---|
[12268] | 50 | #include "OrxoBloxStones.h" |
---|
[12288] | 51 | #include "OrxoBloxWall.h" |
---|
[12314] | 52 | #include "OrxoBloxShip.h" |
---|
[12260] | 53 | |
---|
[12210] | 54 | namespace orxonox |
---|
| 55 | { |
---|
[12308] | 56 | |
---|
[12210] | 57 | |
---|
[12212] | 58 | RegisterUnloadableClass(OrxoBlox); |
---|
[12210] | 59 | |
---|
| 60 | /** |
---|
| 61 | @brief |
---|
| 62 | Constructor. Registers and initializes the object. |
---|
| 63 | */ |
---|
[12366] | 64 | OrxoBlox::OrxoBlox(Context* context) : Deathmatch(context) |
---|
[12210] | 65 | { |
---|
[12212] | 66 | RegisterObject(OrxoBlox); |
---|
[12210] | 67 | |
---|
| 68 | this->center_ = nullptr; |
---|
[12371] | 69 | //this->ball_ = nullptr; |
---|
[12280] | 70 | this->futureWall_ = nullptr; |
---|
[12307] | 71 | this->player_ = nullptr; |
---|
[12331] | 72 | level_ = 0; |
---|
[12210] | 73 | |
---|
[12307] | 74 | this->setHUDTemplate("OrxoBloxHUD"); |
---|
[12277] | 75 | //Error when specified |
---|
[12210] | 76 | |
---|
| 77 | // Pre-set the timer, but don't start it yet. |
---|
[12371] | 78 | this->starttimer_.setTimer(1.0, false, createExecutor(createFunctor(&OrxoBlox::LevelUp, this))); |
---|
[12210] | 79 | this->starttimer_.stopTimer(); |
---|
| 80 | |
---|
[12307] | 81 | |
---|
[12210] | 82 | |
---|
| 83 | } |
---|
| 84 | |
---|
| 85 | /** |
---|
| 86 | @brief |
---|
| 87 | Destructor. Cleans up, if initialized. |
---|
| 88 | */ |
---|
[12212] | 89 | OrxoBlox::~OrxoBlox() |
---|
[12210] | 90 | { |
---|
| 91 | if (this->isInitialized()) |
---|
| 92 | this->cleanup(); |
---|
| 93 | } |
---|
| 94 | |
---|
| 95 | /** |
---|
| 96 | @brief |
---|
| 97 | Cleans up the Gametype by destroying the ball and the bats. |
---|
| 98 | */ |
---|
[12212] | 99 | void OrxoBlox::cleanup() |
---|
[12210] | 100 | { |
---|
[12371] | 101 | //if (this->ball_ != nullptr) // Destroy the ball, if present. |
---|
| 102 | //{ |
---|
| 103 | // this->ball_->destroy(); |
---|
| 104 | // this->ball_ = nullptr; |
---|
| 105 | //} |
---|
[12210] | 106 | |
---|
[12368] | 107 | if (this->futureWall_ != nullptr) |
---|
[12307] | 108 | { |
---|
[12349] | 109 | this->futureWall_->destroy(); |
---|
| 110 | this->futureWall_ = nullptr; |
---|
[12307] | 111 | } |
---|
| 112 | |
---|
[12349] | 113 | for (OrxoBloxWall* wall : this->activeWalls_) |
---|
[12368] | 114 | if (wall != nullptr) |
---|
[12349] | 115 | wall->destroy(); |
---|
| 116 | this->activeWalls_.clear(); |
---|
| 117 | |
---|
| 118 | |
---|
[12343] | 119 | for (OrxoBloxStones* stone : this->stones_) |
---|
[12368] | 120 | if(stone != nullptr) |
---|
[12343] | 121 | stone->destroy(); |
---|
| 122 | this->stones_.clear(); |
---|
| 123 | |
---|
[12210] | 124 | |
---|
| 125 | } |
---|
| 126 | |
---|
| 127 | /** |
---|
[12307] | 128 | @brieftt |
---|
[12212] | 129 | Starts the OrxoBlox minigame. |
---|
[12210] | 130 | */ |
---|
[12212] | 131 | void OrxoBlox::start() |
---|
[12367] | 132 | |
---|
[12210] | 133 | { |
---|
[12212] | 134 | if (this->center_ != nullptr) // There needs to be a OrxoBloxCenterpoint, i.e. the area the game takes place. |
---|
[12210] | 135 | { |
---|
[12371] | 136 | //if (this->ball_ == nullptr) // If there is no ball, create a new ball. |
---|
| 137 | //{ |
---|
| 138 | // this->ball_ = new OrxoBloxBall(this->center_->getContext()); |
---|
[12210] | 139 | // Apply the template for the ball specified by the centerpoint. |
---|
[12371] | 140 | // this->ball_->addTemplate(this->center_->getBalltemplate()); |
---|
| 141 | //} |
---|
[12210] | 142 | |
---|
| 143 | // Attach the ball to the centerpoint and set the parameters as specified in the centerpoint, the ball is attached to. |
---|
[12371] | 144 | //this->center_->attach(this->ball_); |
---|
[12339] | 145 | //Startposition Ball |
---|
[12371] | 146 | //this->ball_->setPosition(0, 0, 40); |
---|
| 147 | //this->ball_->setFieldDimension(this->center_->getFieldDimension()); |
---|
| 148 | //this->ball_->setSpeed(0); |
---|
| 149 | //this->ball_->setAccelerationFactor(this->center_->getBallAccelerationFactor()); |
---|
[12366] | 150 | |
---|
[12331] | 151 | level_=1; |
---|
[12307] | 152 | |
---|
| 153 | // Create the first Wall. |
---|
[12349] | 154 | this->LevelUp(); |
---|
[12307] | 155 | |
---|
[12337] | 156 | //Create Ship |
---|
| 157 | //this->ship_ = new OrxoBloxShip(this->center_->getContext()); |
---|
| 158 | //this->ship_->setPosition(0, 0, 0); |
---|
| 159 | |
---|
[12210] | 160 | } |
---|
| 161 | else // If no centerpoint was specified, an error is thrown and the level is exited. |
---|
| 162 | { |
---|
[12212] | 163 | orxout(internal_error) << "OrxoBlox: No Centerpoint specified." << endl; |
---|
[12210] | 164 | GSLevel::startMainMenu(); |
---|
| 165 | return; |
---|
| 166 | } |
---|
| 167 | |
---|
| 168 | // Start the timer. After it has expired the ball is started. |
---|
| 169 | this->starttimer_.startTimer(); |
---|
| 170 | |
---|
| 171 | // Set variable to temporarily force the player to spawn. |
---|
[12359] | 172 | // Set variable to temporarily force the player to spawn. |
---|
[12367] | 173 | //bool temp = this->bForceSpawn_; |
---|
[12370] | 174 | this->bForceSpawn_ = false; |
---|
[12210] | 175 | |
---|
| 176 | // Call start for the parent class. |
---|
| 177 | Deathmatch::start(); |
---|
| 178 | |
---|
[12359] | 179 | // Reset the variable. |
---|
[12367] | 180 | //this->bForceSpawn_ = temp; |
---|
[12359] | 181 | |
---|
[12210] | 182 | } |
---|
| 183 | |
---|
| 184 | /** |
---|
| 185 | @brief |
---|
[12212] | 186 | Ends the OrxoBlox minigame. |
---|
[12210] | 187 | */ |
---|
[12212] | 188 | void OrxoBlox::end() |
---|
[12210] | 189 | { |
---|
[12268] | 190 | ChatManager::message("You suck!!"); |
---|
[12359] | 191 | |
---|
| 192 | if (Highscore::exists()) |
---|
| 193 | { |
---|
| 194 | int score = this->getScore(this->getPlayer()); |
---|
| 195 | Highscore::getInstance().storeScore("Tetris", score, this->getPlayer()); |
---|
| 196 | } |
---|
| 197 | |
---|
[12210] | 198 | this->cleanup(); |
---|
| 199 | |
---|
| 200 | // Call end for the parent class. |
---|
| 201 | Deathmatch::end(); |
---|
[12351] | 202 | GSLevel::startMainMenu(); |
---|
[12210] | 203 | } |
---|
| 204 | |
---|
[12359] | 205 | PlayerInfo* OrxoBlox::getPlayer() |
---|
[12337] | 206 | { |
---|
[12359] | 207 | return this->player_; |
---|
[12337] | 208 | } |
---|
| 209 | |
---|
[12367] | 210 | // void OrxoBlox::spawnPlayer(PlayerInfo* player) |
---|
| 211 | // { |
---|
| 212 | // assert(player); |
---|
[12210] | 213 | |
---|
[12367] | 214 | // if(this->player_ == nullptr) |
---|
| 215 | // { |
---|
| 216 | // this->player_ = player; |
---|
| 217 | // this->players_[player].state_ = PlayerState::Alive; |
---|
| 218 | // } |
---|
[12210] | 219 | |
---|
[12367] | 220 | // } |
---|
[12314] | 221 | |
---|
[12331] | 222 | void OrxoBlox::LevelUp(){ |
---|
| 223 | level_++; |
---|
[12359] | 224 | this->playerScored(this->player_);// add points |
---|
[12355] | 225 | for(OrxoBloxStones* stone : this->stones_){ |
---|
| 226 | int x_=(stone->getPosition()).x; |
---|
| 227 | int y_=(stone->getPosition()).y; |
---|
| 228 | int z_=(stone->getPosition()).z; |
---|
[12369] | 229 | //if(z_==90)this->end(); |
---|
[12355] | 230 | |
---|
| 231 | stone->setPosition(x_,y_,z_+9.0f); |
---|
[12369] | 232 | |
---|
| 233 | if( z_ >= 45){ |
---|
| 234 | this->end(); |
---|
| 235 | } |
---|
[12349] | 236 | } |
---|
[12355] | 237 | |
---|
| 238 | |
---|
[12351] | 239 | this->createWall(); |
---|
[12345] | 240 | this->activeWalls_.push_back(this->futureWall_); |
---|
[12350] | 241 | for (int i = 0; i < this->futureWall_->getNumberOfStones(); i++) { |
---|
| 242 | if (this->futureWall_->getStone(i) == nullptr) { |
---|
| 243 | orxout() << "Added nullptr to std::list stones_" << endl; |
---|
| 244 | } |
---|
[12349] | 245 | |
---|
[12346] | 246 | this->stones_.push_back(this->futureWall_->getStone(i)); |
---|
[12350] | 247 | } |
---|
[12360] | 248 | |
---|
| 249 | for(OrxoBloxWall* wall : this->activeWalls_) { |
---|
| 250 | if(wall->isEmpty()) { |
---|
| 251 | wall->destroy(); |
---|
| 252 | } |
---|
| 253 | int NumberOfStones = 0; |
---|
| 254 | for(int i = 0; i < 10; i++) { |
---|
| 255 | if(wall->getStone(i) == nullptr) { |
---|
| 256 | continue; |
---|
| 257 | } |
---|
| 258 | else { |
---|
| 259 | NumberOfStones++; |
---|
| 260 | } |
---|
| 261 | |
---|
| 262 | } |
---|
| 263 | } |
---|
[12331] | 264 | //new location of ship |
---|
| 265 | //new amount of balls |
---|
| 266 | //create balls |
---|
| 267 | //insert new wall |
---|
| 268 | } |
---|
[12210] | 269 | |
---|
[12350] | 270 | void OrxoBlox::createWall(){ |
---|
[12307] | 271 | this->futureWall_ = new OrxoBloxWall(this->center_->getContext()); |
---|
| 272 | // Apply the stone template to the stone. |
---|
| 273 | this->futureWall_->addTemplate(this->center_->getWallTemplate()); |
---|
[12210] | 274 | |
---|
[12307] | 275 | // Attach the brick to the Centerpoint and set the position of the brick to be at the left side. |
---|
| 276 | this->center_->attach(this->futureWall_); |
---|
| 277 | |
---|
[12345] | 278 | this->futureWall_->setPosition(0, 0, 0); |
---|
[12307] | 279 | this->futureWall_->setGame(this); |
---|
[12210] | 280 | } |
---|
| 281 | |
---|
[12278] | 282 | |
---|
[12210] | 283 | /** |
---|
| 284 | @brief |
---|
| 285 | Starts the ball with some default speed. |
---|
| 286 | */ |
---|
[12371] | 287 | //void OrxoBlox::startBall() |
---|
| 288 | //{ |
---|
| 289 | // if (this->ball_ != nullptr && this->center_ != nullptr) |
---|
| 290 | // this->ball_->setSpeed(this->center_->getBallSpeed()); |
---|
| 291 | //} |
---|
[12368] | 292 | |
---|
[12371] | 293 | /*OrxoBloxStones* OrxoBlox::CheckForCollision(OrxoBloxBall* Ball) { |
---|
[12367] | 294 | //orxout() << "Checking for Collision" << endl; |
---|
[12346] | 295 | Vector3 BallPosition = Ball->getPosition(); |
---|
| 296 | for(OrxoBloxStones* someStone : this->stones_) |
---|
| 297 | { |
---|
[12350] | 298 | if(someStone == nullptr) |
---|
| 299 | { |
---|
| 300 | continue; |
---|
| 301 | } |
---|
[12367] | 302 | //orxout() << "Checking a stone" << endl; |
---|
[12346] | 303 | const Vector3& StonePosition = someStone->getPosition(); //!< Saves the position of the currentStone |
---|
[12360] | 304 | int size = someStone->getSize()/2; |
---|
| 305 | if((BallPosition.x - Ball->getRadius() >= StonePosition.x - size && BallPosition.x + Ball->getRadius() <= StonePosition.x + size) && |
---|
| 306 | (BallPosition.z - Ball->getRadius() >= StonePosition.z - size && BallPosition.z + Ball->getRadius() <= StonePosition.z + size)) { |
---|
[12370] | 307 | //orxout() << "FOUND ONE" << endl; |
---|
[12346] | 308 | return someStone; |
---|
| 309 | } |
---|
| 310 | } |
---|
| 311 | orxout() << "Found nothing...." << endl; |
---|
| 312 | return nullptr; |
---|
[12350] | 313 | } |
---|
[12371] | 314 | */ |
---|
[12367] | 315 | |
---|
| 316 | void OrxoBlox::playerPreSpawn(PlayerInfo* player) |
---|
| 317 | { |
---|
| 318 | this->player_ = player; |
---|
| 319 | } |
---|
[12260] | 320 | |
---|
[12368] | 321 | /* |
---|
| 322 | bool OrxoBlox::Intersect(int XpositionBall, int XPositionBlock, int YPositionBall, int YPositionBlock, int radiusBall, int sizeBlock) { |
---|
| 323 | distanceX = XpositionBall - XPositionBlock; |
---|
| 324 | distanceY = YPositionBall - YPositionBlock; |
---|
| 325 | if (distanceX < 0) { |
---|
| 326 | distanceX = -distanceX; |
---|
| 327 | } |
---|
| 328 | if (distanceY < 0) { |
---|
| 329 | distanceY = -distanceY; |
---|
| 330 | } |
---|
| 331 | if((distanceX <= radiusBall + sizeBlock) || (distanceY <= radiusBall + sizeBlock)) { |
---|
| 332 | return true; |
---|
| 333 | } |
---|
| 334 | else { |
---|
| 335 | top = YPositionBall + radiusBall; |
---|
| 336 | right = XpositionBall + radiusBall; |
---|
| 337 | bottom = YPositionBall - radiusBall; |
---|
| 338 | left = XpositionBall - radiusBall; |
---|
| 339 | |
---|
| 340 | if((top >= YPositionBlock - size) && (top <= YPositionBlock + size) && (left <= XPositionBlock + size) && (left >= XPositionBlock - size)) |
---|
| 341 | } |
---|
| 342 | } |
---|
| 343 | */ |
---|
[12210] | 344 | } |
---|