-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from BarthPaleologue/WIP
Faster XR experiment
- Loading branch information
Showing
3 changed files
with
165 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
import "../styles/index.scss"; | ||
|
||
import { Assets } from "./assets"; | ||
import { Vector3 } from "@babylonjs/core/Maths/math.vector"; | ||
import { OceanPostProcess } from "./postProcesses/oceanPostProcess"; | ||
import { UberScene } from "./uberCore/uberScene"; | ||
import { translate } from "./uberCore/transforms/basicTransform"; | ||
import { FreeCamera } from "@babylonjs/core/Cameras/freeCamera"; | ||
import { Engine } from "@babylonjs/core/Engines/engine"; | ||
|
||
import HavokPhysics from "@babylonjs/havok"; | ||
import { HavokPlugin } from "@babylonjs/core/Physics/v2/Plugins/havokPlugin"; | ||
import { setMaxLinVel } from "./utils/havok"; | ||
import { TelluricPlanemo } from "./planemos/telluricPlanemo/telluricPlanemo"; | ||
import { ChunkForge } from "./planemos/telluricPlanemo/terrain/chunks/chunkForge"; | ||
import { StarfieldPostProcess } from "./postProcesses/starfieldPostProcess"; | ||
import { Quaternion } from "@babylonjs/core/Maths/math"; | ||
import { FlatCloudsPostProcess } from "./postProcesses/clouds/flatCloudsPostProcess"; | ||
import { AtmosphericScatteringPostProcess } from "./postProcesses/atmosphericScatteringPostProcess"; | ||
import { Star } from "./stellarObjects/star/star"; | ||
import { LensFlarePostProcess } from "./postProcesses/lensFlarePostProcess"; | ||
import { Settings } from "./settings"; | ||
import { ScenePerformancePriority } from "@babylonjs/core"; | ||
|
||
const canvas = document.getElementById("renderer") as HTMLCanvasElement; | ||
canvas.width = window.innerWidth; | ||
canvas.height = window.innerHeight; | ||
|
||
const engine = new Engine(canvas, true); | ||
engine.useReverseDepthBuffer = true; | ||
|
||
Settings.VERTEX_RESOLUTION = 32; | ||
|
||
// Init Havok physics engine | ||
const havokInstance = await HavokPhysics(); | ||
const havokPlugin = new HavokPlugin(true, havokInstance); | ||
setMaxLinVel(havokPlugin, 10000, 10000); | ||
console.log(`Havok initialized`); | ||
|
||
const scene = new UberScene(engine, ScenePerformancePriority.Intermediate); | ||
scene.useRightHandedSystem = true; | ||
scene.enablePhysics(Vector3.Zero(), havokPlugin); | ||
|
||
await Assets.Init(scene); | ||
|
||
const sphereRadius = Settings.EARTH_RADIUS; | ||
|
||
const camera = new FreeCamera("camera", new Vector3(0, 0, 0), scene); | ||
camera.maxZ = 1e9; | ||
camera.speed *= sphereRadius * 0.1; | ||
scene.setActiveCamera(camera); | ||
camera.attachControl(canvas, true); | ||
|
||
const xr = await scene.createDefaultXRExperienceAsync(); | ||
if (!xr.baseExperience) { | ||
// no xr support | ||
throw new Error("No XR support"); | ||
} else { | ||
// all good, ready to go | ||
console.log("XR support"); | ||
} | ||
|
||
const webXRInput = xr.input; // if using the experience helper, otherwise, an instance of WebXRInput | ||
webXRInput.onControllerAddedObservable.add((xrController) => { | ||
console.log("Controller added"); | ||
xrController.onMotionControllerInitObservable.add((motionController) => { | ||
console.log("Motion controller initialized"); | ||
|
||
const mainComponent = motionController.getMainComponent(); | ||
|
||
mainComponent.onButtonStateChangedObservable.add((component) => { | ||
if (component.changes.pressed) { | ||
if (component.changes.pressed.current) { | ||
console.log("Pressed"); | ||
} | ||
if (component.pressed) { | ||
console.log("Pressed"); | ||
} | ||
} | ||
}); | ||
}); | ||
}); | ||
|
||
const xrCamera = xr.baseExperience.camera; | ||
xrCamera.setTransformationFromNonVRCamera(camera); | ||
|
||
const planet = new TelluricPlanemo("xrPlanet", scene, 0.51, undefined); | ||
translate(planet.getTransform(), new Vector3(0, 0, sphereRadius * 4)); | ||
|
||
const star = new Star("star", scene, 0.2); //PointLightWrapper(new PointLight("dir01", new Vector3(0, 1, 0), scene)); | ||
translate(star.getTransform(), new Vector3(0, 0, -sphereRadius * 5000)); | ||
|
||
const starfield = new StarfieldPostProcess(scene, [star], [planet], Quaternion.Identity()); | ||
camera.attachPostProcess(starfield); | ||
xrCamera.attachPostProcess(starfield); | ||
|
||
const ocean = new OceanPostProcess("ocean", planet, scene, [star]); | ||
camera.attachPostProcess(ocean); | ||
xrCamera.attachPostProcess(ocean); | ||
|
||
if (planet.model.cloudsUniforms === null) throw new Error("Clouds uniforms are null"); | ||
FlatCloudsPostProcess.CreateAsync("clouds", planet, planet.model.cloudsUniforms, scene, [star]).then((clouds) => { | ||
camera.attachPostProcess(clouds); | ||
xrCamera.attachPostProcess(clouds); | ||
|
||
const atmosphere = new AtmosphericScatteringPostProcess("atmosphere", planet, 100e3, scene, [star]); | ||
camera.attachPostProcess(atmosphere); | ||
xrCamera.attachPostProcess(atmosphere); | ||
|
||
const lensflare = new LensFlarePostProcess(star, scene); | ||
camera.attachPostProcess(lensflare); | ||
xrCamera.attachPostProcess(lensflare); | ||
}); | ||
|
||
const chunkForge = new ChunkForge(Settings.VERTEX_RESOLUTION); | ||
|
||
scene.onBeforeRenderObservable.add(() => { | ||
const deltaTime = scene.deltaTime / 1000; | ||
|
||
if (scene.activeCamera === null) throw new Error("Active camera is null"); | ||
|
||
if (camera.globalPosition.length() > 0) { | ||
translate(planet.getTransform(), camera.globalPosition.negate()); | ||
translate(star.getTransform(), camera.globalPosition.negate()); | ||
camera.position.set(0, 0, 0); | ||
} | ||
|
||
planet.updateLOD(scene.activeCamera.globalPosition, chunkForge); | ||
planet.updateMaterial(camera, [star], deltaTime); | ||
|
||
chunkForge.update(); | ||
|
||
star.updateMaterial(); | ||
|
||
ocean.update(deltaTime); | ||
}); | ||
|
||
scene.executeWhenReady(() => { | ||
engine.runRenderLoop(() => { | ||
scene.render(); | ||
}); | ||
}); | ||
|
||
window.addEventListener("resize", () => { | ||
canvas.width = window.innerWidth; | ||
canvas.height = window.innerHeight; | ||
engine.resize(true); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters