mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-23 21:35:34 +00:00
Parametrize script extension, default to 'tscript'
This commit is contained in:
parent
b8b62292bd
commit
099dd4f1f3
542 changed files with 774 additions and 783 deletions
204
Templates/BaseGame/game/tools/assetBrowser/main.tscript
Normal file
204
Templates/BaseGame/game/tools/assetBrowser/main.tscript
Normal file
|
|
@ -0,0 +1,204 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) 2012 GarageGames, LLC
|
||||
//
|
||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
// of this software and associated documentation files (the "Software"), to
|
||||
// deal in the Software without restriction, including without limitation the
|
||||
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
// sell copies of the Software, and to permit persons to whom the Software is
|
||||
// furnished to do so, subject to the following conditions:
|
||||
//
|
||||
// The above copyright notice and this permission notice shall be included in
|
||||
// all copies or substantial portions of the Software.
|
||||
//
|
||||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
// IN THE SOFTWARE.
|
||||
//-----------------------------------------------------------------------------
|
||||
function initializeAssetBrowser()
|
||||
{
|
||||
echo(" % - Initializing Asset Browser");
|
||||
|
||||
$AssetBrowser::importConfigsFile = "tools/assetBrowser/assetImportConfigs.xml";
|
||||
$AssetBrowser::collectionSetsFile = "tools/assetBrowser/searchCollectionSets.xml";
|
||||
$AssetBrowser::currentImportConfig = "";
|
||||
|
||||
if(!isObject(AssetFilterTypeList))
|
||||
{
|
||||
new ArrayObject(AssetFilterTypeList);
|
||||
|
||||
AssetFilterTypeList.add("All");
|
||||
AssetFilterTypeList.add("ComponentAsset");
|
||||
AssetFilterTypeList.add("CppAsset");
|
||||
AssetFilterTypeList.add("CubemapAsset");
|
||||
AssetFilterTypeList.add("GameObjectAsset");
|
||||
AssetFilterTypeList.add("GUIAsset");
|
||||
AssetFilterTypeList.add("ImageAsset");
|
||||
AssetFilterTypeList.add("LevelAsset");
|
||||
AssetFilterTypeList.add("MaterialAsset");
|
||||
AssetFilterTypeList.add("ParticleAsset");
|
||||
AssetFilterTypeList.add("PostFXAsset");
|
||||
AssetFilterTypeList.add("ScriptAsset");
|
||||
AssetFilterTypeList.add("ShapeAsset");
|
||||
AssetFilterTypeList.add("ShapeAnimationAsset");
|
||||
AssetFilterTypeList.add("SoundAsset");
|
||||
AssetFilterTypeList.add("StateMachineAsset");
|
||||
AssetFilterTypeList.add("TerrainAsset");
|
||||
AssetFilterTypeList.add("TerrainMaterialAsset");
|
||||
}
|
||||
|
||||
exec("./scripts/profiles.tscript");
|
||||
|
||||
exec("./guis/assetBrowser.gui");
|
||||
exec("./guis/addModuleWindow.gui");
|
||||
exec("./guis/gameObjectCreator.gui");
|
||||
exec("./guis/newAsset.gui");
|
||||
exec("./guis/newComponentAsset.gui");
|
||||
exec("./guis/editAsset.gui");
|
||||
exec("./guis/assetImport.gui");
|
||||
exec("./guis/assetImportConfigEditor.gui");
|
||||
exec("./guis/selectModule.gui");
|
||||
exec("./guis/selectPath.gui");
|
||||
exec("./guis/editModule.gui");
|
||||
exec("./guis/importTemplateModules.gui");
|
||||
exec("./guis/assetPreviewButtonsTemplate.gui");
|
||||
exec("./guis/newFolder.gui");
|
||||
exec("./guis/assetImportLog.gui");
|
||||
exec("./guis/looseFileAudit.gui");
|
||||
exec("./guis/assetNameEdit.gui");
|
||||
exec("./guis/createNewCollectionSet.gui");
|
||||
|
||||
exec("./scripts/assetBrowser.tscript");
|
||||
exec("./scripts/popupMenus.tscript");
|
||||
exec("./scripts/addModuleWindow.tscript");
|
||||
exec("./scripts/assetImport.tscript");
|
||||
exec("./scripts/assetImportConfig.tscript");
|
||||
exec("./scripts/gameObjectCreator.tscript");
|
||||
exec("./scripts/newAsset.tscript");
|
||||
exec("./scripts/editAsset.tscript");
|
||||
exec("./scripts/editModule.tscript");
|
||||
exec("./scripts/selectModule.tscript");
|
||||
exec("./scripts/assetImportConfigEditor.tscript");
|
||||
exec("./scripts/directoryHandling.tscript");
|
||||
exec("./scripts/selectPath.tscript");
|
||||
exec("./scripts/looseFileAudit.tscript");
|
||||
|
||||
//Processing for the different asset types
|
||||
exec("./scripts/assetTypes/component.tscript");
|
||||
exec("./scripts/assetTypes/cpp.tscript");
|
||||
exec("./scripts/assetTypes/gameObject.tscript");
|
||||
exec("./scripts/assetTypes/gui.tscript");
|
||||
exec("./scripts/assetTypes/image.tscript");
|
||||
exec("./scripts/assetTypes/level.tscript");
|
||||
exec("./scripts/assetTypes/material.tscript");
|
||||
exec("./scripts/assetTypes/postFX.tscript");
|
||||
exec("./scripts/assetTypes/script.tscript");
|
||||
exec("./scripts/assetTypes/shape.tscript");
|
||||
exec("./scripts/assetTypes/shapeAnimation.tscript");
|
||||
exec("./scripts/assetTypes/sound.tscript");
|
||||
exec("./scripts/assetTypes/stateMachine.tscript");
|
||||
exec("./scripts/assetTypes/cubemap.tscript");
|
||||
exec("./scripts/assetTypes/folder.tscript");
|
||||
exec("./scripts/assetTypes/terrain.tscript");
|
||||
exec("./scripts/assetTypes/terrainMaterial.tscript");
|
||||
exec("./scripts/assetTypes/datablockObjects.tscript");
|
||||
exec("./scripts/assetTypes/looseFiles.tscript");
|
||||
exec("./scripts/assetTypes/prefab.tscript");
|
||||
|
||||
new ScriptObject( AssetBrowserPlugin )
|
||||
{
|
||||
superClass = "EditorPlugin";
|
||||
};
|
||||
|
||||
Input::GetEventManager().subscribe( AssetBrowser, "BeginDropFiles" );
|
||||
Input::GetEventManager().subscribe( AssetBrowser, "DropFile" );
|
||||
Input::GetEventManager().subscribe( AssetBrowser, "EndDropFiles" );
|
||||
|
||||
AssetBrowserPlugin.initSettings();
|
||||
|
||||
if(!isObject(AssetImportSettings))
|
||||
{
|
||||
new Settings(AssetImportSettings)
|
||||
{
|
||||
file = $AssetBrowser::importConfigsFile;
|
||||
};
|
||||
}
|
||||
AssetImportSettings.read();
|
||||
|
||||
ImportAssetWindow.reloadImportOptionConfigs();
|
||||
|
||||
//CollectionSets
|
||||
if(!isObject(AssetBrowserCollectionSets))
|
||||
{
|
||||
new Settings(AssetBrowserCollectionSets)
|
||||
{
|
||||
file = $AssetBrowser::collectionSetsFile;
|
||||
};
|
||||
}
|
||||
AssetBrowserCollectionSets.read();
|
||||
|
||||
if(!isObject(ImportAssetWindow.importTempDirHandler))
|
||||
ImportAssetWindow.importTempDirHandler = makedirectoryHandler(0, "", "");
|
||||
|
||||
if(!isObject(ImportActivityLog))
|
||||
new ArrayObject(ImportActivityLog);
|
||||
|
||||
if(!isObject(AssetSearchTerms))
|
||||
new ArrayObject(AssetSearchTerms);
|
||||
|
||||
ImportAssetWindow.importingFilesArray = new ArrayObject();
|
||||
|
||||
ImportAssetWindow.importer = new AssetImporter();
|
||||
|
||||
AssetBrowser.buildPopupMenus();
|
||||
|
||||
//Force everything to initialize if other things need to reference it's behavior before we're displayed(usually other tools)
|
||||
AssetBrowser.showDialog();
|
||||
AssetBrowser.hideDialog();
|
||||
}
|
||||
|
||||
function AssetBrowserPlugin::onWorldEditorStartup( %this )
|
||||
{
|
||||
// Add ourselves to the toolbar.
|
||||
AssetBrowser.addToolbarButton();
|
||||
}
|
||||
|
||||
function AssetBrowserPlugin::initSettings( %this )
|
||||
{
|
||||
EditorSettings.beginGroup( "Assets", true );
|
||||
|
||||
EditorSettings.setDefaultValue( "AssetImporDefaultConfig", "DefaultConfig" );
|
||||
EditorSettings.setDefaultValue( "AutoImport", 1 );
|
||||
|
||||
EditorSettings.beginGroup( "Browser" );
|
||||
|
||||
EditorSettings.setDefaultValue( "showCoreModule", 0 );
|
||||
EditorSettings.setDefaultValue( "showToolsModule", 0 );
|
||||
EditorSettings.setDefaultValue( "showOnlyPopulatedModule", 0 );
|
||||
EditorSettings.setDefaultValue( "showFolders", 1 );
|
||||
EditorSettings.setDefaultValue( "showEmptyFolders", 1 );
|
||||
EditorSettings.setDefaultValue( "previewTileSize", 1.0 );
|
||||
|
||||
EditorSettings.endGroup();
|
||||
EditorSettings.endGroup();
|
||||
|
||||
EditorSettings.beginGroup( "AssetManagement", true );
|
||||
EditorSettings.beginGroup( "Assets" );
|
||||
|
||||
EditorSettings.setDefaultValue( "promptOnRename", 1 );
|
||||
|
||||
EditorSettings.endGroup();
|
||||
EditorSettings.endGroup();
|
||||
}
|
||||
|
||||
function TSStatic::onConstructField(%this, %fieldName, %fieldLabel, %fieldTypeName, %fieldDesc, %fieldDefaultVal, %fieldDataVals, %callbackName, %ownerObj)
|
||||
{
|
||||
%inspector = %this.getParent();
|
||||
%makeCommand = %this @ ".build" @ %fieldTypeName @ "Field(\""@ %fieldName @ "\",\"" @ %fieldLabel @ "\",\"" @ %fieldDesc @ "\",\"" @
|
||||
%fieldDefaultVal @ "\",\"" @ %fieldDataVals @ "\",\"" @ %inspector @ "." @ %callbackName @ "\",\"" @ %ownerObj @"\");";
|
||||
eval(%makeCommand);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue