미디어위키:Gadget-Jsfxr.js: 두 판 사이의 차이
둘러보기로 이동
검색으로 이동
(2중 콜백으로 시도) |
잔글편집 요약 없음 |
||
6번째 줄: | 6번째 줄: | ||
scriptElement.async = true; // force asynchronous loading | scriptElement.async = true; // force asynchronous loading | ||
scriptElement.type = type; | scriptElement.type = type; | ||
var contextsection = document.getElementById(" | var contextsection = document.getElementById("content"); // main Element | ||
scriptElement.addEventListener("load", function (ev) { | scriptElement.addEventListener("load", function (ev) { | ||
resolve({ status: true }); | resolve({ status: true }); |
2024년 10월 13일 (일) 23:31 판
function asyncJSLoader(url, type) {
return new Promise(function (resolve, reject) {
try {
var scriptElement = document.createElement("script");
scriptElement.src = url;
scriptElement.async = true; // force asynchronous loading
scriptElement.type = type;
var contextsection = document.getElementById("content"); // main Element
scriptElement.addEventListener("load", function (ev) {
resolve({ status: true });
});
scriptElement.addEventListener("error", function (ev) {
reject({
status: false,
message: "Failed to load the script"
});
});
contextsection.appendChild(scriptElement);
} catch (e) {
reject(e);
}
});
}
function catchError(e){
mw.log.error(e);
}
function loadJsfxr(){
var parameter = document.getElementById("libertygame-sfx");
if (!parameter || parameter.innerText === "") return;
asyncJSLoader("https://cdn.jsdelivr.net/gh/Xen-alpha/jsfxr@master/riffwave.js", "text/javascript").then(function (res) {
asyncJSLoader("https://cdn.jsdelivr.net/gh/Xen-alpha/jsfxr@master/sfxr.js", "text/javascript").then(function (res) {
var presetmap = {"코인줍기":" pickupCoin", "레이저샷":"laserShoot", "폭발": "explosion", "파워업":"powerUp", "타격받음": "hitHurt", "점프" :"jump", "선택": "blipSelect", "신스": "synth", "톤":"tone", "클릭": "click", "랜덤": "random"};
console.log("jsfxr 작동!");
console.log(sfxr);
if (!presetmap[parameter.innerText]) return;
var sound = sfxr.generate(presetmap[parameter]);
sfxr.play(sound);
}).catch(catchError);
}).catch(catchError);
}
$(loadJsfxr);