-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_push.js
285 lines (235 loc) · 9.11 KB
/
test_push.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 'three';
import {OrbitControls} from 'three/examples/jsm/controls/OrbitControls.js';
import * as dat from 'dat.gui';
import {GLTFLoader} from 'three/examples/jsm/loaders/GLTFLoader.js';
import nebula from '../img/nebula.jpg';
import stars from '../img/stars.jpg';
const monkeyUrl = new URL('../assets/monkey.glb', import.meta.url);
// sterge acest comentariu
// create the render named like renderer
const renderer = new THREE.WebGLRenderer();
// set shadowMap for shadows
renderer.shadowMap.enabled = true;
// set the sized drawing context
renderer.setSize(window.innerWidth, window.innerHeight);
// atach to the dom element the renderer
document.body.appendChild(renderer.domElement);
// create the scene for build
const scene = new THREE.Scene();
// set camera with parameters for perspective
const camera = new THREE.PerspectiveCamera(
45, // field of view
window.innerWidth / window.innerHeight, // aspect ratio
0.1, // near distance
1000 // far distance
);
// set movement of camera using orbit , see OrbitControls.js add it to the renderer
const orbit = new OrbitControls(camera, renderer.domElement);
// build axes
const axesHelper = new THREE.AxesHelper(5);
// add axes
scene.add(axesHelper);
// set camera position from origin (0,0,0)
camera.position.set(-10, 30, 30);
// update camera movement
orbit.update();
// set settings for a box
const boxGeometry = new THREE.BoxGeometry();
const boxMaterial = new THREE.MeshBasicMaterial({color: 0x00FF00});
// create a box
const box = new THREE.Mesh(boxGeometry, boxMaterial);
// add the box to the scene
scene.add(box);
// ...
const planeGeometry = new THREE.PlaneGeometry(30, 10);
const planeMaterial = new THREE.MeshStandardMaterial({
color: 0xFFFFFF,
side: THREE.DoubleSide
});
const plane = new THREE.Mesh(planeGeometry, planeMaterial);
scene.add(plane);
plane.rotation.x = -0.5 * Math.PI;
plane.receiveShadow = true;
// const gridHelper = new THREE.GridHelper(30, 100); // the 100 show grids ...
const gridHelper = new THREE.GridHelper(30);
scene.add(gridHelper);
const sphereGeometry = new THREE.SphereGeometry(4, 50, 50);
const sphereMaterial = new THREE.MeshStandardMaterial({
color: 0x0000FF,
wireframe: false}); // or true
const sphere = new THREE.Mesh(sphereGeometry, sphereMaterial);
scene.add(sphere);
sphere.position.set(-10, 10, 0);
// cast the shadows for lights for sphere object need to set on light as true and need to set the camera shadow settings
sphere.castShadow = true;
const ambientLight = new THREE.AmbientLight(0x333333);
scene.add(ambientLight);
const directionalLight = new THREE.DirectionalLight(0xFFFFFF, 0.8);
scene.add(directionalLight);
directionalLight.position.set(-30, 50, 0);
directionalLight.castShadow = true;
directionalLight.shadow.camera.bottom = -12;
const dLightHelper = new THREE.DirectionalLightHelper(directionalLight, 5);
scene.add(dLightHelper);
const dLightShadowHelper = new THREE.CameraHelper(directionalLight.shadow.camera); // this need to have it for shadows - angles ... can have a bad shadows
scene.add(dLightShadowHelper);
const spotLight = new THREE.SpotLight(0xFFFFFF);
scene.add(spotLight);
spotLight.position.set(-100, 100, 0);
spotLight.castShadow = true; // shadow effect bast on spotlight
spotLight.angle = 0.2;
const sLightHelper = new THREE.SpotLightHelper(spotLight); // helper feature for spotLight will draw the lines of spotlight
scene.add(sLightHelper);
//scene.fog = new THREE.Fog(0xFFFFFF, 0, 200);
scene.fog = new THREE.FogExp2(0xFFFFFF, 0.01);
//renderer.setClearColor(0xFFEA00);
const textureLoader = new THREE.TextureLoader();
//scene.background = textureLoader.load(stars);
const cubeTextureLoader = new THREE.CubeTextureLoader();
scene.background = cubeTextureLoader.load([
nebula,
nebula,
stars,
stars,
stars,
stars
]);
// create a box
const box2Geometry = new THREE.BoxGeometry(4, 4, 4);
const box2Material = new THREE.MeshBasicMaterial({
//color: 0x00FF00,
//map: textureLoader.load(nebula)
});
// box enviroment geometry with materials added to array , see the little cube
const box2MultiMaterial = [
new THREE.MeshBasicMaterial({map: textureLoader.load(stars)}),
new THREE.MeshBasicMaterial({map: textureLoader.load(stars)}),
new THREE.MeshBasicMaterial({map: textureLoader.load(nebula)}),
new THREE.MeshBasicMaterial({map: textureLoader.load(stars)}),
new THREE.MeshBasicMaterial({map: textureLoader.load(nebula)}),
new THREE.MeshBasicMaterial({map: textureLoader.load(stars)})
];
const box2 = new THREE.Mesh(box2Geometry, box2MultiMaterial);
scene.add(box2);
box2.position.set(0, 15, 10);
//box2.material.map = textureLoader.load(nebula);
const plane2Geometry = new THREE.PlaneGeometry(10, 10, 10, 10);
const plane2Material = new THREE.MeshBasicMaterial({
color: 0x0000FF,
wireframe: true
});
const plane2 = new THREE.Mesh(plane2Geometry, plane2Material);
scene.add(plane2);
plane2.position.set(10, 10, 15);
plane2.geometry.attributes.position.array[0] -= 10 * Math.random();
plane2.geometry.attributes.position.array[1] -= 10 * Math.random();
plane2.geometry.attributes.position.array[2] -= 10 * Math.random();
plane2.geometry.attributes.position.array[3] -= 10 * Math.random();
const lastPointZ = plane2.geometry.attributes.position.array.length - 1;
plane2.geometry.attributes.position.array[lastPointZ] -= 10 * Math.random();
const sphere2Geometry = new THREE.SphereGeometry(4);
// added to the index.html and get with getElementById
// const vShader = `
// void main() {
// gl_Position = projectionMatrix * modelViewMatrix * vec4(position, 1.0);
// }
// `;
// const fShader = `
// void main() {
// gl_FragColor = vec4(0.5, 0.5, 1.0, 1.0);
// }
// `;
const sphere2Material = new THREE.ShaderMaterial({
vertexShader: document.getElementById('vertexShader').textContent,
fragmentShader: document.getElementById('fragmentShader').textContent
});
const sphere2 = new THREE.Mesh(sphere2Geometry, sphere2Material);
scene.add(sphere2);
sphere2.position.set(-5, 10, 10);
const assetLoader = new GLTFLoader();
let mixer;
assetLoader.load(monkeyUrl.href, function(gltf) {
const model = gltf.scene;
console.log(model)
scene.add(model);
model.position.set(-12, 4, 10);
// Create an AnimationMixer, and get the list of AnimationClip instances
mixer = new THREE.AnimationMixer( model );
const clips = gltf.animations;
// Play a specific animation
const clip = THREE.AnimationClip.findByName( clips, 'myAnimation' );
const action = mixer.clipAction( clip );
//action.play();
// Play all animations
// clips.forEach( function ( clip ) {
// mixer.clipAction( clip ).play();
// } );
}, undefined, function(error) {
console.error(error);
});
const gui = new dat.GUI();
const options = {
sphereColor: '#ffea00',
wireframe: false,
speed: 0.01,
angle: 0.2,
penumbra: 0,
intensity: 1
};
gui.addColor(options, 'sphereColor').onChange(function(e){
sphere.material.color.set(e);
});
gui.add(options, 'wireframe').onChange(function(e){
sphere.material.wireframe = e;
});
gui.add(options, 'speed', 0, 0.1);
gui.add(options, 'angle', 0, 1);
gui.add(options, 'penumbra', 0, 1);
gui.add(options, 'intensity', 0, 1);
let step = 0;
const mousePosition = new THREE.Vector2();
window.addEventListener('mousemove', function(e) {
mousePosition.x = (e.clientX / window.innerWidth) * 2 - 1;
mousePosition.y = - (e.clientY / window.innerHeight) * 2 + 1;
});
const rayCaster = new THREE.Raycaster();
const sphereId = sphere.id;
box2.name = 'theBox';
const clock = new THREE.Clock();
// animation function
function animate(time) {
// Update the mixer on each frame
if(mixer) mixer.update(clock.getDelta());
box.rotation.x = time / 1000;
box.rotation.y = time / 1000;
step += options.speed;
sphere.position.y = 10 * Math.abs(Math.sin(step));
spotLight.angle = options.angle;
spotLight.penumbra = options.penumbra;
spotLight.intensity = options.intensity;
sLightHelper.update();
rayCaster.setFromCamera(mousePosition, camera);
const intersects = rayCaster.intersectObjects(scene.children);
console.log(intersects);
for(let i = 0; i < intersects.length; i++) {
if(intersects[i].object.id === sphereId)
intersects[i].object.material.color.set(0xFF0000);
if(intersects[i].object.name === 'theBox') {
intersects[i].object.rotation.x = time / 1000;
intersects[i].object.rotation.y = time / 1000;
}
}
plane2.geometry.attributes.position.array[0] = 10 * Math.random();
plane2.geometry.attributes.position.array[1] = 10 * Math.random();
plane2.geometry.attributes.position.array[2] = 10 * Math.random();
plane2.geometry.attributes.position.array[lastPointZ] = 10 * Math.random();
plane2.geometry.attributes.position.needsUpdate = true;
renderer.render(scene, camera); // link the camera to the renderer
//console.log(window.innerHeight);
}
renderer.setAnimationLoop(animate);
window.addEventListener('resize', function() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
});