Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/objects/infos/PlayerInfo.cc @ 3012

Last change on this file since 3012 was 2973, checked in by landauf, 15 years ago

changed type of gametype-HUD and default-HUD to PlayerInfo (instead of Gametype and ControllableEntity respectively). The owner of the Pawn-HUD remains Pawn.

  • Property svn:eol-style set to native
File size: 6.4 KB
RevLine 
[2072]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#include <cassert>
30
31#include "OrxonoxStableHeaders.h"
32#include "PlayerInfo.h"
33
34#include "core/CoreIncludes.h"
35#include "network/ClientInformation.h"
36#include "objects/gametypes/Gametype.h"
37
38namespace orxonox
39{
40    PlayerInfo::PlayerInfo(BaseObject* creator) : Info(creator)
41    {
42        RegisterObject(PlayerInfo);
43
[2171]44        this->clientID_ = CLIENTID_UNKNOWN;
[2072]45        this->bHumanPlayer_ = false;
46        this->bLocalPlayer_ = false;
47        this->bReadyToSpawn_ = false;
[2662]48        this->bSetUnreadyAfterSpawn_ = true;
[2072]49        this->controller_ = 0;
50        this->controllableEntity_ = 0;
[2171]51        this->controllableEntityID_ = CLIENTID_UNKNOWN;
[2072]52
[2973]53        this->gtinfo_ = 0;
54        this->gtinfoID_ = OBJECTID_UNKNOWN;
55        this->updateGametypeInfo();
56
[2072]57        this->registerVariables();
58    }
59
60    PlayerInfo::~PlayerInfo()
61    {
[2171]62        if (this->BaseObject::isInitialized())
[2072]63        {
64            this->stopControl(this->controllableEntity_);
65
66            if (this->controller_)
67            {
68                delete this->controller_;
69                this->controller_ = 0;
70            }
[2662]71
72            if (this->getGametype())
73                this->getGametype()->playerLeft(this);
[2072]74        }
75    }
76
77    void PlayerInfo::registerVariables()
78    {
[2662]79        registerVariable(this->name_,                 variableDirection::toclient, new NetworkCallback<PlayerInfo>(this, &PlayerInfo::changedName));
80        registerVariable(this->controllableEntityID_, variableDirection::toclient, new NetworkCallback<PlayerInfo>(this, &PlayerInfo::networkcallback_changedcontrollableentityID));
81        registerVariable(this->bReadyToSpawn_,        variableDirection::toserver);
[2973]82        registerVariable(this->gtinfoID_,             variableDirection::toclient, new NetworkCallback<PlayerInfo>(this, &PlayerInfo::networkcallback_changedgtinfoID));
[2072]83    }
84
85    void PlayerInfo::changedName()
86    {
[2662]87        SUPER(PlayerInfo, changedName);
88
[2171]89        if (this->isInitialized() && this->getGametype())
[2072]90            this->getGametype()->playerChangedName(this);
91    }
92
93    void PlayerInfo::changedGametype()
94    {
[2973]95        this->updateGametypeInfo();
96
[2171]97        if (this->isInitialized())
[2072]98        {
99            if (this->getOldGametype())
100            {
101                if (this->getGametype())
102                    this->getOldGametype()->playerSwitched(this, this->getGametype());
103                else
104                    this->getOldGametype()->playerLeft(this);
105            }
106
107            if (this->getGametype())
108            {
109                if (this->getOldGametype())
110                    this->getGametype()->playerSwitchedBack(this, this->getOldGametype());
111                else
112                    this->getGametype()->playerEntered(this);
113            }
114        }
115    }
116
[2973]117    void PlayerInfo::updateGametypeInfo()
118    {
119        this->gtinfo_ = 0;
120        this->gtinfoID_ = OBJECTID_UNKNOWN;
121
122        if (this->getGametype() && this->getGametype()->getGametypeInfo())
123        {
124            this->gtinfo_ = this->getGametype()->getGametypeInfo();
125            this->gtinfoID_ = this->gtinfo_->getObjectID();
126        }
127    }
128
[2072]129    void PlayerInfo::createController()
130    {
[2839]131        if (this->controller_)
132        {
133            delete this->controller_;
134            this->controller_ = 0;
135        }
[2072]136        this->controller_ = this->defaultController_.fabricate(this);
137        assert(this->controller_);
138        this->controller_->setPlayer(this);
139        if (this->controllableEntity_)
140            this->controller_->setControllableEntity(this->controllableEntity_);
[2662]141        this->changedController();
[2072]142    }
143
[2662]144    void PlayerInfo::startControl(ControllableEntity* entity, bool callback)
[2072]145    {
[2662]146        if (entity == this->controllableEntity_)
147            return;
148
[2072]149        if (this->controllableEntity_)
[2662]150            this->stopControl(this->controllableEntity_, callback);
[2072]151
152        this->controllableEntity_ = entity;
153
154        if (entity)
155        {
156            this->controllableEntityID_ = entity->getObjectID();
157            entity->setPlayer(this);
[2662]158            this->bReadyToSpawn_ &= (!this->bSetUnreadyAfterSpawn_);
[2072]159        }
160        else
161        {
[2171]162            this->controllableEntityID_ = OBJECTID_UNKNOWN;
[2072]163        }
164
165        if (this->controller_)
166            this->controller_->setControllableEntity(entity);
[2826]167
168        this->changedControllableEntity();
[2072]169    }
170
171    void PlayerInfo::stopControl(ControllableEntity* entity, bool callback)
172    {
173        if (entity && this->controllableEntity_ == entity)
174        {
175            this->controllableEntity_ = 0;
[2171]176            this->controllableEntityID_ = OBJECTID_UNKNOWN;
[2072]177
178            if (this->controller_)
179                this->controller_->setControllableEntity(0);
180
181            if (callback)
182                entity->removePlayer();
[2826]183
184            this->changedControllableEntity();
[2072]185        }
186    }
187
188    void PlayerInfo::networkcallback_changedcontrollableentityID()
189    {
[2171]190        if (this->controllableEntityID_ != OBJECTID_UNKNOWN)
[2072]191        {
192            Synchronisable* temp = Synchronisable::getSynchronisable(this->controllableEntityID_);
193            ControllableEntity* entity = dynamic_cast<ControllableEntity*>(temp);
194
195            this->startControl(entity);
196        }
197        else
198        {
199            this->stopControl(this->controllableEntity_);
200        }
201    }
[2973]202
203    void PlayerInfo::networkcallback_changedgtinfoID()
204    {
205        if (this->gtinfoID_ != OBJECTID_UNKNOWN)
206        {
207            this->gtinfo_ = dynamic_cast<GametypeInfo*>(Synchronisable::getSynchronisable(this->gtinfoID_));
208
209            if (!this->gtinfo_)
210                this->gtinfoID_ = OBJECTID_UNKNOWN;
211        }
212    }
[2072]213}
Note: See TracBrowser for help on using the repository browser.