annotate build/win32/build_environments/visual_studio_8/unittest_template.xml @ 697:ecaa4d98f05f tip

Abstracted the GUI code and refactored the GUIChan-specific code into its own module. * Most of the GUIChan code has been refactored into its own gui/guichan module. However, references to the GuiFont class still persist in the Engine and GuiManager code and these will need further refactoring. * GuiManager is now an abstract base class which specific implementations (e.g. GUIChan) should subclass. * The GUIChan GUI code is now a concrete implementation of GuiManager, most of which is in the new GuiChanGuiManager class. * The GUI code in the Console class has been refactored out of the Console and into the GUIChan module as its own GuiChanConsoleWidget class. The rest of the Console class related to executing commands was left largely unchanged. * Existing client code may need to downcast the GuiManager pointer received from FIFE::Engine::getGuiManager() to GuiChanGuiManager, since not all functionality is represented in the GuiManager abstract base class. Python client code can use the new GuiChanGuiManager.castTo static method for this purpose.
author M. George Hansen <technopolitica@gmail.com>
date Sat, 18 Jun 2011 00:28:40 -1000
parents ae479ce3f762
children
rev   line source
214
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
1 <?xml version="1.0" encoding="Windows-1252"?>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
2 <VisualStudioProject
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
3 ProjectType="Visual C++"
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
4 Version="8.00"
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
5 Name="__INSERT_NAME_HERE__"
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
6 ProjectGUID="__INSERT_GUID_HERE__"
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
7 RootNamespace="__INSERT_NAME_HERE__"
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
8 Keyword="Win32Proj"
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
9 >
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
10 <Platforms>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
11 <Platform
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
12 Name="Win32"
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
13 />
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
14 </Platforms>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
15 <ToolFiles>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
16 </ToolFiles>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
17 <Configurations>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
18 <Configuration Name="Debug_static|Win32" OutputDirectory="../../../../../tests/core_tests/" IntermediateDirectory="$(ConfigurationName)/$(ProjectName)" ConfigurationType="1" CharacterSet="1">
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
19 <Tool Name="VCPreBuildEventTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
20 <Tool Name="VCCustomBuildTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
21 <Tool Name="VCXMLDataGeneratorTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
22 <Tool Name="VCWebServiceProxyGeneratorTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
23 <Tool Name="VCMIDLTool"/>
370
5ab78cd39534 * Updated win32 build files for the new November 2009 Win32 DevKit
mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 214
diff changeset
24 <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\..\..\..\..\engine;..\..\..\..\..\engine\core;..\includes;..\..\..\includes\libguichan;..\..\..\includes\unittest++;..\..\..\includes\libogg;..\..\..\includes\openal-soft;..\..\..\includes\sdl;..\..\..\includes\sdl_image;..\..\..\includes\sdl_ttf;..\..\..\includes\zlib;..\..\..\includes\libvorbis;..\..\..\includes\libpng;..\..\..\includes\python;..\..\..\includes\boost_1_38_0" PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE" MinimalRebuild="true" BasicRuntimeChecks="3" RuntimeLibrary="3" UsePrecompiledHeader="0" WarningLevel="3" Detect64BitPortabilityProblems="true" DebugInformationFormat="4"/>
214
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
25 <Tool Name="VCManagedResourceCompilerTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
26 <Tool Name="VCResourceCompilerTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
27 <Tool Name="VCPreLinkEventTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
28 <Tool Name="VCLinkerTool" LinkIncremental="1" AdditionalDependencies="libfife_d.lib UnitTest++.lib guichan_opengld.lib guichan_sdld.lib guichand.lib ogg_static_d.lib OpenAL32.lib sdl.lib SDL_image.lib SDL_ttf.lib vorbis_static_d.lib vorbisfile_static_d.lib libpng.lib zlib.lib OpenGL32.lib GLU32.lib" AdditionalLibraryDirectories="..\..\..\static_libs\msvc2005" GenerateDebugInformation="true" SubSystem="1" TargetMachine="1"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
29 <Tool Name="VCALinkTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
30 <Tool Name="VCManifestTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
31 <Tool Name="VCXDCMakeTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
32 <Tool Name="VCBscMakeTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
33 <Tool Name="VCFxCopTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
34 <Tool Name="VCAppVerifierTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
35 <Tool Name="VCWebDeploymentTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
36 <Tool Name="VCPostBuildEventTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
37 </Configuration>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
38 <Configuration Name="Release_static|Win32" OutputDirectory="../../../../../tests/core_tests/" IntermediateDirectory="$(ConfigurationName)/$(ProjectName)" ConfigurationType="1" CharacterSet="1" WholeProgramOptimization="1">
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
39 <Tool Name="VCPreBuildEventTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
40 <Tool Name="VCCustomBuildTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
41 <Tool Name="VCXMLDataGeneratorTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
42 <Tool Name="VCWebServiceProxyGeneratorTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
43 <Tool Name="VCMIDLTool"/>
688
ae479ce3f762 Win32 build system:
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 370
diff changeset
44 <Tool Name="VCCLCompilerTool" Optimization="0" AdditionalIncludeDirectories="..\..\..\..\..\engine;..\..\..\..\..\engine\core;..\includes;..\..\..\includes\libguichan;..\..\..\includes\unittest++;..\..\..\includes\libogg;..\..\..\includes\openal-soft;..\..\..\includes\sdl;..\..\..\includes\sdl_image;..\..\..\includes\sdl_ttf;..\..\..\includes\zlib;..\..\..\includes\libvorbis;..\..\..\includes\libpng;..\..\..\includes\python27;..\..\..\includes\boost_1_38_0" PreprocessorDefinitions="WIN32;_CONSOLE" MinimalRebuild="true" RuntimeLibrary="2" UsePrecompiledHeader="0" WarningLevel="3" Detect64BitPortabilityProblems="true" DebugInformationFormat="3"/>
214
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
45 <Tool Name="VCManagedResourceCompilerTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
46 <Tool Name="VCResourceCompilerTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
47 <Tool Name="VCPreLinkEventTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
48 <Tool Name="VCLinkerTool" LinkIncremental="1" AdditionalDependencies="libfife.lib UnitTest++.lib guichan_opengl.lib guichan_sdl.lib guichan.lib ogg_static.lib OpenAL32.lib sdl.lib SDL_image.lib SDL_ttf.lib vorbis_static.lib vorbisfile_static.lib libpng.lib zlib.lib OpenGL32.lib GLU32.lib" AdditionalLibraryDirectories="..\..\..\static_libs\msvc2005" SubSystem="1" TargetMachine="1"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
49 <Tool Name="VCALinkTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
50 <Tool Name="VCManifestTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
51 <Tool Name="VCXDCMakeTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
52 <Tool Name="VCBscMakeTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
53 <Tool Name="VCFxCopTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
54 <Tool Name="VCAppVerifierTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
55 <Tool Name="VCWebDeploymentTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
56 <Tool Name="VCPostBuildEventTool"/>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
57 </Configuration>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
58 </Configurations>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
59 <References>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
60 </References>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
61 <Files>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
62 <File
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
63 RelativePath="..\..\..\..\..\tests\core_tests\__INSERT_FILENAME_HERE__.cpp"
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
64 >
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
65 </File>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
66 </Files>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
67 <Globals>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
68 </Globals>
a18f09b604f2 Added svn:eol-style on files that didn't already have that property.
cheesesucker@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 197
diff changeset
69 </VisualStudioProject>