feat: some custom url support.

This commit is contained in:
Rintim 2024-04-21 21:55:11 +08:00
parent 68129fc8c8
commit 3215b0caa9
No known key found for this signature in database
GPG Key ID: BE9E1EA615BACFCF
2 changed files with 23 additions and 17 deletions

View File

@ -4751,7 +4751,8 @@ export class Game {
const audiosrc = "die:ext:" + extname + "/" + j + ".mp3";
if (
!pack[i][j][4].some(
(str) => typeof str == "string" && /^(?:db:extension-|ext:):(?:.+)/.test(str)
(str) =>
typeof str == "string" && /^(?:db:extension-.+?|ext|img):(?:.+)/.test(str)
)
)
pack[i][j][4].add(imgsrc);
@ -4800,6 +4801,7 @@ export class Game {
if (info.audio == true) {
info.audio = "ext:" + extname;
}
if (!info.image || typeof info.image !== "string") {
if (info.fullskin) {
if (_status.evaluatingExtension) {
info.image = "db:extension-" + extname + ":" + name + ".png";
@ -4813,6 +4815,7 @@ export class Game {
info.image = "ext:" + extname + "/" + name + ".jpg";
}
}
}
lib.card[name] = info;
lib.translate[name] = info2.translate;
lib.translate[name + "_info"] = info2.description;
@ -4930,11 +4933,15 @@ export class Game {
lib.translate[name] = info2.translate;
let imgsrc;
let extname = _status.extension || info2.extension;
if (info.splash) {
imgsrc = info.splash;
} else {
if (_status.evaluatingExtension) {
imgsrc = "extension-" + extname + ":" + name + ".jpg";
} else {
imgsrc = "ext:" + extname + "/" + name + ".jpg";
}
}
lib.mode[name] = {
name: info2.translate,
config: info2.config,

View File

@ -171,8 +171,7 @@ Reflect.defineProperty(HTMLDivElement.prototype, "setBackground", {
if (value.startsWith("img:")) {
imgPrefixUrl = value.slice(4);
break;
}
if (value.startsWith("ext:")) {
} else if (value.startsWith("ext:")) {
extimage = value;
break;
} else if (value.startsWith("db:")) {