-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiadroid.py
93 lines (72 loc) · 2.23 KB
/
biadroid.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import os
import subprocess
from subprocess import call
import sys
import re
import shutil
import v5fix
def clearBlends():
print('Cleaning Assets/Blends...')
for dirname, dirnames, filenames in os.walk('Assets/Blends'):
for filename in filenames:
os.remove(os.path.join(dirname, filename))
for dirn in dirnames:
shutil.rmtree(os.path.join(dirname, dirn))
print('Assets/Blends is empty.')
root = os.path.dirname(os.path.realpath(__file__))
def gen(blends, prompt):
if os.path.isdir('Assets/Blends'):
numFiles = len([name for name in os.listdir('Assets/Blends')])
if numFiles > 0:
if prompt:
answer = raw_input('Assets/Blends (alguns files/dirs) will be cleared, prompt y/Y to continue or anything to quit: ')
if (answer != 'y' and answer != 'Y'):
sys.exit()
else:
clearBlends()
else:
clearBlends()
else:
os.mkdir('Assets/Blends')
print('Assets/Blends created!')
if not os.path.isdir('LOGS'):
os.mkdir('LOGS')
print('LOGS created!')
print('Checking ' + blends + '...')
for dirname, dirnames, filenames in os.walk(blends):
for filename in filenames:
if filename.endswith('.blend'):
print('')
print('Found: ' + filename)
path = os.path.join(dirname, filename)
blendpath = root + '/Assets/Blends/' + filename
print('Moving ' + path + ' to ' + blendpath + '...')
os.rename(path, blendpath)
animspath = root + '/Assets/Anims'
if os.path.isdir(animspath):
print 'Removing ' + animspath
shutil.rmtree(animspath)
print('Getting animation names...')
call(['blender', blendpath, '--background', '--python', 'aninames.py'])
print('Running converter...')
call([
'C:\Program Files\Unity\Editor\Unity.exe',
'-quit',
'-batchmode',
'-logFile',
root + '\LOGS\LOG__' + filename[:-6] + '.txt',
'-projectPath',
root,
'-executeMethod',
'BlendToBundlesConverter.convert'
])
print('Success!')
clearBlends()
filepath = 'C:\Workspace\\babc\Assets\Bundles\\'
subprocess.Popen('explorer /select,"' + filepath + '"')
if __name__ == '__main__':
blendsDir = raw_input('Folder: ')
yesPattern = re.compile('[yY]')
toContinue = ''
gen(blendsDir, True)
v5fix.refactor_bundles('./Bundles')