Changeset 1846 for code/branches/orxonox_tutorial/src
- Timestamp:
- Sep 28, 2008, 2:27:03 PM (17 years ago)
- Location:
- code/branches/orxonox_tutorial
- Files:
-
- 1 deleted
- 24 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/orxonox_tutorial
- Property svn:mergeinfo changed
/code/trunk (added) merged: 1832,1836-1844
- Property svn:mergeinfo changed
-
code/branches/orxonox_tutorial/src/ceguilua-0.5.0b/ceguilua/CEGUILua.cpp
r1810 r1846 38 38 #include "tolua/tolua++.h" 39 39 40 #include "tolua++.h"41 42 40 // prototype for bindings initialisation function 43 41 int tolua_CEGUI_open(lua_State* tolua_S); -
code/branches/orxonox_tutorial/src/core/BaseObject.h
r1747 r1846 41 41 #include "Super.h" 42 42 #include "OrxonoxClass.h" 43 #include " util/XMLIncludes.h"43 #include "XMLIncludes.h" 44 44 45 45 namespace orxonox -
code/branches/orxonox_tutorial/src/core/CMakeLists.txt
r1815 r1846 56 56 GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION) 57 57 ADD_CUSTOM_COMMAND( 58 OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc 58 OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h 59 59 COMMAND ${TOLUA_EXE} -n Core -o ../../src/core/tolua/tolua_bind.cc -H ../../src/core/tolua/tolua_bind.h ../../src/core/tolua/tolua.pkg 60 60 DEPENDS … … 70 70 TARGET_LINK_LIBRARIES(core 71 71 ${OGRE_LIBRARIES} 72 ${Boost_thread_LIBRARIES} 73 ${Boost_filesystem_LIBRARIES} 72 74 lua_orxonox 73 75 cpptcl_orxonox … … 76 78 tolualib_orxonox 77 79 util 78 ${Boost_thread_LIBRARIES}79 ${Boost_filesystem_LIBRARIES}80 80 ) -
code/branches/orxonox_tutorial/src/core/Namespace.h
r1505 r1846 34 34 #include <map> 35 35 36 #include " util/XMLIncludes.h"36 #include "XMLIncludes.h" 37 37 #include "BaseObject.h" 38 38 -
code/branches/orxonox_tutorial/src/core/Super.h
r1747 r1846 72 72 73 73 #include "util/Debug.h" 74 #include " util/XMLIncludes.h"74 #include "XMLIncludes.h" 75 75 76 76 /////////////////////// -
code/branches/orxonox_tutorial/src/core/XMLPort.h
r1789 r1846 33 33 34 34 #include "util/Debug.h" 35 #include "util/XMLIncludes.h"36 35 #include "util/MultiType.h" 37 36 #include "tinyxml/ticpp.h" 37 #include "XMLIncludes.h" 38 38 #include "Executor.h" 39 39 #include "CoreIncludes.h" -
code/branches/orxonox_tutorial/src/network/ConnectionManager.cc
r1755 r1846 37 37 // Author: Oliver Scheuss 38 38 // 39 40 #include "ConnectionManager.h" 39 41 40 42 #include <iostream> … … 51 53 #include "util/Sleep.h" 52 54 #include "ClientInformation.h" 53 #include "ConnectionManager.h"54 55 #include "Synchronisable.h" 55 56 #include "packet/ClassID.h" -
code/branches/orxonox_tutorial/src/network/Synchronisable.cc
r1758 r1846 41 41 #include "Synchronisable.h" 42 42 43 #include < string>43 #include <cstring> 44 44 #include <iostream> 45 45 #include <assert.h> -
code/branches/orxonox_tutorial/src/network/Synchronisable.h
r1751 r1846 34 34 #include <list> 35 35 #include "core/OrxonoxClass.h" 36 #include " util/XMLIncludes.h"36 #include "core/XMLIncludes.h" 37 37 #include "NetworkCallback.h" 38 38 -
code/branches/orxonox_tutorial/src/network/packet/Chat.h
r1763 r1846 4 4 5 5 #include <string> 6 #include <cstring> 6 7 7 8 #include "Packet.h" -
code/branches/orxonox_tutorial/src/network/packet/ClassID.cc
r1763 r1846 31 31 #include "ClassID.h" 32 32 #include "core/CoreIncludes.h" 33 #include < string>33 #include <cstring> 34 34 #include <assert.h> 35 35 -
code/branches/orxonox_tutorial/src/orxonox/CMakeLists.txt
r1817 r1846 34 34 overlays/hud/HUDSpeedBar.cc 35 35 36 tolua/tolua_bind.cc37 38 36 tools/BillboardSet.cc 39 37 tools/Light.cc … … 64 62 objects/RotatingProjectile.cc 65 63 objects/ParticleProjectile.cc 64 65 tolua/tolua_bind.cc 66 66 ) 67 67 68 68 GET_TARGET_PROPERTY(TOLUA_EXE tolua_orxonox LOCATION) 69 69 ADD_CUSTOM_COMMAND( 70 OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc 70 OUTPUT ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.cc ${CMAKE_CURRENT_SOURCE_DIR}/tolua/tolua_bind.h 71 71 COMMAND ${TOLUA_EXE} -n Orxonox -o ../../src/orxonox/tolua/tolua_bind.cc -H ../../src/orxonox/tolua/tolua_bind.h ../../src/orxonox/tolua/tolua.pkg 72 72 DEPENDS … … 105 105 tinyxml_orxonox 106 106 tolualib_orxonox 107 ois_orxonox108 107 util 109 108 core -
code/branches/orxonox_tutorial/src/orxonox/OrxonoxStableHeaders.h
r1810 r1846 79 79 #include "util/String.h" 80 80 #include "util/SubString.h" 81 #include "util/XMLIncludes.h"82 81 83 82 #include "core/BaseObject.h" … … 87 86 #include "core/CommandExecutor.h" 88 87 #include "core/Executor.h" 88 #include "core/XMLIncludes.h" 89 89 #include "core/XMLPort.h" 90 90 -
code/branches/orxonox_tutorial/src/orxonox/SignalHandler.cc
r1747 r1846 38 38 #include <assert.h> 39 39 #include <iostream> 40 #include <cstdlib> 41 #include <cstring> 40 42 41 43 SignalHandler * SignalHandler::singletonRef = NULL; -
code/branches/orxonox_tutorial/src/orxonox/gui/OgreCEGUIRenderer.h
r1784 r1846 38 38 #include <OgreTextureUnitState.h> 39 39 40 #if (OGRE_PLATFORM == OGRE_PLATFORM_WIN32) && !defined(OGRE_STATIC_LIB) 41 # ifdef OGRE_GUIRENDERER_EXPORTS 40 /** CHANGES MADE BY ORXONOX TO FIT DLL IMPORT/EXPORT **/ 41 #if (OGRE_PLATFORM == OGRE_PLATFORM_WIN32) && !(defined(ORXONOX_STATIC_BUILD) || defined(ORXONOX_NO_EXPORTS)) 42 # ifdef ORXONOX_SHARED_BUILD 42 43 # define OGRE_GUIRENDERER_API __declspec(dllexport) 43 44 # else -
code/branches/orxonox_tutorial/src/orxonox/objects/WorldEntity.h
r1755 r1846 35 35 #include <OgreSceneNode.h> 36 36 #include "util/Math.h" 37 #include "util/XMLIncludes.h"38 37 #include "network/Synchronisable.h" 38 #include "core/XMLIncludes.h" 39 39 #include "core/BaseObject.h" 40 40 #include "Tickable.h" 41 #include " ../tools/Mesh.h"41 #include "tools/Mesh.h" 42 42 43 43 namespace orxonox -
code/branches/orxonox_tutorial/src/tolua/tolua-5.1.pkg
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/orxonox_tutorial/src/util/CMakeLists.txt
r1821 r1846 20 20 TARGET_LINK_LIBRARIES(util 21 21 ${OGRE_LIBRARIES} 22 ${Lua_LIBRARIES}23 22 ) -
code/branches/orxonox_tutorial/src/util/Convert.h
r1791 r1846 39 39 #include <string> 40 40 #include <sstream> 41 #include <typeinfo> 41 42 42 43 #include "Math.h" -
code/branches/orxonox_tutorial/src/util/Exception.cc
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/orxonox_tutorial/src/util/Exception.h
- Property svn:mergeinfo changed (with no actual effect on merging)
-
code/branches/orxonox_tutorial/src/util/Math.h
r1823 r1846 220 220 inline _UtilExport float rnd() 221 221 { 222 return ((float)rand() / (RAND_MAX + 1));222 return rand() / (RAND_MAX + 1.0); 223 223 } 224 224 -
code/branches/orxonox_tutorial/src/util/Sleep.h
r1755 r1846 39 39 40 40 #if ORXONOX_PLATFORM == ORXONOX_PLATFORM_WIN32 41 42 #ifndef WIN32_LEAN_AND_MEAN 43 # define WIN32_LEAN_AND_MEAN 44 #endif 45 #include <windows.h> 41 #include <winbase.h> 46 42 47 43 inline void usleep(DWORD dwMicroseconds)
Note: See TracChangeset
for help on using the changeset viewer.