-
Notifications
You must be signed in to change notification settings - Fork 0
/
loader.js
285 lines (219 loc) · 7.83 KB
/
loader.js
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
import * as THREE from './libs/three.module.js';
import {OBJLoader} from './libs/OBJLoader.js';
import {MTLLoader} from './libs/MTLLoader.js';
import {GLTFLoader} from './libs/GLTFLoader.js';
export const Head = {
manager: 0,
loaded: false,
objHref: /*window.location.href +*/ './assets/head/head.obj',
mtlHref: './assets/head/head.mtl',
load: function(mesh) {
const mtlLoader = new MTLLoader(this.manager);
mtlLoader.load(Head.mtlHref, (mtl) => {
mtl.preload();
const objLoader = new OBJLoader(this.manager);
objLoader.setMaterials(mtl);
objLoader.load(Head.objHref, (obj) => {
this.obj=obj;
obj.position.x+=0.05;
obj.position.z+=0.1;
obj.scale.set(0.2,0.2,0.2);
obj.rotation.y=(Math.PI/2);
obj.traverse(( node )=>{
if ( node instanceof THREE.Mesh ) {
node.castShadow = true;
}
});
mesh.add(obj);
});
});
},
}
export class chainSaw{
constructor(params){
this.mesh=params.scene;
this.manager=new THREE.LoadingManager();
this.objHref= './assets/chainsaw/chainsaw.obj';
this.mtlHref= './assets/chainsaw/chainsaw.mtl';
this.obj=0;
}
load(){
this.manager.onLoad=function(){
this.loaded=true;
}
const mtlLoader = new MTLLoader(this.manager);
mtlLoader.load(this.mtlHref, (mtl) => {
mtl.preload();
const objLoader = new OBJLoader(this.manager);
for (const material of Object.values(mtl.materials)) {
material.color=new THREE.Color(0x202020);
material.reflectivity=0.1;
material.specular=new THREE.Color(0x928D8D);
}
objLoader.setMaterials(mtl);
objLoader.load(this.objHref, (object) => {
object.scale.set(0.7,0.6,0.7);
var box = new THREE.Box3().setFromObject(object);
const boxSize = box.getSize(new THREE.Vector3());
let pivot=new THREE.Object3D();
pivot.position.y+=0.5*boxSize.y;
pivot.add(object);
this.mesh.add(pivot);
let tween1=new TWEEN.Tween(object.rotation)
.to({y:Math.PI},500)
.easing(TWEEN.Easing.Linear.None)
.repeat(Infinity)
.onUpdate((tweenObj)=>{
object.rotation.y+=tweenObj.y;
})
.start();
});
});
}
}
export class Star{
constructor(params){
this.mesh=params.scene;
this.manager=new THREE.LoadingManager();
this.objHref= './assets/Star/star.obj';
this.mtlHref= './assets/Star/star.mtl';
this.obj=0;
}
load(){
this.manager.onLoad=function(){
}
this.manager.onProgress= function(url, itemsLoaded, itemsTotal){
}
const mtlLoader = new MTLLoader(this.manager);
mtlLoader.load(this.mtlHref, (mtl) => {
mtl.preload();
const objLoader = new OBJLoader(this.manager);
objLoader.setMaterials(mtl);
objLoader.load(this.objHref, (object) => {
object.scale.set(0.25,0.25,0.25);
object.rotation.x=Math.PI*0.5;
var box = new THREE.Box3().setFromObject(object);
const boxSize = box.getSize(new THREE.Vector3());
let pivot=new THREE.Object3D();
pivot.position.y+=0.5*boxSize.y;
pivot.add(object);
this.mesh.add(pivot);
});
});
}
}
export class Heart{
constructor(params){
this.mesh=params.scene;
this.manager=new THREE.LoadingManager();
this.objHref= './assets/heart/heart.obj';
this.mtlHref= './assets/heart/heart.mtl';
this.obj=0;
}
load(){
this.manager.onLoad=function(){
}
this.manager.onProgress= function(url, itemsLoaded, itemsTotal){
}
const mtlLoader = new MTLLoader(this.manager);
mtlLoader.load(this.mtlHref, (mtl) => {
mtl.preload();
const objLoader = new OBJLoader(this.manager);
for (const material of Object.values(mtl.materials)) {
material.color=new THREE.Color(0xFF0000);
}
objLoader.setMaterials(mtl);
objLoader.load(this.objHref, (object) => {
object.scale.set(0.01,0.01,0.01);
var box = new THREE.Box3().setFromObject(object);
const boxSize = box.getSize(new THREE.Vector3());
let pivot=new THREE.Object3D();
pivot.position.y+=0.5*boxSize.y;
pivot.add(object);
this.mesh.add(pivot);
});
});
}
}
export class Rock{
constructor(params){
this.mesh=params.scene;
this.manager=new THREE.LoadingManager();
this.objHref= './assets/rock/Rock1.obj';
this.mtlHref= './assets/rock/Rock1.mtl';
this.obj=0;
}
load(){
this.manager.onLoad=function(){
}
this.manager.onProgress= function(url, itemsLoaded, itemsTotal){
//console.log("loaded: " + url);
//console.log("left: "+ itemsTotal-itemsLoaded);
}
let meshAux=this.mesh;
const mtlLoader = new MTLLoader(this.manager);
mtlLoader.load(this.mtlHref, (mtl) => {
mtl.preload();
const objLoader = new OBJLoader(this.manager);
objLoader.setMaterials(mtl);
objLoader.load(this.objHref, (object) => {
var box = new THREE.Box3().setFromObject(object);
const boxSize = box.getSize(new THREE.Vector3());
object.traverse( function ( child ) {
if ( child instanceof THREE.Object3D ) {
if(child.name=='Cube'){
let pivot=new THREE.Object3D();
child.scale.set(0.1,0.1,0.1)
pivot.position.y+=0.5*boxSize.y;
pivot.add(child);
meshAux.add(pivot);
}
}
});
});
});
}
}
export class Stalagmites{
constructor(params){
this.loadingManager=params.loadingManager;
this.loader=new GLTFLoader(this.loadingManager);
this.gltfHref='./assets/stalagmites/scene.gltf';
}
onLoadFunction(gltf){
scene.add(gltf.scene);
gltf.animations;
gltf.scene;
gltf.scenes;
gltf.cameras;
gltf.asset;
}
onProgressFunction(xhr){
}
loadStal2(scene){
function getRandomArbitrary(min, max) {
return Math.random() * (max - min) + min;
}
function dumpObject(obj, lines = [], isLast = true, prefix = '') {
const localPrefix = isLast ? '└─' : '├─';
lines.push(`${prefix}${prefix ? localPrefix : ''}${obj.name || '*no-name*'} [${obj.type}]`);
const newPrefix = prefix + (isLast ? ' ' : '│ ');
const lastNdx = obj.children.length - 1;
obj.children.forEach((child, ndx) => {
const isLast = ndx === lastNdx;
dumpObject(child, lines, isLast, newPrefix);
});
return lines;
}
this.loader.load( this.gltfHref, (gltf)=>{
let root = gltf.scene;
let stalagmite = root.getObjectByName('stalagmite_2');
stalagmite.rotation.z=Math.PI;
stalagmite.position.y=getRandomArbitrary(20, 60);
stalagmite.position.x=getRandomArbitrary(-80, 80);
stalagmite.position.z=getRandomArbitrary(-200, -10);
stalagmite.scale.set(getRandomArbitrary(0.05, 0.2),getRandomArbitrary(0.05, 0.2),getRandomArbitrary(0.05, 0.2));
scene.add(stalagmite);
}, this.onProgressFunction );
}
}