-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
130 lines (108 loc) · 3.45 KB
/
scripts.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
// Global Variables
let scene;
let camera;
let renderer;
// Constants
const WIDTH = window.innerWidth;
const HEIGHT = window.innerHeight;
const CLOUD_MAT = new THREE.MeshLambertMaterial({ color: 0xffffff });
// Scene variables
const SPEED_MIN = 30;
const SPEED_MAX = 75;
const CLOUD_CLOSE = 1;
const CLOUD_FAR = -3.25;
const CLOUD_VERTICAL = 3;
const CLOUD_HORIZONTAL = 13;
const SQUISH_MAX = 100;
const SQUISH_MIN = 75;
const CLOUDS_SPAWN_AMNT = 10;
let cloudSpawnPositions = ["", "", "", "", "", "", "", "", "", ""];
cloudSpawnPositions.forEach(function(curVal, i) {
cloudSpawnPositions[i] = getRandomInt(-CLOUD_HORIZONTAL, CLOUD_HORIZONTAL);
});
console.log(cloudSpawnPositions);
// Scene Lighting
const LIGHT_POINT = new THREE.PointLight(0xffffff, 0.5); // creates an ambient light with the color and intensity
const LIGHT_AMB = new THREE.AmbientLight(0xffffff, 0.5); // creates an ambient light with the color and intensity
const LIGHT_AMB_BLU = new THREE.AmbientLight(0x26b2de, 0.15);
// Init Scene
function init() {
scene = new THREE.Scene();
initCamera();
initRenderer();
cloudsInitialInit();
// Adds the scene lighting
scene.add(LIGHT_AMB);
scene.add(LIGHT_AMB_BLU);
scene.add(LIGHT_POINT);
LIGHT_POINT.position.y = 100;
LIGHT_POINT.position.x = 50;
document.querySelector('#cloudBox').appendChild(renderer.domElement); // Adds in WebGL renderer
}
// Functions
function initCamera() {
camera = new THREE.PerspectiveCamera(50, WIDTH / HEIGHT, 1, 10);
camera.position.set(0, 0, 7);
camera.lookAt(scene.position);
}
function initRenderer() {
renderer = new THREE.WebGLRenderer({ antialias: true });
renderer.setSize(WIDTH, HEIGHT);
renderer.setClearColor(0x26b2de); // sets the background color
renderer.setPixelRatio(window.devicePixelRatio); // sets the pixel ratio to be the size of the screen
}
function initCloud(isXRandom) {
let rand = isXRandom;
var loader = new THREE.JSONLoader();
loader.load("./data/cloud1.json", function(geometry) {
let mesh = new THREE.Mesh(geometry, CLOUD_MAT);
// Give the cloud a random speed between MIN_SPEED and MAX_SPEED
mesh["speed"] = getRandomInt(SPEED_MIN, SPEED_MAX) * 0.0001;
scene.add(mesh);
// Mesh position
mesh.position.z = getRandomInt(CLOUD_FAR, CLOUD_CLOSE);
mesh.position.y = getRandomInt(-CLOUD_VERTICAL, CLOUD_VERTICAL);
if (rand == true) {
mesh.position.x = getRandomInt(-CLOUD_HORIZONTAL, CLOUD_HORIZONTAL);
console.log ("it ran");
}
else {
mesh.position.x = CLOUD_HORIZONTAL;
}
// Mesh scale
mesh.scale.x = getRandomInt(SQUISH_MIN, SQUISH_MAX) * 0.01;
mesh.scale.y = getRandomInt(SQUISH_MIN, SQUISH_MAX) * 0.01;
mesh.scale.z = getRandomInt(SQUISH_MIN, SQUISH_MAX) * 0.01;
});
}
function cloudsInitialInit() {
for (i = 0; i < CLOUDS_SPAWN_AMNT; i++) {
initCloud(true);
}
}
function moveClouds() {
scene.children.forEach(function(curVal, i) {
if (scene.children[i]["type"] == "Mesh") {
// Moves the cloud based on assigned speed
scene.children[i].position.x -= scene.children[i].speed;
respawnCloud(i);
}
});
}
function respawnCloud(i) {
if (scene.children[i].position.x < -CLOUD_HORIZONTAL) {
scene.children.splice(i,1);
initCloud();
}
}
function getRandomInt(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
function render() {
requestAnimationFrame(render);
// Animation stuff
moveClouds();
renderer.render(scene, camera);
}
init();
render();