pokecrystal-board/prequeue.py

32 lines
718 B
Python
Raw Normal View History

2013-06-25 18:28:25 -07:00
# coding: utf-8
2013-08-31 08:03:37 -07:00
"""
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.
"""
2013-06-25 18:28:25 -07:00
import os
import sys
2013-09-02 08:41:50 -07:00
import extras.pokemontools.configuration as configuration
2013-09-02 08:41:50 -07:00
import preprocessor
def main():
config = configuration.Config()
macros = preprocessor.load_pokecrystal_macros()
stdout = sys.stdout
2013-06-25 20:25:50 -07:00
for source in sys.argv[1:]:
dest = os.path.splitext(source)[0] + '.tx'
sys.stdin = open(source, 'r')
sys.stdout = open(dest, 'w')
2013-09-02 08:41:50 -07:00
preprocessor.preprocess(config, macros)
# reset stdout
sys.stdout = stdout
if __name__ == '__main__':
main()