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