미디어위키:Gadget-Jsfxr.js: 두 판 사이의 차이

리버티게임(개발), 모두가 만들어가는 자유로운 게임
둘러보기로 이동 검색으로 이동
잔글편집 요약 없음
잔글편집 요약 없음
36번째 줄: 36번째 줄:
sfxr.play(sound);
sfxr.play(sound);
}).catch(function(e){
}).catch(function(e){
console.log("jsfxr 로딩 실패! CDN을 통해 스크립트를 가져올 수 없습니다:\n" + e);
console.log("jsfxr 로딩 실패! 스크립트를 가져올 수 없습니다:\n" + e);
});
});



2024년 10월 13일 (일) 17:43 판

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.body;
		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 loadJsfxr(){
	var parameter = document.getElementById("libertygame-sfx");
	if (!parameter || parameter.innerText === "") return;
	Promise.all(["https://sfxr.me/riffwave.js", "https://sfxr.me/sfxr.js"]).then(function (result) {
		var presetmap = {"코인줍기":" pickupCoin", "레이저샷":"laserShoot", "폭발": "explosion", "파워업":"powerUp", "타격받음": "hitHurt", "점프" :"jump", "선택": "blipSelect", "신스": "synth", "톤":"tone", "클릭": "click", "랜덤": "random"};
		if (!presetmap[parameter.innerHTML]) return;
		if (!sfxr) {
			console.log("스크립트를 찾았으나 sfxr 객체를 찾을 수 없습니다!");
			return;
		}
		var sound = sfxr.generate(presetmap[parameter]);
		sfxr.play(sound);
	}).catch(function(e){
		console.log("jsfxr 로딩 실패! 스크립트를 가져올 수 없습니다:\n" + e);
	});

}

$(loadJsfxr);