forked from arscan/hexasphere.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
201 lines (149 loc) · 6.73 KB
/
main.js
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
$(window).load(function(){
var width = $(window).innerWidth();
var height = $(window).innerHeight()-10;
var renderer = new THREE.WebGLRenderer( { antialias: true } );
renderer.setSize( width, height);
var cameraDistance = 65;
var camera = new THREE.PerspectiveCamera( cameraDistance, width / height, 1, 200);
camera.position.z = -cameraDistance;
var scene = new THREE.Scene();
scene.fog = new THREE.Fog( 0x000000, cameraDistance*.4, cameraDistance * 1.2);
var img = document.getElementById("projection");
var projectionCanvas = document.createElement('canvas');
var projectionContext = projectionCanvas.getContext('2d');
projectionCanvas.width = img.width;
projectionCanvas.height = img.height;
projectionContext.drawImage(img, 0, 0, img.width, img.height);
var pixelData = null;
var maxLat = -100;
var maxLon = 0;
var minLat = 0;
var minLon = 0;
var isLand = function(lat, lon){
var x = parseInt(img.width * (lon + 180) / 360);
var y = parseInt(img.height * (lat+90) / 180);
if(pixelData == null){
pixelData = projectionContext.getImageData(0,0,img.width, img.height);
}
return pixelData.data[(y * pixelData.width + x) * 4] === 0;
};
var meshMaterials = [];
meshMaterials.push(new THREE.MeshBasicMaterial({color: 0x7cfc00, transparent: true}));
meshMaterials.push(new THREE.MeshBasicMaterial({color: 0x397d02, transparent: true}));
meshMaterials.push(new THREE.MeshBasicMaterial({color: 0x77ee00, transparent: true}));
meshMaterials.push(new THREE.MeshBasicMaterial({color: 0x61b329, transparent: true}));
meshMaterials.push(new THREE.MeshBasicMaterial({color: 0x83f52c, transparent: true}));
meshMaterials.push(new THREE.MeshBasicMaterial({color: 0x83f52c, transparent: true}));
meshMaterials.push(new THREE.MeshBasicMaterial({color: 0x4cbb17, transparent: true}));
meshMaterials.push(new THREE.MeshBasicMaterial({color: 0x00ee00, transparent: true}));
meshMaterials.push(new THREE.MeshBasicMaterial({color: 0x00aa11, transparent: true}));
var oceanMaterial = []
oceanMaterial.push(new THREE.MeshBasicMaterial({color: 0x0f2342, transparent: true}));
oceanMaterial.push(new THREE.MeshBasicMaterial({color: 0x0f1e38, transparent: true}));
var introTick = 0;
var seenTiles = {};
var currentTiles = [];
var createScene = function(radius, divisions, tileSize){
introTick = -1;
while(scene.children.length > 0){
scene.remove(scene.children[0]);
}
var hexasphere = new Hexasphere(radius, divisions, tileSize);
for(var i = 0; i< hexasphere.tiles.length; i++){
var t = hexasphere.tiles[i];
var latLon = t.getLatLon(hexasphere.radius);
var geometry = new THREE.Geometry();
for(var j = 0; j< t.boundary.length; j++){
var bp = t.boundary[j];
geometry.vertices.push(new THREE.Vector3(bp.x, bp.y, bp.z));
}
geometry.faces.push(new THREE.Face3(0,1,2));
geometry.faces.push(new THREE.Face3(0,2,3));
geometry.faces.push(new THREE.Face3(0,3,4));
if(geometry.vertices.length > 5){
geometry.faces.push(new THREE.Face3(0,4,5));
}
if(isLand(latLon.lat, latLon.lon)){
material = meshMaterials[Math.floor(Math.random() * meshMaterials.length)]
} else {
material = oceanMaterial[Math.floor(Math.random() * oceanMaterial.length)]
}
material.opacity = 0.3;
var mesh = new THREE.Mesh(geometry, material.clone());
scene.add(mesh);
hexasphere.tiles[i].mesh = mesh;
}
seenTiles = {};
currentTiles = hexasphere.tiles.slice().splice(0,12);
currentTiles.forEach(function(item){
seenTiles[item.toString()] = 1;
item.mesh.material.opacity = 1;
});
window.hexasphere = hexasphere;
introTick = 0;
};
createScene(30, 25, .95);
var startTime = Date.now();
var lastTime = Date.now();
var cameraAngle = -Math.PI/1.5;
var tick = function(){
var dt = Date.now() - lastTime;
var rotateCameraBy = (2 * Math.PI)/(200000/dt);
cameraAngle += rotateCameraBy;
lastTime = Date.now();
camera.position.x = cameraDistance * Math.cos(cameraAngle);
camera.position.y = Math.sin(cameraAngle)* 10;
camera.position.z = cameraDistance * Math.sin(cameraAngle);
camera.lookAt( scene.position );
renderer.render( scene, camera );
var nextTiles = [];
currentTiles.forEach(function(item){
item.neighbors.forEach(function(neighbor){
if(!seenTiles[neighbor.toString()]){
neighbor.mesh.material.opacity = 1;
nextTiles.push(neighbor);
seenTiles[neighbor] = 1;
}
});
});
currentTiles = nextTiles;
requestAnimationFrame(tick);
}
function onWindowResize(){
camera.aspect = window.innerWidth / window.innerHeight;
camera.updateProjectionMatrix();
renderer.setSize(window.innerWidth, window.innerHeight);
}
function clamp(val, min, max){
return Math.min(Math.max(min, val), max);
}
$('.generateButton').click(function(){
var radius = $('#radius').val();
var subdivisions = $('#subdivisions').val();
var tileSize = $('#tileSize').val();
if ($.isNumeric(radius) && $.isNumeric(subdivisions) && $.isNumeric(tileSize)){
$('#generateError').hide();
radius = parseInt(clamp(radius, .1, 10000));
subdivisions = parseInt(clamp(subdivisions, 1, 100));
tileSize = parseFloat(clamp(tileSize, 0.0001, 1))
$('#radius').val(radius);
$('#subdivisions').val(subdivisions);
$('#tileSize').val(tileSize);
createScene(radius, subdivisions, tileSize);
if($(this).prop('id') === 'generateObj'){
var blob = new Blob([hexasphere.toObj()], {type: "text/plain;charset=utf-8"});
saveAs(blob, 'hexasphere.obj')
} else if($(this).prop('id') === 'generateJson'){
var blob = new Blob([hexasphere.toJson()], {type: "application/json;charset=utf-8"});
saveAs(blob, 'hexasphere.json')
}
} else {
$('#generateError').show();
}
});
window.addEventListener( 'resize', onWindowResize, false );
$("#container").append(renderer.domElement);
requestAnimationFrame(tick);
window.scene = scene;
window.createScene = createScene;
});