Changeset 3150
- Timestamp:
- Jun 12, 2009, 10:58:40 AM (15 years ago)
- Location:
- code/branches/pch/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/pch/src/core/CommandLine.cc
r2759 r3150 30 30 31 31 #include <boost/filesystem.hpp> 32 33 #include "util/Exception.h" 32 34 #include "util/String.h" 33 35 #include "util/SubString.h" -
code/branches/pch/src/core/input/InputManager.cc
r3148 r3150 41 41 #include <ois/OISInputManager.h> 42 42 43 // HACK44 #ifdef ORXONOX_PLATFORM_LINUX45 # include <ois/linux/LinuxMouse.h>46 #endif47 48 43 #include "util/Exception.h" 49 44 #include "util/Debug.h" 50 #include "core/ConsoleCommand.h"51 45 #include "core/Clock.h" 52 46 #include "core/CoreIncludes.h" 53 47 #include "core/ConfigValueIncludes.h" 48 #include "core/ConsoleCommand.h" 54 49 #include "core/CommandLine.h" 55 50 … … 60 55 #include "ExtendedInputState.h" 61 56 #include "JoyStickDeviceNumberListener.h" 57 58 // HACK (include this as last, X11 seems to define some macros...) 59 #ifdef ORXONOX_PLATFORM_LINUX 60 # include <ois/linux/LinuxMouse.h> 61 #endif 62 62 63 63 namespace orxonox -
code/branches/pch/src/core/input/InputState.h
r3148 r3150 91 91 InputState() 92 92 : bHandlersChanged_(false) 93 , executorOnEnter_(0) 94 , executorOnLeave_(0) 93 95 , priority_(0) 94 96 , bAlwaysGetsInput_(false) 95 97 , bTransparent_(false) 96 , executorOnEnter_(0)97 , executorOnLeave_(0)98 98 { } 99 99 virtual ~InputState() { } -
code/branches/pch/src/network/Host.h
r3084 r3150 36 36 namespace orxonox { 37 37 38 const int CLIENTID_SERVER = 0;38 const unsigned int CLIENTID_SERVER = 0; 39 39 const unsigned int NETWORK_FREQUENCY = 30; 40 40 const float NETWORK_PERIOD = 1.0f/NETWORK_FREQUENCY; -
code/branches/pch/src/orxonox/overlays/OverlayText.cc
r3144 r3150 43 43 CreateFactory(OverlayText); 44 44 45 BOOST_STATIC_ASSERT( Ogre::TextAreaOverlayElement::Left ==OverlayText::Left);46 BOOST_STATIC_ASSERT( Ogre::TextAreaOverlayElement::Center ==OverlayText::Center);47 BOOST_STATIC_ASSERT( Ogre::TextAreaOverlayElement::Right ==OverlayText::Right);45 BOOST_STATIC_ASSERT((int)Ogre::TextAreaOverlayElement::Left == (int)OverlayText::Left); 46 BOOST_STATIC_ASSERT((int)Ogre::TextAreaOverlayElement::Center == (int)OverlayText::Center); 47 BOOST_STATIC_ASSERT((int)Ogre::TextAreaOverlayElement::Right == (int)OverlayText::Right); 48 48 49 49 OverlayText::OverlayText(BaseObject* creator) -
code/branches/pch/src/util/Clipboard.cc
r3146 r3150 129 129 @return The text 130 130 */ 131 const std::string&fromClipboard()131 std::string fromClipboard() 132 132 { 133 133 return clipboard;
Note: See TracChangeset
for help on using the changeset viewer.