Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Merged pch branch back to trunk.

  • Property svn:eol-style set to native
File size: 6.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#include <cassert>
30
31#include "PlayerInfo.h"
32
33#include "core/CoreIncludes.h"
34#include "network/ClientInformation.h"
35#include "objects/gametypes/Gametype.h"
36#include "objects/worldentities/ControllableEntity.h"
37
38namespace orxonox
39{
40    PlayerInfo::PlayerInfo(BaseObject* creator) : Info(creator)
41    {
42        RegisterObject(PlayerInfo);
43
44        this->clientID_ = CLIENTID_UNKNOWN;
45        this->bHumanPlayer_ = false;
46        this->bLocalPlayer_ = false;
47        this->bReadyToSpawn_ = false;
48        this->bSetUnreadyAfterSpawn_ = true;
49        this->controller_ = 0;
50        this->controllableEntity_ = 0;
51        this->controllableEntityID_ = CLIENTID_UNKNOWN;
52
53        this->gtinfo_ = 0;
54        this->gtinfoID_ = OBJECTID_UNKNOWN;
55        this->updateGametypeInfo();
56
57        this->registerVariables();
58    }
59
60    PlayerInfo::~PlayerInfo()
61    {
62        if (this->BaseObject::isInitialized())
63        {
64            this->stopControl();
65
66            if (this->controller_)
67            {
68                delete this->controller_;
69                this->controller_ = 0;
70            }
71
72            if (this->getGametype())
73                this->getGametype()->playerLeft(this);
74        }
75    }
76
77    void PlayerInfo::registerVariables()
78    {
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);
82        registerVariable(this->gtinfoID_,             variableDirection::toclient, new NetworkCallback<PlayerInfo>(this, &PlayerInfo::networkcallback_changedgtinfoID));
83    }
84
85    void PlayerInfo::changedName()
86    {
87        SUPER(PlayerInfo, changedName);
88
89        if (this->isInitialized() && this->getGametype())
90            this->getGametype()->playerChangedName(this);
91    }
92
93    void PlayerInfo::changedGametype()
94    {
95        this->updateGametypeInfo();
96
97        if (this->isInitialized())
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
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
129    void PlayerInfo::createController()
130    {
131        if (this->controller_)
132        {
133            delete this->controller_;
134            this->controller_ = 0;
135        }
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_);
141        this->changedController();
142    }
143
144    void PlayerInfo::startControl(ControllableEntity* entity)
145    {
146        if (!entity || entity == this->controllableEntity_)
147            return;
148
149        if (this->controllableEntity_)
150            this->stopControl();
151
152        this->controllableEntity_ = entity;
153        this->controllableEntityID_ = entity->getObjectID();
154
155        entity->setPlayer(this);
156
157        this->bReadyToSpawn_ &= (!this->bSetUnreadyAfterSpawn_);
158
159        if (this->controller_)
160            this->controller_->setControllableEntity(entity);
161
162        this->changedControllableEntity();
163    }
164
165    void PlayerInfo::stopControl()
166    {
167        ControllableEntity* entity = this->controllableEntity_;
168
169        if (!entity)
170            return;
171
172        this->controllableEntity_ = 0;
173        this->controllableEntityID_ = OBJECTID_UNKNOWN;
174
175        if (this->controller_)
176            this->controller_->setControllableEntity(0);
177
178        entity->removePlayer();
179
180        this->changedControllableEntity();
181    }
182
183    void PlayerInfo::networkcallback_changedcontrollableentityID()
184    {
185        if (this->controllableEntityID_ != OBJECTID_UNKNOWN)
186        {
187            Synchronisable* temp = Synchronisable::getSynchronisable(this->controllableEntityID_);
188            ControllableEntity* entity = dynamic_cast<ControllableEntity*>(temp);
189            this->startControl(entity);
190        }
191        else
192        {
193            this->stopControl();
194        }
195    }
196
197    void PlayerInfo::networkcallback_changedgtinfoID()
198    {
199        if (this->gtinfoID_ != OBJECTID_UNKNOWN)
200        {
201            this->gtinfo_ = dynamic_cast<GametypeInfo*>(Synchronisable::getSynchronisable(this->gtinfoID_));
202
203            if (!this->gtinfo_)
204                this->gtinfoID_ = OBJECTID_UNKNOWN;
205        }
206    }
207}
Note: See TracBrowser for help on using the repository browser.