diff options
author | Daniel Harding <33dannye@gmail.com> | 2018-07-01 10:54:43 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-01 10:54:43 -0500 |
commit | e42ec2368b3f61715f1e86d26bd8706684336c62 (patch) | |
tree | 7e290929824d0857be5846364da0007da0c749a5 /tools/configuration.py | |
parent | 30aa1150f1c42a42aebb4dd1cd9f919b62cbff09 (diff) | |
parent | e9d1642fbbe19df0dac0c2dca16ac22aed760b84 (diff) |
Merge pull request #42 from xCrystal/master
More home disassembly ; Redesign TX_SYMBOL constants ; rename 'Kind' labels ; more wram addresses and text symbols ; Don't use the extras submodule ; Add support for disassembling poketcg-specific macros
Diffstat (limited to 'tools/configuration.py')
-rw-r--r-- | tools/configuration.py | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/tools/configuration.py b/tools/configuration.py new file mode 100644 index 0000000..6bdb7e8 --- /dev/null +++ b/tools/configuration.py @@ -0,0 +1,57 @@ +"""
+Configuration
+"""
+
+import os
+
+class ConfigException(Exception):
+ """
+ Configuration error. Maybe a missing config variable.
+ """
+
+class Config(object):
+ """
+ The Config class handles all configuration for pokemontools. Other classes
+ and functions use a Config object to determine where expected files can be
+ located.
+ """
+
+ def __init__(self, **kwargs):
+ """
+ Store all parameters.
+ """
+ self._config = {}
+
+ for (key, value) in kwargs.items():
+ if key not in self.__dict__:
+ self._config[key] = value
+ else:
+ raise ConfigException(
+ "Can't store \"{0}\" in configuration because the key conflicts with an existing property."
+ .format(key)
+ )
+
+ if "path" not in self._config:
+ self._config["path"] = os.getcwd()
+
+ # vba save states go into ./save-states/
+ if "save_state_path" not in self._config:
+ self._config["save_state_path"] = os.path.join(self._config["path"], "save-states/")
+
+ # assume rom is at ./baserom.gbc
+ if "rom" not in self._config:
+ self._config["rom_path"] = os.path.join(self._config["path"], "baserom.gbc")
+
+ def __getattr__(self, key):
+ """
+ Grab the value from the class properties, then check the configuration,
+ and raise an exception if nothing works.
+ """
+ if key in self.__dict__:
+ return self.__dict__[key]
+ elif key in self._config:
+ return self._config[key]
+ else:
+ raise ConfigException(
+ "no config found for \"{0}\"".format(key)
+ )
|