본문으로 이동
  • 이 서버는 리버티게임의 개발용 베타 서버로, 게임 플레이 용도로 제작된 사이트가 아닙니다.
  • 리버티게임의 자동 인증된 사용자라면 개발에 필요한 관리자 권한을 신청할 수 있습니다.
  • 틀 및 기능별 소도구를 필요한 문서에만 선택적으로 로딩하는 테스트를 진행하고 있습니다. 작동하지 않는 문서가 있다면 담당자에게 알려주세요.

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

리버티게임(개발), 모두가 만들어가는 자유로운 게임
Senouis (토론 | 기여)
잔글편집 요약 없음
Senouis (토론 | 기여)
Senouis의 241084판 편집을 되돌림
6번째 줄: 6번째 줄:
function godot3_asyncJSLoader(url, type) {
function godot3_asyncJSLoader(url, type) {
return new Promise(function (resolve, reject) {
return new Promise(function (resolve, reject) {
try {
var scriptElement = document.createElement("script");
var scriptElement = document.createElement("script");
scriptElement.src = url;
scriptElement.src = url;
21번째 줄: 22번째 줄:
    });
    });
    contextsection.appendChild(scriptElement);
    contextsection.appendChild(scriptElement);
} catch (e) {
        reject(e);
    }
});
});
}
}

2023년 10월 28일 (토) 20:44 판

/**
 * Godot3  for Libertygame loader
 * 제작자: [[사용자:senouis]]
**/

function godot3_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("mw-content-text");
		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 Godot3_loadElement() {
	try {
		// Game canvas
		var canvas = document.createElement("canvas");
		canvas.id = "canvas";
		var canvasparent = document.getElementById("libertygame-godot3"); // first element of emscripten-border
		canvasparent.appendChild(canvas);
		// now load js files from external server
		godot3_asyncJSLoader(uri2.query.scriptpath, "text/javascript")
		.then(function (data) {
			var uri2 = new mw.Uri(document.URL);
			mw.loader.getScript("https://libertyga.me/index.php?action=raw&title=사용자:Senouis/Godot3/supplement.js")
			.then(function (data) {
				console.log("Godot OK!");
			});
		});
		
	} catch (e){
		console.log("initiating Godot 3 for libertygame failed, stop loading elements...");
	}
}
$(Godot3_loadElement);