Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/map/src/orxonox/objects/RadarViewable.cc @ 3090

Last change on this file since 3090 was 3090, checked in by Naaduun, 15 years ago

Fixed einige Bugs bei Zerstörung der Map

  • Property svn:eol-style set to native
File size: 5.1 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 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29#include "OrxonoxStableHeaders.h"
30#include "RadarViewable.h"
31
32#include "util/Debug.h"
33#include "util/Exception.h"
34#include "core/CoreIncludes.h"
35#include "objects/worldentities/WorldEntity.h"
36#include "objects/Radar.h"
37#include "util/String.h"
38#include <OgreManualObject.h>
39#include "overlays/map/Map.h"
40#include "orxonox/tools/DynamicLines.h"
41
42namespace orxonox
43{
44    /**
45        @brief Constructor.
46    */
47    RadarViewable::RadarViewable()
48        : radarObjectCamouflage_(0.0f)
49        , radarObjectShape_(Dot)
50        , radarObjectDescription_("staticObject")
51        , MapNode_(NULL)
52        , MapEntity_(NULL)
53        , line_(NULL)
54        , isHumanShip_(false)
55    {
56        RegisterRootObject(RadarViewable);
57
58        this->uniqueId_=getUniqueNumberString();
59/*
60        if(Map::getSingletonPtr() && Map::getSingletonPtr()->getMapSceneManagerPtr())
61        {
62            this->addEntity();
63        }
64
65        */
66    }
67
68
69    RadarViewable::~RadarViewable()
70    {
71        if(this->isHumanShip_)
72            MapNode_->removeAllChildren();
73        delete MapNode_;
74        delete MapEntity_;
75        delete line_;
76        delete LineNode_;
77    }
78
79    void RadarViewable::addMapEntity()
80    { //TODO Check shape and add accordantly
81        if( this->MapNode_ && !this->MapEntity_ && Map::getSingletonPtr() && Map::getSingletonPtr()->getMapSceneManagerPtr() )
82        {
83            COUT(0) << "Adding " << this->uniqueId_ << " to Map.\n";
84            this->MapEntity_ = Map::getSingletonPtr()->getMapSceneManagerPtr()->createEntity( this->uniqueId_, "drone.mesh");
85            /*this->line_ =  Map::getSingletonPtr()->getMapSceneManagerPtr()->createManualObject(this->uniqueId_ + "_l");
86            this->line_->begin("Map/line_", Ogre::RenderOperation::OT_LINE_STRIP);
87            //line_->position(0, -it->getRVWorldPosition().y, 0);
88            //this->line_->position(0, -20, 0);
89            this->line_->position(0, 0, -10); //Front Arrow
90            this->line_->position(0, 0, 0);
91
92            this->line_->end(); */
93            this->line_ = new DynamicLines(Ogre::RenderOperation::OT_LINE_LIST);
94            this->line_->addPoint( Vector3(0,0,0) );
95            this->line_->addPoint( Vector3(0,0,0) );
96
97            this->MapNode_->attachObject( this->MapEntity_ );
98
99            this->LineNode_ = this->MapNode_->createChildSceneNode();
100            this->LineNode_->attachObject( this->line_ );
101        }
102        else
103        {
104            COUT(0) << "Unable to load " << this->uniqueId_ << " to Map.\n";
105        }
106    }
107
108    void RadarViewable::updateMapPosition()
109    {
110        if( this->MapNode_ )
111        {
112            this->MapNode_->setPosition( this->getRVWorldPosition() );
113            this->MapNode_->translate( this->getRVOrientedVelocity(), (Ogre::Node::TransformSpace)3 );
114            this->MapNode_->setOrientation( this->getWorldEntity()->getOrientation() );
115//Vector3 v = this->getRVWorldPosition();
116            //this->line_->setPoint(1, Vector3(0,v.y,0) );
117            this->line_->setPoint(1, Vector3( 0, (int) -Map::getSingletonPtr()->movablePlane_->getDistance( this->getRVWorldPosition() ) ,0 ));
118            this->line_->update();
119            if( Map::getSingletonPtr()->playerShipNode_ )
120                this->LineNode_->setDirection( Map::getSingletonPtr()->playerShipNode_->getLocalAxes().GetColumn(1) ,Ogre::Node::TS_WORLD,Vector3::UNIT_Y);
121        }
122    }
123
124    void RadarViewable::setRadarObjectDescription(const std::string& str)
125    {
126        Radar* radar = Radar::getInstancePtr();
127        if (radar)
128            this->radarObjectShape_ = radar->addObjectDescription(str);
129        else
130        {
131            CCOUT(2) << "Attempting to access the radar, but the radar is non existent." << std::endl;
132        }
133        this->radarObjectDescription_ = str;
134    }
135
136    const Vector3& RadarViewable::getRVWorldPosition() const
137    {
138        const WorldEntity* object = this->getWorldEntity();
139        validate(object);
140        return object->getWorldPosition();
141    }
142
143    Vector3 RadarViewable::getRVOrientedVelocity() const
144    {
145        const WorldEntity* object = this->getWorldEntity();
146        validate(object);
147        return object->getWorldOrientation() * object->getVelocity();
148    }
149}
Note: See TracBrowser for help on using the repository browser.