2012-08-01 23:35:35 +00:00
|
|
|
import os, os.path, sys
|
|
|
|
import urllib, zipfile
|
|
|
|
import shutil, glob, fnmatch
|
|
|
|
import subprocess, logging
|
|
|
|
|
|
|
|
forge_dir = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
mcp_dir = os.path.abspath('..')
|
|
|
|
src_dir = os.path.join(mcp_dir, 'src')
|
|
|
|
|
2012-08-05 02:29:54 +00:00
|
|
|
from forge import setup_forge_mcp, apply_forge_patches
|
2012-08-01 23:35:35 +00:00
|
|
|
|
|
|
|
def main():
|
|
|
|
print '=================================== Setup Start ================================='
|
2012-08-11 03:30:59 +00:00
|
|
|
dont_gen_conf = True #'-no_gen_conf' in sys.argv
|
2012-08-09 10:06:41 +00:00
|
|
|
setup_fml(dont_gen_conf)
|
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'
|
2012-08-04 07:55:17 +00:00
|
|
|
apply_forge_patches(os.path.join(forge_dir, 'fml'), mcp_dir, forge_dir, work_dir, False)
|
2012-08-01 23:35:35 +00:00
|
|
|
|
2012-08-05 02:29:54 +00:00
|
|
|
#Restore mcp/conf.bak, therefore restoring normal MCP updating ability
|
|
|
|
if not dont_gen_conf:
|
|
|
|
mcp_conf = os.path.join(mcp_dir, 'conf')
|
|
|
|
mcp_conf_bak = os.path.join(mcp_dir, 'conf.bak')
|
|
|
|
|
|
|
|
if os.path.isdir(mcp_conf):
|
|
|
|
print 'Removing new conf folder'
|
|
|
|
shutil.rmtree(mcp_conf)
|
|
|
|
|
|
|
|
print 'Restoreing original MCP Conf'
|
|
|
|
os.rename(mcp_conf_bak, mcp_conf)
|
|
|
|
|
2012-08-01 23:35:35 +00:00
|
|
|
print '=================================== Setup Finished ================================='
|
|
|
|
|
2012-08-09 10:06:41 +00:00
|
|
|
def setup_fml(dont_gen_conf):
|
2012-08-01 23:35:35 +00:00
|
|
|
print 'Setting up Forge ModLoader'
|
|
|
|
fml = glob.glob(os.path.join(forge_dir, 'fml-src-*.zip'))
|
|
|
|
if not len(fml) == 1:
|
|
|
|
if len(fml) == 0:
|
|
|
|
print 'Missing FML source zip, should be named fml-src-*.zip inside your forge folder, obtain it from the repo'
|
|
|
|
else:
|
|
|
|
print 'To many FML source zips found, we should only have one. Check the Forge Git for the latest FML version supported'
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
fml_dir = os.path.join(forge_dir, 'fml')
|
2012-08-04 07:55:17 +00:00
|
|
|
|
2012-08-01 23:35:35 +00:00
|
|
|
if os.path.isdir(fml_dir):
|
|
|
|
shutil.rmtree(fml_dir)
|
|
|
|
|
|
|
|
print 'Extracting: %s' % os.path.basename(fml[0])
|
|
|
|
|
|
|
|
zf = zipfile.ZipFile(fml[0])
|
|
|
|
zf.extractall(forge_dir)
|
|
|
|
zf.close()
|
|
|
|
|
2012-08-04 07:55:17 +00:00
|
|
|
sys.path.append(fml_dir)
|
|
|
|
from install import fml_main
|
2012-08-09 10:06:41 +00:00
|
|
|
fml_main(fml_dir, mcp_dir, dont_gen_conf)
|
2012-08-01 23:35:35 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2012-04-06 13:10:11 +00:00
|
|
|
main()
|