Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 9, 2017, 2:46:20 PM (7 years ago)
Author:
patricwi
Message:

merged HUD branch to trunk

Location:
code/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/orxonox/CMakeLists.txt

    r11080 r11353  
    2020INCLUDE_DIRECTORIES(
    2121  ${CMAKE_SOURCE_DIR}/src/libraries
     22  ${CMAKE_SOURCE_DIR}/src/modules
    2223  ${CMAKE_CURRENT_SOURCE_DIR}
    2324)
  • code/trunk/src/orxonox/controllers/HumanController.h

    r11071 r11353  
    6969            void stopBoosting(void);
    7070
    71 
    7271            static void greet();
    7372            static void switchCamera();
  • code/trunk/src/orxonox/gamestates/GSLevel.cc

    r11071 r11353  
    5050#include "PlayerManager.h"
    5151#include "GSRoot.h"
     52// #include "overlays/hud/HUDPickupSystem.h"
    5253
    5354namespace orxonox
     
    126127            InputManager::getInstance().leaveState("game");
    127128
     129        // HUDPickupSystem* pickupSystem;
     130
     131        // for (HUDPickupSystem* hud : ObjectList<HUDPickupSystem>())
     132        //     pickupSystem = hud;
     133
     134        // pickupSystem->repaint=false;
     135
    128136        // disconnect all HumanPlayers
    129137        PlayerManager::getInstance().disconnectAllClients();
  • code/trunk/src/orxonox/gamestates/GSLevel.h

    r11071 r11353  
    3131
    3232#include "OrxonoxPrereqs.h"
     33// #include "overlays/OverlaysPrereqs.h"
    3334
    3435#include <string>
  • code/trunk/src/orxonox/interfaces/Pickupable.h

    r11071 r11353  
    9696
    9797            /**
     98            @brief Check whether the Pickupable is in the process of being destroyed.
     99            @return Returns true if so.
     100            */
     101            inline bool isBeingDestroyed(void)
     102                { return this->beingDestroyed_; }
     103               
     104            /**
    98105            @brief Returns whether the Pickupable is currently picked up.
    99106            @return Returns true if the Pickupable is currently picked up, false if not.
     
    155162
    156163            /**
    157             @brief Check whether the Pickupable is in the process of being destroyed.
    158             @return Returns true if so.
    159             */
    160             inline bool isBeingDestroyed(void)
    161                 { return this->beingDestroyed_; }
    162 
    163             /**
    164164            @brief Facilitates the creation of a PickupSpawner upon dropping of the Pickupable.
    165165                   This method must be implemented by any class directly inheriting from Pickupable.
Note: See TracChangeset for help on using the changeset viewer.