Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/gametypes/src/orxonox/objects/worldentities/MovableEntity.cc @ 2986

Last change on this file since 2986 was 2986, checked in by Aurelian, 15 years ago

Respawning changed, not possible anymore, not completely working. Movable Entity is now able to cause damage.

  • Property svn:eol-style set to native
File size: 4.3 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 *      Reto Grieder
25 *   Co-authors:
26 *      ...
27 *
28 */
29
30#include "OrxonoxStableHeaders.h"
31#include "MovableEntity.h"
32
33#include "core/CoreIncludes.h"
34#include "core/XMLPort.h"
35#include "core/Executor.h"
36#include "core/Core.h"
37#include "objects/worldentities/pawns/Pawn.h"
38
39namespace orxonox
40{
41    static const float MAX_RESYNCHRONIZE_TIME = 3.0f;
42    static const float CONTINUOUS_SYNCHRONIZATION_TIME = 10.0f;
43
44    CreateFactory(MovableEntity);
45
46    MovableEntity::MovableEntity(BaseObject* creator) : MobileEntity(creator)
47    {
48        RegisterObject(MovableEntity);
49
50        this->overwrite_position_    = Vector3::ZERO;
51        this->overwrite_orientation_ = Quaternion::IDENTITY;
52
53        this->continuousResynchroTimer_ = 0;
54
55        this->setPriority(priority::low);
56
57        this->registerVariables();
58    }
59
60    MovableEntity::~MovableEntity()
61    {
62        if (this->isInitialized())
63            if (this->continuousResynchroTimer_)
64                delete this->continuousResynchroTimer_;
65    }
66
67    void MovableEntity::XMLPort(Element& xmlelement, XMLPort::Mode mode)
68    {
69        SUPER(MovableEntity, XMLPort, xmlelement, mode);
70
71        XMLPortParam(MovableEntity, "enablecollisiondamage", setEnableCollisionDamage, getEnableCollisionDamage, xmlelement, mode).defaultValues(false);
72        XMLPortParam(MovableEntity, "collisiondamage", setCollisionDamage, getCollisionDamage, xmlelement, mode).defaultValues(1);
73    }
74
75    bool MovableEntity::collidesAgainst(WorldEntity* otherObject, btManifoldPoint& contactPoint)
76    {
77            if (Core::isMaster() && enableCollisionDamage_)
78            {
79                Pawn* victim = dynamic_cast<Pawn*>(otherObject);
80                if (victim)
81                {
82COUT(0) << "colission";
83                   
84                    victim->damage(this->collisionDamage_ * victim->getVelocity().dotProduct(this->getVelocity()));
85}
86            }
87
88        return false;
89    }
90
91
92    void MovableEntity::registerVariables()
93    {
94        registerVariable(this->linearVelocity_,        variableDirection::toclient, new NetworkCallback<MovableEntity>(this, &MovableEntity::processLinearVelocity));
95        registerVariable(this->angularVelocity_,       variableDirection::toclient, new NetworkCallback<MovableEntity>(this, &MovableEntity::processAngularVelocity));
96
97        registerVariable(this->overwrite_position_,    variableDirection::toclient, new NetworkCallback<MovableEntity>(this, &MovableEntity::overwritePosition));
98        registerVariable(this->overwrite_orientation_, variableDirection::toclient, new NetworkCallback<MovableEntity>(this, &MovableEntity::overwriteOrientation));
99    }
100
101    void MovableEntity::clientConnected(unsigned int clientID)
102    {
103        this->resynchronizeTimer_.setTimer(rnd() * MAX_RESYNCHRONIZE_TIME, false, this, createExecutor(createFunctor(&MovableEntity::resynchronize)));
104    }
105
106    void MovableEntity::clientDisconnected(unsigned int clientID)
107    {
108    }
109
110    void MovableEntity::resynchronize()
111    {
112        if (Core::isMaster() && !this->continuousResynchroTimer_)
113        {
114            // Resynchronise every few seconds because we only work with velocities (no positions)
115            continuousResynchroTimer_ = new Timer<MovableEntity>(CONTINUOUS_SYNCHRONIZATION_TIME + rnd(-1, 1),
116                true, this, createExecutor(createFunctor(&MovableEntity::resynchronize)), false);
117        }
118
119        this->overwrite_position_ = this->getPosition();
120        this->overwrite_orientation_ = this->getOrientation();
121    }
122}
Note: See TracBrowser for help on using the repository browser.