Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1993


Ignore:
Timestamp:
Oct 22, 2008, 5:25:01 AM (16 years ago)
Author:
landauf
Message:

added several new classes

Location:
code/branches/objecthierarchy
Files:
10 added
26 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/bin/def_keybindings.ini

    r1887 r1993  
    11[Keys]
    2 KeyA="scale -1 moveLateral"
     2KeyA="scale -1 moveRightLeft"
    33KeyABNT_C1=
    44KeyABNT_C2=
     
    1616KeyComma=
    1717KeyConvert=
    18 KeyD="scale 1 moveLateral"
     18KeyD="scale 1 moveRightLeft"
    1919KeyDelete=
    2020KeyDivide=
    2121KeyDown=
    22 KeyE="scale -1 moveRoll"
     22KeyE="scale -1 rotateRoll"
    2323KeyEnd=
    2424KeyEquals=
    2525KeyEscape="exit"
    26 KeyF=
     26KeyF="scale -1 moveUpDown"
    2727KeyF1="OverlayGroup toggleVisibility Debug"
    2828KeyF10=
     
    105105KeyPower=
    106106KeyPreviousTrack=
    107 KeyQ="scale 1 moveRoll"
    108 KeyR=
     107KeyQ="scale 1 rotateRoll"
     108KeyR="scale 1 moveUpDown"
    109109KeyReturn=
    110110KeyRight=
     
    114114KeyRightShift=
    115115KeyRightWindows=
    116 KeyS="scale -1 moveLongitudinal"
     116KeyS="scale -1 moveFrontBack"
    117117KeyScrollLock=
    118118KeySemicolon=
     
    132132KeyVolumeDown=
    133133KeyVolumeUp=
    134 KeyW="scale 1 moveLongitudinal"
     134KeyW="scale 1 moveFrontBack"
    135135KeyWake=
    136136KeyWebBack=
     
    254254
    255255[MouseAxes]
    256 MouseXNeg="scale 1 moveYaw"
    257 MouseXPos="scale -1 moveYaw"
    258 MouseYNeg="scale 1 movePitch"
    259 MouseYPos="scale -1 movePitch"
     256MouseXNeg="scale -1 rotateYaw"
     257MouseXPos="scale 1 rotateYaw"
     258MouseYNeg="scale 1 rotatePitch"
     259MouseYPos="scale -1 rotatePitch"
    260260
  • code/branches/objecthierarchy/src/core/BaseObject.cc

    r1989 r1993  
    3838#include "Level.h"
    3939#include "Template.h"
     40#include "util/String.h"
    4041
    4142namespace orxonox
     
    8788    const std::string& BaseObject::getLevelfile() const
    8889    {
    89         return this->level_->getFile();
     90        if (this->level_)
     91            return this->level_->getFile();
     92        else
     93            return blankString;
    9094    }
    9195
  • code/branches/objecthierarchy/src/core/Template.cc

    r1989 r1993  
    3333#include "core/XMLPort.h"
    3434#include "util/Debug.h"
     35#include "tinyxml/ticpp.h"
    3536
    3637namespace orxonox
     
    3839    CreateFactory(Template);
    3940
    40     Template::Template()
     41    Template::Template() : xmlelement_("")
    4142    {
    4243        RegisterObject(Template);
     
    5960        XMLPortParam(Template, "baseclass", setBaseclass, getBaseclass, xmlelement, mode);
    6061
    61         this->setXMLElement(*xmlelement.FirstChildElement(false));
     62        this->setXMLElement(*dynamic_cast<TiXmlElement*>(xmlelement.FirstChildElement(false)->GetTiXmlPointer()));
    6263    }
    6364
     
    7980    }
    8081
    81     const Element& Template::getXMLElement() const
     82    const TiXmlElement& Template::getXMLElement() const
    8283    {
    8384        if (this->bIsLink_)
     
    8990                {
    9091                    this->bIsReturningXMLElement_ = true;
    91                     const Element& element = temp->getXMLElement();
     92                    const TiXmlElement& element = temp->getXMLElement();
    9293                    this->bIsReturningXMLElement_ = false;
    9394                    return element;
     
    127128        COUT(4) << object->getLoaderIndentation() << " aplying Template \"" << this->getName() << "\"..." << std::endl;
    128129
    129         Element temp = this->getXMLElement();
     130        Element temp = ((TiXmlElement*)&this->getXMLElement());
    130131        object->XMLPort(temp, XMLPort::LoadObject);
    131132    }
  • code/branches/objecthierarchy/src/core/Template.h

    r1989 r1993  
    3535
    3636#include "BaseObject.h"
    37 #include "tinyxml/ticpp.h"
     37#include "tinyxml/tinyxml.h"
    3838
    3939namespace orxonox
     
    5353                { return this->link_; }
    5454
    55             inline void setXMLElement(const Element& xmlelement)
     55            inline void setXMLElement(const TiXmlElement& xmlelement)
    5656                { this->xmlelement_ = xmlelement; }
    57             const Element& getXMLElement() const;
     57            const TiXmlElement& getXMLElement() const;
    5858
    5959            void setBaseclass(const std::string& baseclass);
     
    7070
    7171        private:
    72             Element xmlelement_;
     72            TiXmlElement xmlelement_;
    7373            std::string link_;
    7474            std::string baseclass_;
  • code/branches/objecthierarchy/src/orxonox/CMakeLists.txt

    r1989 r1993  
    4747  objects/worldentities/MovableEntity.cc
    4848  objects/worldentities/ControllableEntity.cc
     49
     50  objects/worldentities/Model.cc
     51
    4952#  objects/Backlight.cc
    5053  objects/Camera.cc
     
    5962  objects/Trigger.cc
    6063  objects/DistanceTrigger.cc
     64
     65  objects/worldentities/pawns/Spectator.cc
     66
     67  objects/controllers/Controller.cc
     68  objects/controllers/HumanController.cc
    6169
    6270  objects/infos/Info.cc
  • code/branches/objecthierarchy/src/orxonox/OrxonoxPrereqs.h

    r1989 r1993  
    8686    class ControllableEntity;
    8787
     88    class Model;
     89
     90    class Spectator;
     91
     92    class Controller;
     93    class HumanController;
     94
    8895    class Backlight;
    8996    class Camera;
  • code/branches/objecthierarchy/src/orxonox/objects/Camera.cc

    r1989 r1993  
    4747namespace orxonox
    4848{
     49  CreateUnloadableFactory(Camera);
     50
    4951  Camera::Camera()
    5052  {
     
    6870  void Camera::tick(float dt)
    6971  {
     72      SUPER(Camera, tick, dt);
     73
    7074      // this stuff here may need some adjustments
    7175      float coeff = (this->bDrag_) ? min(1.0f, 15.0f * dt) : (1.0f);
  • code/branches/objecthierarchy/src/orxonox/objects/Camera.h

    r1989 r1993  
    3636#include "OrxonoxPrereqs.h"
    3737#include "objects/worldentities/PositionableEntity.h"
     38#include "objects/Tickable.h"
    3839
    3940namespace orxonox
    4041{
    41     class _OrxonoxExport Camera : public PositionableEntity
     42    class _OrxonoxExport Camera : public PositionableEntity//, public Tickable
    4243    {
    4344      friend class CameraHandler;
     45
    4446      public:
    4547        Camera();
    4648        virtual ~Camera();
    4749
    48         void tick(float dt);
     50        virtual void tick(float dt);
    4951        void update();
    5052
  • code/branches/objecthierarchy/src/orxonox/objects/CameraHandler.h

    r1505 r1993  
    4444#include "core/BaseObject.h"
    4545
    46 #include "Camera.h"
    47 
    4846namespace orxonox
    4947{
  • code/branches/objecthierarchy/src/orxonox/objects/gametypes/Gametype.cc

    r1989 r1993  
    3333#include "core/ConsoleCommand.h"
    3434#include "objects/infos/PlayerInfo.h"
     35#include "objects/worldentities/pawns/Spectator.h"
    3536
    3637#include "network/Host.h"
     
    4647        RegisterObject(Gametype);
    4748
     49        this->defaultPawn_ = Class(Spectator);
    4850        this->getConnectedClients();
    4951
  • code/branches/objecthierarchy/src/orxonox/objects/infos/PlayerInfo.cc

    r1989 r1993  
    4242#include "objects/gametypes/Gametype.h"
    4343#include "objects/worldentities/ControllableEntity.h"
     44#include "objects/controllers/HumanController.h"
    4445
    4546namespace orxonox
     
    5354        this->ping_ = -1;
    5455        this->clientID_ = network::CLIENTID_UNKNOWN;
    55         this->bLocalPlayer_ = Core::isStandalone();
    5656        this->bLocalPlayer_ = false;
    5757        this->bHumanPlayer_ = false;
     
    6060        this->pawn_ = 0;
    6161        this->pawnID_ = network::OBJECTID_UNKNOWN;
     62        this->controller_ = 0;
     63        this->setDefaultController(Class(HumanController));
    6264
    6365        this->setConfigValues();
    6466        this->registerVariables();
    65 
    66 //COUT(0) << "created PlayerInfo (" << this->getObjectID() << ")" << std::endl;
    6767    }
    6868
    6969    PlayerInfo::~PlayerInfo()
    7070    {
    71         Gametype* gametype = Gametype::getCurrentGametype();
    72         if (gametype)
    73             gametype->removePlayer(this);
    74 //COUT(0) << "destroyed PlayerInfo (" << this->getObjectID() << ")" << std::endl;
     71        if (this->isInitialized())
     72        {
     73            Gametype* gametype = Gametype::getCurrentGametype();
     74            if (gametype)
     75                gametype->removePlayer(this);
     76
     77            if (this->controller_)
     78                delete this->controller_;
     79
     80            if (this->pawn_)
     81                this->pawn_->removePlayer();
     82        }
    7583    }
    7684
     
    8290    void PlayerInfo::checkNick()
    8391    {
    84 //std::cout << "# PI(" << this->getObjectID() << "): checkName: " << this->bLocalPlayer_ << std::endl;
    8592        if (this->bLocalPlayer_)
    8693        {
     
    94101    void PlayerInfo::changedName()
    95102    {
    96 //std::cout << "# PI(" << this->getObjectID() << "): changedName to " << this->getName() << std::endl;
    97103        Gametype* gametype = Gametype::getCurrentGametype();
    98104        if (gametype)
     
    113119    void PlayerInfo::clientChangedName()
    114120    {
    115 //std::cout << "# PI(" << this->getObjectID() << "): clientChangedName() from " << this->getName() << " to " << this->playerName_ << std::endl;
    116121        this->setName(this->playerName_);
    117122    }
     
    119124    void PlayerInfo::checkClientID()
    120125    {
    121 //std::cout << "# PI(" << this->getObjectID() << "): checkClientID()" << std::endl;
    122126        this->bHumanPlayer_ = true;
    123127
    124128        if (this->clientID_ == network::Host::getPlayerID())
    125129        {
    126 //std::cout << "# PI(" << this->getObjectID() << "): checkClientID(): it's the client's ID" << std::endl;
    127             this->bLocalPlayer_ = true;
    128             this->playerName_ = this->nick_;
    129 //std::cout << "# PI(" << this->getObjectID() << "): checkClientID(): name: " << this->getName() << std::endl;
     130            this->takeLocalControl();
    130131
    131132            if (Core::isClient())
    132             {
    133 //std::cout << "# PI(" << this->getObjectID() << "): checkClientID(): we're on a client: set object mode to bidirectional" << std::endl;
    134133                this->setObjectMode(network::direction::bidirectional);
    135 //std::cout << "# PI(" << this->getObjectID() << "): checkClientID(): proposed name: " << this->playerName_ << std::endl;
    136             }
    137134            else
    138135            {
    139 //std::cout << "# PI(" << this->getObjectID() << "): checkClientID(): we're not on a client: finish setup" << std::endl;
    140136                this->clientChangedName();
    141137                this->bFinishedSetup_ = true;
     
    147143    void PlayerInfo::finishedSetup()
    148144    {
    149 //std::cout << "# PI(" << this->getObjectID() << "): finishedSetup(): " << this->bFinishedSetup_ << std::endl;
    150145        if (Core::isClient())
    151         {
    152 //std::cout << "# PI(" << this->getObjectID() << "): finishedSetup(): we're a client: finish setup" << std::endl;
    153146            this->bFinishedSetup_ = true;
    154         }
    155147        else if (this->bFinishedSetup_)
    156148        {
    157 //std::cout << "# PI(" << this->getObjectID() << "): finishedSetup(): we're a server: add player" << std::endl;
    158149            Gametype* gametype = Gametype::getCurrentGametype();
    159150            if (gametype)
    160151                gametype->addPlayer(this);
    161         }
    162         else
    163         {
    164 //std::cout << "# PI(" << this->getObjectID() << "): finishedSetup(): we're a server: client not yet finished" << std::endl;
    165152        }
    166153    }
     
    171158        this->pawn_ = pawn;
    172159        this->pawnID_ = pawn->getObjectID();
     160
     161        if (this->controller_)
     162            this->controller_->setPawn(this->pawn_);
    173163    }
    174164
     
    180170    }
    181171
     172    void PlayerInfo::takeLocalControl()
     173    {
     174        this->bLocalPlayer_ = true;
     175        this->playerName_ = this->nick_;
     176        this->createController();
     177    }
     178
     179    void PlayerInfo::createController()
     180    {
     181        this->controller_ = this->defaultController_.fabricate();
     182        this->controller_->setPawn(this->pawn_);
     183    }
     184
    182185    void PlayerInfo::updatePawn()
    183186    {
  • code/branches/objecthierarchy/src/orxonox/objects/infos/PlayerInfo.h

    r1989 r1993  
    3333
    3434#include "Info.h"
     35#include "core/Identifier.h"
     36#include "objects/controllers/Controller.h"
    3537
    3638namespace orxonox
     
    5860                { return this->bLocalPlayer_; }
    5961
    60             void startControl(ControllableEntity* pawn);
    61             void stopControl();
     62            virtual void startControl(ControllableEntity* pawn);
     63            virtual void stopControl();
    6264
    6365            inline ControllableEntity* getPawn() const
    6466                { return this->pawn_; }
     67/*
     68            inline void setController(Controller* controller)
     69                { this->controller_ = controller; }
     70            inline Controller* getController() const
     71                { return this->controller_; }
     72*/
     73        protected:
     74            inline void setDefaultController(Identifier* identifier)
     75                { this->defaultController_ = identifier; }
    6576
    6677        private:
     78            virtual void createController();
     79            virtual void takeLocalControl();
     80
    6781            void checkClientID();
    6882            void finishedSetup();
     
    8296            ControllableEntity* pawn_;
    8397            unsigned int pawnID_;
     98            Controller* controller_;
     99            SubclassIdentifier<Controller> defaultController_;
    84100    };
    85101}
  • code/branches/objecthierarchy/src/orxonox/objects/worldentities/ControllableEntity.cc

    r1989 r1993  
    5353        this->hud_ = 0;
    5454        this->camera_ = 0;
    55 
     55        this->bDestroyWhenPlayerLeft_ = false;
    5656
    5757        this->velocity_ = Vector3::ZERO;
     
    9494
    9595        if (this->bControlled_)
     96        {
    9697            this->startLocalControl();
     98            this->setObjectMode(network::direction::bidirectional);
     99        }
    97100    }
    98101
     
    105108        this->playerID_ = network::OBJECTID_UNKNOWN;
    106109        this->bControlled_ = false;
     110        this->setObjectMode(network::direction::toclient);
     111
     112        if (this->bDestroyWhenPlayerLeft_)
     113            delete this;
    107114    }
    108115
    109116    void ControllableEntity::updatePlayer()
    110117    {
    111         this->player_ = dynamic_cast<PlayerInfo*>(network::Synchronisable::getSynchronisable(this->playerID_));
    112         if (this->player_ && (this->player_->getPawn() != this))
    113             this->player_->startControl(this);
     118        if (this->playerID_ != network::OBJECTID_UNKNOWN)
     119        {
     120            this->player_ = dynamic_cast<PlayerInfo*>(network::Synchronisable::getSynchronisable(this->playerID_));
     121            if (this->player_ && (this->player_->getPawn() != this))
     122                this->player_->startControl(this);
     123        }
    114124    }
    115125
    116126    void ControllableEntity::startLocalControl()
    117127    {
     128        std::cout << "###### start local control" << std::endl;
    118129        this->camera_ = new Camera();
    119130        this->camera_->requestFocus();
    120 
    121         this->hud_ = new OverlayGroup();
    122         this->hud_->addTemplate(this->hudtemplate_);
     131        this->attach(this->camera_);
     132
     133        if (this->hudtemplate_ != "")
     134        {
     135            this->hud_ = new OverlayGroup();
     136            this->hud_->addTemplate(this->hudtemplate_);
     137        }
    123138    }
    124139
    125140    void ControllableEntity::stopLocalControl()
    126141    {
     142        std::cout << "###### stop local control" << std::endl;
     143        this->detach(this->camera_);
    127144        delete this->camera_;
    128145        this->camera_ = 0;
     
    137154        {
    138155            this->velocity_ += (dt * this->acceleration_);
    139             this->node_->translate(dt * this->velocity_);
     156            this->node_->translate(dt * this->velocity_, Ogre::Node::TS_PARENT);
    140157
    141158            if (Core::isMaster())
     
    150167            }
    151168        }
    152 
    153 //        std::cout << this->getPosition() << std::endl;
    154169    }
    155170
  • code/branches/objecthierarchy/src/orxonox/objects/worldentities/ControllableEntity.h

    r1989 r1993  
    5252                { return this->player_; }
    5353
     54            inline void setDestroyWhenPlayerLeft(bool bDestroy)
     55                { this->bDestroyWhenPlayerLeft_ = bDestroy; }
     56            inline bool getDestroyWhenPlayerLeft() const
     57                { return this->bDestroyWhenPlayerLeft_; }
     58
    5459            virtual void startLocalControl();
    5560            virtual void stopLocalControl();
     
    7075            virtual void switchCamera() {}
    7176
     77            inline const Vector3& getVelocity() const
     78                { return this->velocity_; }
     79            inline const Vector3& getAcceleration() const
     80                { return this->acceleration_; }
     81            inline const std::string& getHudTemplate() const
     82                { return this->hudtemplate_; }
     83
    7284        protected:
    7385            using WorldEntity::setPosition;
     
    7587            using WorldEntity::setOrientation;
    7688            using WorldEntity::rotate;
     89            using WorldEntity::yaw;
     90            using WorldEntity::pitch;
     91            using WorldEntity::roll;
    7792            using WorldEntity::lookAt;
    7893            using WorldEntity::setDirection;
     
    91106            inline void setVelocity(float x, float y, float z)
    92107                { this->velocity_.x = x; this->velocity_.y = y; this->velocity_.z = z; }
    93             inline const Vector3& getVelocity() const
    94                 { return this->velocity_; }
    95108
    96109            inline void setAcceleration(const Vector3& acceleration)
     
    98111            inline void setAcceleration(float x, float y, float z)
    99112                { this->acceleration_.x = x; this->acceleration_.y = y; this->acceleration_.z = z; }
    100             inline const Vector3& getAcceleration() const
    101                 { return this->acceleration_; }
     113
     114            inline void setHudTemplate(const std::string& name)
     115                { this->hudtemplate_ = name; }
    102116
    103117        private:
    104             inline void setHudTemplate(const std::string& name)
    105                 { this->hudtemplate_ = name; }
    106             inline const std::string& getHudTemplate() const
    107                 { return this->hudtemplate_; }
    108 
    109118            void overwrite();
    110119            void processOverwrite();
     
    139148            OverlayGroup* hud_;
    140149            Camera* camera_;
     150            bool bDestroyWhenPlayerLeft_;
    141151    };
    142152}
  • code/branches/objecthierarchy/src/orxonox/objects/worldentities/MovableEntity.cc

    r1989 r1993  
    7979            this->node_->rotate(this->rotationAxis_, this->rotationRate_  * dt);
    8080        }
    81 
    82         std::cout << this->getPosition() << std::endl;
    8381    }
    8482
  • code/branches/objecthierarchy/src/orxonox/objects/worldentities/MovableEntity.h

    r1989 r1993  
    5252            using WorldEntity::setOrientation;
    5353            using WorldEntity::rotate;
     54            using WorldEntity::yaw;
     55            using WorldEntity::pitch;
     56            using WorldEntity::roll;
    5457            using WorldEntity::lookAt;
    5558            using WorldEntity::setDirection;
  • code/branches/objecthierarchy/src/orxonox/objects/worldentities/PositionableEntity.cc

    r1960 r1993  
    5757        REGISTERDATA(this->getOrientation().z, network::direction::toclient);
    5858    }
     59
     60    void PositionableEntity::tick(float dt)
     61    {
     62        // I don't know why but this has to be done to update the position if attached to another Entity
     63        this->node_->translate(Vector3::ZERO);
     64        std::cout << this->getWorldPosition() << std::endl;
     65    }
    5966}
  • code/branches/objecthierarchy/src/orxonox/objects/worldentities/PositionableEntity.h

    r1989 r1993  
    3232#include "OrxonoxPrereqs.h"
    3333#include "WorldEntity.h"
     34#include "objects/Tickable.h"
    3435
    3536namespace orxonox
    3637{
    37     class _OrxonoxExport PositionableEntity : public WorldEntity
     38    class _OrxonoxExport PositionableEntity : public WorldEntity, public Tickable
    3839    {
    3940        public:
     
    4243
    4344            void registerVariables();
     45            virtual void tick(float dt);
    4446
    4547            using WorldEntity::setPosition;
     
    4749            using WorldEntity::setOrientation;
    4850            using WorldEntity::rotate;
     51            using WorldEntity::yaw;
     52            using WorldEntity::pitch;
     53            using WorldEntity::roll;
    4954            using WorldEntity::lookAt;
    5055            using WorldEntity::setDirection;
  • code/branches/objecthierarchy/src/orxonox/objects/worldentities/WorldEntity.cc

    r1989 r1993  
    3434#include "core/CoreIncludes.h"
    3535#include "core/XMLPort.h"
     36#include "util/Convert.h"
    3637
    3738#include "GraphicsEngine.h"
     
    110111        if (object->getParent())
    111112            object->detachFromParent();
     113        else
     114        {
     115            Ogre::Node* parent = object->node_->getParent();
     116            if (parent)
     117                parent->removeChild(object->node_);
     118        }
    112119
    113120        this->node_->addChild(object->node_);
     
    123130        object->parent_ = 0;
    124131        object->parentID_ = (unsigned int)-1;
     132
     133        GraphicsEngine::getInstance().getLevelSceneManager()->getRootSceneNode()->addChild(object->node_);
    125134    }
    126135
  • code/branches/objecthierarchy/src/orxonox/overlays/OverlayGroup.cc

    r1854 r1993  
    100100        }
    101101        else
     102        {
    102103            hudElements_[element->getName()] = element;
     104            element->setVisible(this->isVisible());
     105        }
    103106    }
    104107
  • code/branches/objecthierarchy/src/orxonox/overlays/OverlayText.cc

    r1784 r1993  
    3131
    3232#include <OgreOverlayManager.h>
    33 #include <OgreTextAreaOverlayElement.h>
    3433#include <OgrePanelOverlayElement.h>
    3534
     
    6867
    6968        XMLPortParam(OverlayText, "font",     setFont,     getFont,     xmlElement, mode).defaultValues("Monofur");
     69        XMLPortParam(OverlayText, "colour",   setColour,   getColour,   xmlElement, mode).defaultValues(ColourValue(1.0, 1.0, 1.0, 1.0));
    7070        XMLPortParam(OverlayText, "caption",  setCaption,  getCaption,  xmlElement, mode).defaultValues("");
    7171        XMLPortParam(OverlayText, "textSize", setTextSize, getTextSize, xmlElement, mode).defaultValues(1.0f);
     72        XMLPortParamTemplate(OverlayText, "align", setAlignment, getAlignment, xmlElement, mode, const std::string&).defaultValues("left");
    7273    }
    7374
     
    8485        else
    8586            return blankString;
     87    }
     88
     89    void OverlayText::setColour(const ColourValue& colour)
     90    {
     91        if (this->text_)
     92            this->text_->setColour(colour);
     93    }
     94
     95    const ColourValue& OverlayText::getColour() const
     96    {
     97        if (this->text_)
     98            return this->text_->getColour();
     99        else
     100            return ColourValue::White;
     101    }
     102
     103    void OverlayText::setAlignment(Ogre::TextAreaOverlayElement::Alignment alignment)
     104    {
     105        if (this->text_)
     106            this->text_->setAlignment(alignment);
     107    }
     108
     109    void OverlayText::setAlignment(const std::string& alignment)
     110    {
     111        if (alignment == "right")
     112            this->setAlignment(Ogre::TextAreaOverlayElement::Right);
     113        else if (alignment == "center")
     114            this->setAlignment(Ogre::TextAreaOverlayElement::Center);
     115        else // "left" and default
     116            this->setAlignment(Ogre::TextAreaOverlayElement::Left);
     117    }
     118
     119    std::string OverlayText::getAlignment() const
     120    {
     121        if (this->text_)
     122        {
     123            Ogre::TextAreaOverlayElement::Alignment alignment = this->text_->getAlignment();
     124
     125            switch (alignment)
     126            {
     127                case Ogre::TextAreaOverlayElement::Right:
     128                    return "right";
     129                case Ogre::TextAreaOverlayElement::Center:
     130                    return "center";
     131                case Ogre::TextAreaOverlayElement::Left:
     132                default:;
     133            }
     134        }
     135        return "left";
     136    }
     137
     138    void OverlayText::setCaption(const std::string& caption)
     139    {
     140        this->caption_ = caption;
     141        this->text_->setCaption(caption);
    86142    }
    87143
  • code/branches/objecthierarchy/src/orxonox/overlays/OverlayText.h

    r1625 r1993  
    3434#include <string>
    3535#include <OgrePrerequisites.h>
     36#include <OgreTextAreaOverlayElement.h>
    3637#include "OrxonoxOverlay.h"
    3738
     
    4950        virtual void sizeChanged();
    5051
    51         void setCaption(const std::string& caption) { this->caption_ = caption; }
     52        void setCaption(const std::string& caption);
    5253        const std::string& getCaption() const       { return this->caption_; }
    5354
    5455        void setFont(const std::string& font);
    5556        const std::string& getFont() const;
     57
     58        void setColour(const ColourValue& colour);
     59        const ColourValue& getColour() const;
     60
     61        void setAlignment(Ogre::TextAreaOverlayElement::Alignment alignment);
     62        void setAlignment(const std::string& alignment);
     63        std::string getAlignment() const;
    5664
    5765        void setTextSize(float size) { this->setSize(Vector2(size, size)); }
  • code/branches/objecthierarchy/src/orxonox/overlays/hud/HUDNavigation.cc

    r1916 r1993  
    4141#include "core/XMLPort.h"
    4242#include "objects/Radar.h"
    43 #include "objects/CameraHandler.h"
    4443
    4544namespace orxonox
  • code/branches/objecthierarchy/src/orxonox/tools/Mesh.cc

    r1949 r1993  
    3232#include <sstream>
    3333#include <OgreSceneManager.h>
     34
    3435#include "core/Core.h"
    3536#include "GraphicsEngine.h"
     37#include "util/Convert.h"
     38#include "util/String.h"
    3639
    3740namespace orxonox
     
    3942    unsigned int Mesh::meshCounter_s = 0;
    4043
    41     Mesh::Mesh() :
    42       entity_(0)
     44    Mesh::Mesh()
    4345    {
    44     }
    45 
    46     void Mesh::setMesh(const std::string& file)
    47     {
    48         std::ostringstream name;
    49         name << (Mesh::meshCounter_s++);
    50         if (Core::showsGraphics())
    51             this->entity_ = GraphicsEngine::getInstance().getLevelSceneManager()->createEntity("Mesh" + name.str(), file);
     46        this->entity_ = 0;
    5247    }
    5348
     
    5752            GraphicsEngine::getInstance().getLevelSceneManager()->destroyEntity(this->entity_);
    5853    }
     54
     55    void Mesh::setMeshSource(const std::string& meshsource)
     56    {
     57        if (Core::showsGraphics())
     58        {
     59            if (this->entity_)
     60                GraphicsEngine::getInstance().getLevelSceneManager()->destroyEntity(this->entity_);
     61            this->entity_ = GraphicsEngine::getInstance().getLevelSceneManager()->createEntity("Mesh" + convertToString(Mesh::meshCounter_s++), meshsource);
     62        }
     63    }
     64
     65    const std::string& Mesh::getName() const
     66    {
     67        if (this->entity_)
     68            return this->entity_->getName();
     69        else
     70            return blankString;
     71    }
     72
     73    void Mesh::setVisible(bool bVisible)
     74    {
     75        if (this->entity_)
     76            this->entity_->setVisible(bVisible);
     77    }
     78
     79    bool Mesh::isVisible() const
     80    {
     81        if (this->entity_)
     82            return this->entity_->getVisible();
     83        else
     84            return false;
     85    }
    5986}
  • code/branches/objecthierarchy/src/orxonox/tools/Mesh.h

    r1627 r1993  
    3333
    3434#include <string>
    35 
    3635#include <OgreEntity.h>
    3736
     
    4342            Mesh();
    4443            ~Mesh();
    45             void setMesh(const std::string& file);
     44
     45            void setMeshSource(const std::string& file);
    4646
    4747            inline Ogre::Entity* getEntity()
    4848                { return this->entity_; }
    4949
    50             inline const std::string& getName() const
    51                 { return this->entity_->getName(); }
     50            const std::string& getName() const;
    5251
    53             inline void setVisible(bool visible)
    54                 { if (this->entity_) this->entity_->setVisible(visible); }
    55             inline bool getVisible() const
    56                 { if (this->entity_) return this->entity_->getVisible(); else return false; }
     52            void setVisible(bool bVisible);
     53            bool isVisible() const;
    5754
    5855        private:
  • code/branches/objecthierarchy/src/tinyxml/ticpp.h

    r1639 r1993  
    11841184                T* m_tiXmlPointer;              /**< Internal pointer to the TiXml Class which is being wrapped */
    11851185
     1186    public:
    11861187                /**
    11871188                @internal
     
    11951196                        return m_tiXmlPointer;
    11961197                }
     1198    protected:
    11971199
    11981200                /**
Note: See TracChangeset for help on using the changeset viewer.