Spaces:
Paused
Paused
import * as THREE from 'https://unpkg.com/three@0.127.0/build/three.module.js'; | |
import {OrbitControls} from 'https://unpkg.com/three@0.127.0/examples/jsm/controls/OrbitControls.js'; | |
import {GLTFLoader} from 'https://unpkg.com/three@0.127.0/examples/jsm/loaders/GLTFLoader.js'; | |
import {DragControls} from 'https://unpkg.com/three@0.127.0/examples/jsm/controls/DragControls.js' | |
let scene, camera, renderer, cube, isDrawing, pointerDown; | |
let frameIndex = 0; | |
let pointCloudData; | |
let showAnimation = false; | |
let pointCloud | |
const allModelsUrl = ['background.glb', 'basin.glb', 'bed.glb', 'flower.glb', 'kitchen_chair_1.glb', 'kitchen_chair_2.glb', 'office_chair.glb', 'sofa.glb', 'table.glb', 'wc.glb']; | |
// const allModelsUrl = ['table.glb'] | |
const allModels_dict = {} | |
const allModels_list = [] | |
function init() { | |
scene = new THREE.Scene(); | |
camera = new THREE.PerspectiveCamera(45, window.innerWidth / window.innerHeight, 0.1, 100); | |
camera.position.set(9, 6, -9); | |
scene.add(camera) | |
renderer = new THREE.WebGLRenderer({alpha: true, antialias: true}); | |
renderer.setSize(window.innerWidth, window.innerHeight); | |
renderer.shadowMap.enabled = true; | |
renderer.shadowMap.type = THREE.PCFSoftShadowMap; // default THREE.PCFShadowMap | |
document.body.appendChild(renderer.domElement); | |
const planeGeometry = new THREE.PlaneGeometry(1000, 1000); | |
const plane = new THREE.Mesh(planeGeometry, new THREE.MeshBasicMaterial({ color: 0x000000, opacity: 0.25, transparent: true })); | |
plane.rotation.x = -Math.PI / 2; | |
plane.visible = false; // Make the plane invisible | |
scene.add(plane); | |
let points = []; | |
const line_geometry = new THREE.BufferGeometry().setFromPoints(points); | |
const line_material = new THREE.LineBasicMaterial({ color: 0x0000ff }); | |
const line = new THREE.Line(line_geometry, line_material); | |
scene.add(line); | |
const controls = new OrbitControls(camera, renderer.domElement); | |
controls.addEventListener('change', render); | |
// const light = new THREE.HemisphereLight(0xffffbb, 0x080820, 1); | |
// scene.add(light); | |
const ambientLight = new THREE.AmbientLight(0xffffff, 0.6); // soft white light | |
scene.add(ambientLight); | |
const directionalLight = new THREE.DirectionalLight(0xffffff, 0.8); | |
directionalLight.position.set(0, 10, 5 ); | |
directionalLight.castShadow = true; | |
scene.add(directionalLight); | |
const grid = new THREE.GridHelper(30, 30); | |
scene.add(grid); | |
// Handle dynamic point cloud | |
const geometry = new THREE.BufferGeometry(); | |
const points_frame = new Float32Array(1048 * 3); | |
geometry.setAttribute('position', new THREE.BufferAttribute(points_frame, 3)); | |
const material = new THREE.PointsMaterial({ size: 0.04, color: 0x00ffff }); | |
pointCloud = new THREE.Points(geometry, material); | |
scene.add(pointCloud); | |
for (let i = 0; i < allModelsUrl.length; i++) { | |
const assetLoader = new GLTFLoader(); | |
assetLoader.load('/static/'.concat(allModelsUrl[i]), function (gltf) { | |
const model = gltf.scene; | |
if (i !== 0) {allModels_dict[allModelsUrl[i]] = model; | |
allModels_list.push(model);} | |
scene.add(model); | |
}, undefined, function (error) { | |
console.error(error); | |
}); | |
} | |
const dragControls = new DragControls(allModels_list, camera, renderer.domElement); | |
dragControls.addEventListener('dragstart', function (event) { | |
if (isDrawing) {return} | |
controls.enabled = false; | |
raycaster.setFromCamera(mouse, camera); | |
const intersects = raycaster.intersectObject(plane); | |
if (intersects.length > 0) { | |
const point = intersects[0].point; | |
event.object.position.set(point.x, 0, point.z); | |
} | |
}); | |
dragControls.addEventListener('dragend', function (event) { | |
if (isDrawing) {return} | |
controls.enabled = true; | |
}); | |
dragControls.addEventListener('drag', function (event) { | |
if (isDrawing) {return} | |
raycaster.setFromCamera(mouse, camera); | |
const intersects = raycaster.intersectObject(plane); | |
if (intersects.length > 0) { | |
const point = intersects[0].point; | |
event.object.position.set(point.x, 0, point.z); | |
} | |
}); | |
// Raycaster for constraining movement to the plane | |
const raycaster = new THREE.Raycaster(); | |
// Mouse vector for the raycaster | |
const mouse = new THREE.Vector2(); | |
// Update the mouse vector with the current mouse position | |
document.addEventListener('pointermove', function (event) { | |
mouse.x = (event.x / renderer.domElement.clientWidth) * 2 - 1; | |
mouse.y = -(event.y / renderer.domElement.clientHeight) * 2 + 1; | |
if (isDrawing && pointerDown) { | |
raycaster.setFromCamera(mouse, camera); | |
const intersects = raycaster.intersectObject(plane); | |
const point = intersects[0].point; | |
point.y = 0.1 | |
points.push(point); | |
line.geometry.setFromPoints(points); | |
}}, false); | |
// pointerDown = false; | |
document.addEventListener('pointerdown', function (event) { | |
pointerDown = true; | |
}, false); | |
document.addEventListener('pointerup', function (event) { | |
pointerDown = false; | |
isDrawing = false; | |
controls.enabled = true | |
dragControls.enabled = true | |
}, false); | |
document.getElementById('buttonOverlaySecond').addEventListener('click', toggleDrawing); | |
isDrawing = false; | |
function toggleDrawing() { | |
points = [] | |
isDrawing = true; | |
controls.enabled = false | |
dragControls.enabled = false | |
} | |
document.getElementById('buttonOverlay').addEventListener('click', runGeneration); | |
function runGeneration() { | |
const userData = {} | |
for (let [key, value] of Object.entries(allModels_dict)) { | |
userData[key] = value.children[0].position | |
} | |
userData['trajectory'] = points | |
console.log(userData) | |
fetch('/move_cube', { | |
method: 'POST', | |
headers: { | |
'Content-Type': 'application/json', | |
}, | |
body: JSON.stringify(userData), | |
}) | |
.then(response => response.json()) | |
.then(data => { | |
pointCloudData = data | |
}) | |
.catch((error) => { | |
console.error('Error:', error); | |
}); | |
} | |
document.addEventListener('keypress', function(event) { | |
const key = event.key; // "a", "1", "Shift", etc. | |
if (key === 'q') {if (isDrawing) {isDrawing = false;} | |
else {isDrawing = true;}} | |
}); | |
// Resize Listener | |
window.addEventListener('resize', onWindowResize, false); | |
animate(); | |
} | |
function updatePointCloud() { | |
if (!pointCloudData) {return} | |
// const geometry = new THREE.BufferGeometry(); | |
// const material = new THREE.PointsMaterial({ size: 0.1, color: 0x00ff00 }); | |
// const pointsCloud = new THREE.Points(geometry, material); | |
// scene.add(pointsCloud); | |
const positions = pointCloud.geometry.attributes.position.array; | |
const frameData = pointCloudData[frameIndex]; | |
for (let i = 0, j = 0; i < frameData.length; i++, j += 3) { | |
positions[j] = frameData[i][0]; | |
positions[j + 1] = frameData[i][1]; | |
positions[j + 2] = frameData[i][2]; | |
} | |
pointCloud.geometry.attributes.position.needsUpdate = true; | |
frameIndex += 1; | |
if (frameIndex >= pointCloudData.length) frameIndex = 0; // Loop back to the start | |
} | |
function animate() { | |
requestAnimationFrame(animate); | |
updatePointCloud() | |
renderer.render(scene, camera); | |
} | |
function onWindowResize() { | |
camera.aspect = window.innerWidth / window.innerHeight; | |
camera.updateProjectionMatrix(); | |
renderer.setSize(window.innerWidth, window.innerHeight); | |
render(); | |
} | |
// function onDocumentKeyDown(event) { | |
// var keyCode = event.which; | |
// // Move the cube with arrow keys | |
// if (keyCode == 87) { cube.position.y += 0.1; } // W key | |
// if (keyCode == 83) { cube.position.y -= 0.1; } // S key | |
// if (keyCode == 65) { cube.position.x -= 0.1; } // A key | |
// if (keyCode == 68) { cube.position.x += 0.1; } // D key | |
// sendCubePosition(); | |
// } | |
// function runGeneration() { | |
// const position = { | |
// x: cube.position.x, | |
// y: cube.position.y, | |
// z: cube.position.z | |
// }; | |
// | |
// fetch('/move_cube', { | |
// method: 'POST', | |
// headers: { | |
// 'Content-Type': 'application/json', | |
// }, | |
// body: JSON.stringify(position), | |
// }) | |
// .then(response => response.json()) | |
// .then(data => { | |
// // Use the data to create a new cube | |
// const newGeometry = new THREE.BoxGeometry(); | |
// const newMaterial = new THREE.MeshBasicMaterial({ color: 0xff0000 }); | |
// const newCube = new THREE.Mesh(newGeometry, newMaterial); | |
// newCube.position.set(data.x, data.y, data.z); | |
// scene.add(newCube); | |
// }) | |
// .catch((error) => { | |
// console.error('Error:', error); | |
// }); | |
// } | |
function render() { | |
renderer.render(scene, camera); | |
} | |
// document.addEventListener("keydown", onDocumentKeyDown, false); | |
init(); |