Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/dockingsystem2/src/modules/docking/Dock.h @ 8434

Last change on this file since 8434 was 8434, checked in by sven, 13 years ago

Added simple GUI for docking..

File size: 2.8 KB
RevLine 
[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"
[8137]48#include "DockingPrereqs.h"
49
[8434]50namespace orxonox // tolua_export
51{  // tolua_export
[8137]52
[8434]53    class _DockingExport Dock  // tolua_export
54        : public StaticEntity
55    { // tolua_export
[8185]56    public:
57        Dock(BaseObject* creator);
[8137]58        virtual ~Dock();
59
60        virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
61        virtual void XMLEventPort(Element& xmlelement, XMLPort::Mode mode);
62
63        bool execute(bool bTriggered, BaseObject* trigger);
[8151]64
65        bool addEffect(DockingEffect* effect); //!< Add a DockingEffect to the Dock.
66        const DockingEffect* getEffect(unsigned int index) const; //!< Get the DockingEffect at a given index.
[8137]67
[8382]68        bool dock(PlayerInfo* player); //!< Returns true if given player docked successfully (player must be a candidate)
69        bool undock(PlayerInfo* player); //!< Undocks a player (player must be docked)
70
[8434]71        void dock() { this->dock(HumanController::getLocalControllerSingleton()->getPlayer()); } // tolua_export
72        static unsigned int getNumberOfActiveDocks(); // tolua_export
73        static Dock* getActiveDockAtIndex(unsigned int index); // tolua_export
74
[8382]75        static void cmdDock();
76        static void cmdUndock();
77
[8185]78    private:
[8382]79        std::set<PlayerInfo*> candidates; //!< A set of all players which are allowed to dock using the console command.
80        std::set<PlayerInfo*> docked; //!< A set of all docked players
81        std::list<DockingEffect*> effects; //!< The list of DockingEffects to be executed when a player docks.
[8434]82    }; // tolua_export
83} // tolua_export
[8137]84
85#endif /* _Dock_H__ */
Note: See TracBrowser for help on using the repository browser.