diff --git a/README.md b/README.md index 628d3c7..18f1366 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ under an Apache 2.0 open source license. #### Requirements * Softimage 2015 SP1 -* Arnold 7.0.0.0 or newer +* Arnold 7.1.4.0 or newer * Python 2.6 or newer * Visual Studio 2015 (Windows) * GCC 4.2.4 (Linux) @@ -65,7 +65,7 @@ VS_HOME = r'C:/Program Files (x86)/Microsoft Visual Studio 14.0/VC' WINDOWS_KIT = r'C:/Program Files (x86)/Windows Kits/10' XSISDK_ROOT = r'C:/Program Files/Autodesk/Softimage 2015 SP2/XSISDK' -ARNOLD_HOME = r'C:/SolidAngle/Arnold-7.0.0.0-windows' +ARNOLD_HOME = r'C:/SolidAngle/Arnold-7.1.4.0-windows' TARGET_WORKGROUP_PATH = r'./Softimage_2015/Addons/SItoA' diff --git a/SConstruct b/SConstruct index 66f1e58..051c1a5 100644 --- a/SConstruct +++ b/SConstruct @@ -303,7 +303,7 @@ if system.os() == 'windows': duplicate = 0, exports = 'env') - [SITOA_SHADERS, SITOA_SHADERS_PRJ] = env.SConscript(os.path.join('shaders', 'src', 'SConscript'), + [SITOA_SHADERS, SITOA_SHADERS_PRJ, SITOA_OSL_SHADERS] = env.SConscript(os.path.join('shaders', 'src', 'SConscript'), variant_dir = os.path.join(BUILD_BASE_DIR, 'shaders'), duplicate = 0, exports = 'env') @@ -338,7 +338,7 @@ else: duplicate = 0, exports = 'env') - SITOA_SHADERS = env.SConscript(os.path.join('shaders', 'src', 'SConscript'), + [SITOA_SHADERS, SITOA_OSL_SHADERS] = env.SConscript(os.path.join('shaders', 'src', 'SConscript'), variant_dir = os.path.join(BUILD_BASE_DIR, 'shaders'), duplicate = 0, exports = 'env') @@ -397,6 +397,9 @@ else: PACKAGE_FILES = [ [os.path.join(plugin_binary_path, 'sitoa', DLLS), os.path.join(addon_path, bin_path)], [os.path.join(plugin_binary_path, 'shaders', DLLS), os.path.join(addon_path, bin_path)], +[os.path.join(plugin_binary_path, 'shaders', 'osl', '*.oso'), os.path.join(addon_path, bin_path)], +[os.path.join(ARNOLD_BINARIES, 'ADPClientService%s' % get_executable_extension()), os.path.join(addon_path, bin_path)], +[os.path.join(ARNOLD_BINARIES, 'AdpSDKUtil%s' % get_executable_extension()), os.path.join(addon_path, bin_path)], [os.path.join(ARNOLD_BINARIES, 'ArnoldLicenseManager%s' % get_executable_extension()), os.path.join(addon_path, bin_path)], [os.path.join(ARNOLD_BINARIES, 'kick%s' % get_executable_extension()), os.path.join(addon_path, bin_path)], [os.path.join(ARNOLD_BINARIES, 'maketx%s' % get_executable_extension()), os.path.join(addon_path, bin_path)], @@ -408,6 +411,7 @@ PACKAGE_FILES = [ [os.path.join(ARNOLD_BINARIES, '*%s.*' % get_library_extension()), os.path.join(addon_path, bin_path)], [os.path.join(ARNOLD_BINARIES, '*.pit'), os.path.join(addon_path, bin_path)], [os.path.join(ARNOLD_BINARIES, '*.png'), os.path.join(addon_path, bin_path)], +[os.path.join(ARNOLD_BINARIES, 'senddmp'), os.path.join(addon_path, bin_path, 'senddmp')], [ARNOLD_OCIO, os.path.join(addon_path, bin_path, '..', 'ocio')], [ARNOLD_PLUGINS, os.path.join(addon_path, bin_path, '..', 'plugins')], [os.path.join('plugins', 'helpers', '*.js'), os.path.join(addon_path, plugins_path)], @@ -485,10 +489,14 @@ def make_patch_adlm(target, source, env): def patch_adlm(wg_bin_path, env): new_adlmint_last_char = '2' # ONLY ONE CHARACTER + size = 0 if system.os() == 'windows': adclmhub_name = find_adclmhub(wg_bin_path, 'AdClmHub_') - if adclmhub_name == 'AdClmHub_2.0.0.dll': + if adclmhub_name == 'AdClmHub_3.1.1.dll': + size = 498696 + seek_pos = 0x57F6C + elif adclmhub_name == 'AdClmHub_2.0.0.dll': size = 524128 seek_pos = 367692 elif adclmhub_name == 'AdClmHub_1.1.1.dll': @@ -536,7 +544,7 @@ def patch_adlm(wg_bin_path, env): with open(adclmhub_path, 'r+b') as f: f.seek(seek_pos) letter = f.read(1) - if letter == 't': + if letter != new_adlmint_last_char: print 'Patching {} ...'.format(adclmhub_name) f.seek(seek_pos) f.write(new_adlmint_last_char) @@ -564,7 +572,8 @@ PATCH = env.Patch('patch', SITOA) ################################ env.Install(os.path.join(env['TARGET_WORKGROUP_PATH'], bin_path), [str(SITOA[0]), - str(SITOA_SHADERS[0])]) + str(SITOA_SHADERS[0]), + SITOA_OSL_SHADERS]) env.Install(os.path.join(env['TARGET_WORKGROUP_PATH'], bin_path), [glob.glob(os.path.join(ARNOLD_BINARIES, '*'))]) env.Install(os.path.join(env['TARGET_WORKGROUP_PATH'], bin_path, '..', 'ocio'), [glob.glob(os.path.join(ARNOLD_OCIO, '*'))]) @@ -604,6 +613,7 @@ top_level_alias(env, 'testsuite', TESTSUITE) env.AlwaysBuild(PACKAGE) env.AlwaysBuild('install') +env.Depends(SITOA_SHADERS, SITOA_OSL_SHADERS) env.Depends(PACKAGE, SITOA) env.Depends(PACKAGE, SITOA_SHADERS) env.Depends(DEPLOY, PACKAGE) diff --git a/abuild.bat b/abuild.bat index 429e709..ac5d2a6 100644 --- a/abuild.bat +++ b/abuild.bat @@ -1,12 +1,21 @@ @echo off -set py=python -REM Use python launcher if it's found in PATH. +REM Use python launcher if python isn't found in PATH. +WHERE python >nul 2>nul +IF NOT ERRORLEVEL 1 GOTO :usepython + WHERE py >nul 2>nul -IF NOT ERRORLEVEL 1 ( - set "py=py -2" -) +IF NOT ERRORLEVEL 1 GOTO :usepy + +:usepython +set py=python +GOTO :end + +:usepy +set "py=py -2" +GOTO :end +:end @echo on @REM invokes a local install of scons (forwarding all arguments) diff --git a/config/custom_linux.py b/config/custom_linux.py index 069a955..31cf589 100644 --- a/config/custom_linux.py +++ b/config/custom_linux.py @@ -6,7 +6,7 @@ SHCXX = r'/usr/bin/gcc-4.2.4/bin/gcc-4.2.4' XSISDK_ROOT = r'/usr/Softimage/Softimage_2015/XSISDK' -ARNOLD_HOME = r'/usr/SolidAngle/Arnold-7.0.0.0/linux' +ARNOLD_HOME = r'/usr/SolidAngle/Arnold-7.1.4.0/linux' TARGET_WORKGROUP_PATH = './dist/Softimage_2015/Addons/SItoA' diff --git a/config/custom_windows.py b/config/custom_windows.py index 445035e..2741b1a 100644 --- a/config/custom_windows.py +++ b/config/custom_windows.py @@ -9,7 +9,7 @@ WINDOWS_KIT = r'C:/Program Files (x86)/Windows Kits/10' XSISDK_ROOT = r'C:/Program Files/Autodesk/Softimage 2015 SP2/XSISDK' -ARNOLD_HOME = r'C:/SolidAngle/Arnold-7.0.0.0-windows' +ARNOLD_HOME = r'C:/SolidAngle/Arnold-7.1.4.0-windows' TARGET_WORKGROUP_PATH = r'./dist/Softimage_2015/Addons/SItoA' diff --git a/open_dev_console.cmd b/open_dev_console.cmd index 1a0d843..c033f30 100644 --- a/open_dev_console.cmd +++ b/open_dev_console.cmd @@ -1,8 +1,15 @@ @echo off -rem Windows helper script to open a dev console by simply dubble-clicking the batch file. +rem Windows helper script to set the environment and open a dev console by simply dubble-clicking the batch file. +rem Update the paths below to the locations that is correct for your system. -set sitoa_dev_cmd="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 -vcvars_ver=14.0 +set "Path=C:\Users\lindg\DEV\Portable Python-2.7.17 x64\App\Python;%Path%" +set "Path=C:\Users\lindg\DEV\SolidAngle\Arnold-7.1.4.4-windows\bin;%Path%" +set "Path=%~dp0dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64;%Path%" + +set "ARNOLD_PLUGIN_PATH=%~dp0dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64" + +set sitoa_dev_cmd="C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Auxiliary\Build\vcvarsall.bat" x64 -vcvars_ver=14.0 WHERE wt.exe /Q if %ERRORLEVEL% NEQ 0 ( diff --git a/plugins/helpers/ArnoldMenu.js b/plugins/helpers/ArnoldMenu.js index 80a2dc7..4385422 100644 --- a/plugins/helpers/ArnoldMenu.js +++ b/plugins/helpers/ArnoldMenu.js @@ -382,6 +382,8 @@ function AddHelpSubMenu(in_menu) item = in_menu.AddCallbackItem("Licensing Home", "OnHelpMenu"); item = in_menu.AddCallbackItem("Licensing", "OnHelpMenu"); item = in_menu.AddSeparatorItem(); + item = in_menu.AddCallbackItem("ADP Settings", "OnHelpMenu"); + item = in_menu.AddSeparatorItem(); item = in_menu.AddCallbackItem("Legal Notice", "OnHelpMenu"); item = in_menu.AddCallbackItem("About SItoA", "OnHelpMenu"); } @@ -416,6 +418,9 @@ function OnHelpMenu(in_ctxt) case "Licensing": Licensing(); return; + case "ADP Settings": + SITOA_ADPSettings(); + return; case "Legal Notice": LegalNotice(); return; diff --git a/plugins/helpers/ArnoldProperties.js b/plugins/helpers/ArnoldProperties.js index 7b8fc43..54f5868 100644 --- a/plugins/helpers/ArnoldProperties.js +++ b/plugins/helpers/ArnoldProperties.js @@ -531,6 +531,7 @@ function AddParamsShape(in_prop) function AddParamsCurve(in_prop, strands) { in_prop.AddParameter2("mode", siString, "ribbon", null, null, null, null, 0, siPersistable|siAnimatable); + in_prop.AddParameter2("basis", siString, "catmull-rom", null, null, null, null, 0, siPersistable|siAnimatable); in_prop.AddParameter2("min_pixel_width", siFloat, 0.25, 0, 2, 0, 2, 0, siPersistable|siAnimatable); } @@ -781,7 +782,8 @@ function arnold_parameters_DefineLayout(io_Context) { xsiLayout.AddGroup("Arnold Curves Parameters", true, 50); xsiLayout.AddItem("min_pixel_width", "Min. Pixel Width"); - xsiLayout.AddEnumControl( "mode", Array( "Ribbon", "ribbon", "Thick", "thick", "Oriented Ribbon (ICE Strands)", "oriented"), "Mode", siControlCombo); + xsiLayout.AddEnumControl("mode", Array("Ribbon", "ribbon", "Thick", "thick", "Oriented Ribbon (ICE Strands)", "oriented"), "Mode", siControlCombo); + xsiLayout.AddEnumControl("basis", Array("B-Spline", "b-spline", "Catmull-Rom (ICE Strands)", "catmull-rom", "Linear", "linear"), "Basis", siControlCombo); xsiLayout.EndGroup(); } catch(exception) @@ -1281,9 +1283,6 @@ function arnold_parameters_adaptive_subdivision_OnChanged() function arnold_parameters_mode_OnChanged() { - if (PPG.mode.Value=="thick") - PPG.min_pixel_width.Value = 0; - PPG.min_pixel_width.Enable(PPG.mode.Value=="ribbon" || PPG.mode.Value=="oriented"); } diff --git a/plugins/sitoa/common/Commands.cpp b/plugins/sitoa/common/Commands.cpp index f4ee8e2..4f5040a 100644 --- a/plugins/sitoa/common/Commands.cpp +++ b/plugins/sitoa/common/Commands.cpp @@ -514,6 +514,21 @@ SITOA_CALLBACK SITOA_ShowMac_Execute(CRef& in_ctxt) } +SITOA_CALLBACK SITOA_ADPSettings_Init(CRef& in_ctxt) +{ + Context ctxt(in_ctxt); + Command oCmd = ctxt.GetSource(); + oCmd.EnableReturnValue(false); + oCmd.SetFlag(siNoLogging, true); + return CStatus::OK; +} + +SITOA_CALLBACK SITOA_ADPSettings_Execute(CRef& in_ctxt) +{ + Context ctxt(in_ctxt); + AiADPDisplayDialogWindow(); + return CStatus::OK; +} // Run pitreg diff --git a/plugins/sitoa/common/ParamsShader.cpp b/plugins/sitoa/common/ParamsShader.cpp index bd80e5a..aa2b2db 100644 --- a/plugins/sitoa/common/ParamsShader.cpp +++ b/plugins/sitoa/common/ParamsShader.cpp @@ -54,10 +54,10 @@ CRef GetParameterSource(const Parameter& in_param) if (shader.GetShaderType() == siShader) { // we detect the output by the name out and result which is the most common case - if (shaderParam.GetScriptName() == L"out" || shaderParam.GetScriptName() == L"result" ) + ShaderParamDef shaderParmDef = ShaderParameter(shaderParam).GetDefinition(); + if (shaderParmDef.IsOutput()) target = shader.GetRef(); } - } } return target; @@ -104,7 +104,9 @@ CStatus LoadShaderParameters(AtNode* in_node, CRefArray &in_paramsArray, double // Ignoring Softimage nonused and output parameters CString paramScriptName = param.GetScriptName(); - if (paramScriptName.IsEqualNoCase(L"Name") || paramScriptName.IsEqualNoCase(L"out") || paramScriptName.IsEqualNoCase(L"result") ) + ShaderParameter shaderParam(param); + ShaderParamDef paramDef = shaderParam.GetDefinition(); + if (paramScriptName.IsEqualNoCase(L"Name") || paramDef.IsOutput()) continue; // skip lights' filter plugs, they are loaded separately @@ -194,7 +196,26 @@ CStatus LoadShaderParameter(AtNode* in_node, const CString &in_entryName, Parame if (in_arrayElement != -1) paramScriptName = in_arrayParamName + L"[" + CString(CValue(in_arrayElement).GetAsText()) + L"]"; - AiNodeLink(shaderLinked, paramScriptName.GetAsciiString(), in_node); + const AtNodeEntry* node_entry = AiNodeGetNodeEntry(shaderLinked); + int num_outputs = AiNodeEntryGetNumOutputs(node_entry); + CString component = L""; + + if (num_outputs > 1) + { + // if it's a multi output shader, we need to get the name of the source output. + ShaderParameter sourceParm = in_param.GetSource(); + CRef parent = sourceParm.GetParent(); + if (parent.IsA(siShaderID)) + { + Shader parentShader(parent); + // if parent is a compound, we need to get the source + if (parentShader.GetShaderType() == siShaderCompound) + sourceParm = sourceParm.GetSource(); + } + component = sourceParm.GetScriptName(); + } + + AiNodeLinkOutput(shaderLinked, component.GetAsciiString(), in_node, paramScriptName.GetAsciiString()); } } } diff --git a/plugins/sitoa/common/Tools.h b/plugins/sitoa/common/Tools.h index 25775d0..802996c 100644 --- a/plugins/sitoa/common/Tools.h +++ b/plugins/sitoa/common/Tools.h @@ -107,7 +107,7 @@ namespace VERBOSITY { const int errors = AI_LOG_ERRORS | AI_LOG_TIMESTAMP | AI_LOG_MEMORY | AI_LOG_BACKTRACE; const int warnings = AI_LOG_ERRORS | AI_LOG_TIMESTAMP | AI_LOG_MEMORY | AI_LOG_BACKTRACE | AI_LOG_WARNINGS; - const int info = AI_LOG_ERRORS | AI_LOG_TIMESTAMP | AI_LOG_MEMORY | AI_LOG_BACKTRACE | AI_LOG_WARNINGS | AI_LOG_INFO | AI_LOG_STATS | AI_LOG_PROGRESS; + const int info = AI_LOG_ERRORS | AI_LOG_TIMESTAMP | AI_LOG_MEMORY | AI_LOG_BACKTRACE | AI_LOG_WARNINGS | AI_LOG_INFO | AI_LOG_STATS | AI_LOG_PLUGINS | AI_LOG_PROGRESS; const int all = AI_LOG_ALL; }; diff --git a/plugins/sitoa/loader/ICE.h b/plugins/sitoa/loader/ICE.h index d104202..c581fa8 100644 --- a/plugins/sitoa/loader/ICE.h +++ b/plugins/sitoa/loader/ICE.h @@ -796,6 +796,7 @@ class CIceObjectStrand : public CIceObjectBase, public CHair AtArray* m_radius; AtArray* m_orientations; AtString m_mode; // thick... + AtString m_basis; float m_minPixelWidth; int m_nbPoints; // total number of points of the strand object, NOT of the Arnold node @@ -807,6 +808,7 @@ class CIceObjectStrand : public CIceObjectBase, public CHair m_radius = NULL; m_orientations = NULL; m_mode = AtString("thick"); + m_basis = AtString("catmull-rom"); m_minPixelWidth = 0.0f; m_nbPoints = 0; } @@ -816,7 +818,7 @@ class CIceObjectStrand : public CIceObjectBase, public CHair } CIceObjectStrand(const CIceObjectStrand &in_arg) : - CIceObjectBase(in_arg), CHair(in_arg), m_mode(in_arg.m_mode), m_minPixelWidth(in_arg.m_minPixelWidth), m_nbPoints(in_arg.m_nbPoints) + CIceObjectBase(in_arg), CHair(in_arg), m_mode(in_arg.m_mode), m_basis(in_arg.m_basis), m_minPixelWidth(in_arg.m_minPixelWidth), m_nbPoints(in_arg.m_nbPoints) { m_num_points = in_arg.m_num_points ? AiArrayCopy(in_arg.m_num_points) : NULL; m_points = in_arg.m_points ? AiArrayCopy(in_arg.m_points) : NULL; diff --git a/plugins/sitoa/loader/ICEHelpers.cpp b/plugins/sitoa/loader/ICEHelpers.cpp index 6b810f4..d1580e6 100644 --- a/plugins/sitoa/loader/ICEHelpers.cpp +++ b/plugins/sitoa/loader/ICEHelpers.cpp @@ -3885,14 +3885,18 @@ bool CIceObjectStrand::SetNodeData() if (!m_node) return false; CIceObjectBase::SetNodeData(); - CNodeSetter::SetString(m_node, "basis", "catmull-rom"); + CNodeSetter::SetString(m_node, "basis", m_basis.c_str()); AiNodeSetArray(m_node, "num_points", m_num_points); AiNodeSetArray(m_node, "points", m_points); AiNodeSetArray(m_node, "radius", m_radius); - CNodeSetter::SetString(m_node, "mode", m_mode.c_str()); - CNodeSetter::SetFloat(m_node, "min_pixel_width", m_minPixelWidth); + CNodeSetter::SetString(m_node, "mode", m_mode.c_str()); + if (strcmp(m_mode.c_str(), "thick") != 0) + CNodeSetter::SetFloat(m_node, "min_pixel_width", m_minPixelWidth); if (m_orientations && AiArrayGetNumElements(m_orientations)) AiNodeSetArray(m_node, "orientations", m_orientations); + + if (!strcmp(m_basis.c_str(), "b-spline") || !strcmp(m_basis.c_str(), "catmull-rom")) + CNodeSetter::SetString(m_node, "wrap_mode", "pinned"); return true; } @@ -3909,6 +3913,8 @@ bool CIceObjectStrand::MakeCurve(CustomProperty in_arnoldParameters, double in_f // set the mode, else the defaults stands if (in_arnoldParameters.IsValid()) { + if (ParAcc_Valid(in_arnoldParameters, L"basis")) + m_basis = AtString(((CString)ParAcc_GetValue(in_arnoldParameters, L"basis", in_frame)).GetAsciiString()); m_mode = AtString(((CString)ParAcc_GetValue(in_arnoldParameters, L"mode", in_frame)).GetAsciiString()); m_minPixelWidth = (float)ParAcc_GetValue(in_arnoldParameters, L"min_pixel_width", in_frame); } @@ -3920,7 +3926,7 @@ bool CIceObjectStrand::MakeCurve(CustomProperty in_arnoldParameters, double in_f bool exportOrientation(false); // #1249 for (int i=0; i 0) @@ -3928,10 +3934,10 @@ bool CIceObjectStrand::MakeCurve(CustomProperty in_arnoldParameters, double in_f } // allocate the arrays - m_points = AiArrayAllocate(m_nbPoints + 2*nbStrands, (uint8_t)nbKeys, AI_TYPE_VECTOR); + m_points = AiArrayAllocate(m_nbPoints, (uint8_t)nbKeys, AI_TYPE_VECTOR); m_radius = AiArrayAllocate(m_nbPoints, 1, AI_TYPE_FLOAT); if (exportOrientation) - m_orientations = AiArrayAllocate(m_nbPoints + 2*nbStrands, (uint8_t)nbKeys, AI_TYPE_VECTOR); + m_orientations = AiArrayAllocate(m_nbPoints, (uint8_t)nbKeys, AI_TYPE_VECTOR); CVector3f v3, vel, vel0; AtVector p0, p; @@ -3952,11 +3958,6 @@ bool CIceObjectStrand::MakeCurve(CustomProperty in_arnoldParameters, double in_f { AiArraySetVec(m_points, pointIndex, p0); pointIndex++; - if (j==0 || j==(int)s->m_points.size()-1) // clone first and last points - { - AiArraySetVec(m_points, pointIndex, p0); - pointIndex++; - } } else { @@ -3970,16 +3971,6 @@ bool CIceObjectStrand::MakeCurve(CustomProperty in_arnoldParameters, double in_f CUtilities().SetArrayValue(m_points, p, pointIndex, iKey); } pointIndex++; - if (j==0 || j==(int)s->m_points.size()-1) // clone first and last points - { - for (int iKey = 0; iKey < nbKeys; iKey++) - { - s->GetMbPoint(&v3, j, iKey); - CUtilities().S2A(v3, p); - CUtilities().SetArrayValue(m_points, p, pointIndex, iKey); - } - pointIndex++; - } } else { @@ -3994,19 +3985,6 @@ bool CIceObjectStrand::MakeCurve(CustomProperty in_arnoldParameters, double in_f CUtilities().SetArrayValue(m_points, p, pointIndex, iKey); } pointIndex++; - if (j==0 || j==(int)s->m_points.size()-1) // clone first and last points - { - for (int iKey = 0; iKey < nbKeys; iKey++) - { - scaleFactor = in_secondsPerFrame * (float)in_defKeys[iKey]; - vel.Scale(scaleFactor, vel0); - p.x = p0.x + vel.GetX(); - p.y = p0.y + vel.GetY(); - p.z = p0.z + vel.GetZ(); - CUtilities().SetArrayValue(m_points, p, pointIndex, iKey); - } - pointIndex++; - } } } @@ -4030,12 +4008,6 @@ bool CIceObjectStrand::MakeCurve(CustomProperty in_arnoldParameters, double in_f CUtilities().SetArrayValue(m_orientations, v, orientationIndex, iKey); orientationIndex++; - if (j==0 || j==(int)s->m_points.size()-1) // clone first and last point also for the orientation array - { - for (int iKey = 0; iKey < nbKeys; iKey++) - CUtilities().SetArrayValue(m_orientations, v, orientationIndex, iKey); - orientationIndex++; - } } } } diff --git a/plugins/sitoa/loader/Options.cpp b/plugins/sitoa/loader/Options.cpp index 08965b0..c142353 100644 --- a/plugins/sitoa/loader/Options.cpp +++ b/plugins/sitoa/loader/Options.cpp @@ -770,6 +770,7 @@ void LoadOptionsParameters(AtNode* in_optionsNode, const Property &in_arnoldOpti // Tiling int texture_autotile = GetRenderOptions()->m_enable_autotile ? GetRenderOptions()->m_texture_autotile : 0; CNodeSetter::SetInt(in_optionsNode, "texture_autotile", texture_autotile); + CNodeSetter::SetBoolean(in_optionsNode, "texture_auto_generate_tx", GetRenderOptions()->m_texture_auto_generate_tx); CNodeSetter::SetBoolean(in_optionsNode, "texture_use_existing_tx", GetRenderOptions()->m_use_existing_tx_files); CNodeSetter::SetFloat(in_optionsNode, "texture_max_memory_MB", (float)GetRenderOptions()->m_texture_max_memory_MB); diff --git a/plugins/sitoa/loader/Properties.cpp b/plugins/sitoa/loader/Properties.cpp index 48d6eca..8129528 100644 --- a/plugins/sitoa/loader/Properties.cpp +++ b/plugins/sitoa/loader/Properties.cpp @@ -257,7 +257,7 @@ void LoadArnoldParameters(AtNode* in_node, CParameterRefArray &in_paramsArray, d LONG nbParameters = in_paramsArray.GetCount(); // in_filterParameters by now is always false except in the case of ice strands - bool isPoints(false), isPointsDisk(false), isMesh(false); + bool isPoints(false), isPointsDisk(false), isThick(false), isMesh(false); bool isCurve = AiNodeIs(in_node, ATSTRING::curves); // is it a curves node ? if (in_filterParameters) @@ -271,6 +271,12 @@ void LoadArnoldParameters(AtNode* in_node, CParameterRefArray &in_paramsArray, d const char* mode = AiNodeGetStr(in_node, "mode"); isPointsDisk = strcmp(mode, "disk") == 0; // is it a points node in disk node ? } + + if (isCurve) + { + const char* mode = AiNodeGetStr(in_node, "mode"); + isThick = strcmp(mode, "thick") == 0; + } } for (LONG i=0; iShaderDefSet().Load(plugin_origin_path); + // Make sure ADP window never pops up and that error reporting is disabled. + AiADPDisableDialogWindow(); + AiErrorReportingSetEnabled(false); + } + // Events to manage scene versioning (#1013) in_reg.RegisterEvent(L"SITOA_OnBeginSceneSave", siOnBeginSceneSave); in_reg.RegisterEvent(L"SITOA_OnBeginSceneSaveAs", siOnBeginSceneSaveAs); diff --git a/plugins/sitoa/version.cpp b/plugins/sitoa/version.cpp index f4c62ba..130983b 100644 --- a/plugins/sitoa/version.cpp +++ b/plugins/sitoa/version.cpp @@ -14,8 +14,8 @@ See the License for the specific language governing permissions and limitations #include #define SITOA_MAJOR_VERSION_NUM 7 -#define SITOA_MINOR_VERSION_NUM 0 -#define SITOA_FIX_VERSION L"0" +#define SITOA_MINOR_VERSION_NUM 1 +#define SITOA_FIX_VERSION L"4" CString GetSItoAVersion(bool in_addPlatform) diff --git a/shaders/metadata/arnold_shaders.mtd b/shaders/metadata/arnold_shaders.mtd index d63be5a..34e10ac 100644 --- a/shaders/metadata/arnold_shaders.mtd +++ b/shaders/metadata/arnold_shaders.mtd @@ -582,12 +582,12 @@ softmax FLOAT 10 [attr u_offset] desc STRING "Offset along the U direction." -softmin FLOAT 0 +softmin FLOAT -1 softmax FLOAT 1 [attr v_offset] desc STRING "Offset along the V direction." -softmin FLOAT 0 +softmin FLOAT -1 softmax FLOAT 1 [attr contrast] @@ -598,14 +598,12 @@ max FLOAT 1 [attr filter_strength] desc STRING "Filtering strength." min FLOAT 0 -softmin FLOAT 0 softmax FLOAT 10 [attr filter_offset] desc STRING "Filtering offset." -min FLOAT 0 -softmin FLOAT 0 -softmax FLOAT 10 +softmin FLOAT -1 +softmax FLOAT 1 [attr uvset] desc STRING "An alternate UV set. If left blank, the standard uv attribute will be used. Secondary UV set in MAXtoA are named uv_2, uv_3, and so on." @@ -3325,17 +3323,16 @@ soft.label STRING "ID 8" [node standard_volume] soft.category STRING "Volume" soft.order STRING "BeginGroup Density density density_channel EndGroup " -"BeginGroup Scattering scatter scatter_color scatter_color_channel scatter_anisotropy EndGroup " +"BeginGroup Scattering scatter scatter_color scatter_color_channel scatter_anisotropy scatter_secondary_anisotropy_mix scatter_secondary_anisotropy EndGroup " "BeginGroup Transparency transparent transparent_depth transparent_channel EndGroup " -"BeginGroup Emission emission_mode emission emission_color emission_channel EndGroup " -"BeginGroup Blackbody temperature temperature_channel blackbody_kelvin blackbody_intensity EndGroup " -"BeginGroup Advanced displacement interpolation EndGroup" +"BeginGroup Emission emission_mode emission_scaling emission emission_color emission_channel EndGroup " +"BeginGroup Blackbody temperature temperature_channel blackbody_kelvin blackbody_intensity blackbody_contrast EndGroup " +"BeginGroup Advanced interpolation EndGroup" [attr density] desc STRING "The density of the volume, with low density resulting in thin volumes and high density " "in thick volumes. It acts as a multiplier on the density channel" min FLOAT 0.0 -softmin FLOAT 0 softmax FLOAT 100 [attr density_channel] @@ -3366,6 +3363,20 @@ soft.label STRING "Anisotropy" min FLOAT -1.0 max FLOAT 1.0 +[attr scatter_secondary_anisotropy_mix] +desc STRING "The anisotropy for the optional secondary Henyey-Greenstein phase function lobe, " +"which is blended linearly with the primary lobe (controlled by the scatter_anisotropy parameter). " +"This allows the phase function to include both forward and back-scattering lobes, which can improve the realism of cloud renderings." +soft.label STRING "Secondary Mix" + +[attr scatter_secondary_anisotropy] +desc STRING "The anisotropy for the optional secondary Henyey-Greenstein phase function lobe, " +"which is blended linearly with the primary lobe (controlled by the scatter_anisotropy parameter). " +"This allows the phase function to include both forward and back-scattering lobes, which can improve realism of cloud renderings." +soft.label STRING "Secondary Anisotropy" +min FLOAT -1.0 +max FLOAT 1.0 + [attr transparent] desc STRING "Additional control over the density of the volume, " "to tint the color of volume shadows and objects seen through the volume." @@ -3376,7 +3387,6 @@ desc STRING "Additional control over the density of the volume, " "to control the depth into the volume at which the transparent color is realized." soft.label STRING "Depth" min FLOAT 0 -softmin FLOAT 0 softmax FLOAT 100 [attr transparent_channel] @@ -3391,11 +3401,13 @@ desc STRING "none: emit no light. " "blackbody: emit color and intensity based on temperature, for rendering fire and explosions." soft.label STRING "Mode" +[attr emission_scaling] +desc STRING "This controls how volume emission is scaled by the properties of the emitting medium." + [attr emission] desc STRING "Rate at which the volume emits light." soft.label STRING "Intensity" min FLOAT 0 -softmin FLOAT 0 softmax FLOAT 10 [attr emission_color] @@ -3411,7 +3423,6 @@ soft.label STRING "Channel" [attr temperature] desc STRING "If a blackbody channel is used, this acts as a multiplier for the blackbody temperature." min FLOAT 0 -softmin FLOAT 0 softmax FLOAT 1 [attr temperature_channel] @@ -3422,14 +3433,21 @@ soft.label STRING "Channel" desc STRING "Multiplier for the temperature from the temperature volume channel." soft.label STRING "Kelvin" min FLOAT 0 -softmin FLOAT 0 -softmax FLOAT 12000 +softmax FLOAT 20000 [attr blackbody_intensity] -desc STRING " Intensity of the blackbody emission." +desc STRING "Intensity of the blackbody emission." soft.label STRING "Intensity" min FLOAT 0 -max FLOAT 1 +softmax FLOAT 1 + +[attr blackbody_contrast] +desc STRING "The blackbody_contrast parameter (non-physically) reduces the brightness difference " +"between parts of the volume at different temperatures, which can be useful for artistic purposes. " +"This tends to bring out the blackbody colors more vividly (though note that only value 1 is physically correct)." +soft.label STRING "Contrast" +min FLOAT 0 +softmax FLOAT 1 [attr displacement] desc STRING "Connect a noise texture or other shaders here to displace the volume, similar to displacement on surfaces." @@ -3987,13 +4005,22 @@ softmax FLOAT 5 ############################################################################## [node triplanar] soft.category STRING "Texture" -soft.order STRING "BeginGroup Main input coord_space pref_name blend EndGroup " -"BeginGroup Transform scale rotate offset EndGroup " +soft.order STRING "BeginGroup Main input input_per_axis input_Y input_Z EndGroup " +"BeginGroup Transform scale rotate offset coord_space pref_name blend flip_on_opposite_direction EndGroup " "BeginGroup Cell cell cell_rotate cell_blend EndGroup" [attr input] desc STRING "The image to be looked up by the computed projection." +[attr input_per_axis] +desc STRING "Option to use different textures for each axis. If set to true input will be used on faces facing primarily the xaxis, input_y on faces facing primarily the yaxis, input_z on faces facing primarily the zaxis." + +[attr input_Y] +desc STRING "The image to be looked up by the computed projection." + +[attr input_Z] +desc STRING "The image to be looked up by the computed projection." + [attr scale] desc STRING "Scale applied to the projected UV" @@ -4011,12 +4038,14 @@ soft.label STRING "Coordinate Space" desc STRING "Specify the name of the reference position user-data array. Previously, the name was hard-coded as Pref, which is still the default." soft.disable_when STRING "{ coord_space != Pref }" - [attr blend] desc STRING "Blending factor at the seems." min FLOAT 0 max FLOAT 1 +[attr flip_on_opposite_direction] +desc STRING "Used to control the behavior of the shader on faces facing the corresponding negative axis, if set to true a vertical symmetry transformation is applied to the texture on faces facing the opposite direction." + [attr cell] desc STRING "Enable Voronoi cellular projection." soft.label STRING "Enable Cell" diff --git a/shaders/src/SConscript b/shaders/src/SConscript index a7b9e23..c0fcefe 100644 --- a/shaders/src/SConscript +++ b/shaders/src/SConscript @@ -5,6 +5,47 @@ import system from build_tools import find_files_recursive import os +import shutil +import subprocess + + +def build_osl(target, source, env): + for t, s in zip(target, source): + target_file = str(t) + source_file = str(s) + target_dir = os.path.dirname(target_file) + copy_path = os.path.join(target_dir, os.path.basename(source_file)) + + if not os.path.isdir(target_dir): + os.makedirs(target_dir) + + #print 'Copying {} to {}'.format(source_file, copy_path) + shutil.copy2(source_file, copy_path) + + cmd = [ + 'oslc', + '-v', + '-I{}'.format(os.path.normpath(os.path.join(env['ARNOLD_HOME'], 'osl', 'include'))), + '-o', target_file, + copy_path + ] + + #print 'Building {}'.format(source_file) + print subprocess.list2cmdline(cmd) + subprocess.call(cmd, shell=True) + + os.remove(copy_path) + + +def osl_emitter(target, source, env): + target = [] + + for s in source: + target.append(File(os.path.join('osl', os.path.splitext(os.path.basename(str(s)))[0] + '.oso'))) + + return target, source + + # import build env Import('env') @@ -14,13 +55,20 @@ local_env = env.Clone() src_base_dir = os.path.join(local_env['ROOT_DIR'], 'shaders', 'src') source_files = find_files_recursive(src_base_dir, ['.c', '.cpp']) include_files = find_files_recursive(src_base_dir, ['.h']) - + +osl_files = find_files_recursive(src_base_dir, ['.osl']) + local_env.Append(CPPPATH = ['.']) local_env.Append(LIBS = Split('ai')) # make shared or static library SITOA_SHADERS = local_env.SharedLibrary('sitoa_shaders', source_files, SHLIBPREFIX='') +# Build OSL shaders +osl_builder = Builder(action=build_osl, emitter=osl_emitter) +local_env.Append(BUILDERS = {'OSL': osl_builder}) +SITOA_OSL_SHADERS = local_env.OSL(osl_files) + if system.os() == 'windows': SITOA_SHADERS_PRJ = local_env.MSVSProject(target = 'sitoa_shaders' + env['MSVS']['PROJECTSUFFIX'], srcs = source_files + include_files, @@ -39,12 +87,12 @@ if system.os() == 'windows': local_env.AlwaysBuild(SITOA_SHADERS_PRJ) - Return('SITOA_SHADERS SITOA_SHADERS_PRJ') + Return('SITOA_SHADERS SITOA_SHADERS_PRJ SITOA_OSL_SHADERS') elif system.os() == 'darwin': local_env.Append(CCFLAGS = Split('-fvisibility=hidden')) # hide symbols by default #local_env.Append(LINKFLAGS = Split('-Wl,-rpath="\\$$ORIGIN" -z origin')) - Return('SITOA_SHADERS') + Return('SITOA_SHADERS SITOA_OSL_SHADERS') else: local_env.Append(CCFLAGS = Split('-fvisibility=hidden')) # hide symbols by default #local_env.Append(LINKFLAGS = Split('-Wl,-rpath="\\$$ORIGIN" -z origin')) - Return('SITOA_SHADERS') + Return('SITOA_SHADERS SITOA_OSL_SHADERS') diff --git a/shaders/src/sib_boolean_to_color.osl b/shaders/src/sib_boolean_to_color.osl new file mode 100644 index 0000000..a3e5987 --- /dev/null +++ b/shaders/src/sib_boolean_to_color.osl @@ -0,0 +1,20 @@ +/************************************************************************************************************************************ +Copyright 2017 Autodesk, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. +You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and limitations under the License. +************************************************************************************************************************************/ + +shader sib_boolean_to_color +( + int input = 1, + + output color out = 1 +) +{ + out = input; +} diff --git a/shaders/src/sib_color_to_scalars.osl b/shaders/src/sib_color_to_scalars.osl new file mode 100644 index 0000000..b703c93 --- /dev/null +++ b/shaders/src/sib_color_to_scalars.osl @@ -0,0 +1,28 @@ +/************************************************************************************************************************************ +Copyright 2017 Autodesk, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. +You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and limitations under the License. +************************************************************************************************************************************/ + +#include + +shader sib_color_to_scalars +( + color4 input = {1,1}, + + output float r = 1, + output float g = 1, + output float b = 1, + output float a = 1, +) +{ + r = input.rgb.r; + g = input.rgb.g; + b = input.rgb.b; + a = input.a; +} diff --git a/shaders/src/sib_vector_to_color.osl b/shaders/src/sib_vector_to_color.osl new file mode 100644 index 0000000..8d24a01 --- /dev/null +++ b/shaders/src/sib_vector_to_color.osl @@ -0,0 +1,25 @@ +/************************************************************************************************************************************ +Copyright 2017 Autodesk, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. +You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and limitations under the License. +************************************************************************************************************************************/ + +shader sib_vector_to_color +( + int method = 0, + vector input = 0, + float scale = 1, + + output color out = 0 +) +{ + out = input * scale; + + if (method == 1) + out = out * 0.5 + 0.5; +} diff --git a/shaders/src/sib_vector_to_scalars.osl b/shaders/src/sib_vector_to_scalars.osl new file mode 100644 index 0000000..4325851 --- /dev/null +++ b/shaders/src/sib_vector_to_scalars.osl @@ -0,0 +1,24 @@ +/************************************************************************************************************************************ +Copyright 2017 Autodesk, Inc. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. +You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and limitations under the License. +************************************************************************************************************************************/ + +shader sib_vector_to_scalars +( + vector input = 0, + + output float x = 0, + output float y = 0, + output float z = 0 +) +{ + x = input.x; + y = input.y; + z = input.z; +} diff --git a/testsuite/XSIProject/Pictures/noIcon.exr b/testsuite/XSIProject/Pictures/noIcon.exr new file mode 100644 index 0000000..89ce6c5 Binary files /dev/null and b/testsuite/XSIProject/Pictures/noIcon.exr differ diff --git a/testsuite/XSIProject/Pictures/noIcon.tx b/testsuite/XSIProject/Pictures/noIcon.tx new file mode 100644 index 0000000..29bfafb Binary files /dev/null and b/testsuite/XSIProject/Pictures/noIcon.tx differ diff --git a/testsuite/XSIProject/Scenes/test_0124/data/test.scn b/testsuite/XSIProject/Scenes/test_0124/data/test.scn index 995f804..c844471 100644 Binary files a/testsuite/XSIProject/Scenes/test_0124/data/test.scn and b/testsuite/XSIProject/Scenes/test_0124/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0124/ref/reference.log b/testsuite/XSIProject/Scenes/test_0124/ref/reference.log index 933f082..4633091 100644 --- a/testsuite/XSIProject/Scenes/test_0124/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0124/ref/reference.log @@ -1,59 +1,202 @@ ======================================================= - Autodesk Softimage 11.1.57.0 + Autodesk Softimage 13.2.163.0 ======================================================= License information: using [Processing] -00:00:00 161MB | log started Wed Jun 7 11:57:39 2017 -00:00:00 161MB | Arnold 5.0.0.3 [baf78363] windows icc-17.0.2 oiio-1.7.12 osl-1.8.2 vdb-4.0.0 rlm-12.2.2 2017/05/31 10:45:24 -00:00:00 161MB | running on cavallo, pid=14212 -00:00:00 161MB | 1 x Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (4 cores, 8 logical) with 16334MB -00:00:00 161MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 161MB | soft limit for open files raised from 512 to 2048 -00:00:00 161MB | -00:00:00 161MB | loading plugins from C:\dev\Mia\Arnold\Extra_Shaders ... -00:00:00 161MB | loaded 1 plugins from 1 lib(s) and 1 OSL shaders in 0:00.00 -00:00:00 161MB | loading plugins from C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 161MB | loaded 103 plugins from 1 lib(s) in 0:00.00 +00:00:00 345MB | log started Mon Apr 3 22:03:00 2023 +00:00:00 345MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 345MB | running on Jens-PC, pid=23508 +00:00:00 345MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 345MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 345MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4687MB available) (NVLink:0) +00:00:00 345MB | Windows 10 (version 10.0, build 22621) +00:00:00 345MB | soft limit for open files changed from 512 to 2048 +00:00:00 345MB | +00:00:00 345MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 345MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 346MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 346MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 346MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 346MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 362MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 362MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +00:00:00 367MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 369MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 370MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 370MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 370MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd -00:00:00 167MB | -00:00:00 167MB | releasing resources -00:00:00 166MB | Arnold shutdown -// INFO : [sitoa] SItoA 4.0.0 win loaded. -// INFO : [sitoa] Arnold 5.0.0.3 detected. +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 372MB | +00:00:00 372MB | releasing resources +00:00:00 353MB | unloading 4 plugins +00:00:00 353MB | closing alembic_proc.dll ... +00:00:00 353MB | closing cryptomatte.dll ... +00:00:00 353MB | closing usd_proc.dll ... +00:00:00 349MB | closing sitoa_shaders.dll ... +00:00:00 348MB | unloading plugins done +00:00:00 348MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render"); COMMAND: -processing -script "execute_test.js" -main main -// INFO : C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ ->Loading: C:\dev\Mia\Arnold\sitoa\build\windows_x86_64\msvc_opt\si_11000\testsuite\test_0124\test.scn... -// INFO : 4034 - Loaded scene was created with build number: 11.1.57.0 - compatibility version: 1100 -// WARNING : 3000 - Cannot load material for Texture_Support -OpenScene("C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0124\\test.scn", null, null); +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0124\test.scn... +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +// WARNING : 3000 - Cannot load material for Scene_Root +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0124\\test.scn", null, null); SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); SetValue("Passes.RenderOptions.ImageWidth", 160, null); SetValue("Passes.RenderOptions.ImageHeight", 120, null); -SetValue("Passes.Default_Pass.Main.Filename", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0124\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0124\\testrender.####.tif", null); SetValue("Passes.Default_Pass.Main.Format", "tif", null); SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); SetValue("Passes.Arnold_Render_Options.log_level", 1, null); -SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0124", null); -// ERROR : 2000 - Argument 0 (Target) is invalid -// ERROR : 2001-EDIT-SetValue - Argument 0 is invalid -SetValue("Passes.Arnold_Render_Options.shaders_path", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\shaders", null); -Command failed, returned -2147024809 -SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\dev\\Mia\\Arnold\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0124", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); // INFO : Rendering pass 'Default_Pass'... // INFO : Rendering frame 10 (0.0% done) -// INFO : [sitoa] Frame 10 exported to Arnold in 0.024 sec. +00:00:00 422MB | log started Mon Apr 3 22:03:02 2023 +00:00:00 422MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 422MB | running on Jens-PC, pid=23508 +00:00:00 422MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 434MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 434MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4688MB available) (NVLink:0) +00:00:00 434MB | Windows 10 (version 10.0, build 22621) +00:00:00 434MB | soft limit for open files is set at 2048 +00:00:00 434MB | +00:00:00 453MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 453MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 453MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 453MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 453MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 453MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 460MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 460MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +// INFO : [sitoa] Frame 10 exported to Arnold in 0.117 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); Warning: return value of the executed script is not an integer -// INFO : Render completed (100% done) +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. // INFO : Characters has been unloaded. -// INFO : TransformUVsPlugin has been unloaded. -// INFO : [sitoa] SItoA 4.0.0 win has been unloaded. // INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. // INFO : FBX-XSI import/export Plug-in has been unloaded. // INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0124/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0124/ref/reference.tif index 813e72a..ed8401e 100644 Binary files a/testsuite/XSIProject/Scenes/test_0124/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0124/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0136/data/test.scn b/testsuite/XSIProject/Scenes/test_0136/data/test.scn index 30df7c7..9682def 100644 Binary files a/testsuite/XSIProject/Scenes/test_0136/data/test.scn and b/testsuite/XSIProject/Scenes/test_0136/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0136/ref/reference.log b/testsuite/XSIProject/Scenes/test_0136/ref/reference.log index d760069..4d89e30 100644 --- a/testsuite/XSIProject/Scenes/test_0136/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0136/ref/reference.log @@ -1,58 +1,201 @@ ======================================================= - Autodesk Softimage 11.1.57.0 + Autodesk Softimage 13.2.163.0 ======================================================= License information: using [Processing] -00:00:00 166MB | log started Wed Jun 7 12:00:26 2017 -00:00:00 166MB | Arnold 5.0.0.3 [baf78363] windows icc-17.0.2 oiio-1.7.12 osl-1.8.2 vdb-4.0.0 rlm-12.2.2 2017/05/31 10:45:24 -00:00:00 166MB | running on cavallo, pid=9888 -00:00:00 166MB | 1 x Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (4 cores, 8 logical) with 16334MB -00:00:00 166MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 166MB | soft limit for open files raised from 512 to 2048 -00:00:00 166MB | -00:00:00 166MB | loading plugins from C:\dev\Mia\Arnold\Extra_Shaders ... -00:00:00 166MB | loaded 1 plugins from 1 lib(s) and 1 OSL shaders in 0:00.00 -00:00:00 166MB | loading plugins from C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 166MB | loaded 103 plugins from 1 lib(s) in 0:00.00 +00:00:00 345MB | log started Mon Apr 3 22:07:40 2023 +00:00:00 345MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 345MB | running on Jens-PC, pid=26480 +00:00:00 345MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 345MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 345MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4703MB available) (NVLink:0) +00:00:00 345MB | Windows 10 (version 10.0, build 22621) +00:00:00 345MB | soft limit for open files changed from 512 to 2048 +00:00:00 345MB | +00:00:00 345MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 345MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 345MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 362MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 362MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +00:00:00 366MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 369MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 370MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 370MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 370MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd -00:00:00 172MB | -00:00:00 172MB | releasing resources -00:00:00 171MB | Arnold shutdown -// INFO : [sitoa] SItoA 4.0.0 win loaded. -// INFO : [sitoa] Arnold 5.0.0.3 detected. +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 372MB | +00:00:00 372MB | releasing resources +00:00:00 353MB | unloading 4 plugins +00:00:00 353MB | closing alembic_proc.dll ... +00:00:00 353MB | closing cryptomatte.dll ... +00:00:00 353MB | closing usd_proc.dll ... +00:00:00 349MB | closing sitoa_shaders.dll ... +00:00:00 348MB | unloading plugins done +00:00:00 348MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render"); COMMAND: -processing -script "execute_test.js" -main main -// INFO : C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ ->Loading: C:\dev\Mia\Arnold\sitoa\build\windows_x86_64\msvc_opt\si_11000\testsuite\test_0136\test.scn... -// INFO : 4034 - Loaded scene was created with build number: 11.1.57.0 - compatibility version: 1100 -OpenScene("C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0136\\test.scn", null, null); +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0136\test.scn... +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0136\\test.scn", null, null); SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); SetValue("Passes.RenderOptions.ImageWidth", 160, null); SetValue("Passes.RenderOptions.ImageHeight", 120, null); -SetValue("Passes.Default_Pass.Main.Filename", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0136\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0136\\testrender.####.tif", null); SetValue("Passes.Default_Pass.Main.Format", "tif", null); SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); SetValue("Passes.Arnold_Render_Options.log_level", 1, null); -SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0136", null); -// ERROR : 2000 - Argument 0 (Target) is invalid -// ERROR : 2001-EDIT-SetValue - Argument 0 is invalid -SetValue("Passes.Arnold_Render_Options.shaders_path", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\shaders", null); -Command failed, returned -2147024809 -SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\dev\\Mia\\Arnold\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0136", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); // INFO : Rendering pass 'Default_Pass'... // INFO : Rendering frame 1 (0.0% done) -// INFO : [sitoa] Frame 1 exported to Arnold in 0.021 sec. +00:00:00 418MB | log started Mon Apr 3 22:07:43 2023 +00:00:00 418MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 418MB | running on Jens-PC, pid=26480 +00:00:00 418MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 431MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 431MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4708MB available) (NVLink:0) +00:00:00 431MB | Windows 10 (version 10.0, build 22621) +00:00:00 431MB | soft limit for open files is set at 2048 +00:00:00 431MB | +00:00:00 450MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 450MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 450MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 450MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 450MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 450MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 457MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 457MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +// INFO : [sitoa] Frame 1 exported to Arnold in 0.118 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); Warning: return value of the executed script is not an integer -// INFO : Render completed (100% done) +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. // INFO : Characters has been unloaded. -// INFO : TransformUVsPlugin has been unloaded. -// INFO : [sitoa] SItoA 4.0.0 win has been unloaded. // INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. // INFO : FBX-XSI import/export Plug-in has been unloaded. // INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0136/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0136/ref/reference.tif index b7c5c7f..f075113 100644 Binary files a/testsuite/XSIProject/Scenes/test_0136/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0136/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0149/data/test.scn b/testsuite/XSIProject/Scenes/test_0149/data/test.scn index c9b7a69..d8fb3f8 100644 Binary files a/testsuite/XSIProject/Scenes/test_0149/data/test.scn and b/testsuite/XSIProject/Scenes/test_0149/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0149/ref/reference.log b/testsuite/XSIProject/Scenes/test_0149/ref/reference.log index 06d3138..c143a97 100644 --- a/testsuite/XSIProject/Scenes/test_0149/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0149/ref/reference.log @@ -1,58 +1,201 @@ ======================================================= - Autodesk Softimage 11.1.57.0 + Autodesk Softimage 13.2.163.0 ======================================================= License information: using [Processing] -00:00:00 160MB | log started Wed Jun 7 12:03:35 2017 -00:00:00 160MB | Arnold 5.0.0.3 [baf78363] windows icc-17.0.2 oiio-1.7.12 osl-1.8.2 vdb-4.0.0 rlm-12.2.2 2017/05/31 10:45:24 -00:00:00 160MB | running on cavallo, pid=7188 -00:00:00 160MB | 1 x Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (4 cores, 8 logical) with 16334MB -00:00:00 160MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 160MB | soft limit for open files raised from 512 to 2048 -00:00:00 160MB | -00:00:00 160MB | loading plugins from C:\dev\Mia\Arnold\Extra_Shaders ... -00:00:00 160MB | loaded 1 plugins from 1 lib(s) and 1 OSL shaders in 0:00.00 -00:00:00 160MB | loading plugins from C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 160MB | loaded 103 plugins from 1 lib(s) in 0:00.00 +00:00:00 345MB | log started Mon Apr 3 22:08:12 2023 +00:00:00 345MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 345MB | running on Jens-PC, pid=1888 +00:00:00 345MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 345MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 345MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4657MB available) (NVLink:0) +00:00:00 345MB | Windows 10 (version 10.0, build 22621) +00:00:00 345MB | soft limit for open files changed from 512 to 2048 +00:00:00 345MB | +00:00:00 345MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 345MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 345MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 362MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 362MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +00:00:00 365MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 369MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 370MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 370MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 370MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd -00:00:00 165MB | -00:00:00 165MB | releasing resources -00:00:00 164MB | Arnold shutdown -// INFO : [sitoa] SItoA 4.0.0 win loaded. -// INFO : [sitoa] Arnold 5.0.0.3 detected. +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 372MB | +00:00:00 372MB | releasing resources +00:00:00 353MB | unloading 4 plugins +00:00:00 353MB | closing alembic_proc.dll ... +00:00:00 353MB | closing cryptomatte.dll ... +00:00:00 353MB | closing usd_proc.dll ... +00:00:00 349MB | closing sitoa_shaders.dll ... +00:00:00 349MB | unloading plugins done +00:00:00 349MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render"); COMMAND: -processing -script "execute_test.js" -main main -// INFO : C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ ->Loading: C:\dev\Mia\Arnold\sitoa\build\windows_x86_64\msvc_opt\si_11000\testsuite\test_0149\test.scn... -// INFO : 4034 - Loaded scene was created with build number: 11.1.57.0 - compatibility version: 1100 -OpenScene("C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0149\\test.scn", null, null); +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0149\test.scn... +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0149\\test.scn", null, null); SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); SetValue("Passes.RenderOptions.ImageWidth", 160, null); SetValue("Passes.RenderOptions.ImageHeight", 120, null); -SetValue("Passes.Default_Pass.Main.Filename", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0149\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0149\\testrender.####.tif", null); SetValue("Passes.Default_Pass.Main.Format", "tif", null); SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); SetValue("Passes.Arnold_Render_Options.log_level", 1, null); -SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0149", null); -// ERROR : 2000 - Argument 0 (Target) is invalid -// ERROR : 2001-EDIT-SetValue - Argument 0 is invalid -SetValue("Passes.Arnold_Render_Options.shaders_path", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\shaders", null); -Command failed, returned -2147024809 -SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\dev\\Mia\\Arnold\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0149", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); // INFO : Rendering pass 'Default_Pass'... // INFO : Rendering frame 1 (0.0% done) -// INFO : [sitoa] Frame 1 exported to Arnold in 0.026 sec. +00:00:00 423MB | log started Mon Apr 3 22:08:14 2023 +00:00:00 423MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 423MB | running on Jens-PC, pid=1888 +00:00:00 423MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 435MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 435MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4633MB available) (NVLink:0) +00:00:00 435MB | Windows 10 (version 10.0, build 22621) +00:00:00 435MB | soft limit for open files is set at 2048 +00:00:00 435MB | +00:00:00 454MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 454MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 454MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 454MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 454MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 454MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 461MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 461MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +// INFO : [sitoa] Frame 1 exported to Arnold in 0.121 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); Warning: return value of the executed script is not an integer -// INFO : Render completed (100% done) +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. // INFO : Characters has been unloaded. -// INFO : TransformUVsPlugin has been unloaded. -// INFO : [sitoa] SItoA 4.0.0 win has been unloaded. // INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. // INFO : FBX-XSI import/export Plug-in has been unloaded. // INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0149/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0149/ref/reference.tif index 25d591b..4ec6589 100644 Binary files a/testsuite/XSIProject/Scenes/test_0149/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0149/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0162/data/test.scn b/testsuite/XSIProject/Scenes/test_0162/data/test.scn index 8ef8cd7..9cb0a8f 100644 Binary files a/testsuite/XSIProject/Scenes/test_0162/data/test.scn and b/testsuite/XSIProject/Scenes/test_0162/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0162/ref/reference.log b/testsuite/XSIProject/Scenes/test_0162/ref/reference.log index a9a2380..17efc30 100644 --- a/testsuite/XSIProject/Scenes/test_0162/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0162/ref/reference.log @@ -1,59 +1,202 @@ ======================================================= - Autodesk Softimage 11.1.57.0 + Autodesk Softimage 13.2.163.0 ======================================================= License information: using [Processing] -00:00:00 165MB | log started Wed Jun 7 12:06:36 2017 -00:00:00 165MB | Arnold 5.0.0.3 [baf78363] windows icc-17.0.2 oiio-1.7.12 osl-1.8.2 vdb-4.0.0 rlm-12.2.2 2017/05/31 10:45:24 -00:00:00 165MB | running on cavallo, pid=908 -00:00:00 165MB | 1 x Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (4 cores, 8 logical) with 16334MB -00:00:00 165MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 165MB | soft limit for open files raised from 512 to 2048 -00:00:00 165MB | -00:00:00 165MB | loading plugins from C:\dev\Mia\Arnold\Extra_Shaders ... -00:00:00 165MB | loaded 1 plugins from 1 lib(s) and 1 OSL shaders in 0:00.00 -00:00:00 165MB | loading plugins from C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 166MB | loaded 103 plugins from 1 lib(s) in 0:00.00 +00:00:00 345MB | log started Tue Apr 11 22:00:39 2023 +00:00:00 345MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 345MB | running on Jens-PC, pid=21028 +00:00:00 345MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 345MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 345MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6323MB available) (NVLink:0) +00:00:00 345MB | Windows 10 (version 10.0, build 22621) +00:00:00 345MB | soft limit for open files changed from 512 to 2048 +00:00:00 345MB | +00:00:00 345MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 345MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 345MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 362MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 362MB | loaded 5 plugins from 3 lib(s) in 0:00.09 +00:00:00 367MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 369MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 370MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 370MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 370MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd -00:00:00 170MB | -00:00:00 170MB | releasing resources -00:00:00 170MB | Arnold shutdown -// INFO : [sitoa] SItoA 4.0.0 win loaded. -// INFO : [sitoa] Arnold 5.0.0.3 detected. +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 371MB | +00:00:00 371MB | releasing resources +00:00:00 353MB | unloading 4 plugins +00:00:00 353MB | closing alembic_proc.dll ... +00:00:00 353MB | closing cryptomatte.dll ... +00:00:00 353MB | closing usd_proc.dll ... +00:00:00 348MB | closing sitoa_shaders.dll ... +00:00:00 348MB | unloading plugins done +00:00:00 348MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render"); COMMAND: -processing -script "execute_test.js" -main main -// INFO : C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ ->Loading: C:\dev\Mia\Arnold\sitoa\build\windows_x86_64\msvc_opt\si_11000\testsuite\test_0162\test.scn... -// INFO : 4034 - Loaded scene was created with build number: 11.1.57.0 - compatibility version: 1100 -// WARNING : 3000 - Cannot load material for branchcurrent -OpenScene("C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0162\\test.scn", null, null); +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0162\test.scn... +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +// WARNING : 3000 - Cannot load material for Scene_Root +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0162\\test.scn", null, null); SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); SetValue("Passes.RenderOptions.ImageWidth", 160, null); SetValue("Passes.RenderOptions.ImageHeight", 120, null); -SetValue("Passes.Default_Pass.Main.Filename", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0162\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0162\\testrender.####.tif", null); SetValue("Passes.Default_Pass.Main.Format", "tif", null); SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); SetValue("Passes.Arnold_Render_Options.log_level", 1, null); -SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0162", null); -// ERROR : 2000 - Argument 0 (Target) is invalid -// ERROR : 2001-EDIT-SetValue - Argument 0 is invalid -SetValue("Passes.Arnold_Render_Options.shaders_path", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\shaders", null); -Command failed, returned -2147024809 -SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\dev\\Mia\\Arnold\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0162", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); // INFO : Rendering pass 'Default_Pass'... // INFO : Rendering frame 1 (0.0% done) -// INFO : [sitoa] Frame 1 exported to Arnold in 0.045 sec. +00:00:00 451MB | log started Tue Apr 11 22:00:42 2023 +00:00:00 451MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 451MB | running on Jens-PC, pid=21028 +00:00:00 451MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 463MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 463MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6287MB available) (NVLink:0) +00:00:00 463MB | Windows 10 (version 10.0, build 22621) +00:00:00 463MB | soft limit for open files is set at 2048 +00:00:00 463MB | +00:00:00 482MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 482MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 483MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 483MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 483MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 483MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 490MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 490MB | loaded 5 plugins from 3 lib(s) in 0:00.08 +// INFO : [sitoa] Frame 1 exported to Arnold in 0.17 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); Warning: return value of the executed script is not an integer -// INFO : Render completed (100% done) +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. // INFO : Characters has been unloaded. -// INFO : TransformUVsPlugin has been unloaded. -// INFO : [sitoa] SItoA 4.0.0 win has been unloaded. // INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. // INFO : FBX-XSI import/export Plug-in has been unloaded. // INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0162/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0162/ref/reference.tif index 9bab1f7..c67bb22 100644 Binary files a/testsuite/XSIProject/Scenes/test_0162/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0162/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0173/data/test.scn b/testsuite/XSIProject/Scenes/test_0173/data/test.scn index 0b7ca73..d8664d2 100644 Binary files a/testsuite/XSIProject/Scenes/test_0173/data/test.scn and b/testsuite/XSIProject/Scenes/test_0173/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0173/ref/reference.log b/testsuite/XSIProject/Scenes/test_0173/ref/reference.log index 9bc8182..7666db4 100644 --- a/testsuite/XSIProject/Scenes/test_0173/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0173/ref/reference.log @@ -1,51 +1,186 @@ ======================================================= - Autodesk Softimage 11.1.57.0 + Autodesk Softimage 13.2.163.0 ======================================================= License information: using [Processing] -00:00:00 160MB | log started Wed Jun 7 12:08:54 2017 -00:00:00 160MB | Arnold 5.0.0.3 [baf78363] windows icc-17.0.2 oiio-1.7.12 osl-1.8.2 vdb-4.0.0 rlm-12.2.2 2017/05/31 10:45:24 -00:00:00 160MB | running on cavallo, pid=14456 -00:00:00 160MB | 1 x Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (4 cores, 8 logical) with 16334MB -00:00:00 160MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 160MB | soft limit for open files raised from 512 to 2048 -00:00:00 160MB | -00:00:00 160MB | loading plugins from C:\dev\Mia\Arnold\Extra_Shaders ... -00:00:00 160MB | loaded 1 plugins from 1 lib(s) and 1 OSL shaders in 0:00.00 -00:00:00 160MB | loading plugins from C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 161MB | loaded 103 plugins from 1 lib(s) in 0:00.00 +00:00:00 345MB | log started Mon Apr 3 22:13:41 2023 +00:00:00 345MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 345MB | running on Jens-PC, pid=24948 +00:00:00 345MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 345MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 345MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4729MB available) (NVLink:0) +00:00:00 345MB | Windows 10 (version 10.0, build 22621) +00:00:00 345MB | soft limit for open files changed from 512 to 2048 +00:00:00 345MB | +00:00:00 345MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 345MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 345MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 362MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 362MB | loaded 5 plugins from 3 lib(s) in 0:00.09 +00:00:00 367MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 369MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 370MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 370MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 370MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd -00:00:00 165MB | -00:00:00 165MB | releasing resources -00:00:00 165MB | Arnold shutdown -// INFO : [sitoa] SItoA 4.0.0 win loaded. -// INFO : [sitoa] Arnold 5.0.0.3 detected. -InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render"); +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 372MB | +00:00:00 372MB | releasing resources +00:00:00 353MB | unloading 4 plugins +00:00:00 353MB | closing alembic_proc.dll ... +00:00:00 353MB | closing cryptomatte.dll ... +00:00:00 353MB | closing usd_proc.dll ... +00:00:00 349MB | closing sitoa_shaders.dll ... +00:00:00 349MB | unloading plugins done +00:00:00 349MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. +RefreshCustomPreferences(); COMMAND: -processing -script "execute_test.js" -main main -// INFO : C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ ->Loading: C:\dev\Mia\Arnold\sitoa\build\windows_x86_64\msvc_opt\si_11000\testsuite\test_0173\test.scn... -// INFO : 4034 - Loaded scene was created with build number: 11.1.57.0 - compatibility version: 1100 -OpenScene("C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0173\\test.scn", null, null); +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0173\test.scn... +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0173\\test.scn", null, null); SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); SetValue("Passes.RenderOptions.ImageWidth", 160, null); SetValue("Passes.RenderOptions.ImageHeight", 120, null); -SetValue("Passes.Default_Pass.Main.Filename", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0173\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0173\\testrender.####.tif", null); SetValue("Passes.Default_Pass.Main.Format", "tif", null); SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); SetValue("Passes.Arnold_Render_Options.log_level", 1, null); -SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0173", null); -// ERROR : 2000 - Argument 0 (Target) is invalid -// ERROR : 2001-EDIT-SetValue - Argument 0 is invalid -SetValue("Passes.Arnold_Render_Options.shaders_path", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\shaders", null); -Command failed, returned -2147024809 -SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\dev\\Mia\\Arnold\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0173", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); // INFO : Rendering pass 'Default_Pass'... // INFO : Rendering frame 5 (0.0% done) +00:00:00 421MB | log started Mon Apr 3 22:13:44 2023 +00:00:00 421MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 421MB | running on Jens-PC, pid=24948 +00:00:00 421MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 433MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 433MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4729MB available) (NVLink:0) +00:00:00 433MB | Windows 10 (version 10.0, build 22621) +00:00:00 433MB | soft limit for open files is set at 2048 +00:00:00 433MB | +00:00:00 452MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 452MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 452MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 452MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 453MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 453MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 460MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 460MB | loaded 5 plugins from 3 lib(s) in 0:00.07 // WARNING : [arnold] Skydome.light.light_blocker.SItoA.5000.1: parameter "ramp_axis" is deprecated, use "axis" // WARNING : [arnold] Skydome.light.light_blocker1.SItoA.5000.2: parameter "ramp_axis" is deprecated, use "axis" // WARNING : [arnold] Spot.light.gobo.SItoA.5000.4: parameter "scale_s" is deprecated, use "sscale" @@ -55,13 +190,21 @@ SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); // WARNING : [arnold] Spot.light.gobo.SItoA.5000.4: parameter "wrap_t" is deprecated, use "twrap" // WARNING : [arnold] Cylinder.light.light_blocker.SItoA.5000.7: parameter "ramp_axis" is deprecated, use "axis" // WARNING : [arnold] node entry "standard" is deprecated, and may be removed in the future -// INFO : [sitoa] Frame 5 exported to Arnold in 0.036 sec. +// INFO : [sitoa] Frame 5 exported to Arnold in 0.156 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); Warning: return value of the executed script is not an integer -// INFO : Render completed (100% done) +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. // INFO : Characters has been unloaded. -// INFO : TransformUVsPlugin has been unloaded. -// INFO : [sitoa] SItoA 4.0.0 win has been unloaded. // INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. // INFO : FBX-XSI import/export Plug-in has been unloaded. // INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0173/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0173/ref/reference.tif index 41c077c..98c0985 100644 Binary files a/testsuite/XSIProject/Scenes/test_0173/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0173/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0189/data/test.scn b/testsuite/XSIProject/Scenes/test_0189/data/test.scn index ef51969..fb29451 100644 Binary files a/testsuite/XSIProject/Scenes/test_0189/data/test.scn and b/testsuite/XSIProject/Scenes/test_0189/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0189/ref/reference.log b/testsuite/XSIProject/Scenes/test_0189/ref/reference.log index 46585bf..94c29b5 100644 --- a/testsuite/XSIProject/Scenes/test_0189/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0189/ref/reference.log @@ -1,62 +1,205 @@ ======================================================= - Autodesk Softimage 11.1.57.0 + Autodesk Softimage 13.2.163.0 ======================================================= License information: using [Processing] -00:00:00 161MB | log started Wed Jun 7 12:12:01 2017 -00:00:00 161MB | Arnold 5.0.0.3 [baf78363] windows icc-17.0.2 oiio-1.7.12 osl-1.8.2 vdb-4.0.0 rlm-12.2.2 2017/05/31 10:45:24 -00:00:00 161MB | running on cavallo, pid=15696 -00:00:00 161MB | 1 x Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (4 cores, 8 logical) with 16334MB -00:00:00 161MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 161MB | soft limit for open files raised from 512 to 2048 -00:00:00 161MB | -00:00:00 161MB | loading plugins from C:\dev\Mia\Arnold\Extra_Shaders ... -00:00:00 161MB | loaded 1 plugins from 1 lib(s) and 1 OSL shaders in 0:00.00 -00:00:00 161MB | loading plugins from C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 161MB | loaded 103 plugins from 1 lib(s) in 0:00.00 +00:00:00 345MB | log started Mon Apr 3 22:12:40 2023 +00:00:00 345MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 345MB | running on Jens-PC, pid=25152 +00:00:00 345MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 345MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 345MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4728MB available) (NVLink:0) +00:00:00 345MB | Windows 10 (version 10.0, build 22621) +00:00:00 345MB | soft limit for open files changed from 512 to 2048 +00:00:00 345MB | +00:00:00 345MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 345MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 345MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 362MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 362MB | loaded 5 plugins from 3 lib(s) in 0:00.08 +00:00:00 366MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 369MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 370MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 370MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 370MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd -00:00:00 166MB | -00:00:00 166MB | releasing resources -00:00:00 166MB | Arnold shutdown -// INFO : [sitoa] SItoA 4.0.0 win loaded. -// INFO : [sitoa] Arnold 5.0.0.3 detected. +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 372MB | +00:00:00 372MB | releasing resources +00:00:00 353MB | unloading 4 plugins +00:00:00 353MB | closing alembic_proc.dll ... +00:00:00 353MB | closing cryptomatte.dll ... +00:00:00 353MB | closing usd_proc.dll ... +00:00:00 349MB | closing sitoa_shaders.dll ... +00:00:00 348MB | unloading plugins done +00:00:00 348MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render"); COMMAND: -processing -script "execute_test.js" -main main -// INFO : C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ ->Loading: C:\dev\Mia\Arnold\sitoa\build\windows_x86_64\msvc_opt\si_11000\testsuite\test_0189\test.scn... -// INFO : 4034 - Loaded scene was created with build number: 11.1.57.0 - compatibility version: 1100 +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0189\test.scn... +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 // WARNING : 3033 - Unable to resolve path: Pictures\seqMari.png // WARNING : 3033 - Unable to resolve path: Pictures\number.jpg // WARNING : 3033 - Unable to resolve path: Pictures\seqMari.png // WARNING : 3033 - Unable to resolve path: Pictures\number.jpg -OpenScene("C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0189\\test.scn", null, null); +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0189\\test.scn", null, null); SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); SetValue("Passes.RenderOptions.ImageWidth", 160, null); SetValue("Passes.RenderOptions.ImageHeight", 120, null); -SetValue("Passes.Default_Pass.Main.Filename", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0189\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0189\\testrender.####.tif", null); SetValue("Passes.Default_Pass.Main.Format", "tif", null); SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); SetValue("Passes.Arnold_Render_Options.log_level", 1, null); -SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0189", null); -// ERROR : 2000 - Argument 0 (Target) is invalid -// ERROR : 2001-EDIT-SetValue - Argument 0 is invalid -SetValue("Passes.Arnold_Render_Options.shaders_path", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\shaders", null); -Command failed, returned -2147024809 -SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\dev\\Mia\\Arnold\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0189", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); // INFO : Rendering pass 'Default_Pass'... // INFO : Rendering frame 65 (0.0% done) -// INFO : [sitoa] Frame 65 exported to Arnold in 0.039 sec. +00:00:00 421MB | log started Mon Apr 3 22:12:42 2023 +00:00:00 421MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 421MB | running on Jens-PC, pid=25152 +00:00:00 421MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 434MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 434MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4728MB available) (NVLink:0) +00:00:00 434MB | Windows 10 (version 10.0, build 22621) +00:00:00 434MB | soft limit for open files is set at 2048 +00:00:00 434MB | +00:00:00 453MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 453MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 453MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 453MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 453MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 453MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 460MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 460MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +// INFO : [sitoa] Frame 65 exported to Arnold in 0.166 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); Warning: return value of the executed script is not an integer -// INFO : Render completed (100% done) +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. // INFO : Characters has been unloaded. -// INFO : TransformUVsPlugin has been unloaded. -// INFO : [sitoa] SItoA 4.0.0 win has been unloaded. // INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. // INFO : FBX-XSI import/export Plug-in has been unloaded. // INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0189/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0189/ref/reference.tif index e4ab6ff..3acf728 100644 Binary files a/testsuite/XSIProject/Scenes/test_0189/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0189/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0195/data/test.scn b/testsuite/XSIProject/Scenes/test_0195/data/test.scn index d6749c6..6973532 100644 Binary files a/testsuite/XSIProject/Scenes/test_0195/data/test.scn and b/testsuite/XSIProject/Scenes/test_0195/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0195/ref/reference.log b/testsuite/XSIProject/Scenes/test_0195/ref/reference.log index 032cea3..dfcbba9 100644 --- a/testsuite/XSIProject/Scenes/test_0195/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0195/ref/reference.log @@ -1,58 +1,201 @@ ======================================================= - Autodesk Softimage 11.1.57.0 + Autodesk Softimage 13.2.163.0 ======================================================= License information: using [Processing] -00:00:00 161MB | log started Wed Jun 7 12:13:24 2017 -00:00:00 161MB | Arnold 5.0.0.3 [baf78363] windows icc-17.0.2 oiio-1.7.12 osl-1.8.2 vdb-4.0.0 rlm-12.2.2 2017/05/31 10:45:24 -00:00:00 161MB | running on cavallo, pid=9120 -00:00:00 161MB | 1 x Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (4 cores, 8 logical) with 16334MB -00:00:00 161MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 161MB | soft limit for open files raised from 512 to 2048 -00:00:00 161MB | -00:00:00 161MB | loading plugins from C:\dev\Mia\Arnold\Extra_Shaders ... -00:00:00 161MB | loaded 1 plugins from 1 lib(s) and 1 OSL shaders in 0:00.00 -00:00:00 161MB | loading plugins from C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 162MB | loaded 103 plugins from 1 lib(s) in 0:00.00 +00:00:00 344MB | log started Tue Apr 11 22:30:45 2023 +00:00:00 344MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 344MB | running on Jens-PC, pid=26528 +00:00:00 344MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 344MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 344MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6277MB available) (NVLink:0) +00:00:00 344MB | Windows 10 (version 10.0, build 22621) +00:00:00 344MB | soft limit for open files changed from 512 to 2048 +00:00:00 344MB | +00:00:00 344MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 344MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 344MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 344MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 344MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 344MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 361MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 361MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +00:00:00 363MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 368MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 368MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 368MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 368MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 368MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 368MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 369MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 369MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 369MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 369MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd -00:00:00 167MB | -00:00:00 167MB | releasing resources -00:00:00 167MB | Arnold shutdown -// INFO : [sitoa] SItoA 4.0.0 win loaded. -// INFO : [sitoa] Arnold 5.0.0.3 detected. +00:00:00 369MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 369MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 371MB | +00:00:00 371MB | releasing resources +00:00:00 352MB | unloading 4 plugins +00:00:00 352MB | closing alembic_proc.dll ... +00:00:00 352MB | closing cryptomatte.dll ... +00:00:00 352MB | closing usd_proc.dll ... +00:00:00 348MB | closing sitoa_shaders.dll ... +00:00:00 348MB | unloading plugins done +00:00:00 348MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render"); COMMAND: -processing -script "execute_test.js" -main main -// INFO : C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ ->Loading: C:\dev\Mia\Arnold\sitoa\build\windows_x86_64\msvc_opt\si_11000\testsuite\test_0195\test.scn... -// INFO : 4034 - Loaded scene was created with build number: 11.1.57.0 - compatibility version: 1100 -OpenScene("C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0195\\test.scn", null, null); +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0195\test.scn... +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0195\\test.scn", null, null); SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); SetValue("Passes.RenderOptions.ImageWidth", 160, null); SetValue("Passes.RenderOptions.ImageHeight", 120, null); -SetValue("Passes.Default_Pass.Main.Filename", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0195\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0195\\testrender.####.tif", null); SetValue("Passes.Default_Pass.Main.Format", "tif", null); SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); SetValue("Passes.Arnold_Render_Options.log_level", 1, null); -SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0195", null); -// ERROR : 2000 - Argument 0 (Target) is invalid -// ERROR : 2001-EDIT-SetValue - Argument 0 is invalid -SetValue("Passes.Arnold_Render_Options.shaders_path", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\shaders", null); -Command failed, returned -2147024809 -SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\dev\\Mia\\Arnold\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0195", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); // INFO : Rendering pass 'Default_Pass'... // INFO : Rendering frame 16 (0.0% done) -// INFO : [sitoa] Frame 16 exported to Arnold in 0.065 sec. +00:00:00 452MB | log started Tue Apr 11 22:30:47 2023 +00:00:00 452MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 452MB | running on Jens-PC, pid=26528 +00:00:00 452MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 464MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 464MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6287MB available) (NVLink:0) +00:00:00 464MB | Windows 10 (version 10.0, build 22621) +00:00:00 464MB | soft limit for open files is set at 2048 +00:00:00 464MB | +00:00:00 483MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 483MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 483MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 483MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 483MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 483MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 490MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 490MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +// INFO : [sitoa] Frame 16 exported to Arnold in 0.139 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); Warning: return value of the executed script is not an integer -// INFO : Render completed (100% done) +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. // INFO : Characters has been unloaded. -// INFO : TransformUVsPlugin has been unloaded. -// INFO : [sitoa] SItoA 4.0.0 win has been unloaded. // INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. // INFO : FBX-XSI import/export Plug-in has been unloaded. // INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0195/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0195/ref/reference.tif index 3933a57..c3cfa8e 100644 Binary files a/testsuite/XSIProject/Scenes/test_0195/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0195/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0260/data/test.scn b/testsuite/XSIProject/Scenes/test_0260/data/test.scn index 63b32eb..ddf16de 100644 Binary files a/testsuite/XSIProject/Scenes/test_0260/data/test.scn and b/testsuite/XSIProject/Scenes/test_0260/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0260/ref/reference.log b/testsuite/XSIProject/Scenes/test_0260/ref/reference.log index 9f1b8ab..2d36ca3 100644 --- a/testsuite/XSIProject/Scenes/test_0260/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0260/ref/reference.log @@ -1,58 +1,201 @@ ======================================================= - Autodesk Softimage 11.1.57.0 + Autodesk Softimage 13.2.163.0 ======================================================= License information: using [Processing] -00:00:00 160MB | log started Wed Jun 7 12:27:21 2017 -00:00:00 160MB | Arnold 5.0.0.3 [baf78363] windows icc-17.0.2 oiio-1.7.12 osl-1.8.2 vdb-4.0.0 rlm-12.2.2 2017/05/31 10:45:24 -00:00:00 160MB | running on cavallo, pid=7716 -00:00:00 160MB | 1 x Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (4 cores, 8 logical) with 16334MB -00:00:00 160MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 160MB | soft limit for open files raised from 512 to 2048 -00:00:00 160MB | -00:00:00 160MB | loading plugins from C:\dev\Mia\Arnold\Extra_Shaders ... -00:00:00 160MB | loaded 1 plugins from 1 lib(s) and 1 OSL shaders in 0:00.00 -00:00:00 160MB | loading plugins from C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 161MB | loaded 103 plugins from 1 lib(s) in 0:00.00 +00:00:00 346MB | log started Mon Apr 3 22:18:03 2023 +00:00:00 346MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 346MB | running on Jens-PC, pid=25412 +00:00:00 346MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 346MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 346MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4752MB available) (NVLink:0) +00:00:00 346MB | Windows 10 (version 10.0, build 22621) +00:00:00 346MB | soft limit for open files changed from 512 to 2048 +00:00:00 346MB | +00:00:00 346MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 346MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 347MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 347MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 347MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 347MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 363MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 363MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +00:00:00 367MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 370MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 371MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 371MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 371MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 371MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 371MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd -00:00:00 166MB | -00:00:00 166MB | releasing resources -00:00:00 166MB | Arnold shutdown -// INFO : [sitoa] SItoA 4.0.0 win loaded. -// INFO : [sitoa] Arnold 5.0.0.3 detected. +00:00:00 371MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 371MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 373MB | +00:00:00 373MB | releasing resources +00:00:00 354MB | unloading 4 plugins +00:00:00 354MB | closing alembic_proc.dll ... +00:00:00 354MB | closing cryptomatte.dll ... +00:00:00 354MB | closing usd_proc.dll ... +00:00:00 350MB | closing sitoa_shaders.dll ... +00:00:00 350MB | unloading plugins done +00:00:00 350MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render"); COMMAND: -processing -script "execute_test.js" -main main -// INFO : C:\Users\Stefano\Autodesk\Softimage_2013_SP1\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ ->Loading: C:\dev\Mia\Arnold\sitoa\build\windows_x86_64\msvc_opt\si_11000\testsuite\test_0260\test.scn... -// INFO : 4034 - Loaded scene was created with build number: 11.1.57.0 - compatibility version: 1100 -OpenScene("C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0260\\test.scn", null, null); +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0260\test.scn... +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0260\\test.scn", null, null); SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); SetValue("Passes.RenderOptions.ImageWidth", 160, null); SetValue("Passes.RenderOptions.ImageHeight", 120, null); -SetValue("Passes.Default_Pass.Main.Filename", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0260\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0260\\testrender.####.tif", null); SetValue("Passes.Default_Pass.Main.Format", "tif", null); SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); SetValue("Passes.Arnold_Render_Options.log_level", 1, null); -SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\testsuite\\test_0260", null); -// ERROR : 2000 - Argument 0 (Target) is invalid -// ERROR : 2001-EDIT-SetValue - Argument 0 is invalid -SetValue("Passes.Arnold_Render_Options.shaders_path", "C:\\dev\\Mia\\Arnold\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_11000\\shaders", null); -Command failed, returned -2147024809 -SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\dev\\Mia\\Arnold\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0260", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); // INFO : Rendering pass 'Default_Pass'... // INFO : Rendering frame 1 (0.0% done) -// INFO : [sitoa] Frame 1 exported to Arnold in 0.039 sec. +00:00:00 427MB | log started Mon Apr 3 22:18:05 2023 +00:00:00 427MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 427MB | running on Jens-PC, pid=25412 +00:00:00 427MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 439MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 439MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (4752MB available) (NVLink:0) +00:00:00 439MB | Windows 10 (version 10.0, build 22621) +00:00:00 439MB | soft limit for open files is set at 2048 +00:00:00 439MB | +00:00:00 458MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 458MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 458MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 458MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 458MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 458MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 465MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 465MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +// INFO : [sitoa] Frame 1 exported to Arnold in 0.125 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); Warning: return value of the executed script is not an integer -// INFO : Render completed (100% done) +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. // INFO : Characters has been unloaded. -// INFO : TransformUVsPlugin has been unloaded. -// INFO : [sitoa] SItoA 4.0.0 win has been unloaded. // INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. // INFO : FBX-XSI import/export Plug-in has been unloaded. // INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0260/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0260/ref/reference.tif index 083cacd..88645eb 100644 Binary files a/testsuite/XSIProject/Scenes/test_0260/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0260/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0267/data/test.scn b/testsuite/XSIProject/Scenes/test_0267/data/test.scn index 69180f8..b98e865 100644 Binary files a/testsuite/XSIProject/Scenes/test_0267/data/test.scn and b/testsuite/XSIProject/Scenes/test_0267/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0267/ref/reference.log b/testsuite/XSIProject/Scenes/test_0267/ref/reference.log index dbfb71d..df0ecf0 100644 --- a/testsuite/XSIProject/Scenes/test_0267/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0267/ref/reference.log @@ -1,65 +1,201 @@ -======================================================= - Autodesk Softimage 13.2.163.0 -======================================================= - -License information: using [Processing] -00:00:00 199MB | log started Sun Sep 2 22:28:17 2018 -00:00:00 199MB | Arnold 5.2.0.0 [4fb9451c] windows icc-17.0.2 oiio-1.7.17 osl-1.9.9 vdb-4.0.0 clm-1.0.3.513 rlm-12.4.2 2018/08/09 09:37:24 -00:00:00 199MB | running on Jenus, pid=22608 -00:00:00 199MB | 1 x Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz (4 cores, 8 logical) with 16333MB -00:00:00 199MB | Nvidia driver version 391.35 -00:00:00 199MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 199MB | soft limit for open files raised from 512 to 2048 -00:00:00 199MB | -00:00:00 199MB | loading plugins from C:\Users\lindg\Documents\GitHub\sitoa\dist\Softimage_2015_SP2\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... -00:00:00 199MB | loaded 4 plugins from 2 lib(s) in 0:00.00 -00:00:00 199MB | loading plugins from C:\Users\lindg\Documents\GitHub\sitoa\dist\Softimage_2015_SP2\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 199MB WARNING | unable to load dynamic library C:\Users\lindg\Documents\GitHub\sitoa\dist\Softimage_2015_SP2\Addons\SItoA\Application\Plugins\bin\nt-x86-64\optix_denoiser.51.dll: The specified module could not be found. - -00:00:00 200MB | loaded 103 plugins from 1 lib(s) in 0:00.01 - - - - -00:00:00 206MB | -00:00:00 206MB | releasing resources -00:00:00 205MB | Arnold shutdown -# INFO : [sitoa] SItoA 5.2.0 win loaded. -# INFO : [sitoa] Arnold 5.2.0.0 detected. -Application.InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render") -Application.RefreshCustomPreferences() -COMMAND: -processing -script "execute_test.js" -main main -# INFO : C:\Users\lindg\Documents\GitHub\sitoa\dist\Softimage_2015_SP2\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ ->Loading: C:\Users\lindg\Documents\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0267\test.scn... -# INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 -Application.OpenScene("C:\\Users\\lindg\\Documents\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0267\\test.scn", "", "") -Application.SetValue("Passes.RenderOptions.ImageLockAspectRatio", False, "") -Application.SetValue("Passes.RenderOptions.ImageWidth", 160, "") -Application.SetValue("Passes.RenderOptions.ImageHeight", 120, "") -Application.SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\Documents\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0267\\testrender.####.tif", "") -Application.SetValue("Passes.Default_Pass.Main.Format", "tif", "") -Application.SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, "") -Application.SetValue("Passes.Arnold_Render_Options.enable_log_file", True, "") -Application.SetValue("Passes.Arnold_Render_Options.log_level", 1, "") -Application.SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\Documents\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0267", "") -# ERROR : 2000 - Argument 0 (Target) is invalid -# ERROR : 2001-EDIT-SetValue - Argument 0 is invalid -Application.SetValue("Passes.Arnold_Render_Options.shaders_path", "C:\\Users\\lindg\\Documents\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\shaders", "") -Command failed, returned -2147024809 -Application.SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\Documents\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", "") -Application.SetValue("Passes.Arnold_Render_Options.save_texture_paths", False, "") -# INFO : Rendering pass 'Default_Pass'... -# INFO : Rendering frame 1 (0.0% done) -# WARNING : [arnold] unable to load dynamic library C:\Users\lindg\Documents\GitHub\sitoa\dist\Softimage_2015_SP2\Addons\SItoA\Application\Plugins\bin\nt-x86-64\optix_denoiser.51.dll: The specified module could not be found. -# -# INFO : [sitoa] Frame 1 exported to Arnold in 0.105 sec. -# INFO : Render completed (100% done) -Application.RenderAllPasses("", "", "", "", "siRenderVerbosityDefault") -Warning: return value of the executed script is not an integer -# INFO : Characters has been unloaded. -# INFO : polymatricksPlugin has been unloaded. -# INFO : [sitoa] SItoA 5.2.0 win has been unloaded. -# INFO : TransformUVsPlugin has been unloaded. -# INFO : FBX-XSI import/export Plug-in has been unloaded. -# INFO : Unfold3D Plugin has been unloaded. - +======================================================= + Autodesk Softimage 13.2.163.0 +======================================================= + +License information: using [Processing] +00:00:00 344MB | log started Tue Apr 11 22:05:19 2023 +00:00:00 344MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 344MB | running on Jens-PC, pid=22684 +00:00:00 344MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 344MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 344MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6326MB available) (NVLink:0) +00:00:00 344MB | Windows 10 (version 10.0, build 22621) +00:00:00 344MB | soft limit for open files changed from 512 to 2048 +00:00:00 344MB | +00:00:00 344MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 344MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 344MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 344MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 344MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 344MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 361MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 362MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +00:00:00 366MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 369MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 370MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 370MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 370MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd + + + + +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 371MB | +00:00:00 371MB | releasing resources +00:00:00 352MB | unloading 4 plugins +00:00:00 352MB | closing alembic_proc.dll ... +00:00:00 352MB | closing cryptomatte.dll ... +00:00:00 352MB | closing usd_proc.dll ... +00:00:00 348MB | closing sitoa_shaders.dll ... +00:00:00 348MB | unloading plugins done +00:00:00 348MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. +InstallCustomPreferences("ArnoldRenderPreferences", "Arnold Render"); +COMMAND: -processing -script "execute_test.js" -main main +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0267\test.scn... +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0267\\test.scn", null, null); +SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); +SetValue("Passes.RenderOptions.ImageWidth", 160, null); +SetValue("Passes.RenderOptions.ImageHeight", 120, null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0267\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Format", "tif", null); +SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); +SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); +SetValue("Passes.Arnold_Render_Options.log_level", 1, null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0267", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); +// INFO : Rendering pass 'Default_Pass'... +// INFO : Rendering frame 1 (0.0% done) +00:00:00 420MB | log started Tue Apr 11 22:05:21 2023 +00:00:00 420MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 420MB | running on Jens-PC, pid=22684 +00:00:00 420MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 432MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 432MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6326MB available) (NVLink:0) +00:00:00 432MB | Windows 10 (version 10.0, build 22621) +00:00:00 432MB | soft limit for open files is set at 2048 +00:00:00 432MB | +00:00:00 452MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 452MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 452MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 452MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 452MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 452MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 459MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 459MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +// INFO : [sitoa] Frame 1 exported to Arnold in 0.136 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) +RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); +Warning: return value of the executed script is not an integer +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. +// INFO : Characters has been unloaded. +// INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. +// INFO : FBX-XSI import/export Plug-in has been unloaded. +// INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0267/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0267/ref/reference.tif index 2b70ee5..a7e82d2 100644 Binary files a/testsuite/XSIProject/Scenes/test_0267/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0267/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0269/data/test.scn b/testsuite/XSIProject/Scenes/test_0269/data/test.scn index a5ce1a6..17f55ff 100644 Binary files a/testsuite/XSIProject/Scenes/test_0269/data/test.scn and b/testsuite/XSIProject/Scenes/test_0269/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0269/ref/reference.log b/testsuite/XSIProject/Scenes/test_0269/ref/reference.log index ca3e0a6..137a202 100644 --- a/testsuite/XSIProject/Scenes/test_0269/ref/reference.log +++ b/testsuite/XSIProject/Scenes/test_0269/ref/reference.log @@ -3,55 +3,199 @@ ======================================================= License information: using [Processing] -00:00:00 204MB | log started Fri May 3 00:57:25 2019 -00:00:00 204MB | Arnold 5.3.0.2 [f7602f75] windows icc-17.0.2 oiio-2.1.0 osl-1.11.0 vdb-4.0.0 clm-1.0.3.513 rlm-12.4.2 optix-6.0.0 2019/04/09 17:16:44 -00:00:00 204MB | running on Jenus, pid=57608 -00:00:00 204MB | 1 x Intel(R) Core(TM) i7-2600K CPU @ 3.40GHz (4 cores, 8 logical) with 16333MB -00:00:00 204MB | NVIDIA driver version 419.67 -00:00:00 204MB | GPU 0: GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8192MB (6905MB available) (NVLink:0) -00:00:00 204MB | Windows 8 Professional (version 6.2, build 9200) -00:00:00 204MB | soft limit for open files raised from 512 to 2048 -00:00:00 204MB | -00:00:00 204MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015_SP2\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... -00:00:00 204MB | loaded 4 plugins from 2 lib(s) in 0:00.00 -00:00:00 204MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015_SP2\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... -00:00:00 204MB | loaded 103 plugins from 1 lib(s) in 0:00.03 +00:00:00 345MB | log started Mon Apr 3 23:52:06 2023 +00:00:00 345MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 345MB | running on Jens-PC, pid=11620 +00:00:00 345MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 345MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 345MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6231MB available) (NVLink:0) +00:00:00 345MB | Windows 10 (version 10.0, build 22621) +00:00:00 345MB | soft limit for open files changed from 512 to 2048 +00:00:00 345MB | +00:00:00 345MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 345MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 345MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 345MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 362MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 362MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +00:00:00 364MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 369MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 369MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 370MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 370MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 370MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 370MB | loaded 103 plugins from 1 lib(s) and 2 OSL shaders in 0:00.01 +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd -00:00:00 211MB | -00:00:00 211MB | releasing resources -00:00:00 211MB | Arnold shutdown -# INFO : [sitoa] SItoA 5.3.0 win loaded. -# INFO : [sitoa] Arnold 5.3.0.2 detected. -Application.RefreshCustomPreferences() +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 370MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 372MB | +00:00:00 372MB | releasing resources +00:00:00 354MB | unloading 4 plugins +00:00:00 354MB | closing alembic_proc.dll ... +00:00:00 353MB | closing cryptomatte.dll ... +00:00:00 353MB | closing usd_proc.dll ... +00:00:00 349MB | closing sitoa_shaders.dll ... +00:00:00 349MB | unloading plugins done +00:00:00 349MB | Arnold shutdown +// INFO : [sitoa] SItoA 7.1.4 win loaded. +// INFO : [sitoa] Arnold 7.1.4.4 detected. +RefreshCustomPreferences(); COMMAND: -processing -script "execute_test.js" -main main -# INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015_SP2\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +// INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ >Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0269\test.scn... -# INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 -Application.OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0269\\test.scn", "", "") -Application.SetValue("Passes.RenderOptions.ImageLockAspectRatio", False, "") -Application.SetValue("Passes.RenderOptions.ImageWidth", 160, "") -Application.SetValue("Passes.RenderOptions.ImageHeight", 120, "") -Application.SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0269\\testrender.####.tif", "") -Application.SetValue("Passes.Default_Pass.Main.Format", "tif", "") -Application.SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, "") -Application.SetValue("Passes.Arnold_Render_Options.enable_log_file", True, "") -Application.SetValue("Passes.Arnold_Render_Options.log_level", 1, "") -Application.SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0269", "") -Application.SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", "") -Application.SetValue("Passes.Arnold_Render_Options.save_texture_paths", False, "") -# INFO : Rendering pass 'Default_Pass'... -# INFO : Rendering frame 1 (0.0% done) -# INFO : [sitoa] Frame 1 exported to Arnold in 0.092 sec. -# INFO : Render completed (100% done) -Application.RenderAllPasses("", "", "", "", "siRenderVerbosityDefault") +// INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0269\\test.scn", null, null); +SetValue("Passes.RenderOptions.ImageLockAspectRatio", false, null); +SetValue("Passes.RenderOptions.ImageWidth", 160, null); +SetValue("Passes.RenderOptions.ImageHeight", 120, null); +SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0269\\testrender.####.tif", null); +SetValue("Passes.Default_Pass.Main.Format", "tif", null); +SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, null); +SetValue("Passes.Arnold_Render_Options.enable_log_file", true, null); +SetValue("Passes.Arnold_Render_Options.log_level", 1, null); +SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0269", null); +SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", null); +SetValue("Passes.Arnold_Render_Options.save_texture_paths", false, null); +// INFO : Rendering pass 'Default_Pass'... +// INFO : Rendering frame 1 (0.0% done) +00:00:00 420MB | log started Mon Apr 3 23:52:08 2023 +00:00:00 420MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 420MB | running on Jens-PC, pid=11620 +00:00:00 420MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 432MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 432MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6242MB available) (NVLink:0) +00:00:00 432MB | Windows 10 (version 10.0, build 22621) +00:00:00 432MB | soft limit for open files is set at 2048 +00:00:00 432MB | +00:00:00 451MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 451MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 451MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 451MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 451MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 451MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 458MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 458MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +// INFO : [sitoa] Frame 1 exported to Arnold in 0.126 sec. +// INFO : [arnold] unloading 4 plugins +// INFO : [arnold] closing alembic_proc.dll ... +// INFO : [arnold] closing cryptomatte.dll ... +// INFO : [arnold] closing usd_proc.dll ... +// INFO : [arnold] closing sitoa_shaders.dll ... +// INFO : [arnold] unloading plugins done +// INFO : [arnold] Arnold shutdown +// INFO : Render completed (100% done) +RenderAllPasses(null, null, null, null, siRenderVerbosityDefault); Warning: return value of the executed script is not an integer -# INFO : Characters has been unloaded. -# INFO : polymatricksPlugin has been unloaded. -# INFO : [sitoa] SItoA 5.3.0 win has been unloaded. -# INFO : TransformUVsPlugin has been unloaded. -# INFO : FBX-XSI import/export Plug-in has been unloaded. -# INFO : Unfold3D Plugin has been unloaded. +// INFO : [sitoa] SItoA 7.1.4 win has been unloaded. +// INFO : Characters has been unloaded. +// INFO : polymatricksPlugin has been unloaded. +// INFO : TransformUVsPlugin has been unloaded. +// INFO : FBX-XSI import/export Plug-in has been unloaded. +// INFO : Unfold3D Plugin has been unloaded. diff --git a/testsuite/XSIProject/Scenes/test_0269/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0269/ref/reference.tif index 257da99..0a12f65 100644 Binary files a/testsuite/XSIProject/Scenes/test_0269/ref/reference.tif and b/testsuite/XSIProject/Scenes/test_0269/ref/reference.tif differ diff --git a/testsuite/XSIProject/Scenes/test_0274/README b/testsuite/XSIProject/Scenes/test_0274/README new file mode 100644 index 0000000..a8dd5d3 --- /dev/null +++ b/testsuite/XSIProject/Scenes/test_0274/README @@ -0,0 +1,5 @@ +Multi-out shaders + +Testing shaders and compounds with multiple outputs. + +author: Jens Lindgren diff --git a/testsuite/XSIProject/Scenes/test_0274/data/test.scn b/testsuite/XSIProject/Scenes/test_0274/data/test.scn new file mode 100644 index 0000000..766447f Binary files /dev/null and b/testsuite/XSIProject/Scenes/test_0274/data/test.scn differ diff --git a/testsuite/XSIProject/Scenes/test_0274/ref/reference.log b/testsuite/XSIProject/Scenes/test_0274/ref/reference.log new file mode 100644 index 0000000..60ad60a --- /dev/null +++ b/testsuite/XSIProject/Scenes/test_0274/ref/reference.log @@ -0,0 +1,313 @@ +======================================================= + Autodesk Softimage 13.2.163.0 +======================================================= + +License information: using [Processing] +00:00:00 350MB | log started Mon Apr 24 22:09:18 2023 +00:00:00 350MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 350MB | running on Jens-PC, pid=11360 +00:00:00 350MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 350MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 350MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6028MB available) (NVLink:0) +00:00:00 350MB | Windows 10 (version 10.0, build 22621) +00:00:00 350MB | soft limit for open files changed from 512 to 2048 +00:00:00 350MB | +00:00:00 350MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 350MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 350MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 350MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 350MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 350MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 350MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 351MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 351MB | sib_color_to_scalars.oso: sib_color_to_scalars +00:00:00 351MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 351MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 351MB | loaded 103 plugins from 1 lib(s) and 3 OSL shaders in 0:00.01 +00:00:00 351MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 351MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 352MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 352MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 352MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 369MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 369MB | loaded 5 plugins from 3 lib(s) in 0:00.08 +00:00:00 371MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 375MB | skipping already loaded plugin: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\sitoa_shaders.dll ... +00:00:00 375MB | no plugins loaded +00:00:00 376MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_shaders.mtd + + + + +00:00:00 376MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_operators.mtd +00:00:00 376MB | [metadata] loading metadata file: C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\arnold_imagers.mtd +00:00:00 377MB | +00:00:00 377MB | releasing resources +00:00:00 359MB | unloading 4 plugins +00:00:00 359MB | closing sitoa_shaders.dll ... +00:00:00 358MB | closing alembic_proc.dll ... +00:00:00 358MB | closing cryptomatte.dll ... +00:00:00 358MB | closing usd_proc.dll ... +00:00:00 354MB | unloading plugins done +00:00:00 354MB | Arnold shutdown +# INFO : [sitoa] SItoA 7.1.4 win loaded. +# INFO : [sitoa] Arnold 7.1.4.4 detected. +Application.RefreshCustomPreferences() +COMMAND: -processing -script "execute_test.js" -main main +# INFO : C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\ +>Loading: C:\Users\lindg\GitHub\sitoa\build\windows_x86_64\msvc_opt\si_13000\testsuite\test_0274\test.scn... +# INFO : 4034 - Loaded scene was created with build number: 13.2.163.0 - compatibility version: 1300 +Application.OpenScene("C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0274\\test.scn", "", "") +Application.SetValue("Passes.RenderOptions.ImageLockAspectRatio", False, "") +Application.SetValue("Passes.RenderOptions.ImageWidth", 160, "") +Application.SetValue("Passes.RenderOptions.ImageHeight", 120, "") +Application.SetValue("Passes.Default_Pass.Main.Filename", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0274\\testrender.####.tif", "") +Application.SetValue("Passes.Default_Pass.Main.Format", "tif", "") +Application.SetValue("Passes.Arnold_Render_Options.output_tiff_tiled", 0, "") +Application.SetValue("Passes.Arnold_Render_Options.enable_log_file", True, "") +Application.SetValue("Passes.Arnold_Render_Options.log_level", 1, "") +Application.SetValue("Passes.Arnold_Render_Options.output_file_tagdir_log", "C:\\Users\\lindg\\GitHub\\sitoa\\build\\windows_x86_64\\msvc_opt\\si_13000\\testsuite\\test_0274", "") +Application.SetValue("Passes.Arnold_Render_Options.textures_path", "C:\\Users\\lindg\\GitHub\\sitoa\\testsuite\\XSIProject\\Pictures", "") +Application.SetValue("Passes.Arnold_Render_Options.save_texture_paths", False, "") +# INFO : Rendering pass 'Default_Pass'... +# INFO : Rendering frame 1 (0.0% done) +00:00:00 429MB | log started Mon Apr 24 22:09:20 2023 +00:00:00 429MB | Arnold 7.1.4.4 [7cf296ca] windows x86_64 clang-10.0.1 oiio-2.4.1 osl-1.12.0 vdb-7.1.1 adlsdk-7.4.2.47 clmhub-3.1.1.43 rlm-14.2.5 optix-6.6.0 2023/03/09 16:52:48 +00:00:00 429MB | running on Jens-PC, pid=11360 +00:00:00 429MB | 1 x 13th Gen Intel(R) Core(TM) i5-13600K (20 cores, 20 logical) with 32535MB +00:00:00 442MB | NVIDIA driver version 528.24 (Optix 60805) +00:00:00 442MB | GPU 0: NVIDIA GeForce GTX 1070 @ 1771MHz (compute 6.1) with 8191MB (6025MB available) (NVLink:0) +00:00:00 442MB | Windows 10 (version 10.0, build 22621) +00:00:00 442MB | soft limit for open files is set at 2048 +00:00:00 442MB | +00:00:00 461MB | [color_manager_ocio] default ocio.config found in C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\../ocio/configs/arnold/config.ocio +00:00:00 461MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64 ... +00:00:00 461MB | sitoa_shaders.dll: mib_texture_remap uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: txt2d_image_explicit uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: txt2d_scalarimage_explicit uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: txt2d_gradient_v2 uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: txt3d_cellular_v3 uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: txt3d_checkerboard uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: txt3d_marble uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_texture_marble uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_texture_snow uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: txt3d_snow uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_texture2d_grid uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: txt2d_grid uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_attribute_boolean uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_attribute_color uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_attribute_integer uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_attribute_scalar uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_attribute_vector uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_attribute_transform uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_zbump uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_channel_picker uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_color_combine uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_hlsa_combine uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_hsva_combine uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_color_correction uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_color_balance uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_color_hls_adjust uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: mib_color_intensity uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_color_invert uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: rgba_keyer uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_scalar_invert uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_color_2mix uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_color_8mix uses Arnold 7.1.4.4 +00:00:00 461MB | sitoa_shaders.dll: sib_color_gradient uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_to_scalar uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_to_vector uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_to_boolean uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_rgb_to_hsv uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_hsv_to_rgb uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_integer_to_scalar uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_to_color uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_to_integer uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalars_to_vector uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_vector_to_scalar uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_space_conversion uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: Vector3ToVector2 uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: Vector2ToVector3 uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_math_basic uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_math_exponent uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_math_logic uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_math_unary uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_smoothrange uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: mib_color_average uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_interp_linear uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_inrange uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_math_basic uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_math_exponent uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_inrange uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_math_logic uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_math_unary uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_smoothrange uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_boolean_math_logic uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_boolean_negate uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_vector_math_scalar uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_vector_math_vector uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_atten_linear uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_math_curve uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_math_curve uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: Math_int_fmod uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_passthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_passthrought uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_passthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_integer_passthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_boolean_passthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_vector_passthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: BooleanPassthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: Color4Passthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: IntegerPassthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: MatrixPassthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: ScalarPassthrough uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: BooleanSwitch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: Color4Switch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: IntegerSwitch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: ScalarSwitch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: Vector3Switch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_switch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_switch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_vector_switch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_color_multi_switch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_scalar_multi_switch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_vector_multi_switch uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: mib_texture_lookup uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: map_lookup_color uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: map_lookup_scalar uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: map_lookup_integer uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: map_lookup_boolean uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: map_lookup_vector uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_vertex_color_alpha uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_texproj_lookup uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_image_clip uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_matte uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: sib_texturelayer uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: passthrough_filter uses Arnold 7.1.4.4 +00:00:00 462MB | sitoa_shaders.dll: closure uses Arnold 7.1.4.4 +00:00:00 462MB | sib_color_to_scalars.oso: sib_color_to_scalars +00:00:00 462MB | sib_vector_to_color.oso: sib_vector_to_color +00:00:00 462MB | sib_vector_to_scalars.oso: sib_vector_to_scalars +00:00:00 462MB | loaded 103 plugins from 1 lib(s) and 3 OSL shaders in 0:00.01 +00:00:00 462MB | loading plugins from C:\Users\lindg\GitHub\sitoa\dist\Softimage_2015\Addons\SItoA\Application\Plugins\bin\nt-x86-64\..\plugins ... +00:00:00 462MB | alembic_proc.dll: alembic uses Arnold 7.1.4.4 +00:00:00 462MB | cryptomatte.dll: cryptomatte uses Arnold 7.1.4.4 +00:00:00 462MB | cryptomatte.dll: cryptomatte_filter uses Arnold 7.1.4.4 +00:00:00 462MB | cryptomatte.dll: cryptomatte_manifest_driver uses Arnold 7.1.4.4 +00:00:00 469MB | usd_proc.dll: usd uses Arnold 7.1.4.4 +00:00:00 469MB | loaded 5 plugins from 3 lib(s) in 0:00.07 +# INFO : [sitoa] Frame 1 exported to Arnold in 0.134 sec. +# INFO : [arnold] unloading 4 plugins +# INFO : [arnold] closing sitoa_shaders.dll ... +# INFO : [arnold] closing alembic_proc.dll ... +# INFO : [arnold] closing cryptomatte.dll ... +# INFO : [arnold] closing usd_proc.dll ... +# INFO : [arnold] unloading plugins done +# INFO : [arnold] Arnold shutdown +# INFO : Render completed (100% done) +Application.RenderAllPasses("", "", "", "", "siRenderVerbosityDefault") +Warning: return value of the executed script is not an integer +# INFO : [sitoa] SItoA 7.1.4 win has been unloaded. +# INFO : Characters has been unloaded. +# INFO : polymatricksPlugin has been unloaded. +# INFO : TransformUVsPlugin has been unloaded. +# INFO : FBX-XSI import/export Plug-in has been unloaded. +# INFO : Unfold3D Plugin has been unloaded. + diff --git a/testsuite/XSIProject/Scenes/test_0274/ref/reference.tif b/testsuite/XSIProject/Scenes/test_0274/ref/reference.tif new file mode 100644 index 0000000..7fde14b Binary files /dev/null and b/testsuite/XSIProject/Scenes/test_0274/ref/reference.tif differ