2016-04-02 08:05:24 +00:00
|
|
|
'use strict';
|
|
|
|
mode.connect={
|
|
|
|
start:function(){
|
2016-04-03 16:11:05 +00:00
|
|
|
var createNode=function(){
|
|
|
|
if(event.created) return;
|
|
|
|
event.created=true;
|
|
|
|
var node=ui.create.div('.shadowed');
|
|
|
|
node.style.width='400px';
|
|
|
|
node.style.height='30px';
|
|
|
|
node.style.lineHeight='30px';
|
|
|
|
node.style.fontFamily='xinwei';
|
|
|
|
node.style.fontSize='30px';
|
|
|
|
node.style.padding='10px';
|
|
|
|
node.style.left='calc(50% - 200px)';
|
|
|
|
node.style.top='calc(50% - 20px)';
|
|
|
|
node.style.whiteSpace='nowrap';
|
|
|
|
node.innerHTML=lib.config.last_ip||'';
|
|
|
|
node.contentEditable=true;
|
|
|
|
node.style.webkitUserSelect='text';
|
|
|
|
node.style.textAlign='center';
|
|
|
|
|
|
|
|
var connect=function(e){
|
|
|
|
clearTimeout(event.timeout);
|
|
|
|
e.preventDefault();
|
|
|
|
game.saveConfig('last_ip',node.innerHTML);
|
|
|
|
game.connect(node.innerHTML);
|
|
|
|
};
|
|
|
|
node.addEventListener('keydown',function(e){
|
|
|
|
if(e.keyCode==13){
|
|
|
|
connect(e);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
ui.window.appendChild(node);
|
|
|
|
ui.ipnode=node;
|
|
|
|
|
|
|
|
var text=ui.create.div();
|
|
|
|
text.style.width='400px';
|
|
|
|
text.style.height='30px';
|
|
|
|
text.style.lineHeight='30px';
|
|
|
|
text.style.fontFamily='xinwei';
|
|
|
|
text.style.fontSize='30px';
|
|
|
|
text.style.padding='10px';
|
|
|
|
text.style.left='calc(50% - 200px)';
|
|
|
|
text.style.top='calc(50% - 80px)';
|
|
|
|
text.innerHTML='输入联机地址';
|
|
|
|
text.style.textAlign='center';
|
|
|
|
ui.window.appendChild(text);
|
|
|
|
ui.iptext=text;
|
|
|
|
|
|
|
|
var button=ui.create.div('.menubutton.highlight.large','连接',connect);
|
|
|
|
button.style.width='70px';
|
|
|
|
button.style.left='calc(50% - 35px)';
|
|
|
|
button.style.top='calc(50% + 60px)';
|
|
|
|
ui.window.appendChild(button);
|
|
|
|
ui.ipbutton=button;
|
|
|
|
}
|
2016-04-02 08:05:24 +00:00
|
|
|
if(lib.config.reconnect_info){
|
|
|
|
var info=lib.config.reconnect_info;
|
2016-04-03 09:03:46 +00:00
|
|
|
game.onlineID=info[1];
|
2016-04-02 14:51:26 +00:00
|
|
|
var n=5;
|
|
|
|
var connect=function(){
|
2016-04-03 09:03:46 +00:00
|
|
|
game.connect(info[0],function(success){
|
|
|
|
if(!success&&n--){
|
2016-04-03 16:11:05 +00:00
|
|
|
createNode();
|
2016-04-02 14:51:26 +00:00
|
|
|
event.timeout=setTimeout(connect,1000);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
event.timeout=setTimeout(connect,500);
|
2016-04-06 09:27:45 +00:00
|
|
|
_status.createNodeTimeout=setTimeout(createNode,2000);
|
2016-04-02 14:51:26 +00:00
|
|
|
}
|
2016-04-03 16:11:05 +00:00
|
|
|
else{
|
|
|
|
createNode();
|
|
|
|
}
|
|
|
|
_status.connectDenied=createNode;
|
2016-04-02 08:05:24 +00:00
|
|
|
for(var i in lib.element.event){
|
|
|
|
event.parent[i]=lib.element.event[i];
|
|
|
|
}
|
|
|
|
event.parent.custom={
|
|
|
|
add:{},
|
|
|
|
replace:{}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|