MikaFil commited on
Commit
75c385c
·
verified ·
1 Parent(s): df5ca69

Update viewer.js

Browse files
Files changed (1) hide show
  1. viewer.js +51 -71
viewer.js CHANGED
@@ -10,6 +10,7 @@ let minZoom, maxZoom, minAngle, maxAngle, minAzimuth, maxAzimuth, minPivotY, min
10
  let modelX, modelY, modelZ, modelScale, modelRotationX, modelRotationY, modelRotationZ;
11
  let sogsUrl, glbUrl, canvasBg;
12
 
 
13
  function hexToRgbaArray(hex) {
14
  try {
15
  hex = hex.replace("#", "");
@@ -23,24 +24,23 @@ function hexToRgbaArray(hex) {
23
  (num & 0xFF) / 255
24
  ];
25
  } catch (e) {
26
- alert("hexToRgbaArray error: " + e);
27
  return [1, 1, 1, 1];
28
  }
29
  }
30
 
31
  export async function initializeViewer(config, instanceId) {
32
- alert("initializeViewer: start");
33
-
34
  if (viewerInitialized) {
35
- alert("Already initialized!");
36
  return;
37
  }
38
 
 
39
  const isIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
40
  const isMobile = isIOS || /Android/i.test(navigator.userAgent);
41
 
42
  try {
43
- // Parse config
44
  sogsUrl = config.sogs_json_url;
45
  glbUrl = config.glb_url;
46
  canvasBg = config.canvas_background || "#ffffff";
@@ -77,20 +77,18 @@ export async function initializeViewer(config, instanceId) {
77
  const progressIndicator= document.getElementById('progress-indicator-' + instanceId);
78
  const viewerContainer = document.getElementById('viewer-container-' + instanceId);
79
 
 
80
  let oldCanvas = document.getElementById(canvasId);
81
  if (oldCanvas) oldCanvas.remove();
82
 
 
83
  const canvas = document.createElement('canvas');
84
  canvas.id = canvasId;
85
  canvas.className = 'ply-canvas';
86
  canvas.style.width = "100%";
87
  canvas.style.height = "100%";
88
  canvas.setAttribute('tabindex', '0');
89
- viewerContainer.insertBefore(canvas, progressDialog);
90
-
91
- // Apply background color from config if present
92
  canvas.style.background = canvasBg;
93
-
94
  canvas.style.touchAction = "none";
95
  canvas.style.webkitTouchCallout = "none";
96
  canvas.addEventListener('gesturestart', e => e.preventDefault());
@@ -98,35 +96,31 @@ export async function initializeViewer(config, instanceId) {
98
  canvas.addEventListener('gestureend', e => e.preventDefault());
99
  canvas.addEventListener('dblclick', e => e.preventDefault());
100
  canvas.addEventListener('touchstart', e => { if (e.touches.length > 1) e.preventDefault(); }, { passive: false });
101
-
102
- // --- Mouse wheel suppression
103
- canvas.addEventListener('wheel', (e) => {
104
- e.preventDefault(); // Only block page scroll if mouse is over viewer
105
- }, { passive: false });
106
 
107
  if (progressDialog) progressDialog.style.display = 'block';
108
 
109
- alert("Canvas created. Loading PlayCanvas...");
110
-
111
  if (!pc) {
112
  pc = await import("https://cdn.jsdelivr.net/npm/playcanvas@latest/+esm");
113
  window.pc = pc;
114
- alert("PlayCanvas imported.");
115
  }
116
 
117
- // Create app and graphics device
118
  let device;
119
  try {
 
120
  device = await pc.createGraphicsDevice(canvas, {
121
- deviceTypes: ["webgl2", "webgl1"],
122
  glslangUrl: "https://mikafil-viewer-sgos.static.hf.space/static/lib/glslang/glslang.js",
123
  twgslUrl: "https://mikafil-viewer-sgos.static.hf.space/static/lib/twgsl/twgsl.js",
124
- antialias: false
125
  });
126
- device.maxPixelRatio = Math.min(window.devicePixelRatio, 2);
127
- alert("Graphics device created.");
128
  } catch (e) {
129
- alert("Graphics device error: " + e);
130
  throw e;
131
  }
132
 
@@ -154,14 +148,12 @@ export async function initializeViewer(config, instanceId) {
154
  app.setCanvasFillMode(pc.FILLMODE_NONE);
155
  app.setCanvasResolution(pc.RESOLUTION_AUTO);
156
 
157
- alert("App created.");
158
-
159
- // Resizing
160
  resizeObserver = new ResizeObserver(entries => {
161
  entries.forEach(entry => {
162
  try {
163
  app.resizeCanvas(entry.contentRect.width, entry.contentRect.height);
164
- } catch (e) { alert("resizeCanvas error: " + e); }
165
  });
166
  });
167
  resizeObserver.observe(viewerContainer);
@@ -169,44 +161,41 @@ export async function initializeViewer(config, instanceId) {
169
  window.addEventListener('resize', () => {
170
  try {
171
  app.resizeCanvas(viewerContainer.clientWidth, viewerContainer.clientHeight);
172
- } catch (e) { alert("resizeCanvas error: " + e); }
173
  });
174
  app.on('destroy', () => resizeObserver.disconnect());
175
 
176
- // Prepare asset loading (SOGS as 'gsplat')
177
  const assets = {
178
  sogs: new pc.Asset('gsplat', 'gsplat', { url: sogsUrl }),
179
  orbit: new pc.Asset('script', 'script', { url: "https://mikafil-viewer-sgos.static.hf.space/orbit-camera.js" }),
180
- glb: new pc.Asset('glb', 'container', { url: glbUrl }),
181
  };
182
- for (const key in assets) app.assets.add(assets[key]);
183
-
184
- // Individual asset error listeners
185
- assets.sogs.on('error', (err) => { alert("SOGS asset error: " + err); });
186
- assets.orbit.on('error', (err) => { alert("Orbit-camera.js asset error: " + err); });
187
- if (assets.glb) assets.glb.on('error', (err) => { alert("GLB asset error: " + err); });
188
 
189
- assets.sogs.ready(() => { alert("SOGS asset ready."); });
190
- assets.orbit.ready(() => { alert("orbit-camera.js asset ready."); });
191
- if (assets.glb) assets.glb.ready(() => { alert("GLB asset ready."); });
192
 
193
- const loader = new pc.AssetListLoader(Object.values(assets), app.assets);
 
 
 
 
194
 
195
- loader.on('error', (err) => { alert("Asset loader error: " + err); });
196
 
197
  loader.load(() => {
198
- alert("All assets loaded. Starting app...");
199
-
200
  try {
201
  app.start();
202
  } catch (e) {
203
- alert("app.start() error: " + e);
204
  throw e;
205
  }
206
 
207
  if (progressDialog) progressDialog.style.display = 'none';
208
 
209
- // Add SOGS model
210
  try {
211
  modelEntity = new pc.Entity('model');
212
  modelEntity.addComponent('gsplat', { asset: assets.sogs });
@@ -214,24 +203,22 @@ export async function initializeViewer(config, instanceId) {
214
  modelEntity.setLocalEulerAngles(modelRotationX, modelRotationY, modelRotationZ);
215
  modelEntity.setLocalScale(modelScale, modelScale, modelScale);
216
  app.root.addChild(modelEntity);
217
- alert("Model entity added!");
218
  } catch (e) {
219
- alert("Model entity error: " + e);
220
  throw e;
221
  }
222
 
223
- // Add the GLB entity if provided
224
  try {
225
  if (assets.glb && assets.glb.resource && assets.glb.resource.instantiateRenderEntity) {
226
  const glbEntity = assets.glb.resource.instantiateRenderEntity();
227
  app.root.addChild(glbEntity);
228
- alert("GLB entity added.");
229
  }
230
  } catch (e) {
231
- alert("GLB entity error: " + e);
232
  }
233
 
234
- // CAMERA
235
  try {
236
  cameraEntity = new pc.Entity('camera');
237
  // Support background color
@@ -244,7 +231,7 @@ export async function initializeViewer(config, instanceId) {
244
  cameraEntity.lookAt(modelEntity.getPosition());
245
  cameraEntity.addComponent('script');
246
 
247
- // Pass all attributes to Orbit Camera script
248
  cameraEntity.script.create('orbitCamera', {
249
  attributes: {
250
  focusEntity: modelEntity,
@@ -262,27 +249,23 @@ export async function initializeViewer(config, instanceId) {
262
  cameraEntity.script.create('orbitCameraInputMouse');
263
  cameraEntity.script.create('orbitCameraInputTouch');
264
  app.root.addChild(cameraEntity);
265
-
266
- alert("Camera added.");
267
  } catch (e) {
268
- alert("Camera error: " + e);
269
  }
270
 
271
  try {
272
  app.resizeCanvas(viewerContainer.clientWidth, viewerContainer.clientHeight);
273
- alert("resizeCanvas called.");
274
  } catch (e) {
275
- alert("resizeCanvas error: " + e);
276
  }
277
 
278
  try {
279
  app.once('update', () => resetViewerCamera());
280
- alert("resetViewerCamera scheduled.");
281
  } catch (e) {
282
- alert("resetViewerCamera schedule error: " + e);
283
  }
284
 
285
- // Tooltips support (optional)
286
  try {
287
  if (config.tooltips_url) {
288
  import('https://mikafil-viewer-sgos.static.hf.space/tooltips.js').then(tooltipsModule => {
@@ -294,35 +277,33 @@ export async function initializeViewer(config, instanceId) {
294
  defaultVisible: !!config.showTooltipsDefault,
295
  moveDuration: config.tooltipMoveDuration || 0.6
296
  });
297
- alert("Tooltips loaded.");
298
- }).catch(e => { alert("Tooltips module error: " + e); });
299
  }
300
  } catch (e) {
301
- alert("Tooltips try-catch error: " + e);
302
  }
303
 
304
  viewerInitialized = true;
305
- alert("Viewer initialized success!");
306
  });
307
 
308
- alert("Asset loader started.");
309
  } catch (e) {
310
- alert("Main try-catch error: " + e);
311
  throw e;
312
  }
313
  }
314
 
315
  // Resets the viewer camera (as in your PLY example)
316
  export function resetViewerCamera() {
317
- alert("resetViewerCamera called.");
318
  try {
319
  if (!cameraEntity || !modelEntity || !app) {
320
- alert("resetViewerCamera: cameraEntity/modelEntity/app not ready");
321
  return;
322
  }
323
  const orbitCam = cameraEntity.script.orbitCamera;
324
  if (!orbitCam) {
325
- alert("resetViewerCamera: orbitCam missing");
326
  return;
327
  }
328
 
@@ -361,8 +342,7 @@ export function resetViewerCamera() {
361
  if (orbitCam._updatePosition) orbitCam._updatePosition();
362
 
363
  tempEnt.destroy();
364
- alert("resetViewerCamera: success");
365
  } catch (e) {
366
- alert("resetViewerCamera: error: " + e);
367
  }
368
  }
 
10
  let modelX, modelY, modelZ, modelScale, modelRotationX, modelRotationY, modelRotationZ;
11
  let sogsUrl, glbUrl, canvasBg;
12
 
13
+ // ---- Utility: hex color to RGBA ----
14
  function hexToRgbaArray(hex) {
15
  try {
16
  hex = hex.replace("#", "");
 
24
  (num & 0xFF) / 255
25
  ];
26
  } catch (e) {
27
+ console.error("hexToRgbaArray error: " + e);
28
  return [1, 1, 1, 1];
29
  }
30
  }
31
 
32
  export async function initializeViewer(config, instanceId) {
 
 
33
  if (viewerInitialized) {
34
+ console.warn("Already initialized!");
35
  return;
36
  }
37
 
38
+ // ---- Platform Detection ----
39
  const isIOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream;
40
  const isMobile = isIOS || /Android/i.test(navigator.userAgent);
41
 
42
  try {
43
+ // ---- Parse Config ----
44
  sogsUrl = config.sogs_json_url;
45
  glbUrl = config.glb_url;
46
  canvasBg = config.canvas_background || "#ffffff";
 
77
  const progressIndicator= document.getElementById('progress-indicator-' + instanceId);
78
  const viewerContainer = document.getElementById('viewer-container-' + instanceId);
79
 
80
+ // Remove previous canvas if present
81
  let oldCanvas = document.getElementById(canvasId);
82
  if (oldCanvas) oldCanvas.remove();
83
 
84
+ // ---- Create and Insert Canvas ----
85
  const canvas = document.createElement('canvas');
86
  canvas.id = canvasId;
87
  canvas.className = 'ply-canvas';
88
  canvas.style.width = "100%";
89
  canvas.style.height = "100%";
90
  canvas.setAttribute('tabindex', '0');
 
 
 
91
  canvas.style.background = canvasBg;
 
92
  canvas.style.touchAction = "none";
93
  canvas.style.webkitTouchCallout = "none";
94
  canvas.addEventListener('gesturestart', e => e.preventDefault());
 
96
  canvas.addEventListener('gestureend', e => e.preventDefault());
97
  canvas.addEventListener('dblclick', e => e.preventDefault());
98
  canvas.addEventListener('touchstart', e => { if (e.touches.length > 1) e.preventDefault(); }, { passive: false });
99
+ // Mouse wheel suppression
100
+ canvas.addEventListener('wheel', (e) => { e.preventDefault(); }, { passive: false });
101
+ viewerContainer.insertBefore(canvas, progressDialog);
 
 
102
 
103
  if (progressDialog) progressDialog.style.display = 'block';
104
 
105
+ // ---- Load PlayCanvas ----
 
106
  if (!pc) {
107
  pc = await import("https://cdn.jsdelivr.net/npm/playcanvas@latest/+esm");
108
  window.pc = pc;
 
109
  }
110
 
111
+ // ---- Create Graphics Device and App ----
112
  let device;
113
  try {
114
+ // Robust: force pixel ratio to 1 on mobile to avoid Safari VRAM crash!
115
  device = await pc.createGraphicsDevice(canvas, {
116
+ deviceTypes: ["webgl2", "webgl1"], // Try WebGL2, fallback to WebGL1
117
  glslangUrl: "https://mikafil-viewer-sgos.static.hf.space/static/lib/glslang/glslang.js",
118
  twgslUrl: "https://mikafil-viewer-sgos.static.hf.space/static/lib/twgsl/twgsl.js",
119
+ antialias: false // Must be false for splats, memory safety
120
  });
121
+ device.maxPixelRatio = isMobile ? 1 : Math.min(window.devicePixelRatio, 2); // <-- CRUCIAL!
 
122
  } catch (e) {
123
+ console.error("Graphics device error: " + e);
124
  throw e;
125
  }
126
 
 
148
  app.setCanvasFillMode(pc.FILLMODE_NONE);
149
  app.setCanvasResolution(pc.RESOLUTION_AUTO);
150
 
151
+ // ---- Resize Observer ----
 
 
152
  resizeObserver = new ResizeObserver(entries => {
153
  entries.forEach(entry => {
154
  try {
155
  app.resizeCanvas(entry.contentRect.width, entry.contentRect.height);
156
+ } catch (e) { console.error("resizeCanvas error: " + e); }
157
  });
158
  });
159
  resizeObserver.observe(viewerContainer);
 
161
  window.addEventListener('resize', () => {
162
  try {
163
  app.resizeCanvas(viewerContainer.clientWidth, viewerContainer.clientHeight);
164
+ } catch (e) { console.error("resizeCanvas error: " + e); }
165
  });
166
  app.on('destroy', () => resizeObserver.disconnect());
167
 
168
+ // ---- Assets Setup ----
169
  const assets = {
170
  sogs: new pc.Asset('gsplat', 'gsplat', { url: sogsUrl }),
171
  orbit: new pc.Asset('script', 'script', { url: "https://mikafil-viewer-sgos.static.hf.space/orbit-camera.js" }),
172
+ glb: glbUrl ? new pc.Asset('glb', 'container', { url: glbUrl }) : null,
173
  };
174
+ for (const key in assets) if (assets[key]) app.assets.add(assets[key]);
 
 
 
 
 
175
 
176
+ assets.sogs.on('error', (err) => { console.error("SOGS asset error: " + err); });
177
+ assets.orbit.on('error', (err) => { console.error("Orbit-camera.js asset error: " + err); });
178
+ if (assets.glb) assets.glb.on('error', (err) => { console.error("GLB asset error: " + err); });
179
 
180
+ // ---- Loader ----
181
+ const loader = new pc.AssetListLoader(
182
+ Object.values(assets).filter(Boolean),
183
+ app.assets
184
+ );
185
 
186
+ loader.on('error', (err) => { console.error("Asset loader error: " + err); });
187
 
188
  loader.load(() => {
 
 
189
  try {
190
  app.start();
191
  } catch (e) {
192
+ console.error("app.start() error: " + e);
193
  throw e;
194
  }
195
 
196
  if (progressDialog) progressDialog.style.display = 'none';
197
 
198
+ // ---- Add SOGS Model ----
199
  try {
200
  modelEntity = new pc.Entity('model');
201
  modelEntity.addComponent('gsplat', { asset: assets.sogs });
 
203
  modelEntity.setLocalEulerAngles(modelRotationX, modelRotationY, modelRotationZ);
204
  modelEntity.setLocalScale(modelScale, modelScale, modelScale);
205
  app.root.addChild(modelEntity);
 
206
  } catch (e) {
207
+ console.error("Model entity error: " + e);
208
  throw e;
209
  }
210
 
211
+ // ---- Add GLB if provided ----
212
  try {
213
  if (assets.glb && assets.glb.resource && assets.glb.resource.instantiateRenderEntity) {
214
  const glbEntity = assets.glb.resource.instantiateRenderEntity();
215
  app.root.addChild(glbEntity);
 
216
  }
217
  } catch (e) {
218
+ console.error("GLB entity error: " + e);
219
  }
220
 
221
+ // ---- Camera Setup ----
222
  try {
223
  cameraEntity = new pc.Entity('camera');
224
  // Support background color
 
231
  cameraEntity.lookAt(modelEntity.getPosition());
232
  cameraEntity.addComponent('script');
233
 
234
+ // Orbit camera script attributes
235
  cameraEntity.script.create('orbitCamera', {
236
  attributes: {
237
  focusEntity: modelEntity,
 
249
  cameraEntity.script.create('orbitCameraInputMouse');
250
  cameraEntity.script.create('orbitCameraInputTouch');
251
  app.root.addChild(cameraEntity);
 
 
252
  } catch (e) {
253
+ console.error("Camera error: " + e);
254
  }
255
 
256
  try {
257
  app.resizeCanvas(viewerContainer.clientWidth, viewerContainer.clientHeight);
 
258
  } catch (e) {
259
+ console.error("resizeCanvas error: " + e);
260
  }
261
 
262
  try {
263
  app.once('update', () => resetViewerCamera());
 
264
  } catch (e) {
265
+ console.error("resetViewerCamera schedule error: " + e);
266
  }
267
 
268
+ // ---- Tooltips (Optional) ----
269
  try {
270
  if (config.tooltips_url) {
271
  import('https://mikafil-viewer-sgos.static.hf.space/tooltips.js').then(tooltipsModule => {
 
277
  defaultVisible: !!config.showTooltipsDefault,
278
  moveDuration: config.tooltipMoveDuration || 0.6
279
  });
280
+ }).catch(e => { console.error("Tooltips module error: " + e); });
 
281
  }
282
  } catch (e) {
283
+ console.error("Tooltips try-catch error: " + e);
284
  }
285
 
286
  viewerInitialized = true;
287
+ console.log("Viewer initialized success!");
288
  });
289
 
290
+ console.log("Asset loader started.");
291
  } catch (e) {
292
+ console.error("Main try-catch error: " + e);
293
  throw e;
294
  }
295
  }
296
 
297
  // Resets the viewer camera (as in your PLY example)
298
  export function resetViewerCamera() {
 
299
  try {
300
  if (!cameraEntity || !modelEntity || !app) {
301
+ console.warn("resetViewerCamera: cameraEntity/modelEntity/app not ready");
302
  return;
303
  }
304
  const orbitCam = cameraEntity.script.orbitCamera;
305
  if (!orbitCam) {
306
+ console.warn("resetViewerCamera: orbitCam missing");
307
  return;
308
  }
309
 
 
342
  if (orbitCam._updatePosition) orbitCam._updatePosition();
343
 
344
  tempEnt.destroy();
 
345
  } catch (e) {
346
+ console.error("resetViewerCamera: error: " + e);
347
  }
348
  }