-
Notifications
You must be signed in to change notification settings - Fork 68
/
types-and-sizes.html
146 lines (128 loc) · 4.31 KB
/
types-and-sizes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<script src="../node_modules/three/build/three.js"></script>
<script src="../node_modules/cannon/build/cannon.js"></script>
<script src="../node_modules/three/examples/js/controls/OrbitControls.js"></script>
<script src="../node_modules/three/examples/js/libs/stats.min.js"></script>
<script src="../lib/dice.js"></script>
</head>
<body>
<div id="ThreeJS" style="position: absolute; left:0px; top:0px"></div>
<script>
// MAIN
// standard global variables
var container, scene, camera, renderer, controls, stats;
init();
animate();
// FUNCTIONS
function init()
{
// SCENE
scene = new THREE.Scene();
// CAMERA
var SCREEN_WIDTH = window.innerWidth, SCREEN_HEIGHT = window.innerHeight;
var VIEW_ANGLE = 45, ASPECT = SCREEN_WIDTH / SCREEN_HEIGHT, NEAR = 0.1, FAR = 20000;
camera = new THREE.PerspectiveCamera( VIEW_ANGLE, ASPECT, NEAR, FAR);
scene.add(camera);
// RENDERER
renderer = new THREE.WebGLRenderer( {antialias:true} );
renderer.setSize(SCREEN_WIDTH, SCREEN_HEIGHT);
container = document.getElementById( 'ThreeJS' );
container.appendChild( renderer.domElement );
// EVENTS
// CONTROLS
controls = new THREE.OrbitControls( camera, renderer.domElement );
camera.position.set(100, 500, 300);
camera.rotation.x = -0.95;
// STATS
stats = new Stats();
stats.domElement.style.position = 'absolute';
stats.domElement.style.bottom = '0px';
stats.domElement.style.zIndex = 100;
container.appendChild( stats.domElement );
// LIGHT
var light = new THREE.PointLight(0xffffff, 0.8);
light.position.set(0,150,100);
scene.add(light);
// LIGHT
var light = new THREE.PointLight(0xffffff, 0.8);
light.position.set(-400,150,100);
scene.add(light);
// LIGHT
var light = new THREE.PointLight(0xffffff, 0.8);
light.position.set(400,150,100);
scene.add(light);
// FLOOR
var floorMaterial = new THREE.MeshPhongMaterial( { color: '#00aa00', side: THREE.DoubleSide } );
var floorGeometry = new THREE.PlaneGeometry(1000, 1000, 10, 10);
var floor = new THREE.Mesh(floorGeometry, floorMaterial);
floor.position.y = -0.5;
floor.rotation.x = Math.PI / 2;
scene.add(floor);
// SKYBOX/FOG
var skyBoxGeometry = new THREE.BoxGeometry( 10000, 10000, 10000 );
var skyBoxMaterial = new THREE.MeshPhongMaterial( { color: 0x9999ff, side: THREE.BackSide } );
var skyBox = new THREE.Mesh( skyBoxGeometry, skyBoxMaterial );
// scene.add(skyBox);
scene.fog = new THREE.FogExp2( 0x9999ff, 0.00025 );
////////////
// CUSTOM //
////////////
let world = new CANNON.World();
world.gravity.set(0, 0, -9.8 * 800);
world.broadphase = new CANNON.NaiveBroadphase();
world.solver.iterations = 16;
DiceManager.setWorld(world);
for (let i of [1, 10, 50, 100]) {
let dice4 = new DiceD4({size: i});
scene.add(dice4.getObject());
dice4.getObject().position.x = -300;
dice4.getObject().position.y = 85;
dice4.getObject().position.z = -i * 3;
let dice6 = new DiceD6({size: i, fontColor: '#aaaaaa', backColor: '#ff0000'});
scene.add(dice6.getObject());
dice6.getObject().position.x = -150;
dice6.getObject().position.y = 85;
dice6.getObject().position.z = -i * 3;
let dice8 = new DiceD8({size: i, fontColor: '#ffffff', backColor: '#0000ff'});
scene.add(dice8.getObject());
dice8.getObject().position.x = 0;
dice8.getObject().position.y = 85;
dice8.getObject().position.z = -i * 3;
let dice10 = new DiceD10({size: i});
scene.add(dice10.getObject());
dice10.getObject().position.x = 150;
dice10.getObject().position.y = 85;
dice10.getObject().position.z = -i * 3;
let dice12 = new DiceD12({size: i});
scene.add(dice12.getObject());
dice12.getObject().position.x = 300;
dice12.getObject().position.y = 85;
dice12.getObject().position.z = -i * 3;
let dice20 = new DiceD20({size: i});
scene.add(dice20.getObject());
dice20.getObject().position.x = 450;
dice20.getObject().position.y = 85;
dice20.getObject().position.z = -i * 3;
}
}
function animate()
{
requestAnimationFrame( animate );
render();
update();
}
function update()
{
controls.update();
stats.update();
}
function render()
{
renderer.render( scene, camera );
}
</script>
</body>
</html>