Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3082


Ignore:
Timestamp:
May 26, 2009, 7:29:40 PM (15 years ago)
Author:
Naaduun
Message:

Map fixed: Leitlinien zur Anzeige der Höhe

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/map/src/orxonox/overlays/map/Map.cc

    r2977 r3082  
    6666    SetConsoleCommand(Map, Zoom, true).setAsInputCommand();
    6767
     68
    6869    Map* Map::singletonMap_s = 0;
    6970    Ogre::SceneManager* Map::mapSceneM_s = 0;
     
    158159        pOverlay->show();
    159160*/
    160         overlay_ = Ogre::OverlayManager::getSingleton().create("MapOverlay");
     161        this->overlay_ = Ogre::OverlayManager::getSingletonPtr()->create("MapOverlay");
    161162        Ogre::OverlayContainer* m_pOverlayPanel = static_cast<Ogre::OverlayContainer*>(Ogre::OverlayManager::getSingleton().createOverlayElement("Panel","OverlayPanelName%d"));
    162163        m_pOverlayPanel->setMetricsMode(Ogre::GMM_PIXELS);
    163164        m_pOverlayPanel->setPosition(10, 10);
    164         m_pOverlayPanel->setDimensions(500, 300);
     165        m_pOverlayPanel->setDimensions(600, 400);
    165166        // Give overlay a texture
    166167        m_pOverlayPanel->setMaterialName(camMat_id);
    167168        overlay_->add2D(m_pOverlayPanel);
     169
     170        //Add Borders
     171        Ogre::BorderPanelOverlayElement* oBorder = static_cast<Ogre::BorderPanelOverlayElement*>(Ogre::OverlayManager::getSingletonPtr()->createOverlayElement("BorderPanel", "MapBorderPanel" + getUniqueNumberString()));
     172/*
     173//TODO border size
     174        oBorder->setBorderSize( 0.003, 16 * 0.003 );
     175        oBorder->setBorderMaterialName("StatsBorder");
     176        oBorder->setTopBorderUV(0.49, 0.0, 0.51, 0.5);
     177        oBorder->setTopLeftBorderUV(0.0, 0.0, 0.5, 0.5);
     178        oBorder->setTopRightBorderUV(0.5, 0.0, 1.0, 0.5);
     179        oBorder->setLeftBorderUV(0.0, 0.49, 0.5, 0.51);
     180        oBorder->setRightBorderUV(0.5, 0.49, 1.0, 0.5);
     181        oBorder->setBottomBorderUV(0.49, 0.5, 0.51, 1.0);
     182        oBorder->setBottomLeftBorderUV(0.0, 0.5, 0.5, 1.0);
     183        oBorder->setBottomRightBorderUV(0.5, 0.5, 1.0, 1.0);
     184        overlay_->add2D(oBorder);
     185*/
     186
    168187        //Not Showing the map as default
    169188        this->isVisible_=false;
     
    184203       
    185204        planeNode_->scale(10,1,10);
    186         planeNode_->attachObject(movablePlane_);
     205//        planeNode_->attachObject(movablePlane_);
    187206        //Ogre::Material plane_mat = Ogre::MaterialManager::getSingletonPtr()->getByName("rock");
    188207       
     
    261280                it->addMapEntity();
    262281            }
    263 
     282            if(it->isHumanShip_)
     283            {
     284                this->movablePlane_->redefine(it->MapNode_->getLocalAxes().GetColumn(1) , it->MapNode_->getPosition());
     285                if(it->isHumanShip_ && it->MapNode_ != this->playerShipNode_)
     286                {
     287                    this->playerShipNode_ = it->MapNode_;
     288                    this->planeNode_->getParent()->removeChild(this->planeNode_);
     289                    this->playerShipNode_->addChild(this->planeNode_);
     290                //Movable Plane needs to be attached direcly for calculations
     291                //this->movablePlane_->detatchFromParent();
     292                //this->movablePlane_->getParentSceneNode()->detachObject(this->movablePlane_);
     293                //this->movablePlane_->redefine(it->MapNode_->getLocalAxes().GetColumn(1) , it->MapNode_->getPosition());
     294                //it->MapNode_->attachObject(this->movablePlane_);
     295
     296                    this->CamNode_->getParent()->removeChild(this->CamNode_);
     297                    this->playerShipNode_->addChild(this->CamNode_);
     298                    this->CamNode_->attachObject(this->Cam_);
     299                //this->CamNodeHelper_ = this->CamNode_->createChildSceneNode();
     300                //this->CamNodeHelper_->attachObject(this->Cam_);
     301                    this->Cam_->setPosition(0, 0, DISTANCE);
     302                    this->Cam_->pitch( (Degree)PITCH );
     303                    this->Cam_->lookAt(Vector3(0,0,0));
     304                //this->Cam_->setAutoTracking(true, this->playerShipNode_);
     305                }
     306            }
    264307            it->updateMapPosition();
    265308           
    266309
    267310
    268             if(it->isHumanShip_ && it->MapNode_ != this->playerShipNode_)
    269             {
    270                 this->playerShipNode_ = it->MapNode_;
    271                 this->planeNode_->getParent()->removeChild(this->planeNode_);
    272                 this->playerShipNode_->addChild(this->planeNode_);
    273                 this->CamNode_->getParent()->removeChild(this->CamNode_);
    274                 this->playerShipNode_->addChild(this->CamNode_);
    275                 this->CamNode_->attachObject(this->Cam_);
    276                 //this->CamNodeHelper_ = this->CamNode_->createChildSceneNode();
    277                 //this->CamNodeHelper_->attachObject(this->Cam_);
    278                 this->Cam_->setPosition(0, 0, DISTANCE);
    279                 this->Cam_->pitch( (Degree)PITCH );
    280                 this->Cam_->lookAt(Vector3(0,0,0));
    281                 //this->Cam_->setAutoTracking(true, this->playerShipNode_);
    282             }
     311
    283312           
    284313           
     
    339368    void Map::tick(float dt)
    340369    {
    341         //sNode_->lookAt(Vector3::NEGATIVE_UNIT_Z, Ogre::Node::TS_WORLD, Vector3::NEGATIVE_UNIT_Z);
     370        //Debug
     371        //COUT(0) << "MovablePlane Position: " << this->movablePlane_->getParentSceneNode()->getName() << this->movablePlane_->getParentSceneNode()->getPosition() << std::endl;
     372        //COUT(0) << "planeNode_ Position: " << this->planeNode_ ->getName() << this->planeNode_->getPosition() << std::endl;
     373        //COUT(0) <<  "planeNode_ Parrent Position" << this->planeNode_->getParent()->getName() << this->planeNode_->getParent()->getPosition() << std::endl;
    342374        if( this->isVisible_ )
    343375            updatePositions();
Note: See TracChangeset for help on using the changeset viewer.