|
@@ -0,0 +1,227 @@
|
|
|
+<!DOCTYPE HTML>
|
|
|
+<html lang="en">
|
|
|
+ <head>
|
|
|
+ <title>three.js - interactive - voxel painter</title>
|
|
|
+ <meta charset="utf-8">
|
|
|
+ <style type="text/css">
|
|
|
+ body {
|
|
|
+ font-family: Monospace;
|
|
|
+ background-color: #f0f0f0;
|
|
|
+ margin: 0px;
|
|
|
+ overflow: hidden;
|
|
|
+ }
|
|
|
+ </style>
|
|
|
+ </head>
|
|
|
+ <body>
|
|
|
+
|
|
|
+ <script type="text/javascript" src="../build/Three.js"></script>
|
|
|
+
|
|
|
+ <script type="text/javascript" src="geometry/primitives/Cube.js"></script>
|
|
|
+ <script type="text/javascript" src="geometry/primitives/Plane.js"></script>
|
|
|
+
|
|
|
+ <script type="text/javascript" src="js/Stats.js"></script>
|
|
|
+
|
|
|
+ <script type="text/javascript">
|
|
|
+
|
|
|
+ var container, stats;
|
|
|
+ var camera, scene, renderer;
|
|
|
+ var projector, plane, cube;
|
|
|
+ var mouse2D, mouse3D, ray,
|
|
|
+ rollOveredFace, isShiftDown = false,
|
|
|
+ theta = 45, isCtrlDown = false;
|
|
|
+
|
|
|
+ init();
|
|
|
+ setInterval( loop, 1000 / 60 );
|
|
|
+
|
|
|
+ function init() {
|
|
|
+
|
|
|
+ container = document.createElement( 'div' );
|
|
|
+ document.body.appendChild( container );
|
|
|
+
|
|
|
+ var info = document.createElement( 'div' );
|
|
|
+ info.style.position = 'absolute';
|
|
|
+ info.style.top = '10px';
|
|
|
+ info.style.width = '100%';
|
|
|
+ info.style.textAlign = 'center';
|
|
|
+ info.innerHTML = '<a href="http://github.com/mrdoob/three.js" target="_blank">three.js</a> - voxel painter<br /><strong>click</strong>: add voxel, <strong>control + click</strong>: remove voxel, <strong>shift + click</strong>: rotate, <a href="javascript:save();return false;">save .png</a>';
|
|
|
+ container.appendChild( info );
|
|
|
+
|
|
|
+ camera = new THREE.Camera( 40, window.innerWidth / window.innerHeight, 1, 10000 );
|
|
|
+ camera.position.y = 800;
|
|
|
+ camera.target.position.y = 200;
|
|
|
+
|
|
|
+ scene = new THREE.Scene();
|
|
|
+
|
|
|
+ // Grid
|
|
|
+
|
|
|
+ var geometry = new THREE.Geometry();
|
|
|
+ geometry.vertices.push( new THREE.Vertex( new THREE.Vector3( - 500, 0, 0 ) ) );
|
|
|
+ geometry.vertices.push( new THREE.Vertex( new THREE.Vector3( 500, 0, 0 ) ) );
|
|
|
+
|
|
|
+ for ( var i = 0; i <= 20; i ++ ) {
|
|
|
+
|
|
|
+ var line = new THREE.Line( geometry, new THREE.LineColorMaterial( 0x000000, 0.2 ) );
|
|
|
+ line.position.z = ( i * 50 ) - 500;
|
|
|
+ scene.addObject( line );
|
|
|
+
|
|
|
+ var line = new THREE.Line( geometry, new THREE.LineColorMaterial( 0x000000, 0.2 ) );
|
|
|
+ line.position.x = ( i * 50 ) - 500;
|
|
|
+ line.rotation.y = 90 * Math.PI / 180;
|
|
|
+ scene.addObject( line );
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ projector = new THREE.Projector();
|
|
|
+
|
|
|
+ plane = new THREE.Mesh( new Plane( 1000, 1000, 20, 20 ), new THREE.MeshFaceMaterial() );
|
|
|
+ plane.rotation.x = - 90 * Math.PI / 180;
|
|
|
+ scene.addObject( plane );
|
|
|
+
|
|
|
+ mouse2D = new THREE.Vector3( 0, 10000, 0.5 );
|
|
|
+ ray = new THREE.Ray( camera.position, null );
|
|
|
+
|
|
|
+ // Lights
|
|
|
+
|
|
|
+ var ambientLight = new THREE.AmbientLight( 0x606060 );
|
|
|
+ scene.addLight( ambientLight );
|
|
|
+
|
|
|
+ var directionalLight = new THREE.DirectionalLight( 0xffffff );
|
|
|
+ directionalLight.position.x = Math.random() - 0.5;
|
|
|
+ directionalLight.position.y = Math.random() - 0.5;
|
|
|
+ directionalLight.position.z = Math.random() - 0.5;
|
|
|
+ directionalLight.position.normalize();
|
|
|
+ scene.addLight( directionalLight );
|
|
|
+
|
|
|
+ var directionalLight = new THREE.DirectionalLight( 0x808080 );
|
|
|
+ directionalLight.position.x = Math.random() - 0.5;
|
|
|
+ directionalLight.position.y = Math.random() - 0.5;
|
|
|
+ directionalLight.position.z = Math.random() - 0.5;
|
|
|
+ directionalLight.position.normalize();
|
|
|
+ scene.addLight( directionalLight );
|
|
|
+
|
|
|
+ renderer = new THREE.CanvasRenderer();
|
|
|
+ renderer.setSize( window.innerWidth, window.innerHeight );
|
|
|
+
|
|
|
+ container.appendChild(renderer.domElement);
|
|
|
+
|
|
|
+ stats = new Stats();
|
|
|
+ stats.domElement.style.position = 'absolute';
|
|
|
+ stats.domElement.style.top = '0px';
|
|
|
+ container.appendChild( stats.domElement );
|
|
|
+
|
|
|
+ document.addEventListener( 'mousemove', onDocumentMouseMove, false );
|
|
|
+ document.addEventListener( 'mousedown', onDocumentMouseDown, false );
|
|
|
+ document.addEventListener( 'keydown', onDocumentKeyDown, false );
|
|
|
+ document.addEventListener( 'keyup', onDocumentKeyUp, false );
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ function onDocumentMouseMove( event ) {
|
|
|
+
|
|
|
+ event.preventDefault();
|
|
|
+
|
|
|
+ mouse2D.x = ( event.clientX / window.innerWidth ) * 2 - 1;
|
|
|
+ mouse2D.y = - ( event.clientY / window.innerHeight ) * 2 + 1;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ function onDocumentMouseDown( event ) {
|
|
|
+
|
|
|
+ event.preventDefault();
|
|
|
+
|
|
|
+ var intersects = ray.intersectScene( scene );
|
|
|
+
|
|
|
+ if ( intersects.length > 0 ) {
|
|
|
+
|
|
|
+ if ( isCtrlDown ) {
|
|
|
+
|
|
|
+ if ( intersects[ 0 ].object != plane ) {
|
|
|
+
|
|
|
+ scene.removeObject( intersects[ 0 ].object );
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ } else {
|
|
|
+
|
|
|
+ var position = new THREE.Vector3().add( intersects[ 0 ].point, intersects[ 0 ].object.matrixRotation.transform( intersects[ 0 ].face.normal.clone() ) );
|
|
|
+
|
|
|
+ var voxel = new THREE.Mesh( new Cube( 50, 50, 50 ), [ new THREE.MeshColorFillMaterial( 0x00ff80, 1 ), new THREE.MeshFaceMaterial() ] );
|
|
|
+ voxel.position.x = Math.floor( position.x / 50 ) * 50 + 25;
|
|
|
+ voxel.position.y = Math.floor( position.y / 50 ) * 50 + 25;
|
|
|
+ voxel.position.z = Math.floor( position.z / 50 ) * 50 + 25;
|
|
|
+ voxel.overdraw = true;
|
|
|
+ scene.addObject( voxel );
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function onDocumentKeyDown( event ) {
|
|
|
+
|
|
|
+ switch( event.keyCode ) {
|
|
|
+
|
|
|
+ case 16: isShiftDown = true; break;
|
|
|
+ case 17: isCtrlDown = true; break;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ function onDocumentKeyUp( event ) {
|
|
|
+
|
|
|
+ switch( event.keyCode ) {
|
|
|
+
|
|
|
+ case 16: isShiftDown = false; break;
|
|
|
+ case 17: isCtrlDown = false; break;
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ function save() {
|
|
|
+
|
|
|
+ window.open( renderer.domElement.toDataURL('image/png'), 'mywindow' );
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ function loop() {
|
|
|
+
|
|
|
+ if ( isShiftDown ) {
|
|
|
+
|
|
|
+ theta += mouse2D.x * 3;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ mouse3D = projector.unprojectVector( mouse2D.clone(), camera );
|
|
|
+ ray.direction = mouse3D.subSelf( camera.position ).normalize();
|
|
|
+
|
|
|
+ var intersects = ray.intersectScene( scene );
|
|
|
+
|
|
|
+ // console.log( intersects );
|
|
|
+
|
|
|
+ if ( intersects.length > 0 ) {
|
|
|
+
|
|
|
+ if ( intersects[ 0 ].face != rollOveredFace ) {
|
|
|
+
|
|
|
+ if ( rollOveredFace ) rollOveredFace.material = [];
|
|
|
+ rollOveredFace = intersects[ 0 ].face;
|
|
|
+ rollOveredFace.material = [ new THREE.MeshColorFillMaterial( 0xff0000, 0.5 ) ];
|
|
|
+ }
|
|
|
+ } else if ( rollOveredFace ) {
|
|
|
+
|
|
|
+ rollOveredFace.material = [];
|
|
|
+ rollOveredFace = null;
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ camera.position.x = 1400 * Math.sin( theta * Math.PI / 360 );
|
|
|
+ camera.position.z = 1400 * Math.cos( theta * Math.PI / 360 );
|
|
|
+
|
|
|
+ renderer.render( scene, camera );
|
|
|
+ stats.update();
|
|
|
+ }
|
|
|
+
|
|
|
+ </script>
|
|
|
+
|
|
|
+ </body>
|
|
|
+</html>
|