commit
c80f137f70
86
game/game.js
86
game/game.js
|
@ -39323,7 +39323,11 @@
|
||||||
active.link.remove();
|
active.link.remove();
|
||||||
active=this;
|
active=this;
|
||||||
this.classList.add('active');
|
this.classList.add('active');
|
||||||
|
if(this.link) rightPane.appendChild(this.link);
|
||||||
|
else{
|
||||||
|
this._initLink();
|
||||||
rightPane.appendChild(this.link);
|
rightPane.appendChild(this.link);
|
||||||
|
}
|
||||||
if(connectMenu){
|
if(connectMenu){
|
||||||
if(updateActive) updateActive();
|
if(updateActive) updateActive();
|
||||||
if(updateActiveCard) updateActiveCard();
|
if(updateActiveCard) updateActiveCard();
|
||||||
|
@ -39334,6 +39338,7 @@
|
||||||
var info=lib.mode[mode];
|
var info=lib.mode[mode];
|
||||||
var page=ui.create.div('');
|
var page=ui.create.div('');
|
||||||
var node=ui.create.div('.menubutton.large',info.name,position,clickMode);
|
var node=ui.create.div('.menubutton.large',info.name,position,clickMode);
|
||||||
|
node._initLink=function(){
|
||||||
node.link=page;
|
node.link=page;
|
||||||
node.mode=mode;
|
node.mode=mode;
|
||||||
if(connectMenu){
|
if(connectMenu){
|
||||||
|
@ -39346,6 +39351,7 @@
|
||||||
node.classList.add('active');
|
node.classList.add('active');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//“更多”下的内容
|
||||||
var map={};
|
var map={};
|
||||||
var infoconfig=connectMenu?info.connect:info.config;
|
var infoconfig=connectMenu?info.connect:info.config;
|
||||||
if(infoconfig){
|
if(infoconfig){
|
||||||
|
@ -39526,6 +39532,7 @@
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
};
|
||||||
return node;
|
return node;
|
||||||
};
|
};
|
||||||
var modeorder=lib.config.modeorder||[];
|
var modeorder=lib.config.modeorder||[];
|
||||||
|
@ -39551,6 +39558,7 @@
|
||||||
active=start.firstChild.firstChild;
|
active=start.firstChild.firstChild;
|
||||||
active.classList.add('active');
|
active.classList.add('active');
|
||||||
}
|
}
|
||||||
|
if(!active.link) active._initLink();
|
||||||
rightPane.appendChild(active.link);
|
rightPane.appendChild(active.link);
|
||||||
if(lib.config.fold_mode){
|
if(lib.config.fold_mode){
|
||||||
rightPane.addEventListener('mousewheel',function(e){
|
rightPane.addEventListener('mousewheel',function(e){
|
||||||
|
@ -39580,8 +39588,12 @@
|
||||||
active.classList.remove('active');
|
active.classList.remove('active');
|
||||||
active.link.remove();
|
active.link.remove();
|
||||||
active=this;
|
active=this;
|
||||||
this.classList.add('active');
|
active.classList.add('active');
|
||||||
|
if(this.link) rightPane.appendChild(this.link);
|
||||||
|
else{
|
||||||
|
this._initLink();
|
||||||
rightPane.appendChild(this.link);
|
rightPane.appendChild(this.link);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
var clickAutoSkill=function(bool){
|
var clickAutoSkill=function(bool){
|
||||||
|
@ -39659,6 +39671,7 @@
|
||||||
var info=lib.configMenu[mode];
|
var info=lib.configMenu[mode];
|
||||||
var page=ui.create.div('');
|
var page=ui.create.div('');
|
||||||
var node=ui.create.div('.menubutton.large',info.name,position,clickMode);
|
var node=ui.create.div('.menubutton.large',info.name,position,clickMode);
|
||||||
|
node._initLink=function(){
|
||||||
node.link=page;
|
node.link=page;
|
||||||
node.mode=mode;
|
node.mode=mode;
|
||||||
var map={};
|
var map={};
|
||||||
|
@ -40046,6 +40059,7 @@
|
||||||
info.config.update(config,map);
|
info.config.update(config,map);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
};
|
||||||
return node;
|
return node;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -40056,6 +40070,7 @@
|
||||||
if(!game.download&&!lib.device) return;
|
if(!game.download&&!lib.device) return;
|
||||||
var page=ui.create.div('#create-extension');
|
var page=ui.create.div('#create-extension');
|
||||||
var node=ui.create.div('.menubutton.large','文件',start.firstChild,clickMode);
|
var node=ui.create.div('.menubutton.large','文件',start.firstChild,clickMode);
|
||||||
|
node._initLink=function(){
|
||||||
node.link=page;
|
node.link=page;
|
||||||
node.mode='create';
|
node.mode='create';
|
||||||
var pageboard=ui.create.div(page);
|
var pageboard=ui.create.div(page);
|
||||||
|
@ -40599,6 +40614,7 @@
|
||||||
createDash('音','音频文件',dash2);
|
createDash('音','音频文件',dash2);
|
||||||
createDash('字','字体文件',dash3);
|
createDash('字','字体文件',dash3);
|
||||||
createDash('全','全部文件',dash4);
|
createDash('全','全部文件',dash4);
|
||||||
|
};
|
||||||
}());
|
}());
|
||||||
createModeConfig('others',start.firstChild);
|
createModeConfig('others',start.firstChild);
|
||||||
|
|
||||||
|
@ -40607,6 +40623,7 @@
|
||||||
active=start.firstChild.firstChild;
|
active=start.firstChild.firstChild;
|
||||||
active.classList.add('active');
|
active.classList.add('active');
|
||||||
}
|
}
|
||||||
|
if(!active.link) active._initLink();
|
||||||
rightPane.appendChild(active.link);
|
rightPane.appendChild(active.link);
|
||||||
}());
|
}());
|
||||||
|
|
||||||
|
@ -40625,7 +40642,11 @@
|
||||||
}
|
}
|
||||||
this.classList.add('active');
|
this.classList.add('active');
|
||||||
updateActive(this);
|
updateActive(this);
|
||||||
|
if(this.link) rightPane.appendChild(this.link);
|
||||||
|
else{
|
||||||
|
this._initLink();
|
||||||
rightPane.appendChild(this.link);
|
rightPane.appendChild(this.link);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
updateActive=function(node){
|
updateActive=function(node){
|
||||||
if(!node){
|
if(!node){
|
||||||
|
@ -40634,6 +40655,9 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (!node.link) {
|
||||||
|
node._initLink();
|
||||||
|
}
|
||||||
for(var i=0;i<node.link.childElementCount;i++){
|
for(var i=0;i<node.link.childElementCount;i++){
|
||||||
if(node.link.childNodes[i].updateBanned){
|
if(node.link.childNodes[i].updateBanned){
|
||||||
node.link.childNodes[i].updateBanned();
|
node.link.childNodes[i].updateBanned();
|
||||||
|
@ -40693,7 +40717,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
var createModeConfig=function(mode,position,position2){
|
var createModeConfig=function(mode,position,position2){
|
||||||
var info=lib.characterPack[mode];
|
|
||||||
var page=ui.create.div('');
|
var page=ui.create.div('');
|
||||||
var node=ui.create.div('.menubutton.large',lib.translate[mode+'_character_config'],position,clickMode);
|
var node=ui.create.div('.menubutton.large',lib.translate[mode+'_character_config'],position,clickMode);
|
||||||
if(node.innerHTML.length>=5){
|
if(node.innerHTML.length>=5){
|
||||||
|
@ -40702,6 +40725,8 @@
|
||||||
if(position2){
|
if(position2){
|
||||||
position.insertBefore(node,position2);
|
position.insertBefore(node,position2);
|
||||||
}
|
}
|
||||||
|
node._initLink=function(){
|
||||||
|
var info=lib.characterPack[mode];
|
||||||
node.link=page;
|
node.link=page;
|
||||||
node.mode=mode;
|
node.mode=mode;
|
||||||
page.node=node;
|
page.node=node;
|
||||||
|
@ -40848,17 +40873,17 @@
|
||||||
delete this._banning;
|
delete this._banning;
|
||||||
};
|
};
|
||||||
var updateBanned=function(){
|
var updateBanned=function(){
|
||||||
var list;
|
var _list;
|
||||||
if(connectMenu){
|
if(connectMenu){
|
||||||
var mode=menux.pages[0].firstChild.querySelector('.active');
|
var mode=menux.pages[0].firstChild.querySelector('.active');
|
||||||
if(mode&&mode.mode){
|
if(mode&&mode.mode){
|
||||||
list=lib.config['connect_'+mode.mode+'_banned'];
|
_list=lib.config['connect_'+mode.mode+'_banned'];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
list=lib.config[get.mode()+'_banned'];
|
_list=lib.config[get.mode()+'_banned'];
|
||||||
}
|
}
|
||||||
if(list&&list.contains(this.link)){
|
if(_list&&_list.contains(this.link)){
|
||||||
this.classList.add('banned');
|
this.classList.add('banned');
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
@ -40995,6 +41020,7 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
};
|
||||||
return node;
|
return node;
|
||||||
};
|
};
|
||||||
if(lib.config.show_favourite_menu&&!connectMenu&&Array.isArray(lib.config.favouriteCharacter)){
|
if(lib.config.show_favourite_menu&&!connectMenu&&Array.isArray(lib.config.favouriteCharacter)){
|
||||||
|
@ -41005,7 +41031,9 @@
|
||||||
lib.characterPack.mode_favourite[favname]=lib.character[favname];
|
lib.characterPack.mode_favourite[favname]=lib.character[favname];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ui.favouriteCharacter=createModeConfig('mode_favourite',start.firstChild).link;
|
var favouriteCharacterNode=createModeConfig('mode_favourite',start.firstChild);
|
||||||
|
if(!favouriteCharacterNode.link) favouriteCharacterNode._initLink();
|
||||||
|
ui.favouriteCharacter=favouriteCharacterNode.link;
|
||||||
if(get.is.empty(lib.characterPack.mode_favourite)){
|
if(get.is.empty(lib.characterPack.mode_favourite)){
|
||||||
ui.favouriteCharacter.node.style.display='none';
|
ui.favouriteCharacter.node.style.display='none';
|
||||||
}
|
}
|
||||||
|
@ -41052,6 +41080,7 @@
|
||||||
active.classList.add('active');
|
active.classList.add('active');
|
||||||
updateActive(active);
|
updateActive(active);
|
||||||
}
|
}
|
||||||
|
if(!active.link) active._initLink();
|
||||||
rightPane.appendChild(active.link);
|
rightPane.appendChild(active.link);
|
||||||
|
|
||||||
if(!connectMenu){
|
if(!connectMenu){
|
||||||
|
@ -41094,7 +41123,11 @@
|
||||||
if(this.mode=='cardpile'){
|
if(this.mode=='cardpile'){
|
||||||
this.create();
|
this.create();
|
||||||
}
|
}
|
||||||
|
if(this.link) rightPane.appendChild(this.link);
|
||||||
|
else{
|
||||||
|
this._initLink();
|
||||||
rightPane.appendChild(this.link);
|
rightPane.appendChild(this.link);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
updateActiveCard=function(node){
|
updateActiveCard=function(node){
|
||||||
if(!node){
|
if(!node){
|
||||||
|
@ -41103,6 +41136,7 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if(!node.link) node._initLink();
|
||||||
for(var i=0;i<node.link.childElementCount;i++){
|
for(var i=0;i<node.link.childElementCount;i++){
|
||||||
if(node.link.childNodes[i].updateBanned){
|
if(node.link.childNodes[i].updateBanned){
|
||||||
node.link.childNodes[i].updateBanned();
|
node.link.childNodes[i].updateBanned();
|
||||||
|
@ -41183,6 +41217,7 @@
|
||||||
if(node.innerHTML.length>=5){
|
if(node.innerHTML.length>=5){
|
||||||
node.classList.add('smallfont');
|
node.classList.add('smallfont');
|
||||||
}
|
}
|
||||||
|
node._initLink=function(){
|
||||||
node.link=page;
|
node.link=page;
|
||||||
node.mode=mode;
|
node.mode=mode;
|
||||||
var list=[];
|
var list=[];
|
||||||
|
@ -41453,6 +41488,7 @@
|
||||||
}
|
}
|
||||||
ui.create.div('.menuplaceholder',page);
|
ui.create.div('.menuplaceholder',page);
|
||||||
}
|
}
|
||||||
|
};
|
||||||
return node;
|
return node;
|
||||||
};
|
};
|
||||||
if(!connectMenu&&lib.config.show_ban_menu){
|
if(!connectMenu&&lib.config.show_ban_menu){
|
||||||
|
@ -41491,6 +41527,7 @@
|
||||||
active.classList.add('active');
|
active.classList.add('active');
|
||||||
updateActiveCard(active);
|
updateActiveCard(active);
|
||||||
}
|
}
|
||||||
|
if(!active.link) active._initLink();
|
||||||
rightPane.appendChild(active.link);
|
rightPane.appendChild(active.link);
|
||||||
|
|
||||||
(function(){
|
(function(){
|
||||||
|
@ -41650,7 +41687,11 @@
|
||||||
active.link.remove();
|
active.link.remove();
|
||||||
active=this;
|
active=this;
|
||||||
this.classList.add('active');
|
this.classList.add('active');
|
||||||
|
if(this.link) rightPane.appendChild(this.link);
|
||||||
|
else{
|
||||||
|
this._initLink();
|
||||||
rightPane.appendChild(this.link);
|
rightPane.appendChild(this.link);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
ui.click.extensionTab=function(name){
|
ui.click.extensionTab=function(name){
|
||||||
ui.click.menuTab('扩展');
|
ui.click.menuTab('扩展');
|
||||||
|
@ -41729,6 +41770,7 @@
|
||||||
if(node.innerHTML.length>=5){
|
if(node.innerHTML.length>=5){
|
||||||
node.classList.add('smallfont');
|
node.classList.add('smallfont');
|
||||||
}
|
}
|
||||||
|
node._initLink=function(){
|
||||||
node.link=page;
|
node.link=page;
|
||||||
node.mode=mode;
|
node.mode=mode;
|
||||||
for(var i in lib.extensionMenu[mode]){
|
for(var i in lib.extensionMenu[mode]){
|
||||||
|
@ -41764,6 +41806,7 @@
|
||||||
}
|
}
|
||||||
page.appendChild(cfgnode);
|
page.appendChild(cfgnode);
|
||||||
}
|
}
|
||||||
|
};
|
||||||
return node;
|
return node;
|
||||||
};
|
};
|
||||||
for(var i in lib.extensionMenu){
|
for(var i in lib.extensionMenu){
|
||||||
|
@ -41776,6 +41819,7 @@
|
||||||
if(lib.config.show_extensionmaker==false) return;
|
if(lib.config.show_extensionmaker==false) return;
|
||||||
var page=ui.create.div('#create-extension');
|
var page=ui.create.div('#create-extension');
|
||||||
var node=ui.create.div('.menubutton.large','制作扩展',start.firstChild,clickMode);
|
var node=ui.create.div('.menubutton.large','制作扩展',start.firstChild,clickMode);
|
||||||
|
node._initLink=function(){
|
||||||
node.link=page;
|
node.link=page;
|
||||||
node.mode='create';
|
node.mode='create';
|
||||||
var pageboard=ui.create.div(page);
|
var pageboard=ui.create.div(page);
|
||||||
|
@ -43888,10 +43932,12 @@
|
||||||
createDash('卡','编辑卡牌',dash2);
|
createDash('卡','编辑卡牌',dash2);
|
||||||
createDash('技','编辑技能',dash3);
|
createDash('技','编辑技能',dash3);
|
||||||
createDash('码','编辑代码',dash4);
|
createDash('码','编辑代码',dash4);
|
||||||
|
};
|
||||||
}());
|
}());
|
||||||
(function(){
|
(function(){
|
||||||
var page=ui.create.div('');
|
var page=ui.create.div('');
|
||||||
var node=ui.create.div('.menubutton.large','获取扩展',start.firstChild,clickMode);
|
var node=ui.create.div('.menubutton.large','获取扩展',start.firstChild,clickMode);
|
||||||
|
node._initLink=function(){
|
||||||
node.link=page;
|
node.link=page;
|
||||||
node.mode='get';
|
node.mode='get';
|
||||||
page.listen(function(){
|
page.listen(function(){
|
||||||
|
@ -44191,12 +44237,14 @@
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}());
|
}());
|
||||||
var active=start.firstChild.querySelector('.active');
|
var active=start.firstChild.querySelector('.active');
|
||||||
if(!active){
|
if(!active){
|
||||||
active=start.firstChild.firstChild;
|
active=start.firstChild.firstChild;
|
||||||
active.classList.add('active');
|
active.classList.add('active');
|
||||||
}
|
}
|
||||||
|
if(!active.link) active._initLink();
|
||||||
rightPane.appendChild(active.link);
|
rightPane.appendChild(active.link);
|
||||||
updateNodes();
|
updateNodes();
|
||||||
}());
|
}());
|
||||||
|
@ -44237,7 +44285,11 @@
|
||||||
}
|
}
|
||||||
active=this;
|
active=this;
|
||||||
this.classList.add('active');
|
this.classList.add('active');
|
||||||
|
if(this.link) rightPane.appendChild(this.link);
|
||||||
|
else{
|
||||||
|
this._initLink();
|
||||||
rightPane.appendChild(this.link);
|
rightPane.appendChild(this.link);
|
||||||
|
}
|
||||||
if(this.type=='cheat'){
|
if(this.type=='cheat'){
|
||||||
cheatButton.style.display='';
|
cheatButton.style.display='';
|
||||||
}
|
}
|
||||||
|
@ -44268,6 +44320,7 @@
|
||||||
ui.click.menuTab('其它');
|
ui.click.menuTab('其它');
|
||||||
clickMode.call(ui.commandnode);
|
clickMode.call(ui.commandnode);
|
||||||
};
|
};
|
||||||
|
//更新菜单有本体函数赋值,就不要懒加载了
|
||||||
(function(){
|
(function(){
|
||||||
var page=ui.create.div('');
|
var page=ui.create.div('');
|
||||||
var node=ui.create.div('.menubutton.large','更新',start.firstChild,clickMode);
|
var node=ui.create.div('.menubutton.large','更新',start.firstChild,clickMode);
|
||||||
|
@ -44963,6 +45016,9 @@
|
||||||
}
|
}
|
||||||
}());
|
}());
|
||||||
(function(){
|
(function(){
|
||||||
|
var page=ui.create.div('');
|
||||||
|
var node=ui.create.div('.menubutton.large','控制',start.firstChild,clickMode);
|
||||||
|
node._initLink=function(){
|
||||||
var norow2=function(){
|
var norow2=function(){
|
||||||
var node=currentrow1;
|
var node=currentrow1;
|
||||||
if(!node) return false;
|
if(!node) return false;
|
||||||
|
@ -45070,9 +45126,6 @@
|
||||||
clickContainer.call(menuContainer);
|
clickContainer.call(menuContainer);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
var page=ui.create.div('');
|
|
||||||
var node=ui.create.div('.menubutton.large','控制',start.firstChild,clickMode);
|
|
||||||
node.link=page;
|
node.link=page;
|
||||||
node.type='cheat';
|
node.type='cheat';
|
||||||
page.classList.add('menu-sym');
|
page.classList.add('menu-sym');
|
||||||
|
@ -45216,12 +45269,14 @@
|
||||||
}
|
}
|
||||||
checkCheat();
|
checkCheat();
|
||||||
});
|
});
|
||||||
|
};
|
||||||
}());
|
}());
|
||||||
(function(){
|
(function(){
|
||||||
var page=ui.create.div('');
|
var page=ui.create.div('');
|
||||||
var node=ui.create.div('.menubutton.large','命令',start.firstChild,clickMode);
|
var node=ui.create.div('.menubutton.large','命令',start.firstChild,clickMode);
|
||||||
ui.commandnode=node;
|
ui.commandnode=node;
|
||||||
node.type='cmd';
|
node.type='cmd';
|
||||||
|
node._initLink=function(){
|
||||||
node.link=page;
|
node.link=page;
|
||||||
page.classList.add('menu-sym');
|
page.classList.add('menu-sym');
|
||||||
menuUpdates.push(function(){
|
menuUpdates.push(function(){
|
||||||
|
@ -45392,11 +45447,13 @@
|
||||||
clearButton.listen(function(){
|
clearButton.listen(function(){
|
||||||
pre.innerHTML='';
|
pre.innerHTML='';
|
||||||
});
|
});
|
||||||
|
};
|
||||||
}());
|
}());
|
||||||
(function(){
|
(function(){
|
||||||
var page=ui.create.div('');
|
var page=ui.create.div('');
|
||||||
var node=ui.create.div('.menubutton.large','战绩',start.firstChild,clickMode);
|
var node=ui.create.div('.menubutton.large','战绩',start.firstChild,clickMode);
|
||||||
node.type='rec';
|
node.type='rec';
|
||||||
|
node._initLink=function(){
|
||||||
node.link=page;
|
node.link=page;
|
||||||
page.style.paddingBottom='10px';
|
page.style.paddingBottom='10px';
|
||||||
var reset=function(){
|
var reset=function(){
|
||||||
|
@ -45425,16 +45482,17 @@
|
||||||
item.link=lib.config.all.mode[i];
|
item.link=lib.config.all.mode[i];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
};
|
||||||
}());
|
}());
|
||||||
(function(){
|
(function(){
|
||||||
if(!window.indexedDB||window.nodb) return;
|
if(!window.indexedDB||window.nodb) return;
|
||||||
var page=ui.create.div('');
|
var page=ui.create.div('');
|
||||||
var node=ui.create.div('.menubutton.large','录像',start.firstChild,clickMode);
|
var node=ui.create.div('.menubutton.large','录像',start.firstChild,clickMode);
|
||||||
node.type='video';
|
node.type='video';
|
||||||
node.link=page;
|
|
||||||
|
|
||||||
var store=lib.db.transaction(['video'],'readwrite').objectStore('video');
|
|
||||||
lib.videos=[];
|
lib.videos=[];
|
||||||
|
node._initLink=function(){
|
||||||
|
node.link=page;
|
||||||
|
var store=lib.db.transaction(['video'],'readwrite').objectStore('video');
|
||||||
store.openCursor().onsuccess=function(e){
|
store.openCursor().onsuccess=function(e){
|
||||||
var cursor=e.target.result;
|
var cursor=e.target.result;
|
||||||
if(cursor){
|
if(cursor){
|
||||||
|
@ -45611,6 +45669,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}());
|
}());
|
||||||
|
|
||||||
|
|
||||||
|
@ -45681,6 +45740,7 @@
|
||||||
active=start.firstChild.firstChild;
|
active=start.firstChild.firstChild;
|
||||||
active.classList.add('active');
|
active.classList.add('active');
|
||||||
}
|
}
|
||||||
|
if(!active.link) active._initLink();
|
||||||
rightPane.appendChild(active.link);
|
rightPane.appendChild(active.link);
|
||||||
}());
|
}());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue