Mercurial > parpg-core
comparison src/parpg/gui/charactercreationview.py @ 12:d60f1dab8469
Fixed resource path dependencies issue that caused PARPG to crash on start.
* PARPG should now run without issue (system installation not tested).
* Utilized FIFE's VFS module to remove path dependencies from most PARPG modules.
* The new parpg.vfs module is a singleton with a single global variable, VFS, which is a reference to the global VFS instance. Although a singleton is not ideal it should be replaced once PARPG's core code is refactored.
* The parpg.vfs singleton is initialized in the parpg.applicaiton.PARPGApplication class with the absolute path to the data directory via the parpg.settings module and corresponding configuration file.
* A new DataPath entry was added to the default system configuration file template under the [parpg] section to support the new parpg.vfs module.
* Updated the parpg-assets subrepo to revision 3 to fix some dialog file format issues (for details see commit message for parpg-assets).
* Fixed a few bugs in the parpg.dialogueparsers.YAMLDialogueParser class related to exception handling.
author | M. George Hansen <technopolitica@gmail.com> |
---|---|
date | Mon, 06 Jun 2011 15:56:14 -1000 |
parents | 1fd2201f5c36 |
children |
comparison
equal
deleted
inserted
replaced
11:4706e0194af3 | 12:d60f1dab8469 |
---|---|
1 from fife.extensions import pychan | 1 from fife.extensions import pychan |
2 from fife.extensions.pychan.widgets import Label, HBox | 2 from fife.extensions.pychan.widgets import Label, HBox |
3 | 3 |
4 from parpg import vfs | |
4 from parpg.gui.spinner import IntSpinner | 5 from parpg.gui.spinner import IntSpinner |
5 | 6 |
6 class CharacterCreationView(object): | 7 class CharacterCreationView(object): |
7 def __init__(self, xml_script_path='gui/character_creation.xml'): | 8 def __init__(self, xml_script_path='gui/character_creation.xml'): |
8 self.gui = pychan.loadXML(xml_script_path) | 9 xml_file = vfs.VFS.open(xml_script_path) |
10 self.gui = pychan.loadXML(xml_file) | |
9 | 11 |
10 def createStatisticList(self, statistics): | 12 def createStatisticList(self, statistics): |
11 statistics_list = self.gui.findChild(name='statisticsList') | 13 statistics_list = self.gui.findChild(name='statisticsList') |
12 # Start with an empty list. | 14 # Start with an empty list. |
13 statistics_list.removeAllChildren() | 15 statistics_list.removeAllChildren() |