[9098] | 1 | /* |
---|
[9112] | 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
[9098] | 4 | * |
---|
[9112] | 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 | * |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
[9098] | 27 | */ |
---|
[9272] | 28 | |
---|
| 29 | |
---|
[9112] | 30 | #ifndef _TowerDefense_H__ |
---|
| 31 | #define _TowerDefense_H__ |
---|
[10258] | 32 | #include "TDCoordinate.h" |
---|
[10622] | 33 | #include "TowerDefenseSelecter.h" |
---|
[12125] | 34 | #include "TowerDefenseController.h" |
---|
[9112] | 35 | #include "towerdefense/TowerDefensePrereqs.h" |
---|
[10622] | 36 | #include "gametypes/TeamDeathmatch.h" |
---|
[10258] | 37 | #include "TowerDefenseEnemy.h" |
---|
| 38 | #include "util/Output.h" |
---|
[10629] | 39 | #include "TowerDefenseField.h" |
---|
[9272] | 40 | |
---|
[9112] | 41 | namespace orxonox |
---|
| 42 | { |
---|
[12125] | 43 | using EnemyList = std::list<std::pair<orxonox::WeakPtr<TowerDefenseEnemy>, TowerDefenseController*>>; |
---|
| 44 | |
---|
[11099] | 45 | /** |
---|
| 46 | @brief |
---|
| 47 | GameType class for TowerDefense. See TowerDefenseReadme.txt for Information. |
---|
| 48 | |
---|
| 49 | @ingroup TowerDefense |
---|
| 50 | */ |
---|
[10622] | 51 | class _TowerDefenseExport TowerDefense : public TeamDeathmatch |
---|
[9112] | 52 | { |
---|
[9272] | 53 | public: |
---|
[9667] | 54 | TowerDefense(Context* context); |
---|
[10629] | 55 | virtual ~TowerDefense(); |
---|
| 56 | void addTowerDefenseEnemy(int templatenr); |
---|
[11071] | 57 | virtual void start() override; //<! The function is called when the gametype starts |
---|
| 58 | virtual void end() override; |
---|
| 59 | virtual void tick(float dt) override; |
---|
| 60 | virtual void spawnPlayer(PlayerInfo* player) override; |
---|
[10622] | 61 | PlayerInfo* getPlayer(void) const; |
---|
[10258] | 62 | int getCredit(){ return this->credit_; } |
---|
[10629] | 63 | void payCredit(int pay){ this->credit_ -= pay; } |
---|
[10258] | 64 | int getLifes(){ return this->lifes_; } |
---|
[10629] | 65 | int getWaveNumber(){ return this->waveNumber_; } |
---|
| 66 | void setWaveNumber(int wavenumber){ waveNumber_=wavenumber; } |
---|
[10258] | 67 | void setCredit(int credit){ credit_ = credit; } |
---|
[10629] | 68 | void setLifes(int lifes){ lifes_ = lifes; } |
---|
| 69 | void buyTower(int cost){ cost -= cost;} |
---|
[10258] | 70 | void addCredit(int credit) { credit_+=credit; } |
---|
| 71 | int reduceLifes(int NumberofLifes){ return lifes_-=NumberofLifes; } |
---|
[10629] | 72 | TowerDefenseField* getField(TDCoordinate* coord){ return fields_[coord->GetX()][coord->GetY()]; } |
---|
| 73 | void setCenterpoint(TowerDefenseCenterpoint* centerpoint); |
---|
[9272] | 74 | void addTower(int x, int y); |
---|
[10629] | 75 | void upgradeTower(int x, int y); |
---|
| 76 | virtual TDCoordinate* getNextStreetCoord(TDCoordinate*); |
---|
| 77 | |
---|
| 78 | TowerDefenseSelecter* selecter; |
---|
[9272] | 79 | |
---|
[10629] | 80 | private: |
---|
| 81 | void createFields(); |
---|
[9272] | 82 | |
---|
[10629] | 83 | orxonox::WeakPtr<TowerDefenseCenterpoint> center_; |
---|
[10622] | 84 | PlayerInfo* player_; |
---|
[10629] | 85 | float timeSinceLastSpawn_; |
---|
| 86 | float timeUntilNextWave_; |
---|
| 87 | int waveSize_; |
---|
[10258] | 88 | int credit_; |
---|
[10629] | 89 | int waveNumber_; |
---|
[10258] | 90 | int lifes_; |
---|
[12125] | 91 | EnemyList enemies_; |
---|
[10629] | 92 | TowerDefenseField* fields_[16][16]; |
---|
[11071] | 93 | std::vector<orxonox::WeakPtr<TowerDefenseField>> waypoints_; |
---|
[10629] | 94 | Vector3 endpoint_; |
---|
| 95 | Vector3 offset_; |
---|
[9112] | 96 | }; |
---|
| 97 | } |
---|
| 98 | |
---|
| 99 | #endif /* _TowerDefense_H__ */ |
---|