|
|
@ -61,8 +61,9 @@ if LigoExportLand == "" or LigoExportOnePass == 1:
|
|
|
|
mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemZoneLigoExportDirectory)
|
|
|
|
mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemZoneLigoExportDirectory)
|
|
|
|
mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemCmbExportDirectory)
|
|
|
|
mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemCmbExportDirectory)
|
|
|
|
mkPath(log, DatabaseDirectory + "/" + ZoneSourceDirectory[0])
|
|
|
|
mkPath(log, DatabaseDirectory + "/" + ZoneSourceDirectory[0])
|
|
|
|
mkPath(log, ExportBuildDirectory + "/" + LigoEcosystemTagExportDirectory)
|
|
|
|
tagDirectory = ExportBuildDirectory + "/" + LigoEcosystemTagExportDirectory
|
|
|
|
if (needUpdateDirByTagLogFiltered(log, DatabaseDirectory + "/" + LigoMaxSourceDirectory, ".max", ExportBuildDirectory + "/" + LigoEcosystemTagExportDirectory, ".max.tag", [ "zonematerial", "zonetransition", "zonespecial" ])):
|
|
|
|
mkPath(log, tagDirectory)
|
|
|
|
|
|
|
|
if (needUpdateDirByTagLogFiltered(log, DatabaseDirectory + "/" + LigoMaxSourceDirectory, ".max", tagDirectory, ".max.tag", [ "zonematerial", "zonetransition", "zonespecial" ])):
|
|
|
|
printLog(log, "WRITE " + ligoIniPath)
|
|
|
|
printLog(log, "WRITE " + ligoIniPath)
|
|
|
|
ligoIni = open(ligoIniPath, "w")
|
|
|
|
ligoIni = open(ligoIniPath, "w")
|
|
|
|
ligoIni.write("[LigoConfig]\n")
|
|
|
|
ligoIni.write("[LigoConfig]\n")
|
|
|
@ -71,29 +72,69 @@ if LigoExportLand == "" or LigoExportOnePass == 1:
|
|
|
|
ligoIni.write("LigoOldZonePath=" + DatabaseDirectory + "/" + ZoneSourceDirectory[0] + "/\n")
|
|
|
|
ligoIni.write("LigoOldZonePath=" + DatabaseDirectory + "/" + ZoneSourceDirectory[0] + "/\n")
|
|
|
|
ligoIni.close()
|
|
|
|
ligoIni.close()
|
|
|
|
|
|
|
|
|
|
|
|
outDirTag = ExportBuildDirectory + "/" + LigoEcosystemTagExportDirectory
|
|
|
|
outputLogfile = ScriptDirectory + "/processes/ligo/log.log"
|
|
|
|
logFile = ScriptDirectory + "/processes/ligo/log.log"
|
|
|
|
|
|
|
|
smallBank = ExportBuildDirectory + "/" + SmallbankExportDirectory + "/" + BankTileBankName + ".smallbank"
|
|
|
|
smallBank = ExportBuildDirectory + "/" + SmallbankExportDirectory + "/" + BankTileBankName + ".smallbank"
|
|
|
|
|
|
|
|
maxRunningTagFile = tagDirectory + "/max_running.tag"
|
|
|
|
|
|
|
|
|
|
|
|
scriptSrc = "maxscript/nel_ligo_export.ms"
|
|
|
|
scriptSrc = "maxscript/nel_ligo_export.ms"
|
|
|
|
scriptDst = MaxUserDirectory + "/scripts/nel_ligo_export.ms"
|
|
|
|
scriptDst = MaxUserDirectory + "/scripts/nel_ligo_export.ms"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tagList = findFiles(log, tagDirectory, "", ".max.tag")
|
|
|
|
|
|
|
|
tagLen = len(tagList)
|
|
|
|
|
|
|
|
|
|
|
|
if os.path.isfile(scriptDst):
|
|
|
|
if os.path.isfile(scriptDst):
|
|
|
|
os.remove(scriptDst)
|
|
|
|
os.remove(scriptDst)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tagDiff = 1
|
|
|
|
printLog(log, "WRITE " + scriptDst)
|
|
|
|
printLog(log, "WRITE " + scriptDst)
|
|
|
|
sSrc = open(scriptSrc, "r")
|
|
|
|
sSrc = open(scriptSrc, "r")
|
|
|
|
sDst = open(scriptDst, "w")
|
|
|
|
sDst = open(scriptDst, "w")
|
|
|
|
for line in sSrc:
|
|
|
|
for line in sSrc:
|
|
|
|
newline = line.replace("output_logfile", logFile)
|
|
|
|
newline = line.replace("output_logfile", outputLogfile)
|
|
|
|
newline = newline.replace("output_directory_tag", outDirTag)
|
|
|
|
newline = newline.replace("output_directory_tag", tagDirectory)
|
|
|
|
newline = newline.replace("bankFilename", smallBank)
|
|
|
|
newline = newline.replace("bankFilename", smallBank)
|
|
|
|
sDst.write(newline)
|
|
|
|
sDst.write(newline)
|
|
|
|
sSrc.close()
|
|
|
|
sSrc.close()
|
|
|
|
sDst.close()
|
|
|
|
sDst.close()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
zeroRetryLimit = 3
|
|
|
|
|
|
|
|
while tagDiff > 0:
|
|
|
|
|
|
|
|
mrt = open(maxRunningTagFile, "w")
|
|
|
|
|
|
|
|
mrt.write("moe-moe-kyun")
|
|
|
|
|
|
|
|
mrt.close()
|
|
|
|
printLog(log, "MAXSCRIPT " + scriptDst)
|
|
|
|
printLog(log, "MAXSCRIPT " + scriptDst)
|
|
|
|
subprocess.call([ Max, "-U", "MAXScript", "nel_ligo_export.ms", "-q", "-mi", "-mip" ])
|
|
|
|
subprocess.call([ Max, "-U", "MAXScript", "nel_ligo_export.ms", "-q", "-mi", "-mip" ])
|
|
|
|
|
|
|
|
if os.path.exists(outputLogfile):
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
lSrc = open(outputLogfile, "r")
|
|
|
|
|
|
|
|
for line in lSrc:
|
|
|
|
|
|
|
|
lineStrip = line.strip()
|
|
|
|
|
|
|
|
if (len(lineStrip) > 0):
|
|
|
|
|
|
|
|
printLog(log, lineStrip)
|
|
|
|
|
|
|
|
lSrc.close()
|
|
|
|
|
|
|
|
os.remove(outputLogfile)
|
|
|
|
|
|
|
|
except Exception:
|
|
|
|
|
|
|
|
printLog(log, "ERROR Failed to read 3dsmax log")
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
printLog(log, "WARNING No 3dsmax log")
|
|
|
|
|
|
|
|
tagList = findFiles(log, tagDirectory, "", ".max.tag")
|
|
|
|
|
|
|
|
newTagLen = len(tagList)
|
|
|
|
|
|
|
|
tagDiff = newTagLen - tagLen
|
|
|
|
|
|
|
|
tagLen = newTagLen
|
|
|
|
|
|
|
|
addTagDiff = 0
|
|
|
|
|
|
|
|
if os.path.exists(maxRunningTagFile):
|
|
|
|
|
|
|
|
printLog(log, "FAIL 3ds Max crashed and/or file export failed!")
|
|
|
|
|
|
|
|
if tagDiff == 0:
|
|
|
|
|
|
|
|
if zeroRetryLimit > 0:
|
|
|
|
|
|
|
|
zeroRetryLimit = zeroRetryLimit - 1
|
|
|
|
|
|
|
|
addTagDiff = 1
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
printLog(log, "FAIL Retry limit reached!")
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
addTagDiff = 1
|
|
|
|
|
|
|
|
os.remove(maxRunningTagFile)
|
|
|
|
|
|
|
|
printLog(log, "Exported " + str(tagDiff) + " .max files!")
|
|
|
|
|
|
|
|
tagDiff += addTagDiff
|
|
|
|
|
|
|
|
|
|
|
|
os.remove(scriptDst)
|
|
|
|
os.remove(scriptDst)
|
|
|
|
printLog(log, "")
|
|
|
|
printLog(log, "")
|
|
|
|