ws4kp/server/scripts/modules/progress.js

117 lines
3.8 KiB
JavaScript
Raw Normal View History

2020-09-08 19:39:17 +00:00
// regional forecast and observations
2020-09-08 21:27:03 +00:00
/* globals WeatherDisplay, utils, STATUS, draw, navigation */
2020-09-08 19:39:17 +00:00
// eslint-disable-next-line no-unused-vars
class Progress extends WeatherDisplay {
2020-10-29 21:44:28 +00:00
constructor(navId, elemId) {
2020-09-08 19:39:17 +00:00
super(navId, elemId);
// pre-load background image (returns promise)
this.backgroundImage = utils.image.load('images/BackGround1_1.png');
// disable any navigation timing
this.timing = false;
this.version = document.getElementById('version').innerHTML;
}
async drawCanvas(displays, loadedCount) {
super.drawCanvas();
// set up an event listener
if (!this.eventListener) {
this.eventListener = true;
this.canvas.addEventListener('click', (e) => this.canvasClick(e), false);
}
// get the background image
const backgroundImage = await this.backgroundImage;
// only draw the background once
if (!this.backgroundDrawn) {
this.context.drawImage(backgroundImage, 0, 0, 640, 480, 0, 0, 640, 480);
draw.horizontalGradientSingle(this.context, 0, 90, 52, 399, draw.sideColor1, draw.sideColor2);
draw.horizontalGradientSingle(this.context, 584, 90, 640, 399, draw.sideColor1, draw.sideColor2);
draw.horizontalGradientSingle(this.context, 0, 30, 500, 90, draw.topColor1, draw.topColor2);
draw.triangle(this.context, 'rgb(28, 10, 87)', 500, 30, 450, 90, 500, 90);
2020-10-29 21:44:28 +00:00
draw.titleText(this.context, 'WeatherStar', `4000+ ${this.version}`);
2020-09-08 19:39:17 +00:00
}
this.finishDraw();
// if no displays provided just draw the backgrounds (above)
if (!displays) return;
displays.forEach((display, idx) => {
2020-10-29 21:44:28 +00:00
const y = 120 + idx * 29;
2020-09-08 19:39:17 +00:00
const dots = Array(120 - Math.floor(display.name.length * 2.5)).join('.');
draw.text(this.context, 'Star4000 Extended', '19pt', '#ffffff', 70, y, display.name + dots, 2);
let statusText;
let statusColor;
switch (display.status) {
case STATUS.loading:
statusText = 'Loading';
statusColor = '#ffff00';
break;
case STATUS.loaded:
statusText = 'Press Here';
statusColor = '#00ff00';
this.context.drawImage(backgroundImage, 440, y - 20, 75, 25, 440, y - 20, 75, 25);
break;
case STATUS.failed:
statusText = 'Failed';
statusColor = '#ff0000';
break;
case STATUS.noData:
statusText = 'No Data';
statusColor = '#C0C0C0';
draw.box(this.context, 'rgb(33, 40, 90)', 475, y - 15, 75, 15);
break;
2020-09-18 16:24:45 +00:00
case STATUS.disabled:
statusText = 'Disabled';
statusColor = '#C0C0C0';
this.context.drawImage(backgroundImage, 470, y - 20, 45, 25, 470, y - 20, 45, 25);
break;
2020-09-08 19:39:17 +00:00
default:
}
// Erase any dots that spill into the status text.
this.context.drawImage(backgroundImage, 475, y - 20, 165, 30, 475, y - 20, 165, 30);
draw.text(this.context, 'Star4000 Extended', '19pt', statusColor, 565, y, statusText, 2, 'end');
});
// calculate loaded percent
2020-10-29 21:44:28 +00:00
const loadedPercent = (loadedCount / displays.length);
2020-09-08 19:39:17 +00:00
if (loadedPercent < 1.0) {
// Draw a box for the progress.
draw.box(this.context, '#000000', 51, 428, 534, 22);
draw.box(this.context, '#ffffff', 53, 430, 530, 18);
// update the progress gif
2020-10-29 21:44:28 +00:00
draw.box(this.context, '#1d7fff', 55, 432, 526 * loadedPercent, 14);
2020-09-08 19:39:17 +00:00
} else {
// restore the background
this.context.drawImage(backgroundImage, 51, 428, 534, 22, 51, 428, 534, 22);
}
}
canvasClick(e) {
2022-07-29 21:12:42 +00:00
// un-scale
const scale = e.target.getBoundingClientRect().width / e.target.width;
const x = e.offsetX / scale;
const y = e.offsetY / scale;
2020-09-08 21:27:03 +00:00
// eliminate off canvas and outside area clicks
if (!this.isActive()) return;
if (y < 100 || y > 410) return;
if (x < 440 || x > 570) return;
2020-09-17 21:34:38 +00:00
// stop playing
2020-10-29 21:44:28 +00:00
navigation.message('navButton');
2020-09-08 21:27:03 +00:00
// use the y value to determine an index
2020-10-29 21:44:28 +00:00
const index = Math.floor((y - 100) / 29);
2020-09-08 21:27:03 +00:00
const display = navigation.getDisplay(index);
if (display && display.status === STATUS.loaded) {
display.showCanvas(navigation.msg.command.firstFrame);
this.hideCanvas();
}
2020-09-08 19:39:17 +00:00
}
2020-10-29 21:44:28 +00:00
}