ForgePatch/setup.py

66 lines
2.3 KiB
Python
Raw Normal View History

import os, os.path, sys, zipfile
2012-08-01 23:35:35 +00:00
import shutil, glob, fnmatch
from optparse import OptionParser
2012-08-01 23:35:35 +00:00
forge_dir = os.path.dirname(os.path.abspath(__file__))
from forge import apply_forge_patches
2012-08-01 23:35:35 +00:00
def main():
print '=================================== Setup Start ================================='
parser = OptionParser()
parser.add_option('-m', '--mcp-dir', action='store', dest='mcp_dir', help='Path to download/extract MCP to', default=None)
parser.add_option('-n', '--no-extract', action='store_true', dest='no_extract', help='Do not attempt to extract FML zip files', default=False)
options, _ = parser.parse_args()
fml_dir = os.path.join(forge_dir, 'fml')
mcp_dir = os.path.join(forge_dir, 'mcp')
if not options.mcp_dir is None:
mcp_dir = os.path.abspath(options.mcp_dir)
elif os.path.isfile(os.path.join('..', 'runtime', 'commands.py')):
mcp_dir = os.path.abspath('..')
src_dir = os.path.join(mcp_dir, 'src')
setup_fml(mcp_dir, fml_dir, options.no_extract)
2012-08-01 23:35:35 +00:00
base_dir = os.path.join(mcp_dir, 'src_base')
work_dir = os.path.join(mcp_dir, 'src_work')
if os.path.isdir(base_dir):
shutil.rmtree(base_dir)
if os.path.isdir(work_dir):
shutil.rmtree(work_dir)
print 'Setting up source directories'
shutil.copytree(src_dir, base_dir)
shutil.copytree(src_dir, work_dir)
print 'Applying forge patches'
apply_forge_patches(os.path.join(forge_dir, 'fml'), mcp_dir, forge_dir, work_dir, False)
2012-08-01 23:35:35 +00:00
setup_eclipse(forge_dir)
2012-08-01 23:35:35 +00:00
print '=================================== Setup Finished ================================='
def setup_fml(mcp_dir, fml_dir, dont_extract=False):
2012-08-01 23:35:35 +00:00
print 'Setting up Forge ModLoader'
sys.path.append(os.path.join(fml_dir,'install')os.path.join(forge_dir, 'fml'))
from install import fml_main
fml_main(fml_dir, mcp_dir, True)
2012-08-01 23:35:35 +00:00
def setup_eclipse(forge_dir):
eclipse_dir = os.path.join(forge_dir, 'eclipse')
eclipse_zip = os.path.join(forge_dir, 'eclipse-workspace-dev.zip')
if not os.path.isdir(eclipse_dir) and os.path.isfile(eclipse_zip):
print 'Extracting Dev Workspace'
zf = zipfile.ZipFile(eclipse_zip)
zf.extractall(forge_dir)
zf.close()
2012-08-01 23:35:35 +00:00
if __name__ == '__main__':
main()