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 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
/**
* @author lxxxvi / https://github.com/lxxxvi
* Developed as part of a project at University of Applied Sciences and Arts Northwestern Switzerland (www.fhnw.ch)
*/
function mergeParams( defaults, customParams ) {
if ( typeof customParams == "undefined" ) return defaults;
var defaultKeys = Object.keys( defaults );
var params = {};
defaultKeys.map( function( key ) {
params[ key ] = customParams[ key ] || defaultKeys[ key ];
} );
return params;
}
function getGeometryParams( type, customParams ) {
if ( typeof customParams != "undefined" &&
typeof customParams.geometry != "undefined" &&
typeof customParams.geometry.parameters != "undefined" ) {
var customGeometryParams = customParams.geometry.parameters;
}
var defaults = {};
switch ( type ) {
case "BoxGeometry":
defaults = { width: 100, height: 100, depth: 100, widthSegments: 1, heightSegments: 1, depthSegments: 1 };
break;
case "SphereGeometry":
defaults = { radius: 75, widthSegments: 32, heightSegments: 16, phiStart: 0, phiLength: 6.28, thetaStart: 0.00, thetaLength: 3.14 };
break;
default:
console.error( "Type '" + type + "' is not known while creating params" );
return false;
}
return mergeParams( defaults, customGeometryParams );
}
function getGeometry( type, customParams ) {
var params = getGeometryParams( type, customParams );
switch ( type ) {
case "BoxGeometry":
return new THREE.BoxGeometry(
params[ 'width' ],
params[ 'height' ],
params[ 'depth' ],
params[ 'widthSegments' ],
params[ 'heightSegments' ],
params[ 'depthSegments' ]
);
case "SphereGeometry":
return new THREE.SphereGeometry(
params[ 'radius' ],
params[ 'widthSegments' ],
params[ 'heightSegments' ],
params[ 'phiStart' ],
params[ 'phiLength' ],
params[ 'thetaStart' ],
params[ 'thetaLength' ]
);
default:
console.error( "Type '" + type + "' is not known while creating geometry " );
return false;
}
}
function getObject( name, type, customParams ) {
var geometry = getGeometry( type, customParams );
var object = new THREE.Mesh( geometry, new THREE.MeshPhongMaterial() );
object.name = name || type + " 1";
return object;
}
function aBox( name, customParams ) {
return getObject( name, "BoxGeometry", customParams );
}
function aSphere( name, customParams ) {
return getObject( name, "SphereGeometry", customParams );
}
function aPointlight( name ) {
var object = new THREE.PointLight( 54321, 1.0, 0.0, 1.0 );
object.name = name || "PointLight 1";
return object;
}
function aPerspectiveCamera( name ) {
var object = new THREE.PerspectiveCamera( 50.1, 0.4, 1.03, 999.05 );
object.name = name || "PerspectiveCamera 1";
return object;
}
function getScriptCount( editor ) {
var scriptsKeys = Object.keys( editor.scripts );
var scriptCount = 0;
for ( var i = 0; i < scriptsKeys.length; i ++ ) {
scriptCount += editor.scripts[ scriptsKeys[ i ] ].length;
}
return scriptCount;
}
function exportScene( editor ) {
var output = editor.scene.toJSON();
output = JSON.stringify( output, null, '\t' );
output = output.replace( /[\n\t]+([\d\.e\-\[\]]+)/g, '$1' );
return output;
}
function importScene( data ) {
var json = JSON.parse( data );
var loader = new THREE.ObjectLoader();
var result = loader.parse( json );
return result;
}
|