mirror of
https://git.leinelab.org/Mal/mr-crocs-adventures.git
synced 2025-09-11 02:57:36 +02:00
44 lines
833 B
JavaScript
44 lines
833 B
JavaScript
export default class ImageLoader
|
|
{
|
|
images = [];
|
|
numberImagesLoaded = 0;
|
|
|
|
update()
|
|
{
|
|
this.numberImagesLoaded++;
|
|
|
|
if (this.numberImagesLoaded === this.images.length) {
|
|
window.dispatchEvent(new Event('imagesloaded'));
|
|
}
|
|
|
|
}
|
|
|
|
isComplete()
|
|
{
|
|
return this.numberImagesLoaded === this.images.length;
|
|
}
|
|
|
|
getCurrentProgress()
|
|
{
|
|
return this.numberImagesLoaded / this.images.length;
|
|
}
|
|
|
|
addImage(imagePath)
|
|
{
|
|
this.images.push(imagePath);
|
|
}
|
|
|
|
load()
|
|
{
|
|
for (const imagePath of this.images) {
|
|
let image = new Image();
|
|
image.src = imagePath;
|
|
image.addEventListener(
|
|
'load', () => {
|
|
this.update();
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|