[9110] | 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 | /** |
---|
[9141] | 30 | @brief |
---|
| 31 | See TowerDefenseReadme.txt for Information. |
---|
| 32 | @ingroup TowerDefense |
---|
| 33 | */ |
---|
[9110] | 34 | |
---|
[9141] | 35 | |
---|
[9110] | 36 | #ifndef _TowerDefenseCenterpoint_H__ |
---|
| 37 | #define _TowerDefenseCenterpoint_H__ |
---|
| 38 | |
---|
[9112] | 39 | #include "towerdefense/TowerDefensePrereqs.h" |
---|
[9110] | 40 | |
---|
| 41 | #include <string> |
---|
| 42 | #include <util/Math.h> |
---|
| 43 | |
---|
[9175] | 44 | #include "worldentities/MobileEntity.h" |
---|
[9110] | 45 | |
---|
| 46 | namespace orxonox |
---|
| 47 | { |
---|
[9175] | 48 | class _TowerDefenseExport TowerDefenseCenterpoint : public MobileEntity |
---|
[9110] | 49 | { |
---|
| 50 | public: |
---|
[9667] | 51 | TowerDefenseCenterpoint(Context* context); |
---|
[9110] | 52 | virtual ~TowerDefenseCenterpoint() {} |
---|
| 53 | |
---|
[9141] | 54 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); |
---|
| 55 | virtual void changedGametype(); |
---|
[9272] | 56 | |
---|
[9110] | 57 | /** |
---|
[9141] | 58 | @brief The width and hight in number of tiles. Default is 15 for both. |
---|
[9110] | 59 | */ |
---|
| 60 | void setWidth(unsigned int width) |
---|
| 61 | { this->width_ = width; } |
---|
[9272] | 62 | unsigned int getWidth(void) const |
---|
[9110] | 63 | { return this->width_; } |
---|
| 64 | void setHeight(unsigned int height) |
---|
| 65 | { this->height_ = height; } |
---|
[9272] | 66 | unsigned int getHeight(void) const |
---|
[9110] | 67 | { return this->height_; } |
---|
[10452] | 68 | void setSelecterTemplate(const std::string& newTemplate) |
---|
| 69 | { this->selecterTemplate_ = newTemplate; } |
---|
| 70 | const std::string& getSelecterTemplate() const |
---|
| 71 | { return this->selecterTemplate_; } |
---|
[9110] | 72 | /** |
---|
[9272] | 73 | @brief How to convert to world coordinates, e.g. that 0,15 is not at -8,-8 but at -80,-80 (if scale would be 10) |
---|
| 74 | */ |
---|
| 75 | void setTileScale(unsigned int tileScale) |
---|
| 76 | { this->tileScale_ = tileScale; } |
---|
| 77 | |
---|
| 78 | unsigned int getTileScale(void) const |
---|
| 79 | { return this->tileScale_; } |
---|
| 80 | |
---|
[9110] | 81 | private: |
---|
[9141] | 82 | void checkGametype(); |
---|
[9272] | 83 | |
---|
[10452] | 84 | std::string selecterTemplate_; |
---|
[9110] | 85 | unsigned int width_; |
---|
| 86 | unsigned int height_; |
---|
[9272] | 87 | unsigned int tileScale_; |
---|
[9110] | 88 | }; |
---|
| 89 | } |
---|
| 90 | |
---|
| 91 | #endif /* _TowerDefenseCenterpoint_H__ */ |
---|