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