4ca63717e5
Compile and run AccessTransformer during the pre-RG stage of decompilation. Merge resulting sources that are identical to src/common ToDo: Finish the common intergration: -update_patches - Add common folder support -apply_patches: --patch each side, also patch all common patches to each side incase they are not merged, only if file exists.
18 lines
479 B
Python
18 lines
479 B
Python
import urllib
|
|
import zipfile
|
|
import sys
|
|
import os
|
|
|
|
|
|
if __name__ == '__main__':
|
|
if not len(sys.argv) == 3:
|
|
print 'Invalid arguments, must supply mcp folder and fml folder: decompile.y <MCPFolder> <FMLFolder>'
|
|
else:
|
|
mcp_dir = os.path.abspath(sys.argv[1])
|
|
fml_dir = os.path.abspath(sys.argv[2])
|
|
|
|
sys.path.append(os.path.join(fml_dir, 'install'))
|
|
|
|
from fml import setup_fml
|
|
|
|
setup_fml(fml_dir, mcp_dir)
|