-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembedded.js
195 lines (128 loc) · 4.98 KB
/
embedded.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
import * as THREE from 'https://unpkg.com/[email protected]/build/three.module.js';
import { ARButton } from 'https://unpkg.com/[email protected]/examples/jsm/webxr/ARButton.js'
import { OrbitControls } from 'https://unpkg.com/[email protected]/examples/jsm/controls/OrbitControls.js'
import { CSS2DRenderer, CSS2DObject } from 'https://unpkg.com/[email protected]/examples/jsm/renderers/CSS2DRenderer.js'
const camera = new THREE.PerspectiveCamera(70, 1, 0.01, 10);
camera.position.z = 1.5;
const scene = new THREE.Scene();
const renderer = new THREE.WebGLRenderer({ antialias: false });
renderer.setClearAlpha(0)
renderer.setSize( window.innerWidth, window.innerHeight );
document.querySelector('#output').appendChild(renderer.domElement);
const labelRenderer = new CSS2DRenderer();
labelRenderer.setSize( window.innerWidth, window.innerHeight );
labelRenderer.domElement.style.position = 'absolute';
labelRenderer.domElement.style.top = '0px';
document.querySelector('#output').appendChild( labelRenderer.domElement );
const controls = new OrbitControls( camera, labelRenderer.domElement )
const spheres = []
const clength = document.querySelectorAll('.item').length;
const step = (2 * Math.PI) / clength;
let angle = 0;
const circle = {
width: 5,
depth: 5,
radius: 2
};
for (const item of document.querySelectorAll('.item')) {
const title = item.querySelector("h2").innerText;
const link = item.querySelector("a").getAttribute("href");
const durationString = item
.querySelector("a")
.querySelector("span").innerText;
const durationMatcher = durationString.match(/(\d+):(\d+):(\d+)/)
let durationSeconds = 0
if (durationMatcher) {
durationSeconds = parseInt(durationMatcher[1]) * 60 * 60
durationSeconds += parseInt(durationMatcher[2]) * 60
durationSeconds += parseInt(durationMatcher[3])
}
const color = 0xffffff * Math.random()
const material = new THREE.MeshBasicMaterial({
color,
wireframe: true,
});
// https://threejs.org/docs/?q=sphe#api/en/geometries/SphereGeometry
const sphereRadius = 0.0025 * durationSeconds
const sphereGeom = new THREE.SphereGeometry(sphereRadius, 6, 6);
const sphere = new THREE.Mesh(sphereGeom, material);
sphere.position.y = (Math.random() - 0.5) * 2;
sphere.position.x = (circle.width / clength) + (circle.radius * Math.cos(angle));
sphere.position.z = (circle.depth / clength) + (circle.radius * Math.sin(angle));
angle += step;
sphere.rotation.x = Math.random();
sphere.rotation.y = Math.random();
const sphereTooltip = document.createElement( 'div' );
sphereTooltip.className = 'label';
sphereTooltip.textContent = title;
sphereTooltip.style.marginTop = '-1em';
const sphereTooltipLabel = new CSS2DObject( sphereTooltip );
sphereTooltipLabel.position.set( 0, sphereRadius, 0 );
sphere.add( sphereTooltipLabel );
sphereTooltipLabel.layers.set( 0 );
sphereTooltipLabel.visible = false;
sphere.children[0].visible = false;
scene.add(sphere);
spheres.push(sphere);
sphere.userData = {
link,
color
};
}
let hover;
const raycaster = new THREE.Raycaster();
const pointer = new THREE.Vector2(0,0);
let playing;
function point() {
raycaster.setFromCamera(pointer, camera);
const intersects = raycaster.intersectObjects(scene.children);
let max = 10000;
let nearest;
for (const {object, distance} of intersects) {
if(distance < max) {
max = distance
nearest = object;
}
}
if(nearest) {
if(hover !== nearest) {
if(nearest.userData.link) {
if(playing) playing.pause()
console.log("PLAY", nearest.userData.link)
const audio = new Audio(nearest.userData.link)
audio.play()
playing = audio;
}
hover = nearest
}
}
}
function onWindowResize() {
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize( window.innerWidth, window.innerHeight );
labelRenderer.setSize( window.innerWidth, window.innerHeight );
}
function animation(time) {
controls.update();
point()
spheres.forEach((sphere, i) => {
sphere.rotation.x = (time / 5000) + i;
sphere.rotation.y = (time / 10000) + i;
if(sphere === hover) {
sphere.material.wireframe = false;
sphere.children[0].visible = true;
sphere.scale.set(1.5,1.5,1.5);
} else {
sphere.material.wireframe = true;
sphere.children[0].visible = false;
sphere.scale.set(1,1,1);
}
})
renderer.render(scene, camera);
labelRenderer.render( scene, camera );
}
renderer.xr.enabled = true;
document.body.appendChild( ARButton.createButton( renderer ) )
window.addEventListener( 'resize', onWindowResize );
renderer.setAnimationLoop(animation);