-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathSimpleWebServer.js
105 lines (87 loc) · 2.85 KB
/
SimpleWebServer.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*:
@target MZ
@plugindesc Webサーバプラグイン v1.0.0
@author うなぎおおとろ
@url https://raw.githubusercontent.com/unagiootoro/RPGMZ/master/SimpleWebServer.js
@help
RPGツクールMZのゲーム自体をWebサーバとして動作させるプラグインです。
このプラグインを導入することでWebサーバを簡単に立ち上げることができ、
ブラウザでの動作確認を気軽に行うことができるようになります。
【使用方法】
このプラグインを導入したゲームをテストプレイで起動した後、ブラウザのURLに
http://localhost:5700
と入力することでブラウザでゲームをプレイすることができます。
【ライセンス】
このプラグインは、MITライセンスの条件の下で利用可能です。
@param IpAddress
@text IPアドレス
@type number
@default 0.0.0.0
@desc
サーバーをリッスンするIPアドレスを指定します。
@param Port
@text ポート
@type number
@default 5700
@desc
サーバーをリッスンするポートを指定します。
*/
const SimpleWebServerPluginName = document.currentScript.src.match(/^.*\/(.+)\.js$/)[1];
(() => {
"use strict";
const params = PluginManager.parameters(SimpleWebServerPluginName);
const IpAddress = params["IpAddress"];
const Port = parseInt(params["Port"]);
if (!(Utils.isNwjs() && Utils.isOptionValid("test"))) return;
const http = require("http");
const path = require("path")
const fs = require("fs");
class SimpleWebServer {
constructor() {
this._mimeTypes = this._createMimeTypes();
this._server = this._createServer();
}
run(ipAddr, port) {
this._server.listen(port, ipAddr);
}
_createMimeTypes() {
return {
".html": "text/html",
".wasm": "application/wasm",
};
}
_createServer() {
const server = http.createServer();
server.on("request", this._serverProcess.bind(this));
return server;
}
_serverProcess(req, res) {
let filePath;
if (req.url === "/") {
filePath = "index.html"
} else {
const matchData = req.url.match(/^\/(.+)/);
filePath = decodeURIComponent(matchData[1]);
}
if (fs.existsSync(filePath)) {
res.writeHead(200, { "Content-Type": this._getMimeType(filePath) });
const file = fs.readFileSync(filePath);
res.write(file);
} else {
res.writeHead(404, {});
res.write("404 Not found.");
}
res.end();
}
_getMimeType(filePath) {
const extName = path.extname(filePath);
const mimeType = this._mimeTypes[extName];
if (mimeType) {
return mimeType;
}
return "text/plain";
}
}
const server = new SimpleWebServer();
server.run(IpAddress, Port);
})();