annotate demos/shooter/settings-dist.xml @ 693:5e010218273d

This commit is to back port a fix from 0.3.3 dev branch to the trunk. The directory provider will now use the boost::filesystem::is_directory function to determine if the passed in source is a directory. This allows a python client (through VFS::addNewSource) to add a directory source that is either an absolute path or a relative path from where the application is launched. [t:544]
author vtchill@33b003aa-7bff-0310-803a-e67f0ece8222
date Wed, 08 Jun 2011 04:34:50 +0000
parents 3944096d12ce
children
rev   line source
499
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
1 <?xml version='1.0' encoding='UTF-8'?>
496
987307d12235 Added the fife_settings.py extension. This provides a small utility class for loading and saving settings along with a dialog box for setting screen resolution and other things.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
2 <Settings>
499
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
3 <Module name="FIFE">
538
00aa20dc8b7f Made the Setting class much more customizable by adding the SettingEntry class.
nihathrael@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 499
diff changeset
4 <Setting name="FullScreen" type="bool"> False </Setting>
00aa20dc8b7f Made the Setting class much more customizable by adding the SettingEntry class.
nihathrael@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 499
diff changeset
5 <Setting name="PlaySounds" type="bool"> True </Setting>
499
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
6 <Setting name="RenderBackend" type="str"> OpenGL </Setting>
538
00aa20dc8b7f Made the Setting class much more customizable by adding the SettingEntry class.
nihathrael@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 499
diff changeset
7 <Setting name="ScreenResolution" type="str">1024x768</Setting>
499
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
8 <Setting name="BitsPerPixel" type="int"> 0 </Setting>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
9 <Setting name="InitialVolume" type="float"> 5.0 </Setting>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
10 <Setting name="SDLRemoveFakeAlpha" type="int"> 1 </Setting>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
11 <Setting name="WindowTitle" type="str"> FIFE - Shooter Demo </Setting>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
12 <Setting name="WindowIcon" type="str"></Setting>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
13 <Setting name="Font" type="str"> fonts/FreeSans.ttf </Setting>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
14 <Setting name="FontGlyphs" strip="0" type="str"> abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.,!?-+/():;%&amp;`'*#=[]\"</Setting>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
15 <Setting name="DefaultFontSize" type="int"> 16 </Setting>
666
3944096d12ce * More updates to CHANGES
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 661
diff changeset
16 <Setting name="LogModules" type="list"> controller ; video </Setting>
499
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
17 <Setting name="PychanDebug" type="bool"> False </Setting>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
18 <Setting name="LogToPrompt" type="int"> 1 </Setting>
666
3944096d12ce * More updates to CHANGES
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 661
diff changeset
19 <Setting name="UsePsyco" type="bool"> False </Setting>
3944096d12ce * More updates to CHANGES
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 661
diff changeset
20 <Setting name="ProfilingOn" type="bool"> False </Setting>
499
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
21 <Setting name="LogToFile" type="int"> 0 </Setting>
666
3944096d12ce * More updates to CHANGES
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 661
diff changeset
22 <Setting name="Lighting" type="int"> 0 </Setting>
499
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
23 </Module>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
24 <Module name="shooter">
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
25 <Setting name="MaxSounds" type="int">100</Setting>
3dff106b945b Combined the settings extension with the editor settings module. It is now a little more robust. Note that the settings file format has changed.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents: 496
diff changeset
26 </Module>
496
987307d12235 Added the fife_settings.py extension. This provides a small utility class for loading and saving settings along with a dialog box for setting screen resolution and other things.
prock@33b003aa-7bff-0310-803a-e67f0ece8222
parents:
diff changeset
27 </Settings>