]> git.lizzy.rs Git - dragonblocks.git/blob - engine/assets.js
Implement per-map sky
[dragonblocks.git] / engine / assets.js
1 /*
2  * assets.js
3  *
4  * Copyright 2020 Elias Fleckenstein <eliasfleckenstein@web.de>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301, USA.
20  *
21  *
22  */
23
24 let loadAssets = type => {
25         let obj = {};
26         dragonblocks[type] = obj;
27
28         let paths = dragonblocks.backendCall("get" + type[0].toUpperCase() + type.slice(1, type.length));
29         for (path of paths) {
30                 let name = path.slice(path.lastIndexOf("/") + 1, path.length);
31                 obj[name] = path;
32         }
33 };
34
35 loadAssets("textures");
36 loadAssets("sounds");
37
38 dragonblocks.getTexture = name => {
39         if (! name)
40                 return "none";
41
42         let path = dragonblocks.textures[name];
43
44         return path ? "left top/cover url(" + path + ")" : name;
45 };
46
47 dragonblocks.resolveTextures = elem => {
48         if (elem.nodeName == "IMG" && elem.attributes["texture"]) {
49                 let name = elem.attributes["texture"].nodeValue;
50                 elem.src = dragonblocks.textures[name] || name;
51         }
52
53         for (let child of elem.children)
54                 dragonblocks.resolveTextures(child);
55 };
56
57 dragonblocks.getSound = name => {
58         if (! name)
59                 return "";
60
61         return dragonblocks.sounds[name] || name;
62 };
63
64 dragonblocks.playSound = name => {
65         new Audio(dragonblocks.getSound(name)).play();
66 };