2012-04-04 15:05:31 +00:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
import subprocess, shlex
|
|
|
|
|
2012-04-05 12:25:04 +00:00
|
|
|
mcp_root = os.path.abspath(sys.argv[1])
|
|
|
|
sys.path.append(os.path.join(mcp_root,"runtime"))
|
|
|
|
from filehandling.srgshandler import parse_srg
|
|
|
|
|
2012-04-04 15:05:31 +00:00
|
|
|
def cmdsplit(args):
|
|
|
|
if os.sep == '\\':
|
|
|
|
args = args.replace('\\', '\\\\')
|
|
|
|
return shlex.split(args)
|
|
|
|
|
|
|
|
def main():
|
|
|
|
list_file = os.path.abspath(sys.argv[2])
|
|
|
|
with open(list_file, 'w') as fh:
|
2012-08-03 10:37:45 +00:00
|
|
|
write_changed(fh, os.path.join(mcp_root,"temp","client.md5"), os.path.join(mcp_root,"temp","client_reobf.md5"), 'minecraft')
|
|
|
|
write_changed(fh, os.path.join(mcp_root,"temp","server.md5"), os.path.join(mcp_root,"temp","server_reobf.md5"), 'minecraft_server')
|
|
|
|
|
|
|
|
def write_changed(fh, pre, post, name):
|
|
|
|
if not os.path.isfile(pre) or not os.path.isfile(post):
|
|
|
|
print 'MD5s Missing! Can not extract %s changed files' % name
|
|
|
|
return
|
|
|
|
|
|
|
|
cmd = 'diff --unchanged-group-format='' --old-group-format='' --new-group-format=\'%%>\' --changed-group-format=\'%%>\' %s %s' % (pre, post)
|
2012-05-10 06:01:23 +00:00
|
|
|
process = subprocess.Popen(cmdsplit(cmd), stdout=subprocess.PIPE, bufsize=-1)
|
|
|
|
difflist,_= process.communicate()
|
|
|
|
srg_data = parse_srg(os.path.join(mcp_root,"temp","client_rg.srg"))
|
|
|
|
classes = {}
|
|
|
|
for row in srg_data['CL']:
|
|
|
|
classes[row['deobf_name']] = row['obf_name']
|
|
|
|
|
2012-08-03 10:37:45 +00:00
|
|
|
for diff in difflist.splitlines():
|
2012-05-10 06:01:23 +00:00
|
|
|
diffrow=diff.strip().split()
|
|
|
|
clazz=diffrow[0]
|
|
|
|
if clazz in classes:
|
2012-08-03 10:37:45 +00:00
|
|
|
clazz=classes[clazz]
|
2012-05-10 06:01:23 +00:00
|
|
|
if clazz.startswith("net/minecraft/src/"):
|
2012-08-03 10:37:45 +00:00
|
|
|
clazz=clazz[len("net/minecraft/src/"):]
|
|
|
|
fh.write("%s/%s.class\n" %(name,clazz))
|
2012-08-11 09:27:19 +00:00
|
|
|
fh.write("%s/cpw/mods/fml/common/asm/SideOnly.class\n" % name)
|
|
|
|
fh.write("%s/cpw/mods/fml/common/Side.class\n" % name)
|
2012-04-04 15:05:31 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|