123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- var Editor = function () {
- var SIGNALS = signals;
- this.signals = {
- // actions
- playAnimation: new SIGNALS.Signal(),
- stopAnimation: new SIGNALS.Signal(),
- // notifications
- themeChanged: new SIGNALS.Signal(),
- transformModeChanged: new SIGNALS.Signal(),
- snapChanged: new SIGNALS.Signal(),
- spaceChanged: new SIGNALS.Signal(),
- rendererChanged: new SIGNALS.Signal(),
- sceneGraphChanged: new SIGNALS.Signal(),
- cameraChanged: new SIGNALS.Signal(),
- objectSelected: new SIGNALS.Signal(),
- objectAdded: new SIGNALS.Signal(),
- objectChanged: new SIGNALS.Signal(),
- objectRemoved: new SIGNALS.Signal(),
- helperAdded: new SIGNALS.Signal(),
- helperRemoved: new SIGNALS.Signal(),
- materialChanged: new SIGNALS.Signal(),
- fogTypeChanged: new SIGNALS.Signal(),
- fogColorChanged: new SIGNALS.Signal(),
- fogParametersChanged: new SIGNALS.Signal(),
- windowResize: new SIGNALS.Signal()
- };
-
- this.config = new Config();
- this.storage = new Storage();
- this.loader = new Loader( this );
- this.scene = new THREE.Scene();
- this.sceneHelpers = new THREE.Scene();
- this.object = {};
- this.geometries = {};
- this.materials = {};
- this.textures = {};
- this.selected = null;
- this.helpers = {};
- };
- Editor.prototype = {
- setTheme: function ( value ) {
- document.getElementById( 'theme' ).href = value;
- this.signals.themeChanged.dispatch( value );
- },
- setScene: function ( scene ) {
- this.scene.name = scene.name;
- this.scene.userData = JSON.parse( JSON.stringify( scene.userData ) );
- // avoid render per object
- this.signals.sceneGraphChanged.active = false;
- while ( scene.children.length > 0 ) {
- this.addObject( scene.children[ 0 ] );
- }
- this.signals.sceneGraphChanged.active = true;
- this.signals.sceneGraphChanged.dispatch();
- },
- //
- addObject: function ( object ) {
- var scope = this;
- object.traverse( function ( child ) {
- if ( child.geometry !== undefined ) scope.addGeometry( child.geometry );
- if ( child.material !== undefined ) scope.addMaterial( child.material );
- scope.addHelper( child );
- } );
- this.scene.add( object );
- this.signals.objectAdded.dispatch( object );
- this.signals.sceneGraphChanged.dispatch();
- },
- setObjectName: function ( object, name ) {
- object.name = name;
- this.signals.sceneGraphChanged.dispatch();
- },
- removeObject: function ( object ) {
- if ( object.parent === undefined ) return; // avoid deleting the camera or scene
- if ( confirm( 'Delete ' + object.name + '?' ) === false ) return;
- var scope = this;
- object.traverse( function ( child ) {
- scope.removeHelper( child );
- } );
- object.parent.remove( object );
- this.signals.objectRemoved.dispatch( object );
- this.signals.sceneGraphChanged.dispatch();
- },
- addGeometry: function ( geometry ) {
- this.geometries[ geometry.uuid ] = geometry;
- },
- setGeometryName: function ( geometry, name ) {
- geometry.name = name;
- this.signals.sceneGraphChanged.dispatch();
- },
- addMaterial: function ( material ) {
- this.materials[ material.uuid ] = material;
- },
- setMaterialName: function ( material, name ) {
- material.name = name;
- this.signals.sceneGraphChanged.dispatch();
- },
- addTexture: function ( texture ) {
- this.textures[ texture.uuid ] = texture;
- },
- //
- addHelper: function () {
- var geometry = new THREE.SphereGeometry( 20, 4, 2 );
- var material = new THREE.MeshBasicMaterial( { color: 0xff0000 } );
- return function ( object ) {
- var helper;
- if ( object instanceof THREE.Camera ) {
- helper = new THREE.CameraHelper( object, 10 );
- } else if ( object instanceof THREE.PointLight ) {
- helper = new THREE.PointLightHelper( object, 10 );
- } else if ( object instanceof THREE.DirectionalLight ) {
- helper = new THREE.DirectionalLightHelper( object, 20 );
- } else if ( object instanceof THREE.SpotLight ) {
- helper = new THREE.SpotLightHelper( object, 10 );
- } else if ( object instanceof THREE.HemisphereLight ) {
- helper = new THREE.HemisphereLightHelper( object, 10 );
- } else {
- // no helper for this object type
- return;
- }
- var picker = new THREE.Mesh( geometry, material );
- picker.name = 'picker';
- picker.userData.object = object;
- picker.visible = false;
- helper.add( picker );
- this.sceneHelpers.add( helper );
- this.helpers[ object.id ] = helper;
- this.signals.helperAdded.dispatch( helper );
- };
- }(),
- removeHelper: function ( object ) {
- if ( this.helpers[ object.id ] !== undefined ) {
- var helper = this.helpers[ object.id ];
- helper.parent.remove( helper );
- delete this.helpers[ object.id ];
- this.signals.helperRemoved.dispatch( helper );
- }
- },
- //
- parent: function ( object, parent ) {
- if ( parent === undefined ) {
- parent = this.scene;
- }
- parent.add( object );
- this.signals.sceneGraphChanged.dispatch();
- },
- //
- select: function ( object ) {
- this.selected = object;
- if ( object !== null ) {
- this.config.setKey( 'selected', object.uuid );
- } else {
- this.config.setKey( 'selected', null );
- }
- this.signals.objectSelected.dispatch( object );
- },
- selectById: function ( id ) {
- var scope = this;
- this.scene.traverse( function ( child ) {
- if ( child.id === id ) {
- scope.select( child );
- }
- } );
- },
- selectByUuid: function ( uuid ) {
- var scope = this;
- this.scene.traverse( function ( child ) {
- if ( child.uuid === uuid ) {
- scope.select( child );
- }
- } );
- },
- deselect: function () {
- this.select( null );
- },
- // utils
- getObjectType: function ( object ) {
- var types = {
- 'Scene': THREE.Scene,
- 'PerspectiveCamera': THREE.PerspectiveCamera,
- 'AmbientLight': THREE.AmbientLight,
- 'DirectionalLight': THREE.DirectionalLight,
- 'HemisphereLight': THREE.HemisphereLight,
- 'PointLight': THREE.PointLight,
- 'SpotLight': THREE.SpotLight,
- 'SkinnedMesh': THREE.SkinnedMesh,
- 'Mesh': THREE.Mesh,
- 'Sprite': THREE.Sprite,
- 'Object3D': THREE.Object3D
- };
- for ( var type in types ) {
- if ( object instanceof types[ type ] ) return type;
- }
- },
- getGeometryType: function ( geometry ) {
- var types = {
- 'BoxGeometry': THREE.BoxGeometry,
- 'CircleGeometry': THREE.CircleGeometry,
- 'CylinderGeometry': THREE.CylinderGeometry,
- 'ExtrudeGeometry': THREE.ExtrudeGeometry,
- 'IcosahedronGeometry': THREE.IcosahedronGeometry,
- 'LatheGeometry': THREE.LatheGeometry,
- 'OctahedronGeometry': THREE.OctahedronGeometry,
- 'ParametricGeometry': THREE.ParametricGeometry,
- 'PlaneGeometry': THREE.PlaneGeometry,
- 'PolyhedronGeometry': THREE.PolyhedronGeometry,
- 'ShapeGeometry': THREE.ShapeGeometry,
- 'SphereGeometry': THREE.SphereGeometry,
- 'TetrahedronGeometry': THREE.TetrahedronGeometry,
- 'TextGeometry': THREE.TextGeometry,
- 'TorusGeometry': THREE.TorusGeometry,
- 'TorusKnotGeometry': THREE.TorusKnotGeometry,
- 'TubeGeometry': THREE.TubeGeometry,
- 'Geometry': THREE.Geometry,
- 'BufferGeometry': THREE.BufferGeometry
- };
- for ( var type in types ) {
- if ( geometry instanceof types[ type ] ) return type;
- }
- },
- getMaterialType: function ( material ) {
- var types = {
- 'LineBasicMaterial': THREE.LineBasicMaterial,
- 'LineDashedMaterial': THREE.LineDashedMaterial,
- 'MeshBasicMaterial': THREE.MeshBasicMaterial,
- 'MeshDepthMaterial': THREE.MeshDepthMaterial,
- 'MeshFaceMaterial': THREE.MeshFaceMaterial,
- 'MeshLambertMaterial': THREE.MeshLambertMaterial,
- 'MeshNormalMaterial': THREE.MeshNormalMaterial,
- 'MeshPhongMaterial': THREE.MeshPhongMaterial,
- 'ParticleSystemMaterial': THREE.ParticleSystemMaterial,
- 'ShaderMaterial': THREE.ShaderMaterial,
- 'SpriteCanvasMaterial': THREE.SpriteCanvasMaterial,
- 'SpriteMaterial': THREE.SpriteMaterial,
- 'Material': THREE.Material
- };
- for ( var type in types ) {
- if ( material instanceof types[ type ] ) return type;
- }
- }
- }
|