1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
/**
* @author dforrer / https://github.com/dforrer
* Developed as part of a project at University of Applied Sciences and Arts Northwestern Switzerland (www.fhnw.ch)
*/
/**
* @param editor Editor
* @param object THREE.Object3D
* @param newParent THREE.Object3D
* @param newBefore THREE.Object3D
* @constructor
*/
var MoveObjectCommand = function ( editor, object, newParent, newBefore ) {
Command.call( this, editor );
this.type = 'MoveObjectCommand';
this.name = 'Move Object';
this.object = object;
this.oldParent = ( object !== undefined ) ? object.parent : undefined;
this.oldIndex = ( this.oldParent !== undefined ) ? this.oldParent.children.indexOf( this.object ) : undefined;
this.newParent = newParent;
if ( newBefore !== undefined ) {
this.newIndex = ( newParent !== undefined ) ? newParent.children.indexOf( newBefore ) : undefined;
} else {
this.newIndex = ( newParent !== undefined ) ? newParent.children.length : undefined;
}
if ( this.oldParent === this.newParent && this.newIndex > this.oldIndex ) {
this.newIndex --;
}
this.newBefore = newBefore;
};
MoveObjectCommand.prototype = {
execute: function () {
this.oldParent.remove( this.object );
var children = this.newParent.children;
children.splice( this.newIndex, 0, this.object );
this.object.parent = this.newParent;
this.editor.signals.sceneGraphChanged.dispatch();
},
undo: function () {
this.newParent.remove( this.object );
var children = this.oldParent.children;
children.splice( this.oldIndex, 0, this.object );
this.object.parent = this.oldParent;
this.editor.signals.sceneGraphChanged.dispatch();
},
toJSON: function () {
var output = Command.prototype.toJSON.call( this );
output.objectUuid = this.object.uuid;
output.newParentUuid = this.newParent.uuid;
output.oldParentUuid = this.oldParent.uuid;
output.newIndex = this.newIndex;
output.oldIndex = this.oldIndex;
return output;
},
fromJSON: function ( json ) {
Command.prototype.fromJSON.call( this, json );
this.object = this.editor.objectByUuid( json.objectUuid );
this.oldParent = this.editor.objectByUuid( json.oldParentUuid );
if ( this.oldParent === undefined ) {
this.oldParent = this.editor.scene;
}
this.newParent = this.editor.objectByUuid( json.newParentUuid );
if ( this.newParent === undefined ) {
this.newParent = this.editor.scene;
}
this.newIndex = json.newIndex;
this.oldIndex = json.oldIndex;
}
};
|