Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/infos/PlayerInfo.h @ 5781

Last change on this file since 5781 was 5781, checked in by rgrieder, 15 years ago

Reverted trunk again. We might want to find a way to delete these revisions again (x3n's changes are still available as diff in the commit mails).

  • Property svn:eol-style set to native
File size: 3.2 KB
Line 
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#ifndef _PlayerInfo_H__
30#define _PlayerInfo_H__
31
32#include "OrxonoxPrereqs.h"
33
34#include "Info.h"
35#include "core/Identifier.h"
36#include "controllers/Controller.h"
37
38namespace orxonox
39{
40    class _OrxonoxExport PlayerInfo : public Info
41    {
42        public:
43            PlayerInfo(BaseObject* creator);
44            virtual ~PlayerInfo();
45
46            void registerVariables();
47
48            virtual void changedName();
49            virtual void changedGametype();
50
51            virtual void changedController() {}
52            virtual void changedControllableEntity() {}
53
54            inline bool isHumanPlayer() const
55                { return this->bHumanPlayer_; }
56            inline bool isLocalPlayer() const
57                { return this->bLocalPlayer_; }
58            inline unsigned int getClientID() const
59                { return this->clientID_; }
60
61            virtual bool isInitialized() const = 0;
62            virtual float getPing() const = 0;
63            virtual float getPacketLossRatio() const = 0;
64
65            inline void setReadyToSpawn(bool bReady)
66                { this->bReadyToSpawn_ = bReady; }
67            inline bool isReadyToSpawn() const
68                { return this->bReadyToSpawn_; }
69
70            void startControl(ControllableEntity* entity);
71            void stopControl();
72
73            inline ControllableEntity* getControllableEntity() const
74                { return this->controllableEntity_; }
75
76            inline Controller* getController() const
77                { return this->controller_; }
78
79            inline const GametypeInfo* getGametypeInfo() const
80                { return this->gtinfo_; }
81
82        protected:
83            void createController();
84
85            bool bHumanPlayer_;
86            bool bLocalPlayer_;
87            bool bSetUnreadyAfterSpawn_;
88            SubclassIdentifier<Controller> defaultController_;
89            unsigned int clientID_;
90
91        private:
92            void networkcallback_changedcontrollableentityID();
93            void networkcallback_changedgtinfoID();
94            void updateGametypeInfo();
95
96            bool bReadyToSpawn_;
97            Controller* controller_;
98            ControllableEntity* controllableEntity_;
99            unsigned int controllableEntityID_;
100
101            const GametypeInfo* gtinfo_;
102            unsigned int gtinfoID_;
103    };
104}
105
106#endif /* _PlayerInfo_H__ */
Note: See TracBrowser for help on using the repository browser.