This commit is contained in:
parent
cfc3bc838f
commit
915ce2ede3
74
game/game.js
74
game/game.js
|
@ -752,6 +752,15 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
mark_identity_style:{
|
||||||
|
name:'标记身份操作',
|
||||||
|
unfrequent:true,
|
||||||
|
init:'menu',
|
||||||
|
item:{
|
||||||
|
menu:'菜单',
|
||||||
|
click:'单击',
|
||||||
|
},
|
||||||
|
},
|
||||||
slim_player:{
|
slim_player:{
|
||||||
name:'窄边框',
|
name:'窄边框',
|
||||||
init:true,
|
init:true,
|
||||||
|
@ -867,23 +876,23 @@
|
||||||
ui.click.resetround();
|
ui.click.resetround();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
character_dialog_style:{
|
// character_dialog_style:{
|
||||||
name:'自由选将样式',
|
// name:'自由选将样式',
|
||||||
init:'old',
|
// init:'old',
|
||||||
item:{
|
// item:{
|
||||||
newstyle:'新版',
|
// newstyle:'新版',
|
||||||
old:'默认',
|
// old:'默认',
|
||||||
},
|
// },
|
||||||
unfrequent:true,
|
// unfrequent:true,
|
||||||
},
|
// },
|
||||||
character_dialog_tool:{
|
character_dialog_tool:{
|
||||||
name:'自由选将显示',
|
name:'自由选将显示',
|
||||||
init:'最近',
|
init:'最近',
|
||||||
item:{
|
item:{
|
||||||
'收藏':'收藏',
|
'收藏':'收藏',
|
||||||
'最近':'最近',
|
'最近':'最近',
|
||||||
'自创':'自创',
|
// '自创':'自创',
|
||||||
all:'默认'
|
all:'全部'
|
||||||
},
|
},
|
||||||
unfrequent:true,
|
unfrequent:true,
|
||||||
},
|
},
|
||||||
|
@ -22451,16 +22460,16 @@
|
||||||
return dialog;
|
return dialog;
|
||||||
},
|
},
|
||||||
characterDialog:function(){
|
characterDialog:function(){
|
||||||
if(lib.config.character_dialog_style=='newstyle'){
|
// if(lib.config.character_dialog_style=='newstyle'){
|
||||||
for(var i=0;i<arguments.length;i++){
|
// for(var i=0;i<arguments.length;i++){
|
||||||
if(arguments[i]=='thisiscard'){
|
// if(arguments[i]=='thisiscard'){
|
||||||
break;
|
// break;
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
if(i==arguments.length){
|
// if(i==arguments.length){
|
||||||
return ui.create.characterDialog2.apply(this,arguments);
|
// return ui.create.characterDialog2.apply(this,arguments);
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
var filter,str,noclick,thisiscard,seperate,expandall;
|
var filter,str,noclick,thisiscard,seperate,expandall;
|
||||||
for(var i=0;i<arguments.length;i++){
|
for(var i=0;i<arguments.length;i++){
|
||||||
if(arguments[i]==='thisiscard'){
|
if(arguments[i]==='thisiscard'){
|
||||||
|
@ -24040,6 +24049,21 @@
|
||||||
}
|
}
|
||||||
var list=game.getIdentityList(this.parentNode);
|
var list=game.getIdentityList(this.parentNode);
|
||||||
if(!list) return;
|
if(!list) return;
|
||||||
|
if(lib.config.mark_identity_style=='click'){
|
||||||
|
var list2=[];
|
||||||
|
for(var i in list){
|
||||||
|
list2.push(i);
|
||||||
|
}
|
||||||
|
list2.push(list2[0]);
|
||||||
|
for(var i=0;i<list2.length;i++){
|
||||||
|
if(this.firstChild.innerHTML==list[list2[i]]){
|
||||||
|
this.firstChild.innerHTML=list[list2[i+1]];
|
||||||
|
this.dataset.color=list2[i+1];
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else{
|
||||||
var nodes=[];
|
var nodes=[];
|
||||||
_status.clickingidentity=[this.parentNode,nodes];
|
_status.clickingidentity=[this.parentNode,nodes];
|
||||||
var num=1;
|
var num=1;
|
||||||
|
@ -24061,6 +24085,7 @@
|
||||||
nodes.push(node);
|
nodes.push(node);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
identity2:function(){
|
identity2:function(){
|
||||||
if(_status.clickingidentity){
|
if(_status.clickingidentity){
|
||||||
|
@ -25303,6 +25328,13 @@
|
||||||
_status.clicked=false;
|
_status.clicked=false;
|
||||||
}
|
}
|
||||||
else{
|
else{
|
||||||
|
if(_status.clickingidentity){
|
||||||
|
for(var i=0;i<_status.clickingidentity[1].length;i++){
|
||||||
|
_status.clickingidentity[1][i].delete();
|
||||||
|
_status.clickingidentity[1][i].style.transform='';
|
||||||
|
}
|
||||||
|
delete _status.clickingidentity;
|
||||||
|
}
|
||||||
if(!_status.event.isMine) return;
|
if(!_status.event.isMine) return;
|
||||||
if(ui.controls.length){
|
if(ui.controls.length){
|
||||||
ui.updatec();
|
ui.updatec();
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
window.noname_update={
|
window.noname_update={
|
||||||
version:'1.8.15.1',
|
version:'1.8.15.2',
|
||||||
changeLog:[
|
changeLog:[
|
||||||
'选将界面',
|
'修bug',
|
||||||
],
|
],
|
||||||
files:{
|
files:{
|
||||||
global:[
|
global:[
|
||||||
|
|
Loading…
Reference in New Issue