Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/towerdefenseFabien/src/modules/towerdefense/TowerDefense.h @ 10587

Last change on this file since 10587 was 10587, checked in by landauf, 9 years ago

use list instead of vector - list is better suited for removing elements

  • Property svn:eol-style set to native
File size: 3.8 KB
Line 
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 *
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29 /**
30    @brief
31        GameType class for TowerDefense. See TowerDefenseReadme.txt for Information.
32
33    @ingroup TowerDefense
34 */
35
36
37#ifndef _TowerDefense_H__
38#define _TowerDefense_H__
39#include "TDCoordinate.h"
40#include "TowerDefenseSelecter.h"
41#include "towerdefense/TowerDefensePrereqs.h"
42#include "gametypes/TeamDeathmatch.h"
43#include "TowerDefenseEnemy.h"
44#include "util/Output.h"
45#include "TowerDefenseField.h"
46
47namespace orxonox
48{
49    class _TowerDefenseExport TowerDefense : public TeamDeathmatch
50    {
51    public:
52        TowerDefense(Context* context);
53        virtual ~TowerDefense();       
54        void addTowerDefenseEnemy(int templatenr);
55        virtual void start(); //<! The function is called when the gametype starts
56        virtual void end();
57        virtual void tick(float dt);
58        virtual void spawnPlayer(PlayerInfo* player);
59        PlayerInfo* getPlayer(void) const;
60        int getCredit(){ return this->credit_; }
61        void payCredit(int pay){ this->credit_ -= pay; }
62        int getLifes(){ return this->lifes_; }
63        int getWaveNumber(){ return this->waves_; }
64        void setCredit(int credit){ credit_ = credit; }
65        void setLifes(int lifes){ lifes_ = lifes; }
66        void setWaveNumber(int wavenumber){ waves_=wavenumber; }
67        void buyTower(int cost){ credit_ -= cost;}
68        void addCredit(int credit) { credit_+=credit; }
69        void nextwave(){ enemies_.clear(); waves_++; time=0;}
70        int reduceLifes(int NumberofLifes){ return lifes_-=NumberofLifes; }
71        TowerDefenseField* getField(TDCoordinate* coord){ return fields_[coord->GetX()][coord->GetY()]; }
72        /*  Called by TowerDefenseCenterpoint upon game start
73            The centerpoint is used to create towers
74        */
75        void setCenterpoint(TowerDefenseCenterpoint* centerpoint);       
76        /* Adds a tower at x, y in the playfield */
77        void addTower(int x, int y);
78        void upgradeTower(int x, int y); 
79        virtual TDCoordinate* getNextStreetCoord(TDCoordinate*);
80
81        //virtual void pawnKilled(Pawn* victim, Pawn* killer = 0);
82        //virtual void playerScored(PlayerInfo* player, int score);
83
84        TowerDefenseSelecter* selecter;       
85
86        //TODO: void spawnNewWave()
87        //TODO: create a timer which regularly calls the spawnNewWave function  (time driven)
88        //      or spawn a new wave when the old wave has been killed           (event driven)
89
90    private:
91        orxonox::WeakPtr<TowerDefenseCenterpoint> center_;
92        PlayerInfo* player_;
93        float time;       
94        int credit_;
95        int waves_;
96        int lifes_;
97        Timer nextwaveTimer_;
98        std::list<orxonox::WeakPtr<TowerDefenseEnemy> > enemies_;
99        TowerDefenseField* fields_[16][16];
100        std::vector<orxonox::WeakPtr<TowerDefenseField> > waypoints_;
101        Vector3 endpoint_;
102
103        void createFields();
104    };
105}
106
107#endif /* _TowerDefense_H__ */
Note: See TracBrowser for help on using the repository browser.