|
Last change
on this file since 1643 was
1642,
checked in by rgrieder, 17 years ago
|
- changed the static interface of the InputManager to a member one with getInstance()
- converted InputManager and InGameConsole to Ogre Singletons (c'tor and d'tor public, but assert in c'tor to prevent multiple instances at runtime)
- added toluabind_orxonox files to tolua folder that contains a pimped version of tolua
(I'll write a little cmake project soon to automate it; Currently that only works with msvc)
- commented out Loader::unload() from Orxonox destructor because that deleted the ParticleSpawners, which were using a method of a sceneNode that belonged to a already destroyed SpaceShip.
—> Results in a memory leak.
Previously Loader::unload() was called for all BaseObjects (now calling unload(level_)). And since 'P' from ParticleSpawner comes before 'S' like SpaceShip, the order was correct.
- Added factory feature for InputStates (can now be created by string if there is Factory entry for it)
- Created factory entries for SimpleInputState and ExtendedInputState
|
|
File size:
1.9 KB
|
| Line | |
|---|
| 1 | <?xml version="1.0" encoding="Windows-1252"?> |
|---|
| 2 | <VisualStudioPropertySheet |
|---|
| 3 | ProjectType="Visual C++" |
|---|
| 4 | Version="8.00" |
|---|
| 5 | Name="base_properties" |
|---|
| 6 | InheritedPropertySheets=".\directory_properties.vsprops" |
|---|
| 7 | > |
|---|
| 8 | <Tool |
|---|
| 9 | Name="VCCLCompilerTool" |
|---|
| 10 | AdditionalIncludeDirectories=""$(RootDir)";"$(RootDir)src";"$(RootDir)src\orxonox";"$(RootDir)src\tolua";"$(RootDir)src\ois";"$(LibDir)ogre-1.4.8\OgreMain\include";"$(LibDir)boost-1.35.0";"$(LibDir)cegui-0.6.1\include";"$(LibDir)cegui-0.6.1\ScriptingModules\CEGUILua\LuaScriptModule\include";"$(LibDir)enet-1.2\include";"$(LibDir)libogg-1.1.3\include";"$(LibDir)libvorbis-1.2.0\include";"$(LibDir)lua-5.1.3\src";"$(LibDir)openal-1.1\include";"$(LibDir)openal-1.1\alut\include";"$(LibDir)tcl-8.5.\generic";"$(LibDir)zlib-1.2.3";"$(LibDir)ogre-1.4.9\Samples\Common\CEGUIRenderer\include"" |
|---|
| 11 | PreprocessorDefinitions="WIN32;__WIN32__;_WIN32;BOOST_ALL_DYN_LINK;OIS_DYNAMIC_LIB; ZLIB_WINAPI" |
|---|
| 12 | WarningLevel="3" |
|---|
| 13 | DisableSpecificWarnings="4522;4251;4800" |
|---|
| 14 | /> |
|---|
| 15 | <Tool |
|---|
| 16 | Name="VCLibrarianTool" |
|---|
| 17 | OutputFile="$(LibOutDir)$(ProjectName)$(CS).lib" |
|---|
| 18 | AdditionalLibraryDirectories="$(RootDir)dependencies\lib" |
|---|
| 19 | IgnoreAllDefaultLibraries="true" |
|---|
| 20 | /> |
|---|
| 21 | <Tool |
|---|
| 22 | Name="VCLinkerTool" |
|---|
| 23 | OutputFile="$(OutDir)$(ProjectName)$(CS).dll" |
|---|
| 24 | AdditionalLibraryDirectories="$(DependencyDir)lib" |
|---|
| 25 | SubSystem="1" |
|---|
| 26 | ImportLibrary="$(LibOutDir)$(TargetName).lib" |
|---|
| 27 | TargetMachine="1" |
|---|
| 28 | /> |
|---|
| 29 | <UserMacro |
|---|
| 30 | Name="LibOutDir" |
|---|
| 31 | Value="$(RootDir)lib\" |
|---|
| 32 | /> |
|---|
| 33 | <UserMacro |
|---|
| 34 | Name="DependencyDir" |
|---|
| 35 | Value="$(RootDir)..\lib_precompiled\" |
|---|
| 36 | /> |
|---|
| 37 | <UserMacro |
|---|
| 38 | Name="CS" |
|---|
| 39 | Value="" |
|---|
| 40 | /> |
|---|
| 41 | <UserMacro |
|---|
| 42 | Name="CSS" |
|---|
| 43 | Value="" |
|---|
| 44 | /> |
|---|
| 45 | <UserMacro |
|---|
| 46 | Name="LibDir" |
|---|
| 47 | Value="$(RootDir)..\lib_src\" |
|---|
| 48 | /> |
|---|
| 49 | </VisualStudioPropertySheet> |
|---|
Note: See
TracBrowser
for help on using the repository browser.