view demos/rpg/settings-dist.xml @ 524:6037f79b0dcf

Multiple quests now work. Added the item layer. Made movement more like diablo by allowing you to hold and drag the left mouse button. All objects are now loaded from a separate "allobjects" file. Specific item attributes are loaded from the map objects file (like position). This allows for the possibility of multiple instances using the same FIFE model.
author prock@33b003aa-7bff-0310-803a-e67f0ece8222
date Thu, 27 May 2010 21:11:37 +0000
parents b6bd314df28a
children 796d49ab9380
line wrap: on
line source

<?xml version='1.0' encoding='UTF-8'?>
<Settings>
	<Module name="FIFE">
		<Setting name="FullScreen" type="int"> 0 </Setting>
		<Setting name="PlaySounds" type="int"> 1 </Setting>
		<Setting name="RenderBackend" type="str"> OpenGL </Setting>
		<Setting name="ScreenWidth" type="int"> 1024 </Setting>
		<Setting name="ScreenHeight" type="int"> 768 </Setting>
		<Setting name="BitsPerPixel" type="int"> 0 </Setting>
		<Setting name="InitialVolume" type="float"> 5.0 </Setting>
		<Setting name="SDLRemoveFakeAlpha" type="int"> 1 </Setting>
		<Setting name="WindowTitle" type="str"> FIFE - RPG Demo </Setting>
		<Setting name="WindowIcon" type="str"> </Setting>
		<Setting name="Font" type="str"> fonts/FreeSans.ttf </Setting>
		<Setting name="FontGlyphs" strip="0" type="str"> abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789.,!?-+/():;%&amp;`'*#=[]\"</Setting>
		<Setting name="DefaultFontSize" type="int"> 16 </Setting>
		<Setting name="LogModules" type="list"> controller </Setting>
		<Setting name="PychanDebug" type="bool"> False </Setting>
		<Setting name="LogToPrompt" type="int"> 1 </Setting>
 		<Setting name="UsePsyco" type="bool"> False </Setting>
		<Setting name="ProfilingOn" type="bool"> False </Setting>
		<Setting name="LogToFile" type="int"> 0 </Setting>
	</Module>

	<Module name="RPG">
		<Setting name="TownMapFile" type="str"> maps/town.xml </Setting>
		<Setting name="Level1MapFile" type="str"> maps/level1.xml </Setting>
		<Setting name="DefaultCameraName" type="str"> camera1 </Setting>
		<Setting name="DefaultZoom" type="float"> 2.0 </Setting>
		<Setting name="ObjectNamespace" type="str"> http://www.fifengine.de/xml/rpg </Setting>
		<Setting name="ActorLayer" type="str"> actor_layer </Setting>
		<Setting name="ItemLayer" type="str"> item_layer </Setting>
		<Setting name="HelpText" type="str"> misc/help.txt </Setting>
		
		<Setting name="DefaultActorWalkSpeed" type="float"> 2.5 </Setting>
	</Module>
</Settings>