/*******************************************************************************
*
* @file simulation-mode-light-sensor-array.js Test the light sensor array
* light sensor
*
* @author Omar Essilfie-Quaye <omareq08+githubio@gmail.com>
* @version 1.0
* @date 31-March-2024
* @link https://omareq.github.io/line-sim-3d/
* @link https://omareq.github.io/line-sim-3d/docs/
*
*******************************************************************************
*
* GNU General Public License V3.0
* --------------------------------
*
* Copyright (C) 2024 Omar Essilfie-Quaye
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*****************************************************************************/
"use strict";
/**
* Simulation namespace object
*/
var Simulation = Simulation || {};
/**
* Simulation Mode nested namespace object
*/
Simulation.Mode = Simulation.Mode || {};
/**
* Class Simulation.Mode.DebugLightSensorArray is a simulation mode that tests
* the light sensor array functionality. This is done by moving the light
* sensor array to the mouse location and constantly rotating it to make sure
* that it maintains the correct orientation and spacing for each sensor.
*
* @see Simulation.Mode.ModeType
* @see Robot.LightSensorArray
* @see Robot.AnalogLightSensor
*/
Simulation.Mode.DebugLightSensorArray = class extends Simulation.Mode.ModeType {
static staticName = "DebugLightSensorArray";
/**
* The constructor that sets up the simulation variables
*/
constructor() {
super();
this.name = "DebugLightSensorArray";
const numTilesX = 7;
const numTilesY = 5;
const tilesRatio = numTilesX / numTilesY;
const pixelsRatio = width / height;
let gridSize = -1;
if(tilesRatio > pixelsRatio) {
gridSize = width / numTilesX;
} else {
gridSize = height / numTilesY;
}
World.setGridSize(gridSize);
this.sensorRadius = 0.5 * World.lineThickness + 1;
let numSensors = 3;
let globalPos = createVector(0,0);
let sensorPositions = [
createVector(-0.25 * World.gridSize, 0),
createVector(0.00, 0.00),
createVector(0.25 * World.gridSize, 0)
];
let radiuses = [this.sensorRadius,
this.sensorRadius,
this.sensorRadius
];
let analogOrDigital = [
Robot.LightSensorType.Analog,
Robot.LightSensorType.Analog,
Robot.LightSensorType.Analog
];
this.bearing = 0;
this.radPerSec = 0.5 * math.PI;
this.sensorArray = new Robot.LightSensorArray(numSensors,
globalPos,
sensorPositions,
radiuses,
analogOrDigital);
this.room = new World.Room(numTilesX, numTilesY, createVector(0, 0));
this.room.fillRoomWithSnakePattern();
let grid = this.room.getAllTiles();
grid[2][0] = World.Tiles.gapQuarterLineHorizontal.copy();
grid[4][0] = World.Tiles.gapQuarterLineHorizontal.copy();
grid[6][0] = World.Tiles.diagonalDownLeft.copy();
grid[4][1] = World.Tiles.diagonalVDown.copy();
grid[3][1] = World.Tiles.diagonalVUp.copy();
grid[1][1] = World.Tiles.zigZagHorizontal.copy();
grid[0][1] = World.Tiles.quarterCircleDownRight.copy();
grid[0][2] = World.Tiles.quarterCircleUpRight.copy();
grid[2][2] = World.Tiles.blankLine.copy();
grid[3][2] = World.Tiles.gapQuarterLineHorizontal.copy();
grid[5][2] = World.Tiles.zigZagHorizontal.copy();
grid[6][2] = World.Tiles.quarterCircleDownLeft.copy();
grid[6][3] = World.Tiles.diagonalUpLeft.copy();
grid[4][3] = World.Tiles.zigZagHorizontal.copy();
grid[3][3] = World.Tiles.zigZagHorizontal.copy();
grid[2][3] = World.Tiles.gapQuarterLineHorizontal.copy();
grid[0][3] = World.Tiles.diagonalDownRight.copy();
grid[0][4] = World.Tiles.diagonalUpRight.copy();
grid[2][4] = World.Tiles.diagonalVDown.copy();
grid[3][4] = World.Tiles.diagonalVDown.copy();
this.room.setTiles(grid);
}
/**
* Update function that updates the state of the simulation
*/
update() {
const mousePos = createVector(mouseX, mouseY);
this.room.draw();
this.sensorArray.setPos(mousePos);
this.sensorArray.setBearing(this.bearing);
this.bearing += this.radPerSec * Simulation.dtSeconds;
if(this.bearing >= math.TWO_PI) {
this.bearing = 0;
}
this.sensorArray.read(this.room);
this.sensorArray.draw();
}
};
Simulation.Mode.ModeList.push(Simulation.Mode.DebugLightSensorArray);