summaryrefslogtreecommitdiff
path: root/prequeue.py
diff options
context:
space:
mode:
authoryenatch <yenatch@gmail.com>2013-09-03 15:58:01 -0400
committeryenatch <yenatch@gmail.com>2013-09-03 15:58:01 -0400
commit04b926c6cb528b6d873bb62f3875db8ad4ae7dee (patch)
treefc0811dbe3abbc57d137cc4be2ae323925d0320f /prequeue.py
parent2b2018a83abe4dce6a451070d234bd606c15200e (diff)
parentc0a01c998240bacae77addbb08a5d2133cf58a21 (diff)
Merge branch 'master' of github.com:kanzure/pokecrystal
Diffstat (limited to 'prequeue.py')
-rw-r--r--prequeue.py24
1 files changed, 18 insertions, 6 deletions
diff --git a/prequeue.py b/prequeue.py
index c9a9a8bcc..6efc519d1 100644
--- a/prequeue.py
+++ b/prequeue.py
@@ -1,16 +1,28 @@
# coding: utf-8
-
-# Starting a new python process to preprocess each source file
-# creates too much overhead. Instead, a list of files to preprocess
-# is fed into a script run from a single process.
+"""
+Starting a new python process to preprocess each source file creates too much
+overhead. Instead, a list of files to preprocess is fed into a script run from
+a single process.
+"""
import os
import sys
import preprocessor
-if __name__ == '__main__':
+def main():
+ macros = preprocessor.load_pokecrystal_macros()
+ macro_table = preprocessor.make_macro_table(macros)
+
+ stdout = sys.stdout
+
for source in sys.argv[1:]:
dest = os.path.splitext(source)[0] + '.tx'
sys.stdin = open(source, 'r')
sys.stdout = open(dest, 'w')
- preprocessor.preprocess(preprocessor.macros)
+ preprocessor.preprocess(macro_table)
+
+ # reset stdout
+ sys.stdout = stdout
+
+if __name__ == '__main__':
+ main()