2015-09-01 00:26:35 +00:00
|
|
|
import bpy, sys, os, re, struct
|
2015-07-28 23:54:54 +00:00
|
|
|
|
|
|
|
ARGS_PATTERN = re.compile(r'''(?:"([^"]+)"|'([^']+)'|(\S+))''')
|
2015-05-23 21:59:40 +00:00
|
|
|
|
|
|
|
# Extract pipe file descriptors from arguments
|
2015-08-06 19:10:12 +00:00
|
|
|
print('HECL Blender Launch', sys.argv)
|
2015-05-24 04:51:16 +00:00
|
|
|
if '--' not in sys.argv:
|
|
|
|
bpy.ops.wm.quit_blender()
|
2015-05-23 21:59:40 +00:00
|
|
|
args = sys.argv[sys.argv.index('--')+1:]
|
|
|
|
readfd = int(args[0])
|
|
|
|
writefd = int(args[1])
|
2015-09-22 01:41:38 +00:00
|
|
|
double_verbose = int(args[2])
|
2015-08-31 03:36:24 +00:00
|
|
|
if sys.platform == "win32":
|
|
|
|
import msvcrt
|
|
|
|
readfd = msvcrt.open_osfhandle(readfd, os.O_RDONLY | os.O_BINARY)
|
|
|
|
writefd = msvcrt.open_osfhandle(writefd, os.O_WRONLY | os.O_BINARY)
|
2015-05-23 21:59:40 +00:00
|
|
|
|
|
|
|
def readpipeline():
|
|
|
|
retval = bytearray()
|
|
|
|
while True:
|
|
|
|
ch = os.read(readfd, 1)
|
|
|
|
if ch == b'\n' or ch == b'':
|
|
|
|
return retval
|
|
|
|
retval += ch
|
|
|
|
|
|
|
|
def writepipeline(linebytes):
|
2015-05-24 22:19:28 +00:00
|
|
|
os.write(writefd, linebytes + b'\n')
|
|
|
|
|
|
|
|
def writepipebuf(linebytes):
|
|
|
|
writepipeline(b'BUF')
|
|
|
|
os.write(writefd, struct.pack('I', len(linebytes)) + linebytes)
|
2015-05-23 21:59:40 +00:00
|
|
|
|
|
|
|
def quitblender():
|
|
|
|
writepipeline(b'QUITTING')
|
|
|
|
bpy.ops.wm.quit_blender()
|
|
|
|
|
2015-08-31 03:36:24 +00:00
|
|
|
# If there's a third argument, use it as the .zip path containing the addon
|
2015-09-17 19:50:01 +00:00
|
|
|
did_install = False
|
2015-09-22 01:41:38 +00:00
|
|
|
if len(args) >= 4 and args[3] != 'SKIPINSTALL':
|
|
|
|
bpy.ops.wm.addon_install(overwrite=True, target='DEFAULT', filepath=args[3])
|
2015-08-31 03:36:24 +00:00
|
|
|
bpy.ops.wm.addon_refresh()
|
2015-09-17 19:50:01 +00:00
|
|
|
did_install = True
|
2015-05-24 04:51:16 +00:00
|
|
|
|
2015-05-24 22:19:28 +00:00
|
|
|
# Make addon available to commands
|
2015-08-31 03:36:24 +00:00
|
|
|
if bpy.context.user_preferences.addons.find('hecl') == -1:
|
|
|
|
try:
|
|
|
|
bpy.ops.wm.addon_enable(module='hecl')
|
|
|
|
bpy.ops.wm.save_userpref()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
try:
|
|
|
|
import hecl
|
|
|
|
except:
|
|
|
|
writepipeline(b'NOADDON')
|
|
|
|
bpy.ops.wm.quit_blender()
|
2015-05-24 22:19:28 +00:00
|
|
|
|
2015-09-17 19:50:01 +00:00
|
|
|
# Quit if just installed
|
|
|
|
if did_install:
|
|
|
|
writepipeline(b'ADDONINSTALLED')
|
|
|
|
bpy.ops.wm.quit_blender()
|
|
|
|
|
2015-05-23 21:59:40 +00:00
|
|
|
# Intro handshake
|
|
|
|
writepipeline(b'READY')
|
|
|
|
ackbytes = readpipeline()
|
|
|
|
if ackbytes != b'ACK':
|
|
|
|
quitblender()
|
|
|
|
|
2015-08-05 22:59:59 +00:00
|
|
|
# Count brackets
|
|
|
|
def count_brackets(linestr):
|
|
|
|
bracket_count = 0
|
|
|
|
for ch in linestr:
|
|
|
|
if ch in {'[','{','('}:
|
|
|
|
bracket_count += 1
|
|
|
|
elif ch in {']','}',')'}:
|
|
|
|
bracket_count -= 1
|
|
|
|
return bracket_count
|
|
|
|
|
|
|
|
# Complete sequences of statements compiled/executed here
|
|
|
|
def exec_compbuf(compbuf, globals):
|
2015-09-22 01:41:38 +00:00
|
|
|
if double_verbose:
|
|
|
|
print('EXEC', compbuf)
|
2015-08-05 22:59:59 +00:00
|
|
|
co = compile(compbuf, '<HECL>', 'exec')
|
|
|
|
exec(co, globals)
|
|
|
|
|
2015-09-01 00:26:35 +00:00
|
|
|
def anim_loop(globals):
|
|
|
|
writepipeline(b'ANIMREADY')
|
|
|
|
while True:
|
|
|
|
crv_type = struct.unpack('b', os.read(readfd, 1))
|
|
|
|
if crv_type[0] < 0:
|
|
|
|
writepipeline(b'ANIMDONE')
|
|
|
|
return
|
|
|
|
elif crv_type[0] == 0:
|
|
|
|
crvs = globals['rotCurves']
|
|
|
|
elif crv_type[0] == 1:
|
|
|
|
crvs = globals['transCurves']
|
|
|
|
elif crv_type[0] == 2:
|
|
|
|
crvs = globals['scaleCurves']
|
|
|
|
|
|
|
|
key_info = struct.unpack('ii', os.read(readfd, 8))
|
|
|
|
crv = crvs[key_info[0]]
|
|
|
|
crv.keyframe_points.add(count=key_info[1])
|
|
|
|
|
|
|
|
if crv_type[0] == 1:
|
|
|
|
trans_head = globals['bone_trans_head'][key_info[0]]
|
|
|
|
for k in range(key_info[1]):
|
|
|
|
key_data = struct.unpack('if', os.read(readfd, 8))
|
|
|
|
pt = crv.keyframe_points[k]
|
|
|
|
pt.interpolation = 'LINEAR'
|
|
|
|
pt.co = (key_data[0], key_data[1] - trans_head)
|
|
|
|
else:
|
|
|
|
for k in range(key_info[1]):
|
|
|
|
key_data = struct.unpack('if', os.read(readfd, 8))
|
|
|
|
pt = crv.keyframe_points[k]
|
|
|
|
pt.interpolation = 'LINEAR'
|
|
|
|
pt.co = (key_data[0], key_data[1])
|
|
|
|
|
2015-05-23 21:59:40 +00:00
|
|
|
# Command loop
|
|
|
|
while True:
|
2015-07-28 23:54:54 +00:00
|
|
|
cmdline = readpipeline()
|
|
|
|
if cmdline == b'':
|
|
|
|
print('HECL connection lost')
|
|
|
|
bpy.ops.wm.quit_blender()
|
|
|
|
cmdargs = []
|
|
|
|
for match in ARGS_PATTERN.finditer(cmdline.decode()):
|
|
|
|
cmdargs.append(match.group(match.lastindex))
|
|
|
|
print(cmdargs)
|
2015-05-23 21:59:40 +00:00
|
|
|
|
2015-07-28 23:54:54 +00:00
|
|
|
if cmdargs[0] == 'QUIT':
|
2015-05-23 21:59:40 +00:00
|
|
|
quitblender()
|
|
|
|
|
2015-07-28 23:54:54 +00:00
|
|
|
elif cmdargs[0] == 'OPEN':
|
|
|
|
if 'FINISHED' in bpy.ops.wm.open_mainfile(filepath=cmdargs[1]):
|
2015-05-24 22:19:28 +00:00
|
|
|
writepipeline(b'FINISHED')
|
|
|
|
else:
|
|
|
|
writepipeline(b'CANCELLED')
|
2015-05-24 04:51:16 +00:00
|
|
|
|
2015-07-28 23:54:54 +00:00
|
|
|
elif cmdargs[0] == 'CREATE':
|
2015-09-06 20:08:23 +00:00
|
|
|
if len(cmdargs) >= 3:
|
|
|
|
bpy.ops.wm.open_mainfile(filepath=cmdargs[2])
|
|
|
|
else:
|
|
|
|
bpy.ops.wm.read_homefile()
|
2015-07-28 02:25:33 +00:00
|
|
|
bpy.context.user_preferences.filepaths.save_version = 0
|
2015-07-28 23:54:54 +00:00
|
|
|
if 'FINISHED' in bpy.ops.wm.save_as_mainfile(filepath=cmdargs[1]):
|
2015-09-16 02:31:17 +00:00
|
|
|
bpy.ops.file.hecl_patching_load()
|
2015-07-28 02:25:33 +00:00
|
|
|
writepipeline(b'FINISHED')
|
|
|
|
else:
|
|
|
|
writepipeline(b'CANCELLED')
|
|
|
|
|
2015-08-04 21:37:12 +00:00
|
|
|
elif cmdargs[0] == 'SAVE':
|
|
|
|
bpy.context.user_preferences.filepaths.save_version = 0
|
2015-09-29 03:02:43 +00:00
|
|
|
if 'FINISHED' in bpy.ops.wm.save_mainfile(check_existing=False, compress=True):
|
2015-08-04 21:37:12 +00:00
|
|
|
writepipeline(b'FINISHED')
|
|
|
|
else:
|
|
|
|
writepipeline(b'CANCELLED')
|
|
|
|
|
2015-07-28 23:54:54 +00:00
|
|
|
elif cmdargs[0] == 'PYBEGIN':
|
2015-07-28 02:25:33 +00:00
|
|
|
writepipeline(b'READY')
|
2015-08-05 22:59:59 +00:00
|
|
|
globals = {'hecl':hecl}
|
2015-08-04 21:37:12 +00:00
|
|
|
compbuf = str()
|
2015-08-05 22:59:59 +00:00
|
|
|
bracket_count = 0
|
2015-07-28 02:25:33 +00:00
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
line = readpipeline()
|
2015-08-05 22:59:59 +00:00
|
|
|
|
2015-09-01 00:26:35 +00:00
|
|
|
# ANIM check
|
|
|
|
if line == b'PYANIM':
|
|
|
|
# Ensure remaining block gets executed
|
|
|
|
if len(compbuf):
|
|
|
|
exec_compbuf(compbuf, globals)
|
|
|
|
compbuf = str()
|
|
|
|
anim_loop(globals)
|
|
|
|
continue
|
|
|
|
|
2015-08-05 22:59:59 +00:00
|
|
|
# End check
|
2015-09-01 00:26:35 +00:00
|
|
|
elif line == b'PYEND':
|
2015-08-05 22:59:59 +00:00
|
|
|
# Ensure remaining block gets executed
|
|
|
|
if len(compbuf):
|
|
|
|
exec_compbuf(compbuf, globals)
|
|
|
|
compbuf = str()
|
2015-07-28 02:25:33 +00:00
|
|
|
writepipeline(b'DONE')
|
|
|
|
break
|
2015-08-05 22:59:59 +00:00
|
|
|
|
|
|
|
# Syntax filter
|
|
|
|
linestr = line.decode().rstrip()
|
|
|
|
if not len(linestr) or linestr.lstrip()[0] == '#':
|
2015-08-04 21:37:12 +00:00
|
|
|
writepipeline(b'OK')
|
|
|
|
continue
|
|
|
|
leading_spaces = len(linestr) - len(linestr.lstrip())
|
2015-08-05 22:59:59 +00:00
|
|
|
|
|
|
|
# Block lines always get appended right away
|
|
|
|
if linestr.endswith(':') or leading_spaces or bracket_count:
|
|
|
|
if len(compbuf):
|
|
|
|
compbuf += '\n'
|
|
|
|
compbuf += linestr
|
|
|
|
bracket_count += count_brackets(linestr)
|
|
|
|
writepipeline(b'OK')
|
|
|
|
continue
|
|
|
|
|
|
|
|
# Complete non-block statement in compbuf
|
2015-08-04 21:37:12 +00:00
|
|
|
if len(compbuf):
|
2015-08-05 22:59:59 +00:00
|
|
|
exec_compbuf(compbuf, globals)
|
|
|
|
|
|
|
|
# Establish new compbuf
|
|
|
|
compbuf = linestr
|
|
|
|
bracket_count += count_brackets(linestr)
|
|
|
|
|
2015-07-28 02:25:33 +00:00
|
|
|
except Exception as e:
|
|
|
|
writepipeline(b'EXCEPTION')
|
2015-07-28 23:54:54 +00:00
|
|
|
raise
|
2015-07-28 02:25:33 +00:00
|
|
|
break
|
|
|
|
writepipeline(b'OK')
|
|
|
|
|
2015-07-28 23:54:54 +00:00
|
|
|
elif cmdargs[0] == 'PYEND':
|
2015-07-28 02:25:33 +00:00
|
|
|
writepipeline(b'ERROR')
|
|
|
|
|
2015-05-24 04:51:16 +00:00
|
|
|
else:
|
2015-07-28 23:54:54 +00:00
|
|
|
hecl.command(cmdargs, writepipeline, writepipebuf)
|
2015-05-23 21:59:40 +00:00
|
|
|
|