Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/particles2/src/orxonox/infos/PlayerInfo.cc @ 6082

Last change on this file since 6082 was 6082, checked in by scheusso, 15 years ago

some fixes in Rocket
there are two new function ins PlayerInfo: startTemporaryControl and stopTemporaryControl which expand start/stop-Control but without removing the player from the currently controlled controllable entity

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