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 | * Fabian 'x3n' Landau |
---|
24 | * Co-authors: |
---|
25 | * ... |
---|
26 | * |
---|
27 | */ |
---|
28 | |
---|
29 | /** |
---|
30 | @file OrxoBloxCenterpoint.cc |
---|
31 | @brief Implementation of the OrxoBloxCenterpoint class. |
---|
32 | */ |
---|
33 | |
---|
34 | #include "OrxoBloxCenterpoint.h" |
---|
35 | |
---|
36 | #include "core/CoreIncludes.h" |
---|
37 | #include "core/XMLPort.h" |
---|
38 | |
---|
39 | #include "OrxoBlox.h" |
---|
40 | |
---|
41 | namespace orxonox |
---|
42 | { |
---|
43 | RegisterClass(OrxoBloxCenterpoint); |
---|
44 | |
---|
45 | /** |
---|
46 | @brief |
---|
47 | Constructor. Registers and initializes the object and checks whether the gametype is actually OrxoBlox. |
---|
48 | */ |
---|
49 | OrxoBloxCenterpoint::OrxoBloxCenterpoint(Context* context) : StaticEntity(context) |
---|
50 | { |
---|
51 | RegisterObject(OrxoBloxCenterpoint); |
---|
52 | |
---|
53 | this->width_ = 200; |
---|
54 | this->height_ = 120; |
---|
55 | this->ballspeed_ = 100; |
---|
56 | this->ballaccfactor_ = 1.0; |
---|
57 | this->batspeed_ = 60; |
---|
58 | this->batlength_ = 0.25; |
---|
59 | |
---|
60 | this->checkGametype(); |
---|
61 | } |
---|
62 | |
---|
63 | /** |
---|
64 | @brief |
---|
65 | Method to create a OrxoBloxCenterpoint through XML. |
---|
66 | */ |
---|
67 | void OrxoBloxCenterpoint::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
68 | { |
---|
69 | SUPER(OrxoBloxCenterpoint, XMLPort, xmlelement, mode); |
---|
70 | |
---|
71 | XMLPortParam(OrxoBloxCenterpoint, "dimension", setFieldDimension, getFieldDimension, xmlelement, mode); |
---|
72 | XMLPortParam(OrxoBloxCenterpoint, "balltemplate", setBalltemplate, getBalltemplate, xmlelement, mode); |
---|
73 | XMLPortParam(OrxoBloxCenterpoint, "battemplate", setBattemplate, getBattemplate, xmlelement, mode); |
---|
74 | XMLPortParam(OrxoBloxCenterpoint, "ballspeed", setBallSpeed, getBallSpeed, xmlelement, mode); |
---|
75 | XMLPortParam(OrxoBloxCenterpoint, "ballaccfactor", setBallAccelerationFactor, getBallAccelerationFactor, xmlelement, mode); |
---|
76 | XMLPortParam(OrxoBloxCenterpoint, "batspeed", setBatSpeed, getBatSpeed, xmlelement, mode); |
---|
77 | XMLPortParam(OrxoBloxCenterpoint, "batlength", setBatLength, getBatLength, xmlelement, mode); |
---|
78 | } |
---|
79 | |
---|
80 | /** |
---|
81 | @brief |
---|
82 | Checks whether the gametype is OrxoBlox and if it is, sets its centerpoint. |
---|
83 | */ |
---|
84 | void OrxoBloxCenterpoint::checkGametype() |
---|
85 | { |
---|
86 | if (this->getGametype() != nullptr && this->getGametype()->isA(Class(OrxoBlox))) |
---|
87 | { |
---|
88 | OrxoBlox* OrxoBloxGametype = orxonox_cast<OrxoBlox*>(this->getGametype()); |
---|
89 | OrxoBloxGametype->setCenterpoint(this); |
---|
90 | } |
---|
91 | } |
---|
92 | } |
---|