summaryrefslogtreecommitdiff
path: root/prequeue.py
blob: 5c1a9f161fb55fd6445058312adfe1e237ecf141 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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.
"""

import os
import sys
import preprocessor

def main():
    macros = preprocessor.load_pokecrystal_macros()
    macro_table = preprocessor.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(macro_table)

    # reset stdout
    sys.stdout = stdout

if __name__ == '__main__':
    main()