Doodle3D-Slicer/three.js-master/editor/js/Sidebar.Script.js
2015-06-12 15:58:26 +02:00

122 lines
2.3 KiB
JavaScript
Executable File

/**
* @author mrdoob / http://mrdoob.com/
*/
Sidebar.Script = function ( editor ) {
var signals = editor.signals;
var container = new UI.CollapsiblePanel();
container.setCollapsed( editor.config.getKey( 'ui/sidebar/script/collapsed' ) );
container.onCollapsedChange( function ( boolean ) {
editor.config.setKey( 'ui/sidebar/script/collapsed', boolean );
} );
container.setDisplay( 'none' );
container.addStatic( new UI.Text( 'Script' ).setTextTransform( 'uppercase' ) );
container.add( new UI.Break() );
//
var scriptsContainer = new UI.Panel();
container.add( scriptsContainer );
var newScript = new UI.Button( 'New' );
newScript.onClick( function () {
var script = { name: '', source: 'function update( event ) {}' };
editor.addScript( editor.selected, script );
} );
container.add( newScript );
/*
var loadScript = new UI.Button( 'Load' );
loadScript.setMarginLeft( '4px' );
container.add( loadScript );
*/
//
function update() {
scriptsContainer.clear();
var object = editor.selected;
var scripts = editor.scripts[ object.uuid ];
if ( scripts !== undefined ) {
for ( var i = 0; i < scripts.length; i ++ ) {
( function ( object, script ) {
var name = new UI.Input( script.name ).setWidth( '130px' ).setFontSize( '12px' );
name.onChange( function () {
script.name = this.getValue();
signals.scriptChanged.dispatch();
} );
scriptsContainer.add( name );
var edit = new UI.Button( 'Edit' );
edit.setMarginLeft( '4px' );
edit.onClick( function () {
signals.editScript.dispatch( object, script );
} );
scriptsContainer.add( edit );
var remove = new UI.Button( 'Remove' );
remove.setMarginLeft( '4px' );
remove.onClick( function () {
if ( confirm( 'Are you sure?' ) ) {
editor.removeScript( editor.selected, script );
}
} );
scriptsContainer.add( remove );
scriptsContainer.add( new UI.Break() );
} )( object, scripts[ i ] )
}
}
}
// signals
signals.objectSelected.add( function ( object ) {
if ( object !== null ) {
container.setDisplay( 'block' );
update();
} else {
container.setDisplay( 'none' );
}
} );
signals.scriptAdded.add( update );
signals.scriptRemoved.add( update );
return container;
};