Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/towerdefenseHS14/src/modules/towerdefense/TowerDefense.h @ 10108

Last change on this file since 10108 was 10105, checked in by erbj, 10 years ago

Added TDCoordinate and more updates

  • Property svn:eol-style set to native
File size: 2.8 KB
RevLine 
[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
[9141]29 /**
[9272]30    @brief
31        GameType class for TowerDefense. See TowerDefenseReadme.txt for Information.
32
33    @ingroup TowerDefense
[9141]34 */
[9098]35
[9272]36
[9112]37#ifndef _TowerDefense_H__
38#define _TowerDefense_H__
[10105]39#include "TDCoordinate.h"
[9112]40#include "towerdefense/TowerDefensePrereqs.h"
41#include "gametypes/Deathmatch.h"
[9272]42
[9211]43 #include "TowerDefensePlayerStats.h"
[9272]44
[9112]45namespace orxonox
46{
[9272]47    class _TowerDefenseExport TowerDefense : public Deathmatch
[9112]48    {
[9272]49    public:
[9667]50        TowerDefense(Context* context);
[9272]51        virtual ~TowerDefense();
[9143]52
[10105]53        void addEnemy();
[9272]54        virtual void start(); //<! The function is called when the gametype starts
55        virtual void end();
56        virtual void tick(float dt);
57        //virtual void playerEntered(PlayerInfo* player);
58        //virtual bool playerLeft(PlayerInfo* player);
[9143]59
[9272]60        //virtual void pawnKilled(Pawn* victim, Pawn* killer = 0);
[9347]61        //virtual void playerScored(PlayerInfo* player, int score);
[9272]62
63
64        /*  Called by TowerDefenseCenterpoint upon game start
65            The centerpoint is used to create towers
66        */
67        void setCenterpoint(TowerDefenseCenterpoint *centerpoint);
68
69        /* Adds a tower at x, y in the playfield */
70        void addTower(int x, int y);
71
72        /* Part of a temporary hack to allow the player to add towers */
73        ConsoleCommand* dedicatedAddTower_;
74
75        //TODO: void spawnNewWave()
76        //TODO: create a timer which regularly calls the spawnNewWave function  (time driven)
77        //      or spawn a new wave when the old wave has been killed           (event driven)
78
79
80    private:
81        TowerDefenseCenterpoint *center_;
82
83        /* handles stats */
84        TowerDefensePlayerStats *stats_;
85        bool hasEnoughCreditForTower(TowerCost towerCost);
86
87        bool towerExists(int x, int y);
88
89
[10105]90        std::vector<TDCoordinate> addedTowersCoordinates_;
[10091]91        std::vector<TowerTurret*> towers_;
[9112]92    };
93}
94
95#endif /* _TowerDefense_H__ */
Note: See TracBrowser for help on using the repository browser.