2012-08-02 07:51:51 +00:00
|
|
|
--- commands.py
|
|
|
|
+++ commands.py
|
2013-06-28 03:48:52 +00:00
|
|
|
@@ -142,6 +142,8 @@
|
2013-03-09 17:25:24 +00:00
|
|
|
fieldnames = csvreader.fieldnames
|
|
|
|
return set(fieldnames)
|
|
|
|
|
|
|
|
+def commands_sanity_check():
|
2013-06-28 03:48:52 +00:00
|
|
|
+ print ' Commands patch applied successfully'
|
2013-03-09 17:25:24 +00:00
|
|
|
|
|
|
|
class Commands(object):
|
|
|
|
"""Contains the commands and initialisation for a full mcp run"""
|
2013-06-28 03:48:52 +00:00
|
|
|
@@ -980,6 +982,8 @@
|
2012-10-31 14:40:40 +00:00
|
|
|
binlk = {CLIENT: self.binclient, SERVER: self.binserver}
|
|
|
|
testlk = {CLIENT: self.testclient, SERVER: self.testserver}
|
|
|
|
|
2013-02-26 22:34:51 +00:00
|
|
|
+ if side == SERVER and not os.path.exists(os.path.join(binlk[side], os.path.normpath(testlk[side] + '.class'))):
|
2012-10-31 14:40:40 +00:00
|
|
|
+ return self.checkbins(CLIENT)
|
|
|
|
if not os.path.exists(os.path.join(binlk[side], os.path.normpath(testlk[side] + '.class'))):
|
|
|
|
return False
|
|
|
|
return True
|
2013-06-28 03:48:52 +00:00
|
|
|
@@ -1311,6 +1315,9 @@
|
2013-04-23 11:40:49 +00:00
|
|
|
pathbinlk = {CLIENT: self.binclient, SERVER: self.binserver}
|
2013-01-30 23:57:21 +00:00
|
|
|
pathsrclk = {CLIENT: self.srcclient, SERVER: self.srcserver}
|
|
|
|
pathlog = {CLIENT: self.clientrecomplog, SERVER: self.serverrecomplog}
|
2013-04-23 11:40:49 +00:00
|
|
|
+
|
2013-02-26 22:54:18 +00:00
|
|
|
+ if side == SERVER: #Warn about server because FML recombines it into client
|
|
|
|
+ self.logger.info('Server side recompiling might be skipped, this is normal, do not complain to FML/Forge team about server side.')
|
2013-04-23 11:40:49 +00:00
|
|
|
|
2013-01-30 23:57:21 +00:00
|
|
|
if not os.path.exists(pathbinlk[side]):
|
|
|
|
os.makedirs(pathbinlk[side])
|
2013-06-28 03:48:52 +00:00
|
|
|
@@ -1368,7 +1375,7 @@
|
2012-08-10 19:38:59 +00:00
|
|
|
raise
|
|
|
|
|
|
|
|
def startserver(self):
|
|
|
|
- classpath = [self.binserver] + self.cpathserver
|
2012-12-18 13:06:20 +00:00
|
|
|
+ classpath = [self.binclient, self.srcclient] + self.cpathserver
|
2012-08-10 19:38:59 +00:00
|
|
|
classpath = [os.path.join('..', p) for p in classpath]
|
|
|
|
classpath = os.pathsep.join(classpath)
|
|
|
|
os.chdir(self.dirjars)
|
2013-06-28 03:48:52 +00:00
|
|
|
@@ -1376,7 +1383,7 @@
|
2012-12-18 13:06:20 +00:00
|
|
|
self.runmc(forkcmd)
|
|
|
|
|
|
|
|
def startclient(self):
|
|
|
|
- classpath = [self.binclient] + self.cpathclient
|
|
|
|
+ classpath = [self.binclient, self.srcclient] + self.cpathclient
|
|
|
|
classpath = [os.path.join('..', p) for p in classpath]
|
|
|
|
classpath = os.pathsep.join(classpath)
|
|
|
|
natives = os.path.join('..', self.dirnatives)
|
2013-06-28 03:48:52 +00:00
|
|
|
@@ -1733,7 +1740,7 @@
|
2012-08-08 03:11:37 +00:00
|
|
|
self.runcmd(forkcmd)
|
2012-08-14 04:53:52 +00:00
|
|
|
return True
|
|
|
|
|
|
|
|
- def gathermd5s(self, side, reobf=False):
|
|
|
|
+ def gathermd5s(self, side, reobf=False, skip_fml=False):
|
|
|
|
if not reobf:
|
|
|
|
md5lk = {CLIENT: self.md5client, SERVER: self.md5server}
|
|
|
|
else:
|
2013-06-28 03:48:52 +00:00
|
|
|
@@ -1748,6 +1755,9 @@
|
2012-08-14 04:53:52 +00:00
|
|
|
class_path = ''
|
|
|
|
else:
|
|
|
|
class_path += '/'
|
|
|
|
+ if skip_fml:
|
|
|
|
+ if class_path.startswith('cpw/'):
|
|
|
|
+ continue
|
|
|
|
for class_file in fnmatch.filter(filelist, '*.class'):
|
|
|
|
class_name = class_path + os.path.splitext(class_file)[0]
|
|
|
|
bin_file = os.path.normpath(os.path.join(path, class_file))
|
2013-06-28 03:48:52 +00:00
|
|
|
@@ -1920,6 +1930,9 @@
|
2012-08-08 03:11:37 +00:00
|
|
|
sys.exit(1)
|
2012-08-02 07:51:51 +00:00
|
|
|
|
|
|
|
for entry in newfiles:
|
|
|
|
+ if 'commands.py' in entry[0]: #FML, Disable updating of Commands.py
|
|
|
|
+ print 'Update to runtime/commands.py found, but disbled due to using fml'
|
|
|
|
+ continue
|
|
|
|
if entry[3] == 'U':
|
2012-08-08 03:11:37 +00:00
|
|
|
self.logger.info('Retrieving file from server : %s', entry[0])
|
|
|
|
cur_file = os.path.normpath(entry[0])
|
2013-06-28 03:48:52 +00:00
|
|
|
@@ -1940,6 +1953,9 @@
|
2012-08-15 07:50:40 +00:00
|
|
|
md5reoblk = {CLIENT: self.md5reobfclient, SERVER: self.md5reobfserver}
|
|
|
|
outpathlk = {CLIENT: self.srcmodclient, SERVER: self.srcmodserver}
|
|
|
|
src = {CLIENT: self.srcclient, SERVER: self.srcserver}
|
|
|
|
+
|
|
|
|
+ if side == SERVER: #Noop out server side stuff
|
|
|
|
+ return
|
|
|
|
|
|
|
|
# HINT: We need a table for the old md5 and the new ones
|
2013-04-27 05:24:06 +00:00
|
|
|
md5table = {}
|