Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1615


Ignore:
Timestamp:
Jun 22, 2008, 12:06:55 AM (16 years ago)
Author:
rgrieder
Message:
  • added blankString to String so you can return ""; even if it's a const std::string&
  • fixed several bugs with aspect correct and margin alignment
  • added console commands for OrxonoxOverlays and OverlayGroups for rotate, scale and scroll (you can access the by name (from name=.. in xml file), e.g. "OrxonoxOverlay rotateOverlay SpeedBar 90)
  • converted everything in overlays/ to 4 spaces/tab ;)
  • removed all using namespace Ogre;
  • added background_ Panel to OrxonoxOverlay, since most of the derived classes can use that
  • should work now, but I'll have to test on a tardis box first
Location:
code/branches/hud
Files:
22 edited
2 moved

Legend:

Unmodified
Added
Removed
  • code/branches/hud/src/orxonox/CMakeLists.txt

    r1613 r1615  
    44  Orxonox.cc
    55  Radar.cc
     6  RadarListener.cc
    67  RadarViewable.cc
    78  Settings.cc
     
    910  overlays/OrxonoxOverlay.cc
    1011  overlays/OverlayGroup.cc
     12  overlays/OverlayText.cc
    1113
    1214  overlays/console/InGameConsole.cc
     
    1820  overlays/hud/HUDRTRText.cc
    1921  overlays/hud/HUDSpeedBar.cc
    20   overlays/hud/HUDText.cc
    21   overlays/hud/HUDRadar.cc
    2222
    2323  tolua/tolua_bind.cc
  • code/branches/hud/src/orxonox/RadarListener.h

    r1614 r1615  
    4242
    4343        virtual void displayObject(RadarViewable* viewable, bool bIsMarked) = 0;
    44         virtual float getRadarSensitivity() = 0;
     44        virtual float getRadarSensitivity() const = 0;
    4545        virtual void radarTick(float dt) = 0;
    4646    };
  • code/branches/hud/src/orxonox/overlays/OrxonoxOverlay.cc

    r1614 r1615  
    3030#include "OrxonoxOverlay.h"
    3131
     32#include <cmath>
    3233#include <OgreOverlayManager.h>
    3334#include <OgrePanelOverlayElement.h>
    3435#include "util/Convert.h"
     36#include "util/String.h"
    3537#include "core/CoreIncludes.h"
    3638#include "GraphicsEngine.h"
     
    3840namespace orxonox
    3941{
    40   unsigned int OrxonoxOverlay::hudOverlayCounter_s = 0;
    41 
    42   OrxonoxOverlay::OrxonoxOverlay()
    43     : overlay_(0)
    44     , background_(0)
    45     , windowAspectRatio_(1.0f)
    46     , bCorrectAspect_(false)
    47     , size_(1.0f, 1.0f)
    48     , sizeCorrection_(1.0f, 1.0f)
    49     , angle_(0.0f)
    50     , position_(0.0f, 0.0f)
    51     , origin_(0.0f, 0.0f)
    52   {
    53     RegisterObject(OrxonoxOverlay);
    54   }
    55 
    56   OrxonoxOverlay::~OrxonoxOverlay()
    57   {
    58     if (this->background_)
    59       Ogre::OverlayManager::getSingleton().destroyOverlayElement(this->background_);
    60   }
    61 
    62   void OrxonoxOverlay::XMLPort(Element& xmlElement, XMLPort::Mode mode)
    63   {
    64     BaseObject::XMLPort(xmlElement, mode);
    65 
    66     if (mode == XMLPort::LoadObject)
    67     {
    68       overlay_ = Ogre::OverlayManager::getSingleton().create("OrxonoxOverlay"
    69             + convertToString(hudOverlayCounter_s++) + "_" + this->getName());
    70 
    71       this->windowResized(GraphicsEngine::getSingleton().getWindowWidth(),
    72             GraphicsEngine::getSingleton().getWindowHeight());
    73 
    74       // create background
    75       this->background_ = static_cast<Ogre::PanelOverlayElement*>(
    76           Ogre::OverlayManager::getSingleton().createOverlayElement("Panel", getUniqueNumberStr() + "_Background"));
    77       this->overlay_->add2D(this->background_);
    78     }
    79 
    80     XMLPortParam(OrxonoxOverlay, "correctAspect", setAspectCorrection, getAspectCorrection, xmlElement, mode);
    81     XMLPortParam(OrxonoxOverlay, "size", setSize, getUncorrectedSize, xmlElement, mode);
    82     XMLPortParam(OrxonoxOverlay, "rotation", setRotation, getRotation, xmlElement, mode);
    83     XMLPortParam(OrxonoxOverlay, "origin", setOrigin, getOrigin, xmlElement, mode);
    84     XMLPortParam(OrxonoxOverlay, "position", setPosition, getPosition, xmlElement, mode);
    85     XMLPortParam(OrxonoxOverlay, "background", setBackgroundMaterial, getBackgroundMaterial, xmlElement, mode);
    86 
    87     if (mode == XMLPort::LoadObject)
    88     {
    89       this->overlay_->show();
    90       if (!this->isVisible())
    91           this->overlay_->hide();
    92 
    93       this->sizeChanged();
    94       this->positionChanged();
    95       this->angleChanged();
    96     }
    97   }
    98 
    99   void OrxonoxOverlay::setBackgroundMaterial(const std::string& material)
    100   {
    101     if (this->background_ && material != "")
    102       this->background_->setMaterialName(material);
    103   }
    104 
    105   std::string OrxonoxOverlay::getBackgroundMaterial() const
    106   {
    107     if (this->background_)
    108       return this->background_->getMaterialName();
    109     else
    110       return "";
    111   }
    112 
    113   void OrxonoxOverlay::changedVisibility()
    114   {
    115     if (this->overlay_)
    116     {
    117       if (this->isVisible())
    118         this->overlay_->show();
    119       else
    120         this->overlay_->hide();
    121     }
    122   }
    123 
    124   void OrxonoxOverlay::windowResized(int newWidth, int newHeight)
    125   {
    126     this->windowAspectRatio_ = newWidth/(float)newHeight;
    127 
    128     this->setAspectCorrection(this->bCorrectAspect_);
    129   }
    130 
    131   void OrxonoxOverlay::setAspectCorrection(bool val)
    132   {
    133     if (val)
    134     {
    135       // note: this is only an approximation that is mostly valid when the
    136       // magnitude of the width is about the magnitude of the height.
    137       // Correctly we would have to take the square root of width*height
    138       this->sizeCorrection_.x = 2.0 / (this->windowAspectRatio_ + 1.0);
    139       this->sizeCorrection_.y = this->windowAspectRatio_ * this->sizeCorrection_.x;
    140     }
    141     else
    142     {
    143       this->sizeCorrection_ = Vector2::UNIT_SCALE;
    144     }
    145 
    146     this->bCorrectAspect_ = val;
    147     this->sizeChanged();
    148   }
    149 
    150   /**
     42    unsigned int OrxonoxOverlay::hudOverlayCounter_s = 0;
     43    std::map<std::string, OrxonoxOverlay*> OrxonoxOverlay::overlays_s;
     44
     45    SetConsoleCommand(OrxonoxOverlay, scaleOverlay, false).setAccessLevel(AccessLevel::User);
     46    SetConsoleCommand(OrxonoxOverlay, scrollOverlay, false).setAccessLevel(AccessLevel::User);
     47    SetConsoleCommand(OrxonoxOverlay, rotateOverlay, false).setAccessLevel(AccessLevel::User);
     48
     49    OrxonoxOverlay::OrxonoxOverlay()
     50        : overlay_(0)
     51        , background_(0)
     52        , windowAspectRatio_(1.0f)
     53        , bCorrectAspect_(false)
     54        , size_(1.0f, 1.0f)
     55        , sizeCorrection_(1.0f, 1.0f)
     56        , angle_(0.0f)
     57        , position_(0.0f, 0.0f)
     58        , origin_(0.0f, 0.0f)
     59    {
     60        RegisterObject(OrxonoxOverlay);
     61    }
     62
     63    OrxonoxOverlay::~OrxonoxOverlay()
     64    {
     65        if (this->background_)
     66            Ogre::OverlayManager::getSingleton().destroyOverlayElement(this->background_);
     67
     68        std::map<std::string, OrxonoxOverlay*>::iterator it = overlays_s.find(this->getName());
     69        if (it != overlays_s.end())
     70            overlays_s.erase(it);
     71    }
     72
     73    void OrxonoxOverlay::XMLPort(Element& xmlElement, XMLPort::Mode mode)
     74    {
     75        BaseObject::XMLPort(xmlElement, mode);
     76
     77        if (mode == XMLPort::LoadObject)
     78        {
     79            if (overlays_s.find(this->getName()) != overlays_s.end())
     80            {
     81                COUT(1) << "Overlay names should be unique or you cannnot access them via console." << std::endl;
     82            }
     83            overlays_s[this->getName()] = this;
     84
     85            overlay_ = Ogre::OverlayManager::getSingleton().create("OrxonoxOverlay_overlay_"
     86                + convertToString(hudOverlayCounter_s++));
     87
     88            // create background
     89            this->background_ = static_cast<Ogre::PanelOverlayElement*>(
     90                Ogre::OverlayManager::getSingleton().createOverlayElement("Panel",
     91                "OrxonoxOverlay_background_" + convertToString(hudOverlayCounter_s++)));
     92            this->overlay_->add2D(this->background_);
     93
     94            this->windowResized(GraphicsEngine::getSingleton().getWindowWidth(),
     95                GraphicsEngine::getSingleton().getWindowHeight());
     96        }
     97
     98        XMLPortParam(OrxonoxOverlay, "correctAspect", setAspectCorrection, getAspectCorrection, xmlElement, mode);
     99        XMLPortParam(OrxonoxOverlay, "size", setSize, getUncorrectedSize, xmlElement, mode);
     100        XMLPortParam(OrxonoxOverlay, "rotation", setRotation, getRotation, xmlElement, mode);
     101        XMLPortParam(OrxonoxOverlay, "origin", setOrigin, getOrigin, xmlElement, mode);
     102        XMLPortParam(OrxonoxOverlay, "position", setPosition, getPosition, xmlElement, mode);
     103        XMLPortParam(OrxonoxOverlay, "background", setBackgroundMaterial, getBackgroundMaterial, xmlElement, mode);
     104
     105        if (mode == XMLPort::LoadObject)
     106        {
     107            this->overlay_->show();
     108            if (!this->isVisible())
     109                this->overlay_->hide();
     110
     111            this->sizeChanged();
     112            this->positionChanged();
     113            this->angleChanged();
     114        }
     115    }
     116
     117    void OrxonoxOverlay::setBackgroundMaterial(const std::string& material)
     118    {
     119        if (this->background_ && material != "")
     120            this->background_->setMaterialName(material);
     121    }
     122
     123    const std::string& OrxonoxOverlay::getBackgroundMaterial() const
     124    {
     125        if (this->background_)
     126            return this->background_->getMaterialName();
     127        else
     128            return blankString;
     129    }
     130
     131    void OrxonoxOverlay::changedVisibility()
     132    {
     133        if (this->overlay_)
     134        {
     135            if (this->isVisible())
     136                this->overlay_->show();
     137            else
     138                this->overlay_->hide();
     139        }
     140    }
     141
     142    void OrxonoxOverlay::windowResized(int newWidth, int newHeight)
     143    {
     144        this->windowAspectRatio_ = newWidth/(float)newHeight;
     145
     146        this->setAspectCorrection(this->bCorrectAspect_);
     147    }
     148
     149    void OrxonoxOverlay::setAspectCorrection(bool val)
     150    {
     151        this->bCorrectAspect_ = val;
     152        this->sizeCorrectionChanged();
     153    }
     154
     155    void OrxonoxOverlay::sizeCorrectionChanged()
     156    {
     157        if (this->bCorrectAspect_)
     158        {
     159            float angle = this->angle_.valueDegrees();
     160            float tempAspect;
     161            if (angle > 89.0 && angle < 91.0 || angle > 269 && angle < 271)
     162                tempAspect = 1.0 / this->windowAspectRatio_;
     163            else if (angle > 359 && angle < 1 || angle > 179 && angle < 181)
     164                tempAspect = this->windowAspectRatio_;
     165            else
     166                tempAspect = 1.0;
     167
     168            // note: this is only an approximation that is mostly valid when the
     169            // magnitude of the width is about the magnitude of the height.
     170            // Correctly we would have to take the square root of width*height
     171            this->sizeCorrection_.x = 2.0 / (tempAspect + 1.0);
     172            this->sizeCorrection_.y = tempAspect * this->sizeCorrection_.x;
     173        }
     174        else
     175        {
     176            this->sizeCorrection_ = Vector2::UNIT_SCALE;
     177        }
     178        this->sizeChanged();
     179    }
     180
     181    /**
    151182    @remarks
    152       This function can be overriden by any derivative.
    153   */
    154   void OrxonoxOverlay::sizeChanged()
    155   {
    156     this->overlay_->setScale(size_.x * sizeCorrection_.x, size_.y * sizeCorrection_.y);
    157     positionChanged();
    158   }
    159 
    160   /**
     183        This function can be overriden by any derivative.
     184    */
     185    void OrxonoxOverlay::sizeChanged()
     186    {
     187        this->overlay_->setScale(size_.x * sizeCorrection_.x, size_.y * sizeCorrection_.y);
     188        positionChanged();
     189    }
     190
     191    /**
    161192    @remarks
    162       This function can be overriden by any derivative.
    163   */
    164   void OrxonoxOverlay::angleChanged()
    165   {
    166     this->overlay_->setRotate(this->angle_);
    167   }
    168 
    169   /**
     193        This function can be overriden by any derivative.
     194    */
     195    void OrxonoxOverlay::angleChanged()
     196    {
     197        this->overlay_->setRotate(this->angle_);
     198        this->sizeCorrectionChanged();
     199    }
     200
     201    /**
    170202    @remarks
    171       This function can be overriden by any derivative.
    172   */
    173   void OrxonoxOverlay::positionChanged()
    174   {
    175     Vector2 scroll = (position_ - 0.5 - size_ * sizeCorrection_ * (origin_ - 0.5)) * 2.0;
    176     this->overlay_->setScroll(scroll.x, -scroll.y);
    177   }
     203        This function can be overriden by any derivative.
     204    */
     205    void OrxonoxOverlay::positionChanged()
     206    {
     207        float angle = abs(this->angle_.valueRadians());
     208        angle -= Ogre::Math::PI * (int)(angle / (Ogre::Math::PI));
     209        if (angle > Ogre::Math::PI * 0.5)
     210            angle = Ogre::Math::PI - angle;
     211        Vector2 actualSize = size_ * sizeCorrection_;
     212        float radius = actualSize.length();
     213        float phi = atan(actualSize.y / actualSize.x);
     214        Vector2 boundingBox(radius * cos(angle - phi), radius * sin(angle + phi));
     215        Vector2 scroll = (position_ - 0.5 - boundingBox * (origin_ - 0.5)) * 2.0;
     216        this->overlay_->setScroll(scroll.x, -scroll.y);
     217    }
     218
     219
     220    /*static*/ void OrxonoxOverlay::scaleOverlay(const std::string& name, float scale)
     221    {
     222        std::map<std::string, OrxonoxOverlay*>::const_iterator it = overlays_s.find(name);
     223        if (it != overlays_s.end())
     224            (*it).second->scale(Vector2(scale, scale));
     225    }
     226
     227    /*static*/ void OrxonoxOverlay::scrollOverlay(const std::string& name, const Vector2& scroll)
     228    {
     229        std::map<std::string, OrxonoxOverlay*>::const_iterator it = overlays_s.find(name);
     230        if (it != overlays_s.end())
     231            (*it).second->scroll(scroll);
     232    }
     233
     234    /*static*/ void OrxonoxOverlay::rotateOverlay(const std::string& name, const Degree& angle)
     235    {
     236        std::map<std::string, OrxonoxOverlay*>::const_iterator it = overlays_s.find(name);
     237        if (it != overlays_s.end())
     238            (*it).second->rotate(angle);
     239    }
    178240}
  • code/branches/hud/src/orxonox/overlays/OrxonoxOverlay.h

    r1614 r1615  
    4242    {
    4343    public:
    44         Ogre::Overlay* getOverlay() { return this->overlay_; }
    4544        OrxonoxOverlay();
    4645        virtual ~OrxonoxOverlay();
     
    7069
    7170        /** Sets the rotation applied to this overlay.*/
    72         void setRotation(const Ogre::Radian& angle) { this->angle_ = angle; this->angleChanged(); }
     71        void setRotation(const Degree& angle) { this->angle_ = angle; this->angleChanged(); }
    7372
    7473        /** Gets the rotation applied to this overlay, in degrees.*/
     
    7675
    7776        /** Adds the passed in angle to the rotation applied to this overlay. */
    78         void rotate(const Radian& angle) { this->angle_ += angle; this->angleChanged(); }
     77        void rotate(const Degree& angle) { this->angle_ += angle; this->angleChanged(); }
    7978
    8079        /** Sets the size of this overlay. */
     
    9392        void scale(Vector2 scale) { this->size_ *= scale; this->sizeChanged(); }
    9493
     94        static void scaleOverlay(const std::string& name, float scale);
     95        static void scrollOverlay(const std::string& name, const Vector2& scroll);
     96        static void rotateOverlay(const std::string& name, const Degree& angle);
     97
    9598    protected:
    9699        virtual void changedVisibility();
     
    98101        virtual void angleChanged();
    99102        virtual void positionChanged();
    100         float getWindowAspectRatio() { return windowAspectRatio_; }
     103        virtual void sizeCorrectionChanged();
    101104
    102105        void setBackgroundMaterial(const std::string& material);
    103         std::string getBackgroundMaterial() const;
     106        const std::string& getBackgroundMaterial() const;
    104107
    105108        Ogre::Overlay* overlay_;
    106109        Ogre::PanelOverlayElement* background_;
    107 
    108     private:
    109         void windowResized(int newWidth, int newHeight);
    110 
    111110        float windowAspectRatio_;
    112111        bool bCorrectAspect_;
     
    117116        Vector2 origin_;
    118117
     118    private:
     119        void windowResized(int newWidth, int newHeight);
     120
    119121        static unsigned int hudOverlayCounter_s;
     122        static std::map<std::string, OrxonoxOverlay*> overlays_s;
    120123  };
    121124}
  • code/branches/hud/src/orxonox/overlays/OverlayGroup.cc

    r1614 r1615  
    3030#include "OverlayGroup.h"
    3131
    32 #include <assert.h>
    3332#include "core/Debug.h"
    3433#include "core/ConsoleCommand.h"
     
    3837namespace orxonox
    3938{
    40   CreateFactory(OverlayGroup);
     39    CreateFactory(OverlayGroup);
    4140
    42   SetConsoleCommand(OverlayGroup, toggleVisibility, false).setAccessLevel(AccessLevel::User);
    43   SetConsoleCommand(OverlayGroup, scaleGroup, false).setAccessLevel(AccessLevel::User);
     41    SetConsoleCommand(OverlayGroup, toggleVisibility, false).setAccessLevel(AccessLevel::User);
     42    SetConsoleCommand(OverlayGroup, scaleGroup, false).setAccessLevel(AccessLevel::User);
     43    SetConsoleCommand(OverlayGroup, scrollGroup, false).setAccessLevel(AccessLevel::User);
    4444
    45   using namespace Ogre;
     45    OverlayGroup::OverlayGroup()
     46        : scale_(1.0, 1.0)
     47    {
     48        RegisterObject(OverlayGroup);
     49    }
    4650
    47   OverlayGroup::OverlayGroup()
    48     : scale_(1.0, 1.0)
    49   {
    50     RegisterObject(OverlayGroup);
    51   }
     51    OverlayGroup::~OverlayGroup()
     52    {
     53    }
    5254
    53   OverlayGroup::~OverlayGroup()
    54   {
    55   }
     55    void OverlayGroup::XMLPort(Element& xmlElement, XMLPort::Mode mode)
     56    {
     57        BaseObject::XMLPort(xmlElement, mode);
    5658
    57   void OverlayGroup::XMLPort(Element& xmlElement, XMLPort::Mode mode)
    58   {
    59     BaseObject::XMLPort(xmlElement, mode);
     59        XMLPortParam(OverlayGroup, "scale", setScale, getScale, xmlElement, mode);
     60        XMLPortParam(OverlayGroup, "scroll", setScroll, getScroll, xmlElement, mode);
     61        XMLPortObject(OverlayGroup, OrxonoxOverlay, "", addElement, getElement, xmlElement, mode, false, true);
     62    }
    6063
    61     XMLPortParam(OverlayGroup, "scale", scale, getScale, xmlElement, mode);
    62     XMLPortObject(OverlayGroup, OrxonoxOverlay, "", addElement, getElement, xmlElement, mode, false, true);
    63   }
     64    void OverlayGroup::setScale(const Vector2& scale)
     65    {
     66        for (std::map<std::string, OrxonoxOverlay*>::iterator it = hudElements_.begin(); it != hudElements_.end(); ++it)
     67            (*it).second->scale(scale / this->scale_);
     68        this->scale_ = scale;
     69    }
    6470
    65   void OverlayGroup::scale(const Vector2& scale)
    66   {
    67     for (std::map<std::string, OrxonoxOverlay*>::iterator it = hudElements_.begin(); it != hudElements_.end(); ++it)
    68       (*it).second->scale(scale);
    69     this->scale_ = scale;
    70   }
     71    void OverlayGroup::setScroll(const Vector2& scroll)
     72    {
     73        for (std::map<std::string, OrxonoxOverlay*>::iterator it = hudElements_.begin(); it != hudElements_.end(); ++it)
     74            (*it).second->scroll(scroll - this->scroll_);
     75        this->scroll_ = scroll;
     76    }
    7177
    72   void OverlayGroup::addElement(OrxonoxOverlay* element)
    73   {
    74     if (hudElements_.find(element->getName()) != hudElements_.end())
     78    void OverlayGroup::addElement(OrxonoxOverlay* element)
    7579    {
    76       COUT(1) << "Ambiguous names encountered while load the HUD overlays" << std::endl;
     80        if (hudElements_.find(element->getName()) != hudElements_.end())
     81        {
     82            COUT(1) << "Ambiguous names encountered while load the HUD overlays" << std::endl;
     83        }
     84        else
     85            hudElements_[element->getName()] = element;
    7786    }
    78     else
    79       hudElements_[element->getName()] = element;
    80   }
    8187
    82   OrxonoxOverlay* OverlayGroup::getElement(unsigned int index)
    83   {
    84     if (index < this->hudElements_.size())
     88    OrxonoxOverlay* OverlayGroup::getElement(unsigned int index)
    8589    {
    86       std::map<std::string, OrxonoxOverlay*>::const_iterator it = hudElements_.begin();
    87       for (unsigned int i = 0; i != index; ++it, ++i)
    88         ;
    89       return (*it).second;
     90        if (index < this->hudElements_.size())
     91        {
     92            std::map<std::string, OrxonoxOverlay*>::const_iterator it = hudElements_.begin();
     93            for (unsigned int i = 0; i != index; ++it, ++i)
     94                ;
     95            return (*it).second;
     96        }
     97        else
     98            return 0;
    9099    }
    91     else
    92       return 0;
    93   }
    94100
    95101
    96   /*static*/ void OverlayGroup::toggleVisibility(const std::string& name)
    97   {
    98     for (Iterator<OverlayGroup> it = ObjectList<OverlayGroup>::begin(); it; ++it)
     102    /*static*/ void OverlayGroup::toggleVisibility(const std::string& name)
    99103    {
    100         if ((*it)->getName() == name)
    101             (*it)->setVisibility(!((*it)->isVisible()));
     104        for (Iterator<OverlayGroup> it = ObjectList<OverlayGroup>::begin(); it; ++it)
     105        {
     106            if ((*it)->getName() == name)
     107                (*it)->setVisibility(!((*it)->isVisible()));
     108        }
    102109    }
    103   }
    104110
    105   /*static*/ void OverlayGroup::scaleGroup(const std::string& name, float scale)
    106   {
    107     for (Iterator<OverlayGroup> it = ObjectList<OverlayGroup>::begin(); it; ++it)
     111    /*static*/ void OverlayGroup::scaleGroup(const std::string& name, float scale)
    108112    {
    109         if ((*it)->getName() == name)
    110             (*it)->scale(Vector2(scale, scale));
     113        for (Iterator<OverlayGroup> it = ObjectList<OverlayGroup>::begin(); it; ++it)
     114        {
     115            if ((*it)->getName() == name)
     116                (*it)->scale(Vector2(scale, scale));
     117        }
    111118    }
    112   }
     119
     120    /*static*/ void OverlayGroup::scrollGroup(const std::string& name, const Vector2& scroll)
     121    {
     122        for (Iterator<OverlayGroup> it = ObjectList<OverlayGroup>::begin(); it; ++it)
     123        {
     124            if ((*it)->getName() == name)
     125                (*it)->scroll(scroll);
     126        }
     127    }
    113128}
  • code/branches/hud/src/orxonox/overlays/OverlayGroup.h

    r1614 r1615  
    3939namespace orxonox
    4040{
    41     class HUDBar;
    42     class OrxonoxOverlay;
    43 
    4441    class _OrxonoxExport OverlayGroup : public BaseObject
    4542    {
    46       public:
     43    public:
    4744        OverlayGroup();
    4845        ~OverlayGroup();
    4946
    50         virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
    51 
    52         void scale(const Vector2& scale);
    53         Vector2 getScale() const { return this->scale_; }
     47        void XMLPort(Element& xmlElement, XMLPort::Mode mode);
    5448
    5549        static void toggleVisibility(const std::string& name);
    5650        static void scaleGroup(const std::string& name, float scale);
     51        static void scrollGroup(const std::string& name, const Vector2& scroll);
     52        static void rotateGroup(const std::string& name, Radian angle);
    5753
    58       private:
    59         OverlayGroup(const OverlayGroup& instance);
     54    private:
     55        void scale(const Vector2& scale) { this->setScale(scale * this->scale_); }
     56        void setScale(const Vector2& scale);
     57        Vector2 getScale() const { return this->scale_; }
     58
     59        void scroll(const Vector2& scroll) { this->setScroll(scroll + this->scroll_); }
     60        void setScroll(const Vector2& scroll);
     61        Vector2 getScroll() const { return this->scale_; }
    6062
    6163        void addElement(OrxonoxOverlay* element);
     
    6466        std::map<std::string, OrxonoxOverlay*> hudElements_;
    6567        Vector2 scale_;
     68        Vector2 scroll_;
    6669    };
    6770}
  • code/branches/hud/src/orxonox/overlays/OverlayText.cc

    r1614 r1615  
    2828
    2929#include "OrxonoxStableHeaders.h"
    30 #include "HUDText.h"
     30#include "OverlayText.h"
    3131
    3232#include <OgreOverlayManager.h>
     
    3535
    3636#include "util/Convert.h"
     37#include "util/String.h"
    3738
    3839namespace orxonox
    3940{
    40   CreateFactory(HUDText);
     41    CreateFactory(OverlayText);
    4142
    42   using namespace Ogre;
    43 
    44   HUDText::HUDText()
    45     : text_(0)
    46   {
    47     RegisterObject(HUDText);
    48   }
    49 
    50   HUDText::~HUDText()
    51   {
    52     if (this->isInitialized())
     43    OverlayText::OverlayText()
     44        : text_(0)
    5345    {
    54       if (this->text_)
    55           OverlayManager::getSingleton().destroyOverlayElement(this->text_);
    56     }
    57   }
    58 
    59   void HUDText::XMLPort(Element& xmlElement, XMLPort::Mode mode)
    60   {
    61     OrxonoxOverlay::XMLPort(xmlElement, mode);
    62 
    63     if (mode == XMLPort::LoadObject)
    64     {
    65       this->text_ = static_cast<TextAreaOverlayElement*>(Ogre::OverlayManager::getSingleton().createOverlayElement("TextArea", getName() + "_Text"));
    66       this->text_->setCharHeight(1.0f);
    67       this->text_->setFontName("Monofur");
    68 
    69       this->background_->addChild(this->text_);
     46        RegisterObject(OverlayText);
    7047    }
    7148
    72     XMLPortParam(HUDText, "font", setFont, getFont, xmlElement, mode);
    73     XMLPortParam(HUDText, "caption", setCaption, getCaption, xmlElement, mode);
     49    OverlayText::~OverlayText()
     50    {
     51        if (this->text_)
     52            Ogre::OverlayManager::getSingleton().destroyOverlayElement(this->text_);
     53    }
    7454
    75     if (mode == XMLPort::LoadObject)
     55    void OverlayText::XMLPort(Element& xmlElement, XMLPort::Mode mode)
    7656    {
    77       this->text_->setCaption(this->caption_);
     57        if (mode == XMLPort::LoadObject)
     58        {
     59            // setting this to true makes the text more readable when the
     60            // resolution aspect is far from 1.0
     61            this->bCorrectAspect_ = true; // can be overridden by xml
     62        }
     63
     64        OrxonoxOverlay::XMLPort(xmlElement, mode);
     65
     66        if (mode == XMLPort::LoadObject)
     67        {
     68            this->text_ = static_cast<Ogre::TextAreaOverlayElement*>(Ogre::OverlayManager::getSingleton()
     69                .createOverlayElement("TextArea", "OverlayText_text_" + getUniqueNumberStr()));
     70            this->text_->setCharHeight(1.0f);
     71            this->text_->setFontName("Monofur");
     72
     73            this->background_->addChild(this->text_);
     74        }
     75
     76        XMLPortParam(OverlayText, "font", setFont, getFont, xmlElement, mode);
     77        XMLPortParam(OverlayText, "caption", setCaption, getCaption, xmlElement, mode);
     78        XMLPortParam(OverlayText, "textSize", setTextSize, getTextSize, xmlElement, mode);
     79
     80        if (mode == XMLPort::LoadObject)
     81        {
     82            this->text_->setCaption(this->caption_);
     83        }
    7884    }
    79   }
    8085
    81   void HUDText::setCaption(const std::string& caption)
    82   {
    83     this->caption_ = caption;
    84   }
     86    void OverlayText::setFont(const std::string& font)
     87    {
     88        if (this->text_ && font != "")
     89            this->text_->setFontName(font);
     90    }
    8591
    86   const std::string& HUDText::getCaption() const
    87   {
    88     return this->caption_;
    89   }
     92    const std::string& OverlayText::getFont() const
     93    {
     94        if (this->text_)
     95            return this->text_->getFontName();
     96        else
     97            return blankString;
     98    }
    9099
    91   void HUDText::setFont(const std::string& font)
    92   {
    93     if (this->text_ && font != "")
    94       this->text_->setFontName(font);
    95   }
    96 
    97   std::string HUDText::getFont() const
    98   {
    99     if (this->text_)
    100       return this->text_->getFontName();
    101     else
    102       return "";
    103   }
     100    void OverlayText::sizeChanged()
     101    {
     102        this->overlay_->setScale(getSize().y, getSize().y);
     103        positionChanged();
     104    }
    104105}
  • code/branches/hud/src/orxonox/overlays/OverlayText.h

    r1614 r1615  
    2727 */
    2828
    29 #ifndef _HUDText_H__
    30 #define _HUDText_H__
     29#ifndef _OverlayText_H__
     30#define _OverlayText_H__
    3131
    3232#include "OrxonoxPrereqs.h"
     
    3434#include <string>
    3535#include <OgrePrerequisites.h>
    36 #include "overlays/OrxonoxOverlay.h"
     36#include "OrxonoxOverlay.h"
    3737
    3838namespace orxonox
    3939{
    40   class _OrxonoxExport HUDText : public OrxonoxOverlay
    41   {
    42   public:
    43     HUDText();
    44     virtual ~HUDText();
     40    class _OrxonoxExport OverlayText : public OrxonoxOverlay
     41    {
     42    public:
     43        OverlayText();
     44        virtual ~OverlayText();
    4545
    46     virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
     46        virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
    4747
    48   protected:
    49     void setCaption(const std::string& caption);
    50     const std::string& getCaption() const;
    51     void setFont(const std::string& font);
    52     std::string getFont() const;
     48    protected:
     49        virtual void sizeChanged();
    5350
    54     Ogre::TextAreaOverlayElement* text_;
     51        void setCaption(const std::string& caption) { this->caption_ = caption; }
     52        const std::string& getCaption() const       { return this->caption_; }
    5553
    56   private:
    57     std::string caption_;
    58   };
     54        void setFont(const std::string& font);
     55        const std::string& getFont() const;
     56
     57        void setTextSize(float size) { this->setSize(Vector2(size, size)); }
     58        float getTextSize() const    { return this->getUncorrectedSize().y; }
     59
     60        Ogre::TextAreaOverlayElement* text_;
     61
     62    private:
     63        std::string caption_;
     64    };
    5965}
    60 #endif /* _HUDText_H__ */
     66#endif /* _OverlayText_H__ */
  • code/branches/hud/src/orxonox/overlays/console/InGameConsole.cc

    r1601 r1615  
    5454    SetConsoleCommand(InGameConsole, closeConsole, true);
    5555
    56     using namespace Ogre;
    57 
    5856    /**
    5957        @brief Constructor: Creates and initializes the InGameConsole.
     
    119117
    120118        // create a container
    121         this->consoleOverlayContainer_ = static_cast<OverlayContainer*>(ovMan->createOverlayElement("Panel", "InGameConsoleContainer"));
     119        this->consoleOverlayContainer_ = static_cast<Ogre::OverlayContainer*>(ovMan->createOverlayElement("Panel", "InGameConsoleContainer"));
    122120        this->consoleOverlayContainer_->setMetricsMode(Ogre::GMM_RELATIVE);
    123121        this->consoleOverlayContainer_->setPosition((1 - this->relativeWidth) / 2, 0);
     
    126124
    127125        // create BorderPanel
    128         this->consoleOverlayBorder_ = static_cast<BorderPanelOverlayElement*>(ovMan->createOverlayElement("BorderPanel", "InGameConsoleBorderPanel"));
     126        this->consoleOverlayBorder_ = static_cast<Ogre::BorderPanelOverlayElement*>(ovMan->createOverlayElement("BorderPanel", "InGameConsoleBorderPanel"));
    129127        this->consoleOverlayBorder_->setMetricsMode(Ogre::GMM_PIXELS);
    130128        this->consoleOverlayBorder_->setMaterialName("ConsoleCenter");
     
    139137
    140138        // create the text lines
    141         this->consoleOverlayTextAreas_ = new TextAreaOverlayElement*[LINES];
     139        this->consoleOverlayTextAreas_ = new Ogre::TextAreaOverlayElement*[LINES];
    142140        for (int i = 0; i < LINES; i++)
    143141        {
    144             this->consoleOverlayTextAreas_[i] = static_cast<TextAreaOverlayElement*>(ovMan->createOverlayElement("TextArea", "InGameConsoleTextArea" + Ogre::StringConverter::toString(i)));
     142            this->consoleOverlayTextAreas_[i] = static_cast<Ogre::TextAreaOverlayElement*>(ovMan->createOverlayElement("TextArea", "InGameConsoleTextArea" + Ogre::StringConverter::toString(i)));
    145143            this->consoleOverlayTextAreas_[i]->setMetricsMode(Ogre::GMM_PIXELS);
    146144            this->consoleOverlayTextAreas_[i]->setFontName("Monofur");
     
    153151
    154152        // create cursor (also a text area overlay element)
    155         this->consoleOverlayCursor_ = static_cast<TextAreaOverlayElement*>(ovMan->createOverlayElement("TextArea", "InGameConsoleCursor"));
     153        this->consoleOverlayCursor_ = static_cast<Ogre::TextAreaOverlayElement*>(ovMan->createOverlayElement("TextArea", "InGameConsoleCursor"));
    156154        this->consoleOverlayCursor_->setMetricsMode(Ogre::GMM_PIXELS);
    157155        this->consoleOverlayCursor_->setFontName("Monofur");
     
    163161
    164162        // create noise
    165         this->consoleOverlayNoise_ = static_cast<PanelOverlayElement*>(ovMan->createOverlayElement("Panel", "InGameConsoleNoise"));
     163        this->consoleOverlayNoise_ = static_cast<Ogre::PanelOverlayElement*>(ovMan->createOverlayElement("Panel", "InGameConsoleNoise"));
    166164        this->consoleOverlayNoise_->setMetricsMode(Ogre::GMM_PIXELS);
    167165        this->consoleOverlayNoise_->setPosition(5,0);
  • code/branches/hud/src/orxonox/overlays/hud/HUDBar.cc

    r1614 r1615  
    4343    unsigned int HUDBar::materialcount_s = 0;
    4444
    45     using namespace Ogre;
    46 
    4745    HUDBar::HUDBar()
    4846        : bar_(0)
     
    5452    HUDBar::~HUDBar()
    5553    {
    56         if (this->isInitialized())
    57         {
    58             if (this->bar_)
    59                 OverlayManager::getSingleton().destroyOverlayElement(this->bar_);
    60             // FIXME: Check whether we have to delete the textureUnitState_;
    61         }
     54        if (this->bar_)
     55            Ogre::OverlayManager::getSingleton().destroyOverlayElement(this->bar_);
    6256    }
    6357
     
    8276            barOffsetLeft_s = 0.06f;
    8377            barOffsetTop_s = 0.0f;
    84             this->bar_ = static_cast<PanelOverlayElement*>(OverlayManager::getSingleton().createOverlayElement("Panel", getName() + "Bar" + getUniqueNumberStr()));
     78
     79            this->bar_ = static_cast<Ogre::PanelOverlayElement*>(Ogre::OverlayManager::getSingleton()
     80                .createOverlayElement("Panel", "HUDBar_bar_" + getUniqueNumberStr()));
    8581            this->bar_->setMaterialName(materialname);
    8682            this->background_->addChild(bar_);
  • code/branches/hud/src/orxonox/overlays/hud/HUDBar.h

    r1614 r1615  
    4141namespace orxonox
    4242{
    43   class _OrxonoxExport HUDBar : public OrxonoxOverlay
    44   {
     43    class _OrxonoxExport HUDBar : public OrxonoxOverlay
     44    {
    4545    public:
    46       HUDBar();
    47       virtual ~HUDBar();
     46        HUDBar();
     47        virtual ~HUDBar();
    4848
    49       virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
     49        virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
    5050
    51       void setValue(float value);
    52       void addColour(float value, const ColourValue& colour);
    53       void clearColours();
     51        virtual void setValue(float value);
     52        void addColour(float value, const ColourValue& colour);
     53        void clearColours();
    5454
    55       inline void setRightToLeft(bool r2l)
     55        inline void setRightToLeft(bool r2l)
    5656        { this->right2Left_ = r2l; }
    57       inline bool getRightToLeft() const
     57        inline bool getRightToLeft() const
    5858        { return this->right2Left_; }
    59       inline float getValue() const
     59        inline float getValue() const
    6060        { return this->value_; }
    6161
    6262    private:
    63       static unsigned int materialcount_s;
    64       bool right2Left_;
    65       bool autoColour_;                   // whether bar changes colour automatically
    66       float value_;                       // progress of bar
    67       Ogre::PanelOverlayElement* bar_;
    68       Ogre::TextureUnitState* textureUnitState_;
    69       std::map<float, ColourValue> colours_;
     63        bool right2Left_;
     64        bool autoColour_;                   //!< whether bar changes colour automatically
     65        float value_;                       //!< progress of bar
    7066
    71       float barWidth_s;
    72       float barHeight_s;
    73       float barOffsetLeft_s;
    74       float barOffsetTop_s;
     67        Ogre::PanelOverlayElement* bar_;
     68        Ogre::TextureUnitState* textureUnitState_;
     69        std::map<float, ColourValue> colours_;
     70
     71        float barWidth_s;
     72        float barHeight_s;
     73        float barOffsetLeft_s;
     74        float barOffsetTop_s;
     75
     76        static unsigned int materialcount_s;
    7577    };
    7678}
  • code/branches/hud/src/orxonox/overlays/hud/HUDFPSText.cc

    r1614 r1615  
    3535namespace orxonox
    3636{
    37   CreateFactory(HUDFPSText);
     37    CreateFactory(HUDFPSText);
    3838
    39   HUDFPSText::HUDFPSText()
    40   {
    41     RegisterObject(HUDFPSText);
    42   }
     39    HUDFPSText::HUDFPSText()
     40    {
     41        RegisterObject(HUDFPSText);
     42    }
    4343
    44   HUDFPSText::~HUDFPSText()
    45   {
    46     if (this->isInitialized())
     44    HUDFPSText::~HUDFPSText()
    4745    {
    4846    }
    49   }
    5047
    51   void HUDFPSText::tick(float dt)
    52   {
    53     float fps = GraphicsEngine::getSingleton().getAverageFPS();
    54     this->text_->setCaption(this->getCaption() + convertToString(fps));
    55   }
     48    void HUDFPSText::tick(float dt)
     49    {
     50        float fps = GraphicsEngine::getSingleton().getAverageFPS();
     51        this->text_->setCaption(this->getCaption() + convertToString(fps));
     52    }
    5653}
  • code/branches/hud/src/orxonox/overlays/hud/HUDFPSText.h

    r1599 r1615  
    3232#include "OrxonoxPrereqs.h"
    3333
    34 #include "HUDText.h"
     34#include "overlays/OverlayText.h"
    3535
    3636namespace orxonox
    3737{
    38   class _OrxonoxExport HUDFPSText : public HUDText, public Tickable
    39   {
    40   public:
    41     HUDFPSText();
    42     virtual ~HUDFPSText();
     38    class _OrxonoxExport HUDFPSText : public OverlayText, public Tickable
     39    {
     40    public:
     41        HUDFPSText();
     42        ~HUDFPSText();
    4343
    44     //virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
     44    private:
     45        void tick(float dt);
    4546
    46     virtual void tick(float dt);
    47 
    48   private:
    49   };
     47    private:
     48    };
    5049}
    5150#endif /* _HUDFPSText_H__ */
  • code/branches/hud/src/orxonox/overlays/hud/HUDNavigation.cc

    r1614 r1615  
    3535
    3636#include "util/Math.h"
     37#include "util/String.h"
    3738#include "core/ConsoleCommand.h"
    3839#include "objects/SpaceShip.h"
     
    4546    CreateFactory(HUDNavigation);
    4647
    47     //HUDNavigation* HUDNavigation::instance_s = 0;
    48 
    49     using namespace Ogre;
    50 
    5148    HUDNavigation::HUDNavigation()
    52       : container_(0)
    53       , navMarker_(0)
    54       , aimMarker_(0)
    55       , navText_(0)
     49        : navMarker_(0)
     50        , aimMarker_(0)
     51        , navText_(0)
    5652    {
    5753        RegisterObject(HUDNavigation);
    58        
    59         /*assert(instance_s == 0); // singleton class
    60         HUDNavigation::instance_s = this;*/
    6154    }
    6255
    6356    HUDNavigation::~HUDNavigation()
    6457    {
    65         if (this->isInitialized())
    66         {
    67             if (this->navMarker_)
    68                 OverlayManager::getSingleton().destroyOverlayElement(this->navMarker_);
    69             if (this->navText_)
    70                 OverlayManager::getSingleton().destroyOverlayElement(this->navText_);
    71             if (this->aimMarker_)
    72                 OverlayManager::getSingleton().destroyOverlayElement(this->aimMarker_);
    73             if (this->container_)
    74                 OverlayManager::getSingleton().destroyOverlayElement(this->container_);
    75         }
    76 
    77         //HUDNavigation::instance_s = 0;
     58        if (this->navMarker_)
     59            Ogre::OverlayManager::getSingleton().destroyOverlayElement(this->navMarker_);
     60        if (this->navText_)
     61            Ogre::OverlayManager::getSingleton().destroyOverlayElement(this->navText_);
     62        if (this->aimMarker_)
     63            Ogre::OverlayManager::getSingleton().destroyOverlayElement(this->aimMarker_);
    7864    }
    7965
     
    8470        if (mode == XMLPort::LoadObject)
    8571        {
    86             // create container because we cannot add a Text element to an Overlay
    87             container_ = static_cast<OverlayContainer*>(Ogre::OverlayManager::getSingleton().createOverlayElement("Panel", getName() + "_navContainer"));
    88 
    8972            // create nav text
    90             navText_ = static_cast<TextAreaOverlayElement*>(Ogre::OverlayManager::getSingleton().createOverlayElement("TextArea", getName() + "_navText"));
     73            navText_ = static_cast<Ogre::TextAreaOverlayElement*>(Ogre::OverlayManager::getSingleton()
     74                .createOverlayElement("TextArea", "HUDNavigation_navText_" + getUniqueNumberStr()));
    9175            navText_->setCharHeight(0.05f);
    9276            navText_->setFontName("Monofur");
    9377
    9478            // create nav marker
    95             navMarker_ = static_cast<PanelOverlayElement*>(OverlayManager::getSingleton().createOverlayElement("Panel", getName() + "_navMarker"));
     79            navMarker_ = static_cast<Ogre::PanelOverlayElement*>(Ogre::OverlayManager::getSingleton()
     80                .createOverlayElement("Panel", "HUDNavigation_navMarker_" + getUniqueNumberStr()));
    9681            navMarker_->setMaterialName("Orxonox/NavArrows");
    9782            navMarkerSize_ = 0.05; //default
     
    9984
    10085            // create aim marker
    101             aimMarker_ = static_cast<PanelOverlayElement*>(OverlayManager::getSingleton().createOverlayElement("Panel", getName() + "_aimMarker"));
     86            aimMarker_ = static_cast<Ogre::PanelOverlayElement*>(Ogre::OverlayManager::getSingleton()
     87                .createOverlayElement("Panel", "HUDNavigation_aimMarker_" + getUniqueNumberStr()));
    10288            aimMarker_->setMaterialName("Orxonox/NavCrosshair");
    10389            aimMarkerSize_ = 0.04; // default
    10490           
    105             container_->addChild(navMarker_);
    106             container_->addChild(aimMarker_);
    107             container_->addChild(navText_);
    108             container_->show();
    109 
    110             overlay_->add2D(container_);
     91            background_->addChild(navMarker_);
     92            background_->addChild(aimMarker_);
     93            background_->addChild(navText_);
     94
     95            // hide at first
     96            this->setVisibility(false);
    11197        }
    11298
     
    122108    }
    123109
    124     void HUDNavigation::setNavMarkerSize(float size)
    125     {
    126         this->navMarkerSize_ = size;
    127     }
    128 
    129     float HUDNavigation::getNavMarkerSize() const
    130     {
    131         return this->navMarkerSize_;
    132     }
    133 
    134     void HUDNavigation::setAimMarkerSize(float size)
    135     {
    136         this->aimMarkerSize_ = size;
    137     }
    138 
    139     float HUDNavigation::getAimMarkerSize() const
    140     {
    141         return this->aimMarkerSize_;
    142     }
    143 
    144110    void HUDNavigation::setFont(const std::string& font)
    145111    {
     
    148114    }
    149115
    150     std::string HUDNavigation::getFont() const
     116    const std::string& HUDNavigation::getFont() const
    151117    {
    152118        if (this->navText_)
    153119            return this->navText_->getFontName();
    154120        else
    155             return "";
     121            return blankString;
    156122    }
    157123
     
    310276            navText_->setCharHeight(navText_->getCharHeight() * yScale);
    311277    }
    312 
    313     /*static*/ /*HUDNavigation& HUDNavigation::getInstance()
    314     {
    315         assert(instance_s);
    316         return *instance_s;
    317     }*/
    318278}
  • code/branches/hud/src/orxonox/overlays/hud/HUDNavigation.h

    r1614 r1615  
    3939    class _OrxonoxExport HUDNavigation : public OrxonoxOverlay, public Tickable
    4040    {
    41       public:
     41    public:
    4242        HUDNavigation();
    4343        ~HUDNavigation();
     
    4545        void XMLPort(Element& xmlElement, XMLPort::Mode mode);
    4646
    47         void tick(float dt);
    48 
    49         float getDist2Focus() const;
    50 
    51       protected:
     47    private:
    5248        void sizeChanged();
    5349        void angleChanged() { }
    5450        void positionChanged() { }
    5551
    56       private:
    57         HUDNavigation(HUDNavigation& instance);
     52        void tick(float dt);
     53
     54        // XMLPort accessors
     55        void setNavMarkerSize(float size) { this->navMarkerSize_ = size; }
     56        float getNavMarkerSize() const    { return this->navMarkerSize_; }
     57
     58        void setAimMarkerSize(float size) { this->aimMarkerSize_ = size; }
     59        float getAimMarkerSize() const    { return this->aimMarkerSize_; }
     60
     61        void setTextSize(float size);
     62        float getTextSize() const;
     63
     64        void setFont(const std::string& font);
     65        const std::string& getFont() const;
     66
    5867        void updateMarker();
    5968        void updateFocus();
     69        float getDist2Focus() const;
    6070
    61         // XMLPort accessors
    62         void setNavMarkerSize(float size);
    63         float getNavMarkerSize() const;
    64         void setAimMarkerSize(float size);
    65         float getAimMarkerSize() const;
    66         void setTextSize(float size);
    67         float getTextSize() const;
    68         void setFont(const std::string& font);
    69         std::string getFont() const;
    70 
    71         Ogre::OverlayContainer* container_;         //!< Container that holds the navigation elements
    7271        Ogre::PanelOverlayElement* navMarker_;      //!< the panel used to show the arrow and the target marker
    7372        float navMarkerSize_;                       //!< One paramter size of the navigation marker
     
    7675        Ogre::TextAreaOverlayElement* navText_;     //!< Text overlay to display the target distance
    7776        bool wasOutOfView_;                         //!< Performance booster variable: setMaterial is not cheap
    78   };
     77    };
    7978}
    8079
  • code/branches/hud/src/orxonox/overlays/hud/HUDRTRText.cc

    r1614 r1615  
    3535namespace orxonox
    3636{
    37   CreateFactory(HUDRTRText);
     37    CreateFactory(HUDRTRText);
    3838
    39   HUDRTRText::HUDRTRText()
    40   {
    41     RegisterObject(HUDRTRText);
    42   }
     39    HUDRTRText::HUDRTRText()
     40    {
     41        RegisterObject(HUDRTRText);
     42    }
    4343
    44   HUDRTRText::~HUDRTRText()
    45   {
    46     if (this->isInitialized())
     44    HUDRTRText::~HUDRTRText()
    4745    {
    4846    }
    49   }
    5047
    51   void HUDRTRText::tick(float dt)
    52   {
    53     float rtr = GraphicsEngine::getSingleton().getAverageRTR();
    54     this->text_->setCaption(this->getCaption() + convertToString(rtr));
    55   }
     48    void HUDRTRText::tick(float dt)
     49    {
     50        float rtr = GraphicsEngine::getSingleton().getAverageRTR();
     51        this->text_->setCaption(this->getCaption() + convertToString(rtr));
     52    }
    5653}
  • code/branches/hud/src/orxonox/overlays/hud/HUDRTRText.h

    r1599 r1615  
    3232#include "OrxonoxPrereqs.h"
    3333
    34 #include "HUDText.h"
     34#include "overlays/OverlayText.h"
    3535
    3636namespace orxonox
    3737{
    38   class _OrxonoxExport HUDRTRText : public HUDText, public Tickable
    39   {
    40   public:
    41     HUDRTRText();
    42     virtual ~HUDRTRText();
     38    class _OrxonoxExport HUDRTRText : public OverlayText, public Tickable
     39    {
     40    public:
     41        HUDRTRText();
     42        ~HUDRTRText();
    4343
    44     //virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
    45 
    46     virtual void tick(float dt);
    47 
    48   private:
    49   };
     44    private:
     45        void tick(float dt);
     46    };
    5047}
    5148#endif /* _HUDRTRText_H__ */
  • code/branches/hud/src/orxonox/overlays/hud/HUDRadar.cc

    r1614 r1615  
    4545    CreateFactory(HUDRadar);
    4646
    47     using namespace Ogre;
    48 
    4947    HUDRadar::HUDRadar()
    5048        : marker_(0)
     
    5553    HUDRadar::~HUDRadar()
    5654    {
    57         if (this->isInitialized())
     55        if (this->marker_)
     56            Ogre::OverlayManager::getSingleton().destroyOverlayElement(this->marker_);
     57        for (std::vector<Ogre::PanelOverlayElement*>::iterator it = this->radarDots_.begin();
     58            it != this->radarDots_.end(); ++it)
    5859        {
    59             if (this->marker_)
    60                 OverlayManager::getSingleton().destroyOverlayElement(this->marker_);
    61             for (std::vector<Ogre::PanelOverlayElement*>::iterator it = this->radarDots_.begin();
    62                 it != this->radarDots_.end(); ++it)
    63             {
    64                 OverlayManager::getSingleton().destroyOverlayElement(*it);
    65             }
     60            Ogre::OverlayManager::getSingleton().destroyOverlayElement(*it);
    6661        }
    6762    }
     
    6964    void HUDRadar::XMLPort(Element& xmlElement, XMLPort::Mode mode)
    7065    {
     66        if (mode == XMLPort::LoadObject)
     67            this->bCorrectAspect_ = true;
     68
    7169        OrxonoxOverlay::XMLPort(xmlElement, mode);
    7270
    7371        if (mode == XMLPort::LoadObject)
    7472        {
     73            marker_ = static_cast<Ogre::PanelOverlayElement*>(Ogre::OverlayManager::getSingleton()
     74                .createOverlayElement("Panel", "HUDRadar_marker_" + getUniqueNumberStr()));
     75            marker_->setMaterialName("Orxonox/RadarMarker");
     76            overlay_->add2D(marker_);
     77            marker_->hide();
     78
    7579            this->sensitivity_ = 1.0f;
    7680            this->halfDotSizeDistance_ = 3000.0f;
     
    8589        shapeMaterials_[RadarViewable::Triangle] = "RadarSquare.tga";
    8690        shapeMaterials_[RadarViewable::Square]   = "RadarSquare.tga";
    87 
    88         if (mode == XMLPort::LoadObject)
    89         {
    90             marker_ = (Ogre::PanelOverlayElement*)Ogre::OverlayManager::getSingleton().createOverlayElement("Panel", getName() + "_Marker");
    91             marker_->setMaterialName("Orxonox/RadarMarker");
    92             overlay_->add2D(marker_);
    93             marker_->hide();
    94         }
    9591    }
    9692
  • code/branches/hud/src/orxonox/overlays/hud/HUDRadar.h

    r1614 r1615  
    4444    class _OrxonoxExport HUDRadar : public OrxonoxOverlay, public RadarListener
    4545    {
    46       public:
     46    public:
    4747        HUDRadar();
    4848        ~HUDRadar();
     
    5050        void XMLPort(Element& xmlElement, XMLPort::Mode mode);
    5151
    52         float getRadarSensitivity() const { return this->sensitivity_; }
    53         void setRadarSensitivity(float sensitivity) { this->sensitivity_ = sensitivity; }
    54 
     52    private:
     53        // XML accessors
    5554        float getHalfDotSizeDistance() const { return this->halfDotSizeDistance_; }
    5655        void setHalfDotSizeDistance(float distance) { this->halfDotSizeDistance_ = distance; }
     
    5958        void setMaximumDotSize(float size) { this->maximumDotSize_ = size; }
    6059
    61       private:
     60        float getRadarSensitivity() const { return this->sensitivity_; }
     61        // used also by RadarListener interface!
     62        void setRadarSensitivity(float sensitivity) { this->sensitivity_ = sensitivity; }
     63
     64        // RadarListener interface
    6265        void displayObject(RadarViewable* viewable, bool bIsMarked);
    63         float getRadarSensitivity() { return 1.0f; }
    6466        void radarTick(float dt);
    6567
  • code/branches/hud/src/orxonox/overlays/hud/HUDSpeedBar.cc

    r1614 r1615  
    3434namespace orxonox
    3535{
    36   CreateFactory(HUDSpeedBar);
     36    CreateFactory(HUDSpeedBar);
    3737
    38   using namespace Ogre;
     38    HUDSpeedBar::HUDSpeedBar()
     39    {
     40        RegisterObject(HUDSpeedBar);
    3941
    40   HUDSpeedBar::HUDSpeedBar()
    41   {
    42     RegisterObject(HUDSpeedBar);
     42    }
    4343
    44   }
    45 
    46   HUDSpeedBar::~HUDSpeedBar()
    47   {
    48     if (this->isInitialized())
     44    HUDSpeedBar::~HUDSpeedBar()
    4945    {
    5046    }
    51   }
    5247
    53   void HUDSpeedBar::tick(float dt)
    54   {
    55     SpaceShip* ship = SpaceShip::getLocalShip();
    56     if (ship)
     48    void HUDSpeedBar::tick(float dt)
    5749    {
    58       float v = ship->getVelocity().length();
    59       float vmax = ship->getMaxSpeed();
    60       this->setValue(v/vmax);
     50        SpaceShip* ship = SpaceShip::getLocalShip();
     51        if (ship)
     52        {
     53            float v = ship->getVelocity().length();
     54            float vmax = ship->getMaxSpeed();
     55            this->setValue(v/vmax);
     56        }
    6157    }
    62   }
    6358}
  • code/branches/hud/src/orxonox/overlays/hud/HUDSpeedBar.h

    r1614 r1615  
    3737namespace orxonox
    3838{
    39   class _OrxonoxExport HUDSpeedBar : public HUDBar, public Tickable
    40   {
     39    class _OrxonoxExport HUDSpeedBar : public HUDBar, public Tickable
     40    {
    4141    public:
    42       HUDSpeedBar();
    43       virtual ~HUDSpeedBar();
    44 
    45       //virtual void XMLPort(Element& xmlElement, XMLPort::Mode mode);
    46 
    47       virtual void tick(float dt);
     42        HUDSpeedBar();
     43        ~HUDSpeedBar();
    4844
    4945    private:
    50 
     46        void tick(float dt);
    5147    };
    5248}
  • code/branches/hud/src/util/String.cc

    r1505 r1615  
    3131#include <cctype>
    3232#include <iostream>
     33
     34/**
     35    @brief Blank string as variable so you can use const std::string& even
     36           if you have to return "".
     37*/
     38std::string blankString = "";
    3339
    3440/**
  • code/branches/hud/src/util/String.h

    r1595 r1615  
    3434#include <string>
    3535#include <sstream>
     36
     37extern _UtilExport std::string blankString;
    3638
    3739_UtilExport void         strip(std::string* str);
  • code/branches/hud/visual_studio/vc8/orxonox.vcproj

    r1614 r1615  
    473473                                        >
    474474                                </File>
     475                                <File
     476                                        RelativePath="..\..\src\orxonox\overlays\OverlayText.cc"
     477                                        >
     478                                </File>
    475479                                <Filter
    476480                                        Name="console"
     
    506510                                        <File
    507511                                                RelativePath="..\..\src\orxonox\overlays\hud\HUDSpeedBar.cc"
    508                                                 >
    509                                         </File>
    510                                         <File
    511                                                 RelativePath="..\..\src\orxonox\overlays\hud\HUDText.cc"
    512512                                                >
    513513                                        </File>
     
    695695                                        >
    696696                                </File>
     697                                <File
     698                                        RelativePath="..\..\src\orxonox\overlays\OverlayText.h"
     699                                        >
     700                                </File>
    697701                                <Filter
    698702                                        Name="hud"
     
    720724                                        <File
    721725                                                RelativePath="..\..\src\orxonox\overlays\hud\HUDSpeedBar.h"
    722                                                 >
    723                                         </File>
    724                                         <File
    725                                                 RelativePath="..\..\src\orxonox\overlays\hud\HUDText.h"
    726726                                                >
    727727                                        </File>
Note: See TracChangeset for help on using the changeset viewer.