home *** CD-ROM | disk | FTP | other *** search
/ GameStar Special 2004 January / GSSH0104TT.iso / Extras / Tron20 / tron_tools.exe / TRON_Tools / Tools / Plugins / LithTechModelExportOptions.mel < prev    next >
Encoding:
Text File  |  2003-03-05  |  5.1 KB  |  147 lines

  1. // this script posts the lta model exporter file translator options.
  2. // the optionsString is of the form:
  3. //    varName1=value1;varName2=value2;...
  4. //
  5. // parameters:
  6. //    $parent - the elf parent layout for this options layout.
  7. //              it is always a scrollLayout.
  8. //    $action - the action that is to be performed with this invokation
  9. //              of this proc.  valid actions are:
  10. //                  "query" - construct the options string and pass
  11. //                            it to the resultCallback.
  12. //                  "post" - post all the elf controls.
  13. //    $initialSettings - the current options string in effect at the
  14. //                       time this script is invoked.
  15. //    $resultCallback - this is the proc to be called with the result
  16. //                      string.  resultCallback( string $optionsString )
  17. //
  18. // returns:
  19. //    1 if successful
  20. //    0 on failure
  21.  
  22. global proc LithTechModelExportGetPath( string $buttonPath, string $dirPath, string $notUsed )
  23. {
  24.     textFieldButtonGrp -edit -fileName $dirPath $buttonPath;
  25. }
  26.  
  27. global proc int LithTechModelExportOptions ( string $parent, string $action, string $initialSettings, string $resultCallback )
  28. {
  29.     int $result = 0;
  30.     
  31.     if( $action == "post" )
  32.     {
  33.         setParent $parent;
  34.  
  35.         columnLayout -adjustableColumn true mainLayout;
  36.             textFieldGrp -label "Animation Name:" -text "baseAnim" animName;
  37.             floatFieldGrp -label "Scale Modifier:" -value1 1.0 -precision 3 scale;
  38.             checkBox -label "Ignore Bind Pose" -align "left" -value off ignoreBindPose;
  39.             checkBox -label "Export Normals" -align "left" -value on exportNormals;
  40.             checkBox -label "Export World Node" -align "left" -value on exportWorldNode;
  41.             checkBox -label "Use Playback Range" -align "left" -value on usePlaybackRange;
  42.             checkBox -label "Use Maya Texture Information" -align "left" -value off -onCommand "textFieldButtonGrp -edit -enable true baseTexPath" -offCommand "textFieldButtonGrp -edit -enable false baseTexPath" useTextureInfo;
  43.             string $texPathCtl = `textFieldButtonGrp -enable false -label "Base Texture Path:" -fileName "" -buttonLabel "..." baseTexPath`;
  44.             string $texPathButtonCmd = ( "fileBrowserDialog -m 4 -an \"\" -fc \"LithTechModelExportGetPath " + $texPathCtl + "\"" );
  45.             textFieldButtonGrp -edit -buttonCommand $texPathButtonCmd baseTexPath;
  46.  
  47.         // now set the current settings
  48.         string $currentOptions = $initialSettings;
  49.         string $optionList[];
  50.         string $optionBreakDown[];
  51.         int $index;
  52.  
  53.         if( size( $currentOptions ) > 0 )
  54.         {
  55.             tokenize( $currentOptions, ";", $optionList );
  56.  
  57.             for( $index = 0; $index < size($optionList); $index++ )
  58.             {
  59.                 tokenize( $optionList[$index], "=", $optionBreakDown );
  60.  
  61.                 if( $optionBreakDown[0] == "useTextureInfo" )
  62.                 {
  63.                     if( $optionBreakDown[1] == "0" )
  64.                     {
  65.                         checkBox -edit -value off useTextureInfo;
  66.                         textFieldButtonGrp -edit -enable false baseTexPath;
  67.                     }
  68.                     else
  69.                     {
  70.                         checkBox -edit -value on useTextureInfo;
  71.                         textFieldButtonGrp -edit -enable true baseTexPath;
  72.                     }
  73.                 }
  74.  
  75.                 if( $optionBreakDown[0] == "baseTexPath" )
  76.                 {
  77.                     textFieldButtonGrp -edit -fileName $optionBreakDown[1] baseTexPath;
  78.                 }
  79.  
  80.                 if( $optionBreakDown[0] == "usePlaybackRange" )
  81.                 {
  82.                     if( $optionBreakDown[1] == "0" )
  83.                         checkBox -edit -value off usePlaybackRange;
  84.                     else
  85.                         checkBox -edit -value on usePlaybackRange;
  86.                 }
  87.  
  88.                 if( $optionBreakDown[0] == "ignoreBindPose" )
  89.                 {
  90.                     if( $optionBreakDown[1] == "0" )
  91.                         checkBox -edit -value off ignoreBindPose;
  92.                     else
  93.                         checkBox -edit -value on ignoreBindPose;
  94.                 }
  95.  
  96.                 if( $optionBreakDown[0] == "exportNormals" )
  97.                 {
  98.                     if( $optionBreakDown[1] == "0" )
  99.                         checkBox -edit -value off exportNormals;
  100.                     else
  101.                         checkBox -edit -value on exportNormals;
  102.                 }
  103.  
  104.                 if( $optionBreakDown[0] == "exportWorldNode" )
  105.                 {
  106.                     if( $optionBreakDown[1] == "0" )
  107.                         checkBox -edit -value off exportWorldNode;
  108.                     else
  109.                         checkBox -edit -value on exportWorldNode;
  110.                 }
  111.  
  112.                 if( $optionBreakDown[0] == "scale" )
  113.                 {
  114.                     float $tmpFloat = $optionBreakDown[1];
  115.                     floatFieldGrp -edit -value1 $tmpFloat scale;
  116.                 }
  117.  
  118.                 if( $optionBreakDown[0] == "animName" )
  119.                 {
  120.                     textFieldGrp -edit -text $optionBreakDown[1] animName;
  121.                 }
  122.             }
  123.         }
  124.  
  125.         $result = 1;
  126.     }
  127.     else if( $action == "query" )
  128.     {
  129.         string $currentOptions;
  130.  
  131.         $currentOptions += ( "useTextureInfo=" + `checkBox -query -value useTextureInfo` );
  132.         $currentOptions += ( ";baseTexPath=" + `textFieldButtonGrp -query -fileName baseTexPath` );
  133.         $currentOptions += ( ";scale=" + `floatFieldGrp -query -value1 scale` );
  134.         $currentOptions += ( ";animName=" + `textFieldGrp -query -text animName` );
  135.         $currentOptions += ( ";usePlaybackRange=" + `checkBox -query -value usePlaybackRange` );
  136.         $currentOptions += ( ";ignoreBindPose=" + `checkBox -query -value ignoreBindPose` );
  137.         $currentOptions += ( ";exportNormals=" + `checkBox -query -value exportNormals` );
  138.         $currentOptions += ( ";exportWorldNode=" + `checkBox -query -value exportWorldNode` );
  139.  
  140.         eval( $resultCallback + " \"" + $currentOptions + "\"" );
  141.  
  142.         $result = 1;
  143.     }
  144.  
  145.     return $result;
  146. }
  147.