mirror of
https://github.com/Cola-Echo/memory-manager-concurrent.git
synced 2026-06-06 14:45:52 +00:00
49 lines
2.0 KiB
JavaScript
49 lines
2.0 KiB
JavaScript
var __extends = (this && this.__extends) || function (d, b) {
|
|
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
|
|
function __() { this.constructor = d; }
|
|
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
};
|
|
/**
|
|
* GameStart extends ui.GameStartUI
|
|
*/
|
|
var GameStart = (function (_super) {
|
|
__extends(GameStart, _super);
|
|
function GameStart() {
|
|
_super.call(this);
|
|
this.init();
|
|
}
|
|
GameStart.prototype.init = function () {
|
|
this.nickname.label = "游客" + Math.floor(Math.random() * (9999 - 1 + 1) + 1);
|
|
this.skinRadio.selectedIndex = Math.floor(Math.random() * (4 - 0 + 1) + 0);
|
|
this.neturl.label = "192.168.1.60";
|
|
LocalStorage.getItem("nickname") && (this.nickname.label = LocalStorage.getItem("nickname"));
|
|
LocalStorage.getItem("neturl") && (this.neturl.label = LocalStorage.getItem("neturl"));
|
|
LocalStorage.getItem("skin") && (this.skinRadio.selectedIndex = parseInt(LocalStorage.getItem("skin")));
|
|
this.nickname.on("click", this, this.changeNickName);
|
|
this.neturl.on("click", this, this.changeNetUrl);
|
|
this.skinRadio.on("click", this, this.onSelectSkin);
|
|
};
|
|
GameStart.prototype.changeNickName = function () {
|
|
var nickname = window.prompt("请输入您的昵称!", this.nickname.label);
|
|
if (nickname != null && nickname != "") {
|
|
this.nickname.label = nickname;
|
|
}
|
|
else {
|
|
Browser.window.alert("请输入昵称!");
|
|
}
|
|
};
|
|
GameStart.prototype.changeNetUrl = function () {
|
|
var neturl = window.prompt("请输入服务器地址!", this.neturl.label);
|
|
if (neturl != null && neturl != "") {
|
|
this.neturl.label = neturl;
|
|
}
|
|
else {
|
|
Browser.window.alert("请输入服务器地址!");
|
|
}
|
|
};
|
|
GameStart.prototype.onSelectSkin = function () {
|
|
// Browser.window.alert(this.skinRadio.selectedIndex)
|
|
};
|
|
return GameStart;
|
|
}(ui.GameStartUI));
|
|
//# sourceMappingURL=GameStart.js.map
|