Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/physics/src/orxonox/objects/worldentities/StaticEntity.cc @ 2292

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

Finally managed to work out some physics. According to my tests, collisions with simple spheres should work with dynamic/kinematic/static objects. There are currently only a limited number of XML parameters, but we're surely going to extend that. Furthermore there is some more thinking to be done concerning changes of btRigidBody properties when it's already added to the world.

  • Property svn:eol-style set to native
  • Property svn:mergeinfo set to (toggle deleted branches)
    /code/branches/physics/src/orxonox/objects/worldentities/PositionableEntity.ccmergedeligible
    /code/branches/ceguilua/src/orxonox/objects/worldentities/PositionableEntity.cc1802-1808
    /code/branches/core3/src/orxonox/objects/worldentities/PositionableEntity.cc1572-1739
    /code/branches/gcc43/src/orxonox/objects/worldentities/PositionableEntity.cc1580
    /code/branches/gui/src/orxonox/objects/worldentities/PositionableEntity.cc1635-1723
    /code/branches/input/src/orxonox/objects/worldentities/PositionableEntity.cc1629-1636
    /code/branches/objecthierarchy/src/orxonox/objects/worldentities/PositionableEntity.cc1911-2085,​2100
    /code/branches/pickups/src/orxonox/objects/worldentities/PositionableEntity.cc1926-2086
    /code/branches/questsystem/src/orxonox/objects/worldentities/PositionableEntity.cc1894-2088
    /code/branches/script_trigger/src/orxonox/objects/worldentities/PositionableEntity.cc1295-1953,​1955
    /code/branches/weapon/src/orxonox/objects/worldentities/PositionableEntity.cc1925-2094
File size: 2.9 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 "OrxonoxStableHeaders.h"
30#include "StaticEntity.h"
31
32#include "util/Exception.h"
33#include "core/CoreIncludes.h"
34
35namespace orxonox
36{
37    CreateFactory(StaticEntity);
38
39    StaticEntity::StaticEntity(BaseObject* creator) : WorldEntity(creator)
40    {
41        RegisterObject(StaticEntity);
42
43        this->registerVariables();
44    }
45
46    StaticEntity::~StaticEntity()
47    {
48    }
49
50    void StaticEntity::registerVariables()
51    {
52        REGISTERDATA(this->getPosition().x, network::direction::toclient);
53        REGISTERDATA(this->getPosition().y, network::direction::toclient);
54        REGISTERDATA(this->getPosition().z, network::direction::toclient);
55
56        REGISTERDATA(this->getOrientation().w, network::direction::toclient);
57        REGISTERDATA(this->getOrientation().x, network::direction::toclient);
58        REGISTERDATA(this->getOrientation().y, network::direction::toclient);
59        REGISTERDATA(this->getOrientation().z, network::direction::toclient);
60    }
61
62    void StaticEntity::setCollisionType(CollisionType type)
63    {
64        if (!this->physicalBody_)
65            return;
66        if (type != Static)
67            ThrowException(Argument, "Cannot tell a StaticEntity to be kinematic or dynamic");
68
69        this->physicalBody_->setCollisionFlags(this->physicalBody_->getCollisionFlags() & !btCollisionObject::CF_KINEMATIC_OBJECT | btCollisionObject::CF_STATIC_OBJECT);
70    }
71
72    void StaticEntity::setWorldTransform(const btTransform& worldTrans)
73    {
74        OrxAssert(false, "Setting world transform of a StaticEntity, which is static!");
75        //COUT(0) << "Setting world transform of a StaticEntity, which is static!" << std::endl;
76    }
77
78    void StaticEntity::getWorldTransform(btTransform& worldTrans) const
79    {
80        worldTrans.setOrigin(btVector3(node_->getPosition().x, node_->getPosition().y, node_->getPosition().z));
81        worldTrans.setRotation(btQuaternion(node_->getOrientation().w, node_->getOrientation().x, node_->getOrientation().y, node_->getOrientation().z));
82    }
83}
Note: See TracBrowser for help on using the repository browser.