| 1 | /* |
|---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
|---|
| 3 | * |
|---|
| 4 | * |
|---|
| 5 | * License notice: |
|---|
| 6 | * |
|---|
| 7 | * This program is free software; you can redistribute it and/or |
|---|
| 8 | * modify it under the terms of the GNU General Public License |
|---|
| 9 | * as published by the Free Software Foundation; either version 2 |
|---|
| 10 | * of the License, or (at your option) any later version. |
|---|
| 11 | * |
|---|
| 12 | * This program is distributed in the hope that it will be useful, |
|---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 15 | * GNU General Public License for more details. |
|---|
| 16 | * |
|---|
| 17 | * You should have received a copy of the GNU General Public License |
|---|
| 18 | * along with this program; if not, write to the Free Software |
|---|
| 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|---|
| 20 | * |
|---|
| 21 | * Author: |
|---|
| 22 | * Yuning Chai |
|---|
| 23 | * Co-authors: |
|---|
| 24 | * ... |
|---|
| 25 | * |
|---|
| 26 | */ |
|---|
| 27 | |
|---|
| 28 | #include <OgreOverlayManager.h> |
|---|
| 29 | #include <OgreOverlayElement.h> |
|---|
| 30 | #include <OgreOverlayContainer.h> |
|---|
| 31 | #include <OgrePanelOverlayElement.h> |
|---|
| 32 | #include <OgreStringConverter.h> |
|---|
| 33 | #include <OgreColourValue.h> |
|---|
| 34 | #include <string.h> |
|---|
| 35 | |
|---|
| 36 | #include "Bar.h" |
|---|
| 37 | |
|---|
| 38 | namespace orxonox |
|---|
| 39 | { |
|---|
| 40 | using namespace Ogre; |
|---|
| 41 | |
|---|
| 42 | // typeName_s = "Bar"; |
|---|
| 43 | |
|---|
| 44 | Bar::Bar(const String& name):Ogre::PanelOverlayElement(name){ |
|---|
| 45 | } |
|---|
| 46 | |
|---|
| 47 | |
|---|
| 48 | Bar::~Bar(){} |
|---|
| 49 | |
|---|
| 50 | // const Ogre::String& Bar::getTypeName() const { return typeName_s;} |
|---|
| 51 | |
|---|
| 52 | |
|---|
| 53 | |
|---|
| 54 | void Bar::initialise(){ |
|---|
| 55 | PanelOverlayElement::initialise(); |
|---|
| 56 | setDimensions(100,100); |
|---|
| 57 | setPosition(10,10); |
|---|
| 58 | setMaterialName("Orxonox/Green"); |
|---|
| 59 | setMetricsMode(Ogre::GMM_PIXELS); |
|---|
| 60 | } |
|---|
| 61 | |
|---|
| 62 | |
|---|
| 63 | |
|---|
| 64 | |
|---|
| 65 | /* Bar::Bar(const Ogre::String& s){} |
|---|
| 66 | |
|---|
| 67 | Bar::~Bar(void){} |
|---|
| 68 | |
|---|
| 69 | */ |
|---|
| 70 | /* void Bar::setPercentage(float percentage){ |
|---|
| 71 | percentage_=percentage; |
|---|
| 72 | if(dir_){setWidth(int(percentage_* getWidth()));} |
|---|
| 73 | else {setHeight(int(percentage_ * getHeight()));} |
|---|
| 74 | } |
|---|
| 75 | |
|---|
| 76 | |
|---|
| 77 | void Bar::setPercentage(float percentage){ |
|---|
| 78 | percentage_ = percentage; |
|---|
| 79 | // setWidth(getWidth()); |
|---|
| 80 | } |
|---|
| 81 | |
|---|
| 82 | |
|---|
| 83 | |
|---|
| 84 | |
|---|
| 85 | void Bar::setColor(ColourValue color){ |
|---|
| 86 | color_=color; |
|---|
| 87 | setColour(color); |
|---|
| 88 | } |
|---|
| 89 | */ |
|---|
| 90 | |
|---|
| 91 | } |
|---|
| 92 | |
|---|
| 93 | |
|---|