[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 |
---|
[2662] | 24 | * Reto Grieder |
---|
[2072] | 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" |
---|
[2896] | 36 | #include "core/GameMode.h" |
---|
[2072] | 37 | |
---|
| 38 | namespace orxonox |
---|
| 39 | { |
---|
| 40 | static const float MAX_RESYNCHRONIZE_TIME = 3.0f; |
---|
[2662] | 41 | static const float CONTINUOUS_SYNCHRONIZATION_TIME = 10.0f; |
---|
[2072] | 42 | |
---|
| 43 | CreateFactory(MovableEntity); |
---|
| 44 | |
---|
[2662] | 45 | MovableEntity::MovableEntity(BaseObject* creator) : MobileEntity(creator) |
---|
[2072] | 46 | { |
---|
| 47 | RegisterObject(MovableEntity); |
---|
| 48 | |
---|
[2662] | 49 | this->overwrite_position_ = Vector3::ZERO; |
---|
[2072] | 50 | this->overwrite_orientation_ = Quaternion::IDENTITY; |
---|
| 51 | |
---|
[2662] | 52 | this->continuousResynchroTimer_ = 0; |
---|
| 53 | |
---|
| 54 | this->setPriority(priority::low); |
---|
| 55 | |
---|
[2072] | 56 | this->registerVariables(); |
---|
| 57 | } |
---|
| 58 | |
---|
| 59 | MovableEntity::~MovableEntity() |
---|
| 60 | { |
---|
[2662] | 61 | if (this->isInitialized()) |
---|
| 62 | if (this->continuousResynchroTimer_) |
---|
| 63 | delete this->continuousResynchroTimer_; |
---|
[2072] | 64 | } |
---|
| 65 | |
---|
| 66 | void MovableEntity::XMLPort(Element& xmlelement, XMLPort::Mode mode) |
---|
| 67 | { |
---|
| 68 | SUPER(MovableEntity, XMLPort, xmlelement, mode); |
---|
| 69 | } |
---|
| 70 | |
---|
| 71 | void MovableEntity::registerVariables() |
---|
| 72 | { |
---|
[2662] | 73 | registerVariable(this->linearVelocity_, variableDirection::toclient, new NetworkCallback<MovableEntity>(this, &MovableEntity::processLinearVelocity)); |
---|
| 74 | registerVariable(this->angularVelocity_, variableDirection::toclient, new NetworkCallback<MovableEntity>(this, &MovableEntity::processAngularVelocity)); |
---|
[2072] | 75 | |
---|
[2662] | 76 | registerVariable(this->overwrite_position_, variableDirection::toclient, new NetworkCallback<MovableEntity>(this, &MovableEntity::overwritePosition)); |
---|
| 77 | registerVariable(this->overwrite_orientation_, variableDirection::toclient, new NetworkCallback<MovableEntity>(this, &MovableEntity::overwriteOrientation)); |
---|
[2072] | 78 | } |
---|
| 79 | |
---|
| 80 | void MovableEntity::clientConnected(unsigned int clientID) |
---|
| 81 | { |
---|
[2662] | 82 | this->resynchronizeTimer_.setTimer(rnd() * MAX_RESYNCHRONIZE_TIME, false, this, createExecutor(createFunctor(&MovableEntity::resynchronize))); |
---|
[2072] | 83 | } |
---|
| 84 | |
---|
| 85 | void MovableEntity::clientDisconnected(unsigned int clientID) |
---|
| 86 | { |
---|
| 87 | } |
---|
| 88 | |
---|
| 89 | void MovableEntity::resynchronize() |
---|
| 90 | { |
---|
[2896] | 91 | if (GameMode::isMaster() && !this->continuousResynchroTimer_) |
---|
[2662] | 92 | { |
---|
| 93 | // Resynchronise every few seconds because we only work with velocities (no positions) |
---|
| 94 | continuousResynchroTimer_ = new Timer<MovableEntity>(CONTINUOUS_SYNCHRONIZATION_TIME + rnd(-1, 1), |
---|
| 95 | true, this, createExecutor(createFunctor(&MovableEntity::resynchronize)), false); |
---|
| 96 | } |
---|
| 97 | |
---|
[2072] | 98 | this->overwrite_position_ = this->getPosition(); |
---|
| 99 | this->overwrite_orientation_ = this->getOrientation(); |
---|
| 100 | } |
---|
| 101 | } |
---|