mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-04-23 13:25:36 +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
235
Templates/BaseGame/game/tools/convexEditor/main.tscript
Normal file
235
Templates/BaseGame/game/tools/convexEditor/main.tscript
Normal file
|
|
@ -0,0 +1,235 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// 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 initializeConvexEditor()
|
||||
{
|
||||
echo(" % - Initializing Sketch Tool");
|
||||
|
||||
exec( "./convexEditor.tscript" );
|
||||
exec( "./convexEditorGui.gui" );
|
||||
exec( "./convexEditorToolbar.ed.gui" );
|
||||
exec( "./convexEditorGui.tscript" );
|
||||
exec( "./convexEditorSidebarGui.gui" );
|
||||
exec( "./materials.tscript" );
|
||||
|
||||
ConvexEditorGui.setVisible( false );
|
||||
ConvexEditorOptionsWindow.setVisible( false );
|
||||
ConvexEditorTreeWindow.setVisible( false );
|
||||
ConvexEditorToolbar.setVisible( false );
|
||||
ConvexEditorOptionsWindow.setVisible( false );
|
||||
|
||||
EditorGui.add( ConvexEditorGui );
|
||||
EditorGui.add( ConvexEditorOptionsWindow );
|
||||
EditorGui.add( ConvexEditorTreeWindow );
|
||||
EditorGui.add( ConvexEditorToolbar );
|
||||
EditorGui.add( ConvexEditorOptionsWindow );
|
||||
|
||||
new ScriptObject( ConvexEditorPlugin )
|
||||
{
|
||||
superClass = "EditorPlugin";
|
||||
editorGui = ConvexEditorGui;
|
||||
};
|
||||
|
||||
// Note that we use the WorldEditor's Toolbar.
|
||||
|
||||
%map = new ActionMap();
|
||||
%map.bindCmd( keyboard, "1", "ConvexEditorNoneModeBtn.performClick();", "" ); // Select
|
||||
%map.bindCmd( keyboard, "2", "ConvexEditorMoveModeBtn.performClick();", "" ); // Move
|
||||
%map.bindCmd( keyboard, "3", "ConvexEditorRotateModeBtn.performClick();", "" );// Rotate
|
||||
%map.bindCmd( keyboard, "4", "ConvexEditorScaleModeBtn.performClick();", "" ); // Scale
|
||||
ConvexEditorPlugin.map = %map;
|
||||
|
||||
ConvexEditorPlugin.initSettings();
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::onWorldEditorStartup( %this )
|
||||
{
|
||||
// Add ourselves to the window menu.
|
||||
%accel = EditorGui.addToEditorsMenu( "Sketch Tool", "", ConvexEditorPlugin );
|
||||
|
||||
// Add ourselves to the ToolsToolbar
|
||||
%tooltip = "Sketch Tool (" @ %accel @ ")";
|
||||
EditorGui.addToToolsToolbar( "ConvexEditorPlugin", "ConvexEditorPalette", expandFilename("tools/convexEditor/images/convex-editor-btn"), %tooltip );
|
||||
|
||||
//connect editor windows
|
||||
GuiWindowCtrl::attach( ConvexEditorOptionsWindow, ConvexEditorTreeWindow);
|
||||
|
||||
// Allocate our special menu.
|
||||
// It will be added/removed when this editor is activated/deactivated.
|
||||
|
||||
if ( !isObject( ConvexActionsMenu ) )
|
||||
{
|
||||
singleton PopupMenu( ConvexActionsMenu )
|
||||
{
|
||||
superClass = "MenuBuilder";
|
||||
|
||||
barTitle = "Sketch";
|
||||
|
||||
Item[0] = "Hollow Selected Shape" TAB "" TAB "ConvexEditorGui.hollowSelection();";
|
||||
item[1] = "Recenter Selected Shape" TAB "" TAB "ConvexEditorGui.recenterSelection();";
|
||||
};
|
||||
}
|
||||
|
||||
%this.popupMenu = ConvexActionsMenu;
|
||||
|
||||
exec( "./convexEditorSettingsTab.ed.gui" );
|
||||
//ESettingsWindow.addTabPage( EConvexEditorSettingsPage );
|
||||
|
||||
ESettingsWindow.addEditorSettingsPage("ConvexEditor", "Convex Editor");
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::onActivated( %this )
|
||||
{
|
||||
%this.readSettings();
|
||||
|
||||
EditorGui.bringToFront( ConvexEditorGui );
|
||||
ConvexEditorGui.setVisible( true );
|
||||
ConvexEditorToolbar.setVisible( true );
|
||||
ConvexEditorOptionsWindow.setVisible( true );
|
||||
ConvexEditorGui.makeFirstResponder( true );
|
||||
%this.map.push();
|
||||
|
||||
// Set the status bar here until all tool have been hooked up
|
||||
EditorGuiStatusBar.setInfo( "Sketch Tool." );
|
||||
EditorGuiStatusBar.setSelection( "" );
|
||||
|
||||
// Add our menu.
|
||||
EditorGui.menuBar.insert( ConvexActionsMenu, EditorGui.menuBar.dynamicItemInsertPos );
|
||||
|
||||
// Sync the pallete button state with the gizmo mode.
|
||||
%mode = GlobalGizmoProfile.mode;
|
||||
switch$ (%mode)
|
||||
{
|
||||
case "None":
|
||||
ConvexEditorNoneModeBtn.performClick();
|
||||
case "Move":
|
||||
ConvexEditorMoveModeBtn.performClick();
|
||||
case "Rotate":
|
||||
ConvexEditorRotateModeBtn.performClick();
|
||||
case "Scale":
|
||||
ConvexEditorScaleModeBtn.performClick();
|
||||
}
|
||||
|
||||
Parent::onActivated( %this );
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::onDeactivated( %this )
|
||||
{
|
||||
%this.writeSettings();
|
||||
|
||||
ConvexEditorGui.setVisible( false );
|
||||
ConvexEditorOptionsWindow.setVisible( false );
|
||||
ConvexEditorTreeWindow.setVisible( false );
|
||||
ConvexEditorOptionsWindow.setVisible( false );
|
||||
ConvexEditorToolbar.setVisible( false );
|
||||
%this.map.pop();
|
||||
|
||||
// Remove our menu.
|
||||
EditorGui.menuBar.remove( ConvexActionsMenu );
|
||||
|
||||
Parent::onDeactivated( %this );
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::onEditMenuSelect( %this, %editMenu )
|
||||
{
|
||||
%hasSelection = false;
|
||||
|
||||
if ( ConvexEditorGui.hasSelection() )
|
||||
%hasSelection = true;
|
||||
|
||||
%editMenu.enableItem( 3, false ); // Cut
|
||||
%editMenu.enableItem( 4, false ); // Copy
|
||||
%editMenu.enableItem( 5, false ); // Paste
|
||||
%editMenu.enableItem( 6, %hasSelection ); // Delete
|
||||
%editMenu.enableItem( 8, %hasSelection ); // Deselect
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::handleDelete( %this )
|
||||
{
|
||||
ConvexEditorGui.handleDelete();
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::handleDeselect( %this )
|
||||
{
|
||||
ConvexEditorGui.handleDeselect();
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::handleCut( %this )
|
||||
{
|
||||
//WorldEditorInspectorPlugin.handleCut();
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::handleCopy( %this )
|
||||
{
|
||||
//WorldEditorInspectorPlugin.handleCopy();
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::handlePaste( %this )
|
||||
{
|
||||
//WorldEditorInspectorPlugin.handlePaste();
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::isDirty( %this )
|
||||
{
|
||||
return ConvexEditorGui.isDirty;
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::onSaveMission( %this, %missionFile )
|
||||
{
|
||||
if( ConvexEditorGui.isDirty )
|
||||
{
|
||||
getScene(0).save( %missionFile );
|
||||
ConvexEditorGui.isDirty = false;
|
||||
}
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// Settings
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
function ConvexEditorPlugin::initSettings( %this )
|
||||
{
|
||||
EditorSettings.beginGroup( "ConvexEditor", true );
|
||||
EditorSettings.setDefaultValue( "MaterialName", "Grid_512_Orange" );
|
||||
EditorSettings.endGroup();
|
||||
}
|
||||
|
||||
function ESettingsWindow::getConvexEditorSettings(%this)
|
||||
{
|
||||
SettingsInspector.startGroup("General");
|
||||
SettingsInspector.addSettingsField("ConvexEditor/MaterialName", "Default Material Name", "string", "");
|
||||
SettingsInspector.endGroup();
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::readSettings( %this )
|
||||
{
|
||||
EditorSettings.beginGroup( "ConvexEditor", true );
|
||||
ConvexEditorGui.materialName = EditorSettings.value("MaterialName");
|
||||
EditorSettings.endGroup();
|
||||
}
|
||||
|
||||
function ConvexEditorPlugin::writeSettings( %this )
|
||||
{
|
||||
EditorSettings.beginGroup( "ConvexEditor", true );
|
||||
EditorSettings.setValue( "MaterialName", ConvexEditorGui.materialName );
|
||||
EditorSettings.endGroup();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue