Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/utils/strs.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/strs.py')
-rw-r--r--src/utils/strs.py35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/utils/strs.py b/src/utils/strs.py
new file mode 100644
index 0000000..4059bbf
--- /dev/null
+++ b/src/utils/strs.py
@@ -0,0 +1,35 @@
+'''
+Created on Jul 5, 2009
+
+@author: doug
+'''
+
+# files
+ConfigFile = '/home/doug/workspace/Muthris/docs/examples/config.xml'
+LoggingFile = '/tmp/muthris-dev.log'
+
+# file extensions
+Ext_Level = '.mlvl'
+Ext_Profile = '.mpro'
+
+# XML locations
+XP_LevelFolderLocation = '/muthris/config/level-folders/folder/@location'
+XP_ProfileFolderLocation = '/muthris/config/profile-folders/folder/@location'
+XP_LastProfileName = '/muthris/config/last/profile/@name'
+XP_LevelName = '/muthris/level/@name'
+XP_LevelDescription = '/muthris/level/@description'
+XP_ProfileName = '/muthris/profile/@name'
+
+# menu titles
+Title_Main = 'Main Menu'
+Title_ChangePlayer = 'Change Player'
+Title_PlayGame = 'Play Game'
+# Title_LevelOptions = '' # title uses the name of the level
+Title_SkillLevel = 'Skill Level'
+Title_NumberOfPlayers = 'Number of Players'
+Title_Seperator = ' - '
+
+# indent spacing for curses
+Indent_Title = 25
+Indent_Options = 10
+Indent_Prompt = 5 \ No newline at end of file