- Timestamp:
- Nov 5, 2014, 4:04:51 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hudHS14/src/modules/overlays/hud/HUDNavigation.cc
r9939 r10110 298 298 if (!it->second.wasOutOfView_) 299 299 { 300 it->second.panel_->setMaterialName(TextureGenerator::getMaterialName("arrows.png", it->first->getRadarObjectColour())); 300 it->second.health_->hide(); 301 it->second.panel_->setMaterialName(TextureGenerator::getMaterialName("arrows.png", it->first->getRadarObjectColour())); 301 302 it->second.wasOutOfView_ = true; 302 303 it->second.target_->hide(); … … 364 365 it->second.panel_->setDimensions(this->navMarkerSize_ * this->getActualSize().x, this->navMarkerSize_ * this->getActualSize().y); 365 366 it->second.target_->setDimensions(this->aimMarkerSize_ * this->getActualSize().x, this->aimMarkerSize_ * this->getActualSize().y); 367 368 //manipulation bzw versuch !!! Jonas 369 it->second.health_->setMaterialName(TextureGenerator::getMaterialName("bar2b.png", it->first->getRadarObjectColour())); 370 366 371 it->second.wasOutOfView_ = false; 367 372 } 373 374 // Position health (versuch !!!!) 375 it->second.health_->setLeft((pos.x + 1.0f - it->second.panel_->getWidth()) * 0.5f); 376 it->second.health_->setTop((-pos.y + 1.0f - it->second.panel_->getHeight()) * 0.5f); 377 368 378 369 379 // Position marker … … 377 387 378 388 // Make sure the overlays are shown 389 390 it->second.health_->show(); 379 391 it->second.panel_->show(); 380 392 it->second.text_->show(); … … 419 431 420 432 { 433 it->second.health_->hide() 421 434 it->second.panel_->hide(); 422 435 it->second.text_->hide(); … … 442 455 for (std::map<RadarViewable*, ObjectInfo>::iterator it = this->activeObjectList_.begin(); it != this->activeObjectList_.end(); ++it) 443 456 { 457 if (it->second.health_ != NULL) 458 it->second.health_->setDimensions(this->healthMarkerSize_ * xScale, this->healthMarkerSize_ * yScale); 444 459 if (it->second.panel_ != NULL) 445 460 it->second.panel_->setDimensions(this->navMarkerSize_ * xScale, this->navMarkerSize_ * yScale); … … 468 483 469 484 // Create everything needed to display the object on the radar and add it to the map 485 // Create health 486 Ogre::PanelOverlayElement* health = static_cast<Ogre::PanelOverlayElement*>( Ogre::OverlayManager::getSingleton() 487 .createOverlayElement("Panel", "HUDNavigation_healthMarker_" + getUniqueNumberString())); 488 //panel->setMaterialName("Orxonox/NavTDC"); 489 health->setMaterialName(TextureGenerator::getMaterialName("bar2b.png", object->getRadarObjectColour())); 490 health->setDimensions(this->healthMarkerSize_ * xScale, this->healthMarkerSize_ * yScale); 491 //panel->setColour(object->getRadarObjectColour()); 492 470 493 471 494 // Create arrow/marker … … 490 513 text->setColour(object->getRadarObjectColour()); 491 514 515 health->hide(); 492 516 panel->hide(); 493 517 target->hide(); … … 495 519 496 520 ObjectInfo tempStruct = 497 { panel, target, text, false, false, false};521 { health, panel, target, text, false, false, false, false}; 498 522 this->activeObjectList_[object] = tempStruct; 499 523 524 this->background_->addChild(health); 500 525 this->background_->addChild(panel); 501 526 this->background_->addChild(target); … … 512 537 { 513 538 // Detach overlays 539 this->background_->removeChild(it->second.health_->getName()); 514 540 this->background_->removeChild(it->second.panel_->getName()); 515 541 this->background_->removeChild(it->second.target_->getName()); 516 542 this->background_->removeChild(it->second.text_->getName()); 517 543 // Properly destroy the overlay elements (do not use delete!) 544 Ogre::OverlayManager::getSingleton().destroyOverlayElement(it->second.health_); 518 545 Ogre::OverlayManager::getSingleton().destroyOverlayElement(it->second.panel_); 519 546 Ogre::OverlayManager::getSingleton().destroyOverlayElement(it->second.target_);
Note: See TracChangeset
for help on using the changeset viewer.