[11263] | 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 | * Patrick Wintermeyer |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
[11277] | 29 | #include <vector> |
---|
| 30 | #include <string> |
---|
| 31 | |
---|
[11702] | 32 | #include <OgreOverlayManager.h> |
---|
| 33 | #include <OgrePanelOverlayElement.h> |
---|
| 34 | |
---|
[11263] | 35 | #include "core/CoreIncludes.h" |
---|
| 36 | #include "core/class/Super.h" |
---|
[11702] | 37 | #include "util/StringUtils.h" |
---|
[11277] | 38 | #include "HUDPickupSystem.h" |
---|
[11702] | 39 | #include "HUDPickupItem.h" |
---|
[11277] | 40 | #include "pickup/Pickup.h" |
---|
[11305] | 41 | #include "pickup/PickupManager.h" |
---|
[11263] | 42 | |
---|
| 43 | namespace orxonox |
---|
| 44 | { |
---|
| 45 | RegisterClass(HUDPickupSystem); |
---|
| 46 | |
---|
| 47 | HUDPickupSystem::HUDPickupSystem(Context* context) : OrxonoxOverlay(context) |
---|
| 48 | { |
---|
| 49 | RegisterObject(HUDPickupSystem); |
---|
| 50 | |
---|
[11277] | 51 | overlayElement_ = static_cast<Ogre::PanelOverlayElement* >(Ogre::OverlayManager::getSingleton().createOverlayElement("Panel", "HUDPickupSystem" + getUniqueNumberString())); |
---|
| 52 | overlayElement_->setMaterialName("PickupBar"); |
---|
| 53 | overlayElement_->setPosition(0.0f,0.0f); |
---|
| 54 | overlayElement_->setDimensions(0.70f,0.15f); |
---|
| 55 | this->background_->addChild(overlayElement_); |
---|
[11263] | 56 | } |
---|
| 57 | |
---|
| 58 | HUDPickupSystem::~HUDPickupSystem() |
---|
| 59 | { |
---|
| 60 | } |
---|
| 61 | |
---|
[11354] | 62 | void HUDPickupSystem::sizeChanged() |
---|
| 63 | { |
---|
| 64 | OrxonoxOverlay::sizeChanged(); |
---|
| 65 | |
---|
| 66 | } |
---|
| 67 | |
---|
[11700] | 68 | void HUDPickupSystem::sync(std::vector<Pickupable*> p, std::map<Pickupable*, uint32_t> indexes_) |
---|
| 69 | { |
---|
| 70 | //hide all pickup symbols in HUD and delete from local map |
---|
| 71 | |
---|
[11702] | 72 | for(HUDPickupItem* item : items_) |
---|
[11700] | 73 | { |
---|
[11702] | 74 | item->hideMe(); |
---|
[11700] | 75 | } |
---|
| 76 | |
---|
[11702] | 77 | items_.clear(); |
---|
| 78 | assert(items_.empty()); //items_ must be empty now |
---|
[11700] | 79 | |
---|
| 80 | //add to local map and place on screen |
---|
[11336] | 81 | const float offsetX = 0.345f; |
---|
[11703] | 82 | const float offsetY = 0.82f; |
---|
[11336] | 83 | const float x = 0.102f; |
---|
[11703] | 84 | const float y = 0.075f; |
---|
[11314] | 85 | |
---|
[11700] | 86 | for(Pickupable* pickup:p) |
---|
[11277] | 87 | { |
---|
[11703] | 88 | int index = indexes_.find(pickup)->second; |
---|
| 89 | int row = index / 5; |
---|
| 90 | int column = index % 5; |
---|
[11336] | 91 | |
---|
[11700] | 92 | HUDPickupItem* item = new HUDPickupItem(this->getContext()); |
---|
[11703] | 93 | item->initializeMaterial(this->getIcon(((Pickup*)pickup)->getRepresentationName()), offsetX+column*x, offsetY+row*y); |
---|
[11700] | 94 | item->setOverlayGroup(this->getOverlayGroup()); |
---|
[11702] | 95 | items_.push_back(item); |
---|
[11277] | 96 | } |
---|
[11263] | 97 | } |
---|
| 98 | |
---|
[11325] | 99 | std::string HUDPickupSystem::getIcon(std::string repName) |
---|
| 100 | { |
---|
| 101 | if(repName.find("invisible", 0)!=std::string::npos) return "Eye"; |
---|
[11336] | 102 | else if(repName.find("tri", 0)!=std::string::npos) return "Asterisk"; |
---|
[11325] | 103 | else if(repName.find("health", 0)!=std::string::npos || repName.find("Health", 0)!=std::string::npos) return "Cross"; |
---|
| 104 | else if(repName.find("shield", 0)!=std::string::npos) return "Shield"; |
---|
| 105 | else if(repName.find("munition", 0)!=std::string::npos) return "Munition"; |
---|
| 106 | else if(repName.find("shrink", 0)!=std::string::npos) return "Shrink"; |
---|
| 107 | else if(repName.find("boost", 0)!=std::string::npos) return "Flash"; |
---|
| 108 | else if(repName.find("speed", 0)!=std::string::npos) return "3arrowsup"; |
---|
| 109 | else if(repName.find("drone", 0)!=std::string::npos) return "Damage"; |
---|
| 110 | else return "Unknown"; |
---|
| 111 | } |
---|
[11263] | 112 | } |
---|