[8137] | 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 | * Sven Stucki |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | /** |
---|
| 30 | @file Dock.h |
---|
| 31 | @brief Definition of Dock class |
---|
| 32 | @ingroup Docking |
---|
| 33 | */ |
---|
| 34 | |
---|
| 35 | #ifndef _Dock_H__ |
---|
| 36 | #define _Dock_H__ |
---|
| 37 | |
---|
[8383] | 38 | #include <set> |
---|
[8382] | 39 | |
---|
[8140] | 40 | #include "core/CoreIncludes.h" |
---|
| 41 | #include "core/XMLPort.h" |
---|
| 42 | #include "core/EventIncludes.h" |
---|
| 43 | |
---|
| 44 | #include "worldentities/StaticEntity.h" |
---|
[8434] | 45 | #include "controllers/HumanController.h" |
---|
[8382] | 46 | |
---|
[8151] | 47 | #include "DockingEffect.h" |
---|
[8493] | 48 | #include "DockingAnimation.h" |
---|
[8137] | 49 | #include "DockingPrereqs.h" |
---|
| 50 | |
---|
[8434] | 51 | namespace orxonox // tolua_export |
---|
| 52 | { // tolua_export |
---|
[8137] | 53 | |
---|
[8434] | 54 | class _DockingExport Dock // tolua_export |
---|
| 55 | : public StaticEntity |
---|
| 56 | { // tolua_export |
---|
[8700] | 57 | public: |
---|
| 58 | Dock(BaseObject* creator); |
---|
| 59 | virtual ~Dock(); |
---|
[8137] | 60 | |
---|
[8700] | 61 | // Trigger interface |
---|
| 62 | bool execute(bool bTriggered, BaseObject* trigger); |
---|
[8493] | 63 | |
---|
[8700] | 64 | // XML interface |
---|
| 65 | virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); |
---|
| 66 | virtual void XMLEventPort(Element& xmlelement, XMLPort::Mode mode); |
---|
[8137] | 67 | |
---|
[8700] | 68 | // XML functions |
---|
| 69 | bool addEffect(DockingEffect* effect); //!< Add a DockingEffect to the Dock. |
---|
| 70 | const DockingEffect* getEffect(unsigned int index) const; //!< Get the DockingEffect at a given index. |
---|
| 71 | bool addAnimation(DockingAnimation* animation); //!< Add a DockingAnimation to the Dock. |
---|
| 72 | const DockingAnimation* getAnimation(unsigned int index) const; //!< Get the DockingAnimation at a given index. |
---|
[8137] | 73 | |
---|
[8700] | 74 | // Docking/undocking logic, checks conditions and invokes the DockingAnimations |
---|
| 75 | bool dock(PlayerInfo* player); //!< Returns true if given player docked successfully (player must be a candidate) |
---|
| 76 | bool undock(PlayerInfo* player); //!< Undocks a player (player must be docked) |
---|
[8382] | 77 | |
---|
[8700] | 78 | // Animation logic |
---|
| 79 | bool dockingAnimationFinished(PlayerInfo* player); //!< Called when a docking animation finished |
---|
| 80 | bool undockingAnimationFinished(PlayerInfo* player); //!< Called when a undocking animation finished |
---|
[8493] | 81 | |
---|
[8700] | 82 | // LUA interface |
---|
| 83 | // tolua_begin |
---|
| 84 | void dock() |
---|
| 85 | { this->dock(HumanController::getLocalControllerSingleton()->getPlayer()); } |
---|
| 86 | static unsigned int getNumberOfActiveDocks(); |
---|
| 87 | static Dock* getActiveDockAtIndex(unsigned int index); |
---|
| 88 | // tolua_end |
---|
[8434] | 89 | |
---|
[8700] | 90 | // Console commands |
---|
| 91 | static void cmdDock(); |
---|
| 92 | static void cmdUndock(); |
---|
[8382] | 93 | |
---|
[8700] | 94 | private: |
---|
| 95 | std::set<PlayerInfo*> candidates_; //!< A set of all players which are allowed to dock using the console command. |
---|
| 96 | std::set<PlayerInfo*> docked_; //!< A set of all docked players |
---|
[8493] | 97 | |
---|
[8700] | 98 | std::list<DockingEffect*> effects_; //!< The list of DockingEffects to be executed when a player docks. |
---|
| 99 | std::list<DockingAnimation*> animations_; //!< The list of DockingAnimations to be executed before a player docks |
---|
[8434] | 100 | }; // tolua_export |
---|
| 101 | } // tolua_export |
---|
[8137] | 102 | |
---|
| 103 | #endif /* _Dock_H__ */ |
---|