123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- /**
- * @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.execute( new AddScriptCommand( 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;
- if ( object === null ) {
- return;
- }
- 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 () {
- editor.execute( new SetScriptValueCommand( editor.selected, script, 'name', this.getValue() ) );
- } );
- 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.execute( new RemoveScriptCommand( 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 );
- signals.scriptChanged.add( update );
- return container;
- };
|