| [10658] | 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: |
|---|
| [10930] | 23 | * Manuel Meier |
|---|
| [10658] | 24 | * Co-authors: |
|---|
| [11036] | 25 | * Cyrill Burgener |
|---|
| [10658] | 26 | * |
|---|
| 27 | */ |
|---|
| 28 | |
|---|
| 29 | /** |
|---|
| 30 | @file Hover.cc |
|---|
| [10930] | 31 | @brief Implementation of the Hover class. Sets up the whole Minigame |
|---|
| [10658] | 32 | */ |
|---|
| 33 | |
|---|
| 34 | #include "Hover.h" |
|---|
| [11495] | 35 | |
|---|
| [11041] | 36 | #include "HoverOrigin.h" |
|---|
| [10708] | 37 | #include "HoverWall.h" |
|---|
| [11041] | 38 | #include "HoverFlag.h" |
|---|
| [11035] | 39 | #include "MazeGenerator.h" |
|---|
| [10658] | 40 | #include "core/CoreIncludes.h" |
|---|
| [12267] | 41 | |
|---|
| [10658] | 42 | |
|---|
| [12267] | 43 | |
|---|
| [10658] | 44 | namespace orxonox |
|---|
| 45 | { |
|---|
| 46 | RegisterUnloadableClass(Hover); |
|---|
| 47 | |
|---|
| [10664] | 48 | Hover::Hover(Context* context) : Gametype(context) |
|---|
| [10658] | 49 | { |
|---|
| 50 | RegisterObject(Hover); |
|---|
| [11035] | 51 | |
|---|
| [11071] | 52 | this->origin_ = nullptr; |
|---|
| [11043] | 53 | this->numberOfFlags_ = 1; |
|---|
| [11035] | 54 | this->firstTick_ = true; |
|---|
| 55 | |
|---|
| [10895] | 56 | this->setHUDTemplate("HoverHUD"); |
|---|
| [10658] | 57 | } |
|---|
| 58 | |
|---|
| [11495] | 59 | void Hover::tick(float dt) |
|---|
| [10658] | 60 | { |
|---|
| [11495] | 61 | SUPER(Hover, tick, dt); |
|---|
| 62 | |
|---|
| [11040] | 63 | if(this->firstTick_ && this->origin_) |
|---|
| [11035] | 64 | { |
|---|
| 65 | this->firstTick_ = false; |
|---|
| [10787] | 66 | |
|---|
| [11495] | 67 | int numCells = this->origin_->getNumCells(); |
|---|
| 68 | int cellSize = this->origin_->getCellSize(); |
|---|
| 69 | int cellHeight = this->origin_->getCellHeight(); |
|---|
| [11040] | 70 | |
|---|
| 71 | MazeGenerator generator(numCells); |
|---|
| [11035] | 72 | generator.generateMaze(); |
|---|
| 73 | generator.renderMaze(); |
|---|
| [10787] | 74 | |
|---|
| [11035] | 75 | int* levelcode = generator.getLevelcode(); |
|---|
| [10787] | 76 | |
|---|
| [10928] | 77 | //Outer Walls |
|---|
| [11040] | 78 | for(int i = 0; i<numCells; i++){ |
|---|
| [11042] | 79 | (new HoverWall(origin_->getContext()))->init(0, i+1, cellSize, cellHeight, 1); |
|---|
| 80 | (new HoverWall(origin_->getContext()))->init(numCells, i+1, cellSize, cellHeight, 1); |
|---|
| 81 | (new HoverWall(origin_->getContext()))->init(i+1, 0, cellSize, cellHeight, 2); |
|---|
| 82 | (new HoverWall(origin_->getContext()))->init(i+1, numCells, cellSize, cellHeight, 2); |
|---|
| [10928] | 83 | } |
|---|
| 84 | |
|---|
| [10930] | 85 | //Generate inner Walls according to levelcode |
|---|
| [12211] | 86 | // for(int y=0; y<numCells; y++){ |
|---|
| 87 | // for(int x=0; x<numCells; x++){ |
|---|
| 88 | // switch(levelcode[ y * numCells + x ]){ |
|---|
| 89 | // case 1: (new HoverWall(origin_->getContext()))->init(x+1, numCells-y, cellSize, cellHeight, 1); |
|---|
| 90 | // break; |
|---|
| 91 | // case 3: (new HoverWall(origin_->getContext()))->init(x+1, numCells-y, cellSize, cellHeight, 1); |
|---|
| 92 | // case 2: (new HoverWall(origin_->getContext()))->init(x+1, numCells-y, cellSize, cellHeight, 0); |
|---|
| 93 | // default: break; |
|---|
| 94 | // } |
|---|
| 95 | // } |
|---|
| 96 | // } |
|---|
| [10787] | 97 | |
|---|
| [11495] | 98 | //Generate 5 flags randomly |
|---|
| 99 | for ( int i = 0; i < 5; i++ ) |
|---|
| [11042] | 100 | { |
|---|
| [11495] | 101 | HoverFlag* flag = new HoverFlag(origin_->getContext()); |
|---|
| 102 | flag->init(rand()%numCells, rand()%numCells, cellSize); |
|---|
| 103 | flags_.push_back(flag); |
|---|
| [11042] | 104 | } |
|---|
| [10900] | 105 | |
|---|
| [11495] | 106 | }//firsttick end |
|---|
| [10930] | 107 | |
|---|
| 108 | // Check if ship collided with one of the flags |
|---|
| [11495] | 109 | for ( unsigned int i = 0; i < flags_.size(); i++ ){ |
|---|
| 110 | if(flags_[i]->getCollided()){ |
|---|
| [11043] | 111 | flags_[i]->destroyLater(); |
|---|
| 112 | flags_.erase (flags_.begin()+i); |
|---|
| [10894] | 113 | } |
|---|
| 114 | } |
|---|
| [11043] | 115 | numberOfFlags_ = flags_.size(); |
|---|
| [10658] | 116 | } |
|---|
| 117 | } |
|---|