135 lines
4.5 KiB
HTML
135 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Pipeline Test</title>
|
|
<style>
|
|
body {
|
|
background: #222;
|
|
color: #eee;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
main {
|
|
width: 80ch;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
.figure {
|
|
width: 100%;
|
|
height: 20em;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Visualizer</h1>
|
|
<p>
|
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur ullamcorper ut mauris sed tempor. Nunc
|
|
vehicula tempor purus, non vestibulum libero ornare non. Morbi fringilla sapien diam, sed rhoncus lacus egestas
|
|
vel.
|
|
</p>
|
|
|
|
<div class="figure" id="demo-1"></div>
|
|
|
|
<p>
|
|
Curabitur vestibulum vitae orci ac laoreet. Donec vel imperdiet tortor. Vestibulum lobortis aliquam tellus,
|
|
vitae viverra nisi porttitor quis. Pellentesque id efficitur arcu. Nunc laoreet pulvinar ligula eu maximus.
|
|
Mauris ullamcorper accumsan dui vel pulvinar.
|
|
</p>
|
|
|
|
<div class="figure" id="demo-2"></div>
|
|
|
|
<p>
|
|
Curabitur tincidunt sapien et diam fringilla, eu accumsan odio faucibus. Orci varius natoque penatibus et magnis
|
|
dis parturient montes, nascetur ridiculus mus.
|
|
</p>
|
|
|
|
<!-- <div id="atlas-container"></div>-->
|
|
</main>
|
|
|
|
<script type="module">
|
|
import {Engine} from './engine.js';
|
|
import {Diorama} from './diorama.js';
|
|
|
|
async function initDocument() {
|
|
try {
|
|
// 1. Initialize the global background renderer
|
|
const engine = new Engine();
|
|
|
|
// Append the texture atlas to the bottom for debugging
|
|
document.getElementById('atlas-container')?.appendChild(engine.atlas.canvas);
|
|
|
|
// 2. Setup Figure 1 (Shared: Wire & Repeater | Unique: Trapdoor)
|
|
const demo1 = new Diorama('demo-1', engine);
|
|
// Adjust camera to fit the small viewport
|
|
demo1.camera.radius = 2;
|
|
demo1.camera.phi = 10
|
|
demo1.camera.theta = -5
|
|
|
|
demo1.world.setBlock('minecraft:redstone_wire', 0, 0, 0, {
|
|
east: 'side',
|
|
west: 'none',
|
|
north: 'none',
|
|
south: 'none',
|
|
power: '15'
|
|
});
|
|
demo1.world.setBlock('minecraft:repeater', 1, 0, 0, {
|
|
facing: 'east',
|
|
delay: '1',
|
|
locked: 'false',
|
|
powered: 'true'
|
|
});
|
|
demo1.world.setBlock('minecraft:oak_trapdoor', 2, 0, 0, {facing: 'east', half: 'bottom', open: 'true'});
|
|
|
|
demo1.centerView()
|
|
|
|
engine.addDiorama(demo1);
|
|
|
|
// 3. Setup Figure 2 (Shared: Wire & Repeater | Unique: Piston & Redstone Block)
|
|
const demo2 = new Diorama('demo-2', engine);
|
|
// Adjust camera to fit the small viewport
|
|
demo2.camera.radius = 3;
|
|
// View from a slightly different angle
|
|
|
|
demo2.world.setBlock('minecraft:redstone_wire', 0, 0, 0, {
|
|
east: 'side',
|
|
west: 'none',
|
|
north: 'none',
|
|
south: 'none',
|
|
power: '0'
|
|
});
|
|
demo2.world.setBlock('minecraft:repeater', 1, 0, 0, {
|
|
facing: 'east',
|
|
delay: '4',
|
|
locked: 'false',
|
|
powered: 'false'
|
|
});
|
|
demo2.world.setBlock('minecraft:sticky_piston', 2, 0, 0, {facing: 'east', extended: 'false'});
|
|
demo2.world.setBlock('minecraft:sticky_piston', 2, 0, 1, {facing: 'east', extended: 'true'});
|
|
demo2.world.setBlock('minecraft:sticky_piston', 2, 0, 2, {facing: 'east', extended: 'true'});
|
|
demo2.world.setBlock('minecraft:piston_head', 2.5, 0, 1, {facing: 'east', short: 'true',type: 'sticky'});
|
|
demo2.world.setBlock('minecraft:piston_head', 3, 0, 2, {facing: 'east', short: 'false',type: 'sticky'});
|
|
|
|
demo2.world.setBlock('minecraft:glass', 3, 0, 0);
|
|
demo2.world.setBlock('minecraft:observer', 3.5, 0, 1, {facing: 'up', powered: 'true'});
|
|
demo2.world.setBlock('minecraft:redstone_block', 4, 0, 2);
|
|
|
|
demo2.centerView()
|
|
engine.addDiorama(demo2);
|
|
|
|
// 4. Build geometries and draw
|
|
// We await these so the meshes are fully baked and the atlas is populated
|
|
await demo1.update();
|
|
await demo2.update();
|
|
|
|
} catch (err) {
|
|
console.error("Renderer Initialization Failed:", err);
|
|
}
|
|
}
|
|
|
|
initDocument();
|
|
</script>
|
|
</body>
|
|
</html>
|