Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 29, 2009, 10:19:38 PM (15 years ago)
Author:
landauf
Message:

merged libraries branch back to trunk

Location:
code/trunk
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/orxonox/objects/worldentities/Backlight.h

    r3196 r5693  
    3333
    3434#include <string>
    35 #include "interfaces/TimeFactorListener.h"
     35#include "tools/interfaces/TimeFactorListener.h"
    3636#include "FadingBillboard.h"
    3737
  • code/trunk/src/orxonox/objects/worldentities/BlinkingBillboard.h

    r3196 r5693  
    3333
    3434#include "util/Math.h"
    35 #include "interfaces/Tickable.h"
     35#include "tools/interfaces/Tickable.h"
    3636#include "Billboard.h"
    3737
  • code/trunk/src/orxonox/objects/worldentities/Camera.h

    r3196 r5693  
    3333
    3434#include "util/OgreForwardRefs.h"
    35 #include "interfaces/Tickable.h"
     35#include "tools/interfaces/Tickable.h"
    3636#include "objects/worldentities/StaticEntity.h"
    3737
  • code/trunk/src/orxonox/objects/worldentities/FadingBillboard.h

    r3196 r5693  
    3434#include "util/Math.h"
    3535#include "tools/Timer.h"
    36 #include "interfaces/Tickable.h"
     36#include "tools/interfaces/Tickable.h"
    3737#include "Billboard.h"
    3838
  • code/trunk/src/orxonox/objects/worldentities/ForceField.h

    r3196 r5693  
    3333#include "OrxonoxPrereqs.h"
    3434
    35 #include "interfaces/Tickable.h"
     35#include "tools/interfaces/Tickable.h"
    3636#include "StaticEntity.h"
    3737
     
    4343        ForceField(BaseObject* creator);
    4444        virtual ~ForceField();
    45         virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a CheckPoint object through XML.
     45        virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode);
    4646        virtual void tick(float dt);
    4747
    4848        inline void setVelocity(float vel)
    4949            { this->velocity_ = vel; }
    50    
     50
    5151        inline float getVelocity()
    5252            { return velocity_; }
    53    
     53
    5454        inline void setDiameter(float diam)
    5555            { this->diameter_ = diam; }
     
    5757        inline float getDiameter()
    5858            { return diameter_; }
    59  
     59
    6060        inline void setLength(float l)
    6161            { this->length_ = l; }
  • code/trunk/src/orxonox/objects/worldentities/MobileEntity.h

    r3196 r5693  
    3333
    3434#include "util/Math.h"
    35 #include "interfaces/Tickable.h"
     35#include "tools/interfaces/Tickable.h"
    3636#include "WorldEntity.h"
    3737
  • code/trunk/src/orxonox/objects/worldentities/triggers/PlayerTrigger.h

    r3280 r5693  
    5252        PlayerTrigger(BaseObject* creator);
    5353        virtual ~PlayerTrigger();
    54        
     54
    5555        virtual void XMLPort(Element& xmlelement, XMLPort::Mode mode); //!< Method for creating a PlayerTrigger object through XML.
    56        
     56
    5757        /**
    5858        @brief Returns the player that triggered the PlayerTrigger.
     
    6161        inline Pawn* getTriggeringPlayer(void) const
    6262            { return this->player_; }
    63        
     63
    6464        /**
    6565        @brief Checks whether the PlayerTrigger normally returns a ControllableEntity.
     
    6868        inline bool isForPlayer(void) const
    6969           { return this->isForPlayer_; }
    70            
     70
    7171    protected:
    7272        virtual bool isTriggered(TriggerMode::Value mode) = 0;
    73        
     73
    7474        /**
    7575        @brief Set the player that triggered the PlayerTrigger. This is normally done by classes inheriting vom PlayerTrigger.
     
    8181            /**
    8282            @brief Set whether the PlayerTrigger normally is triggered by ControllableEntities.
    83             @param isForPlayer Should be true when the PlayerTrigger schould be set to normally be triggered by ControllableEntities, false if not.
     83            @param isForPlayer Should be true when the PlayerTrigger should be set to normally be triggered by ControllableEntities, false if not.
    8484            */
    8585        inline void setForPlayer(bool isForPlayer)
    8686           { this->isForPlayer_ = isForPlayer; }
    87        
     87
    8888    private:
    8989        Pawn* player_; //!< The player that triggered the PlayerTrigger.
    90         bool isForPlayer_; //!< Is true when the PlayerTrigger schould be set to normally be triggered by ControllableEntities.
    91    
     90        bool isForPlayer_; //!< Is true when the PlayerTrigger should be set to normally be triggered by ControllableEntities.
     91
    9292    };
    9393
  • code/trunk/src/orxonox/objects/worldentities/triggers/Trigger.h

    r3280 r5693  
    3636
    3737#include "tools/BillboardSet.h"
    38 #include "interfaces/Tickable.h"
     38#include "tools/interfaces/Tickable.h"
    3939#include "objects/worldentities/StaticEntity.h"
    4040
Note: See TracChangeset for help on using the changeset viewer.