From 002d04958dbeade201a12b8a997262d2e5634c8b Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Fri, 17 Dec 2021 19:01:06 -0600 Subject: [PATCH] var -> let --- src/Controllers/EnvironmentController.js | 19 +++++++++---------- src/Environments/WorldEnvironment.js | 2 +- 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/src/Controllers/EnvironmentController.js b/src/Controllers/EnvironmentController.js index db47cfc..75b903d 100644 --- a/src/Controllers/EnvironmentController.js +++ b/src/Controllers/EnvironmentController.js @@ -57,19 +57,19 @@ class EnvironmentController extends CanvasController{ */ randomizeWalls(thickness=1) { this.env.clearWalls(); - var noise_threshold = -0.017; - var avg_noise = 0; - var resolution = 20; + const noise_threshold = -0.017; + let avg_noise = 0; + let resolution = 20; Perlin.seed(); - for (var r = 0; r < this.env.num_rows; r++) { - for (var c = 0; c < this.env.num_cols; c++) { - var xval = c/this.env.num_cols*(resolution/this.env.renderer.cell_size*(this.env.num_cols/this.env.num_rows)); - var yval = r/this.env.num_rows*(resolution/this.env.renderer.cell_size*(this.env.num_rows/this.env.num_cols)); - var noise = Perlin.get(xval, yval); + for (let r = 0; r < this.env.num_rows; r++) { + for (let c = 0; c < this.env.num_cols; c++) { + let xval = c/this.env.num_cols*(resolution/this.env.renderer.cell_size*(this.env.num_cols/this.env.num_rows)); + let yval = r/this.env.num_rows*(resolution/this.env.renderer.cell_size*(this.env.num_rows/this.env.num_cols)); + let noise = Perlin.get(xval, yval); avg_noise += noise/(this.env.num_rows*this.env.num_cols); if (noise > noise_threshold && noise < noise_threshold + thickness/resolution) { - var cell = this.env.grid_map.cellAt(c, r); + let cell = this.env.grid_map.cellAt(c, r); if (cell != null) { if(cell.owner != null) cell.owner.die(); this.env.changeCell(c, r, CellStates.wall, null); @@ -80,7 +80,6 @@ class EnvironmentController extends CanvasController{ } updateMouseLocation(offsetX, offsetY){ - super.updateMouseLocation(offsetX, offsetY); } diff --git a/src/Environments/WorldEnvironment.js b/src/Environments/WorldEnvironment.js index 791fc66..fdf48c3 100644 --- a/src/Environments/WorldEnvironment.js +++ b/src/Environments/WorldEnvironment.js @@ -104,7 +104,7 @@ class WorldEnvironment extends Environment{ clearWalls() { for(var wall of this.walls){ - var wcell = this.grid_map.cellAt(wall.col, wall.row); + let wcell = this.grid_map.cellAt(wall.col, wall.row); if (wcell && wcell.state == CellStates.wall) this.changeCell(wall.col, wall.row, CellStates.empty, null); }