Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/main_reto_vs05/scripts/weapon_framework.vcproj @ 232

Last change on this file since 232 was 232, checked in by rgrieder, 16 years ago
  • modified the AmmunitionDump to hold different types of ammo
  • converted the RunManager into a Singleton
  • added some methods to address ammo by string
  • created a BaseWeapon class
  • derived BarrelGun from BaseWeapon
File size: 8.6 KB
Line 
1<?xml version="1.0" encoding="Windows-1252"?>
2<VisualStudioProject
3        ProjectType="Visual C++"
4        Version="8.00"
5        Name="weapon_framework"
6        ProjectGUID="{C5DA441F-E90E-4FDA-8BAC-4B12EBBFD00B}"
7        RootNamespace="weapon_framework"
8        Keyword="Win32Proj"
9        >
10        <Platforms>
11                <Platform
12                        Name="Win32"
13                />
14        </Platforms>
15        <ToolFiles>
16        </ToolFiles>
17        <Configurations>
18                <Configuration
19                        Name="Debug|Win32"
20                        OutputDirectory="..\bin\$(ConfigurationName)"
21                        IntermediateDirectory="..\obj\$(ConfigurationName)"
22                        ConfigurationType="1"
23                        CharacterSet="1"
24                        >
25                        <Tool
26                                Name="VCPreBuildEventTool"
27                        />
28                        <Tool
29                                Name="VCCustomBuildTool"
30                        />
31                        <Tool
32                                Name="VCXMLDataGeneratorTool"
33                        />
34                        <Tool
35                                Name="VCWebServiceProxyGeneratorTool"
36                        />
37                        <Tool
38                                Name="VCMIDLTool"
39                        />
40                        <Tool
41                                Name="VCCLCompilerTool"
42                                Optimization="0"
43                                AdditionalIncludeDirectories="..\src;&quot;$(OGRE_HOME)\OgreMain\include&quot;;&quot;$(OGRE_HOME)\Dependencies\include&quot;"
44                                PreprocessorDefinitions="_DEBUG;WIN32;_WINDOWS"
45                                MinimalRebuild="true"
46                                BasicRuntimeChecks="3"
47                                RuntimeLibrary="3"
48                                UsePrecompiledHeader="0"
49                                WarningLevel="3"
50                                Detect64BitPortabilityProblems="true"
51                                DebugInformationFormat="4"
52                        />
53                        <Tool
54                                Name="VCManagedResourceCompilerTool"
55                        />
56                        <Tool
57                                Name="VCResourceCompilerTool"
58                        />
59                        <Tool
60                                Name="VCPreLinkEventTool"
61                        />
62                        <Tool
63                                Name="VCLinkerTool"
64                                AdditionalDependencies="OgreMain_d.lib OIS_d.lib"
65                                OutputFile="$(OutDir)\$(ProjectName).exe"
66                                LinkIncremental="2"
67                                AdditionalLibraryDirectories="$(OGRE_HOME)\lib;$(OGRE_HOME)\Dependencies\lib\$(ConfigurationName)"
68                                GenerateDebugInformation="true"
69                                SubSystem="2"
70                                TargetMachine="1"
71                        />
72                        <Tool
73                                Name="VCALinkTool"
74                        />
75                        <Tool
76                                Name="VCManifestTool"
77                        />
78                        <Tool
79                                Name="VCXDCMakeTool"
80                        />
81                        <Tool
82                                Name="VCBscMakeTool"
83                        />
84                        <Tool
85                                Name="VCFxCopTool"
86                        />
87                        <Tool
88                                Name="VCAppVerifierTool"
89                        />
90                        <Tool
91                                Name="VCWebDeploymentTool"
92                        />
93                        <Tool
94                                Name="VCPostBuildEventTool"
95                        />
96                </Configuration>
97                <Configuration
98                        Name="Release|Win32"
99                        OutputDirectory="..\bin\$(ConfigurationName)"
100                        IntermediateDirectory="..\obj\$(ConfigurationName)"
101                        ConfigurationType="1"
102                        CharacterSet="1"
103                        WholeProgramOptimization="1"
104                        >
105                        <Tool
106                                Name="VCPreBuildEventTool"
107                        />
108                        <Tool
109                                Name="VCCustomBuildTool"
110                        />
111                        <Tool
112                                Name="VCXMLDataGeneratorTool"
113                        />
114                        <Tool
115                                Name="VCWebServiceProxyGeneratorTool"
116                        />
117                        <Tool
118                                Name="VCMIDLTool"
119                        />
120                        <Tool
121                                Name="VCCLCompilerTool"
122                                AdditionalIncludeDirectories="..\src;&quot;$(OGRE_HOME)\OgreMain\include&quot;;&quot;$(OGRE_HOME)\Dependencies\include&quot;"
123                                PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS"
124                                RuntimeLibrary="2"
125                                UsePrecompiledHeader="0"
126                                WarningLevel="3"
127                                Detect64BitPortabilityProblems="true"
128                                DebugInformationFormat="3"
129                        />
130                        <Tool
131                                Name="VCManagedResourceCompilerTool"
132                        />
133                        <Tool
134                                Name="VCResourceCompilerTool"
135                        />
136                        <Tool
137                                Name="VCPreLinkEventTool"
138                        />
139                        <Tool
140                                Name="VCLinkerTool"
141                                AdditionalDependencies="OgreMain.lib OIS.lib"
142                                OutputFile="$(OutDir)\$(ProjectName).exe"
143                                LinkIncremental="1"
144                                AdditionalLibraryDirectories="$(OGRE_HOME)\lib;$(OGRE_HOME)\Dependencies\lib\$(ConfigurationName)"
145                                GenerateDebugInformation="true"
146                                SubSystem="2"
147                                OptimizeReferences="2"
148                                EnableCOMDATFolding="2"
149                                TargetMachine="1"
150                        />
151                        <Tool
152                                Name="VCALinkTool"
153                        />
154                        <Tool
155                                Name="VCManifestTool"
156                        />
157                        <Tool
158                                Name="VCXDCMakeTool"
159                        />
160                        <Tool
161                                Name="VCBscMakeTool"
162                        />
163                        <Tool
164                                Name="VCFxCopTool"
165                        />
166                        <Tool
167                                Name="VCAppVerifierTool"
168                        />
169                        <Tool
170                                Name="VCWebDeploymentTool"
171                        />
172                        <Tool
173                                Name="VCPostBuildEventTool"
174                        />
175                </Configuration>
176        </Configurations>
177        <References>
178        </References>
179        <Files>
180                <Filter
181                        Name="Source Files"
182                        Filter="cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx"
183                        UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}"
184                        >
185                        <File
186                                RelativePath="..\src\camera_manager.cc"
187                                >
188                        </File>
189                        <File
190                                RelativePath="..\src\inertial_node.cc"
191                                >
192                        </File>
193                        <File
194                                RelativePath="..\src\main.cc"
195                                >
196                        </File>
197                        <File
198                                RelativePath="..\src\ogre_control.cc"
199                                >
200                        </File>
201                        <File
202                                RelativePath="..\src\orxonox.cc"
203                                >
204                        </File>
205                        <File
206                                RelativePath="..\src\orxonox_scene.cc"
207                                >
208                        </File>
209                        <File
210                                RelativePath="..\src\orxonox_ship.cc"
211                                >
212                        </File>
213                        <File
214                                RelativePath="..\src\run_manager.cc"
215                                >
216                        </File>
217                        <Filter
218                                Name="weapon"
219                                >
220                                <File
221                                        RelativePath="..\src\weapon\ammunition_dump.cc"
222                                        >
223                                </File>
224                                <File
225                                        RelativePath="..\src\weapon\barrel_gun.cc"
226                                        >
227                                </File>
228                                <File
229                                        RelativePath="..\src\weapon\base_weapon.cpp"
230                                        >
231                                </File>
232                                <File
233                                        RelativePath="..\src\weapon\bullet.cc"
234                                        >
235                                </File>
236                                <File
237                                        RelativePath="..\src\weapon\bullet_manager.cc"
238                                        >
239                                </File>
240                                <File
241                                        RelativePath="..\src\weapon\weapon_station.cc"
242                                        >
243                                </File>
244                        </Filter>
245                        <Filter
246                                Name="class_hierarchy"
247                                >
248                                <File
249                                        RelativePath="..\src\class_hierarchy\BaseObject.cc"
250                                        >
251                                </File>
252                                <File
253                                        RelativePath="..\src\class_hierarchy\ClassHierarchy.cc"
254                                        >
255                                </File>
256                                <File
257                                        RelativePath="..\src\class_hierarchy\Identifier.cc"
258                                        >
259                                </File>
260                                <File
261                                        RelativePath="..\src\class_hierarchy\IdentifierList.cc"
262                                        >
263                                </File>
264                                <File
265                                        RelativePath="..\src\class_hierarchy\ObjectList.cc"
266                                        >
267                                </File>
268                                <File
269                                        RelativePath="..\src\class_hierarchy\OrxonoxClass.cc"
270                                        >
271                                </File>
272                                <File
273                                        RelativePath="..\src\class_hierarchy\test1.cc"
274                                        >
275                                </File>
276                                <File
277                                        RelativePath="..\src\class_hierarchy\test2.cc"
278                                        >
279                                </File>
280                                <File
281                                        RelativePath="..\src\class_hierarchy\test3.cc"
282                                        >
283                                </File>
284                        </Filter>
285                </Filter>
286                <Filter
287                        Name="Header Files"
288                        Filter="h;hpp;hxx;hm;inl;inc;xsd"
289                        UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}"
290                        >
291                        <File
292                                RelativePath="..\src\camera_manager.h"
293                                >
294                        </File>
295                        <File
296                                RelativePath="..\src\inertial_node.h"
297                                >
298                        </File>
299                        <File
300                                RelativePath="..\src\ogre_control.h"
301                                >
302                        </File>
303                        <File
304                                RelativePath="..\src\orxonox.h"
305                                >
306                        </File>
307                        <File
308                                RelativePath="..\src\orxonox_prerequisites.h"
309                                >
310                        </File>
311                        <File
312                                RelativePath="..\src\orxonox_scene.h"
313                                >
314                        </File>
315                        <File
316                                RelativePath="..\src\orxonox_ship.h"
317                                >
318                        </File>
319                        <File
320                                RelativePath="..\src\run_manager.h"
321                                >
322                        </File>
323                        <Filter
324                                Name="weapon"
325                                >
326                                <File
327                                        RelativePath="..\src\weapon\ammunition_dump.h"
328                                        >
329                                </File>
330                                <File
331                                        RelativePath="..\src\weapon\barrel_gun.h"
332                                        >
333                                </File>
334                                <File
335                                        RelativePath="..\src\weapon\base_weapon.h"
336                                        >
337                                </File>
338                                <File
339                                        RelativePath="..\src\weapon\bullet.h"
340                                        >
341                                </File>
342                                <File
343                                        RelativePath="..\src\weapon\bullet_manager.h"
344                                        >
345                                </File>
346                                <File
347                                        RelativePath="..\src\weapon\weapon.h"
348                                        >
349                                </File>
350                                <File
351                                        RelativePath="..\src\weapon\weapon_station.h"
352                                        >
353                                </File>
354                        </Filter>
355                        <Filter
356                                Name="class_hierarchy"
357                                >
358                                <File
359                                        RelativePath="..\src\class_hierarchy\BaseObject.h"
360                                        >
361                                </File>
362                                <File
363                                        RelativePath="..\src\class_hierarchy\ClassHierarchy.h"
364                                        >
365                                </File>
366                                <File
367                                        RelativePath="..\src\class_hierarchy\Identifier.h"
368                                        >
369                                </File>
370                                <File
371                                        RelativePath="..\src\class_hierarchy\IdentifierIncludes.h"
372                                        >
373                                </File>
374                                <File
375                                        RelativePath="..\src\class_hierarchy\IdentifierList.h"
376                                        >
377                                </File>
378                                <File
379                                        RelativePath="..\src\class_hierarchy\ObjectList.h"
380                                        >
381                                </File>
382                                <File
383                                        RelativePath="..\src\class_hierarchy\OrxonoxClass.h"
384                                        >
385                                </File>
386                                <File
387                                        RelativePath="..\src\class_hierarchy\Test.h"
388                                        >
389                                </File>
390                                <File
391                                        RelativePath="..\src\class_hierarchy\test1.h"
392                                        >
393                                </File>
394                                <File
395                                        RelativePath="..\src\class_hierarchy\test2.h"
396                                        >
397                                </File>
398                                <File
399                                        RelativePath="..\src\class_hierarchy\test3.h"
400                                        >
401                                </File>
402                        </Filter>
403                </Filter>
404                <Filter
405                        Name="Resource Files"
406                        Filter="rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav"
407                        UniqueIdentifier="{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}"
408                        >
409                </Filter>
410        </Files>
411        <Globals>
412        </Globals>
413</VisualStudioProject>
Note: See TracBrowser for help on using the repository browser.