noname/mode/identity.js

1577 lines
44 KiB
JavaScript
Raw Normal View History

2015-05-11 11:57:44 +00:00
'use strict';
2015-04-29 03:25:17 +00:00
mode.identity={
2016-03-23 02:34:26 +00:00
start:function(){
"step 0"
if(!lib.config.new_tutorial){
ui.arena.classList.add('only_dialog');
}
_status.mode=get.config('identity_mode');
"step 1"
var playback=localStorage.getItem(lib.configprefix+'playback');
if(playback){
ui.create.me();
ui.arena.style.display='none';
ui.system.style.display='none';
_status.playback=playback;
localStorage.removeItem(lib.configprefix+'playback');
var store=lib.db.transaction(['video'],'readwrite').objectStore('video');
store.get(parseInt(playback)).onsuccess=function(e){
if(e.target.result){
game.playVideoContent(e.target.result.video);
}
else{
alert('播放失败:找不到录像');
game.reload();
}
}
event.finish();
}
2016-03-31 06:00:53 +00:00
else if(!_status.connectMode){
2016-03-23 02:34:26 +00:00
if(_status.mode=='zhong'){
game.prepareArena(8);
}
else{
game.prepareArena();
}
if(!lib.config.new_tutorial){
game.delay();
}
}
"step 2"
if(!lib.config.new_tutorial){
2016-04-14 10:46:23 +00:00
_status.new_tutorial=true;
2016-03-23 02:34:26 +00:00
game.saveConfig('version',lib.version);
var clear=function(){
ui.dialog.close();
while(ui.controls.length) ui.controls[0].close();
};
var clear2=function(){
ui.auto.show();
ui.arena.classList.remove('only_dialog');
};
var step1=function(){
ui.create.dialog('欢迎来到无名杀,是否进入新手向导?');
game.saveConfig('new_tutorial',true);
ui.dialog.add('<div class="text center">跳过后,你可以在选项-其它中重置新手向导');
ui.auto.hide();
ui.create.control('跳过向导',function(){
clear();
clear2();
game.resume();
});
ui.create.control('继续',step2);
}
var step2=function(){
if(lib.config.layout!='phone'){
clear();
ui.create.dialog('如果你在使用手机,可能会觉得按钮有点小'+
',将布局改成移动可以使按钮变大');
ui.dialog.add('<div class="text center">你可以在选项-外观-布局中更改此设置');
var lcontrol=ui.create.control('使用移动布局',function(){
if(lib.config.layout=='phone'){
ui.control.firstChild.firstChild.innerHTML='使用移动布局';
lib.init.layout('mobile');
}
else{
ui.control.firstChild.firstChild.innerHTML='使用默认布局';
lib.init.layout('phone');
}
});
ui.create.control('继续',step3);
}
else{
step3();
}
};
var step3=function(){
if(lib.config.touchscreen){
clear();
ui.create.dialog('触屏模式中,下划可以显示菜单,上划可以切换托管,双指单击可以暂停');
ui.dialog.add('<div class="text center">你可以在选项-通用-中更改手势设置');
ui.create.control('继续',step4);
}
else{
step4();
}
};
var step4=function(){
clear();
ui.window.classList.add('noclick_important');
ui.click.configMenu();
ui.control.classList.add('noclick_click_important');
ui.control.style.top='calc(100% - 105px)';
ui.create.control('在菜单中,可以进行各项设置',function(){
ui.click.menuTab('选项');
ui.controls[0].replace('如果你感到游戏较卡,可以开启流畅模式',function(){
ui.controls[0].replace('在技能一栏中,可以设置自动发动或双将禁配的技能',function(){
ui.click.menuTab('武将');
ui.controls[0].replace('在武将或卡牌一栏中,单击武将/卡牌可以将其禁用',function(){
ui.click.menuTab('战局');
ui.controls[0].replace('在战局中可以输入游戏命令,或者管理录像',function(){
2016-04-11 10:27:10 +00:00
ui.click.menuTab('帮助');
ui.controls[0].replace('在帮助中,可以检查更新和下载素材',function(){
ui.click.configMenu();
ui.window.classList.remove('noclick_important');
ui.control.classList.remove('noclick_click_important');
ui.control.style.top='';
step5();
});
2016-03-23 02:34:26 +00:00
});
});
});
});
})
};
var step5=function(){
clear();
ui.create.dialog('如果还有其它问题,欢迎来到百度无名杀吧进行交流');
ui.create.control('完成',function(){
clear();
clear2();
game.resume();
})
};
game.pause();
step1();
}
else{
2016-04-11 10:27:10 +00:00
if(!_status.connectMode){
game.showChangeLog();
}
2016-03-23 02:34:26 +00:00
}
"step 3"
2016-04-14 10:46:23 +00:00
if(typeof _status.new_tutorial=='function'){
_status.new_tutorial();
}
delete _status.new_tutorial;
2016-03-23 02:34:26 +00:00
if(lib.storage.test){
lib.config.game_speed='vfast';
_status.auto=true;
ui.auto.classList.add('glow');
}
2016-03-30 07:31:51 +00:00
if(_status.connectMode){
2016-04-07 13:21:19 +00:00
game.waitForPlayer(function(){
2016-04-13 04:17:17 +00:00
if(lib.configOL.identity_mode=='zhong'){
2016-04-07 13:21:19 +00:00
lib.configOL.number=8;
}
});
2016-03-31 06:00:53 +00:00
}
"step 4"
if(_status.connectMode){
2016-04-08 07:06:56 +00:00
_status.mode=lib.configOL.identity_mode;
2016-04-13 04:17:17 +00:00
if(_status.mode=='zhong'){
lib.configOL.number=8;
2016-03-31 06:00:53 +00:00
}
2016-04-13 04:17:17 +00:00
if(lib.configOL.number<2){
lib.configOL.number=2;
2016-03-31 06:00:53 +00:00
}
2016-04-13 04:17:17 +00:00
game.randomMapOL();
2016-03-30 07:31:51 +00:00
}
else{
game.chooseCharacter();
}
2016-03-31 06:00:53 +00:00
"step 5"
2016-03-23 02:34:26 +00:00
if(ui.coin){
_status.coinCoeff=get.coinCoeff([game.me.name]);
}
if(game.players.length==2){
game.showIdentity(true);
2016-04-17 09:02:46 +00:00
var map={};
for(var i in lib.playerOL){
map[i]=lib.playerOL[i].identity;
2016-04-01 07:47:18 +00:00
}
2016-04-17 09:02:46 +00:00
game.broadcast(function(map){
for(var i in map){
lib.playerOL[i].identity=map[i];
lib.playerOL[i].setIdentity();
lib.playerOL[i].ai.shown=1;
}
},map);
2016-03-23 02:34:26 +00:00
}
else{
for(var i=0;i<game.players.length;i++){
game.players[i].ai.shown=0;
}
}
game.zhu.ai.shown=1;
if(game.zhu2){
game.zhong=game.zhu;
game.zhu=game.zhu2;
delete game.zhu2;
}
2016-04-15 16:20:05 +00:00
var enhance_zhu=false;
if(_status.connectMode){
enhance_zhu=(_status.mode!='zhong'&&lib.configOL.enhance_zhu&&get.population('fan')>=3)
}
else{
enhance_zhu=(_status.mode!='zhong'&&get.config('enhance_zhu')&&get.population('fan')>=3);
}
if(enhance_zhu){
2016-03-23 02:34:26 +00:00
var skill;
switch(game.zhu.name){
case 'liubei':skill='jizhen';break;
case 'dongzhuo':skill='hengzheng';break;
case 'sunquan':skill='batu';break;
case 'sp_zhangjiao':skill='tiangong';break;
case 'liushan':skill='shengxi';break;
case 'sunce':skill='ciqiu';break;
case 'yuanshao':skill='geju';break;
case 're_caocao':skill='dangping';break;
case 'caopi':skill='junxing';break;
case 'liuxie':skill='moukui';break;
default:skill='tianming';break;
}
2016-04-15 16:20:05 +00:00
game.broadcastAll(function(player,skill){
player.addSkill(skill);
player.storage.enhance_zhu=skill;
},game.zhu,skill);
2016-03-23 02:34:26 +00:00
}
if(lib.storage.test){
2016-03-26 05:32:00 +00:00
if(typeof lib.storage.test=='string'){
if(Math.random()<0.5) game.me.next.init(lib.storage.test);
else game.me.init(lib.storage.test);
}
2016-03-23 02:34:26 +00:00
var str='';
for(var i=0;i<game.players.length;i++){
str+=get.translation(game.players[i]);
if(game.players[i]==game.zhu) str+='(主)';
str+=' ';
}
console.log(str);
game.showIdentity();
}
2016-04-02 08:05:24 +00:00
game.syncState();
2016-03-23 02:34:26 +00:00
event.trigger('gameStart');
var players=get.players(lib.sort.position);
var info=[];
for(var i=0;i<players.length;i++){
info.push({
name:players[i].name,
name2:players[i].name2,
identity:players[i].identity
});
}
_status.videoInited=true,
game.addVideo('init',null,info);
game.gameDraw(game.zhong||game.zhu);
game.phaseLoop(game.zhong||game.zhu);
},
2015-04-29 03:25:17 +00:00
game:{
2016-04-02 08:05:24 +00:00
getState:function(){
var state={};
for(var i in lib.playerOL){
var player=lib.playerOL[i];
state[i]={identity:player.identity};
if(player==game.zhu){
state[i].zhu=player.isZhu?true:false;
}
if(player==game.zhong){
state[i].zhong=true;
}
state[i].shown=player.ai.shown;
}
return state;
},
updateState:function(state){
for(var i in state){
var player=lib.playerOL[i];
if(player){
player.identity=state[i].identity;
if(typeof state[i].zhu=='boolean'){
game.zhu=player;
player.isZhu=state[i].zhu;
}
if(state[i].zhong){
game.zhong=player;
}
player.ai.shown=state[i].shown;
}
}
},
2016-04-08 07:06:56 +00:00
getRoomInfo:function(uiintro){
uiintro.add('<div class="text chat">游戏模式:'+(lib.configOL.identity_mode=='zhong'?'明忠':'普通'));
uiintro.add('<div class="text chat">双将模式:'+(lib.configOL.double_character?'开启':'关闭'));
2016-04-13 04:17:17 +00:00
if(lib.configOL.identity_mode!='zhong'){
uiintro.add('<div class="text chat">双内奸:'+(lib.configOL.double_nei?'开启':'关闭'));
uiintro.add('<div class="text chat">加强主公:'+(lib.configOL.enhance_zhu?'开启':'关闭'));
}
uiintro.add('<div class="text chat">出牌时限:'+lib.configOL.choose_timeout+'秒');
uiintro.add('<div class="text chat">屏蔽弱将:'+(lib.configOL.ban_weak?'开启':'关闭'));
uiintro.add('<div class="text chat">屏蔽强将:'+(lib.configOL.ban_strong?'开启':'关闭')).style.paddingBottom='8px';
2016-04-08 07:06:56 +00:00
},
2015-11-30 13:08:29 +00:00
getIdentityList:function(player){
if(player.identityShown) return;
if(player==game.me) return;
2015-12-15 05:13:47 +00:00
if(_status.mode=='zhong'){
2015-11-30 13:08:29 +00:00
if(game.zhu&&game.zhu.isZhu){
return {
fan:'反',
zhong:'忠',
nei:'内',
cai:'猜',
}
}
else{
return {
fan:'反',
zhong:'忠',
nei:'内',
zhu:'主',
cai:'猜',
}
}
}
else{
return {
fan:'反',
zhong:'忠',
nei:'内',
cai:'猜',
}
}
},
2015-11-04 01:59:00 +00:00
getVideoName:function(){
var str=get.translation(game.me.name);
if(game.me.name2){
str+='/'+get.translation(game.me.name2);
}
var name=[
str,
get.cnNumber(parseInt(get.config('player_number')))+'人'+
get.translation(lib.config.mode)+' - '+lib.translate[game.me.identity+'2']
];
return name;
},
2015-12-15 08:20:57 +00:00
addRecord:function(bool){
if(typeof bool=='boolean'){
var data=lib.config.gameRecord.identity.data;
var identity=game.me.identity;
if(identity=='mingzhong'){
identity='zhong';
}
if(!data[identity]){
data[identity]=[0,0];
}
if(bool){
data[identity][0]++;
}
else{
data[identity][1]++;
}
var list=['zhu','zhong','nei','fan'];
var str='';
for(var i=0;i<list.length;i++){
if(data[list[i]]){
str+=lib.translate[list[i]+'2']+''+data[list[i]][0]+'胜'+' '+data[list[i]][1]+'负<br>';
}
}
lib.config.gameRecord.identity.str=str;
game.saveConfig('gameRecord',lib.config.gameRecord);
}
},
2015-11-01 07:54:42 +00:00
showIdentity:function(me){
2015-04-29 03:25:17 +00:00
for(var i=0;i<game.players.length;i++){
2015-11-01 07:54:42 +00:00
// if(me===false&&game.players[i]==game.me) continue;
2015-04-29 03:25:17 +00:00
game.players[i].identityShown=true;
game.players[i].ai.shown=1;
game.players[i].setIdentity(game.players[i].identity);
2015-11-07 09:20:15 +00:00
if(game.players[i].identity=='zhu'){
game.players[i].isZhu=true;
}
2015-04-29 03:25:17 +00:00
}
2016-01-28 08:02:18 +00:00
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;
}
2015-04-29 03:25:17 +00:00
},
checkResult:function(){
if(game.zhu.isAlive()&&get.population('fan')+get.population('nei')>0) return;
2015-11-07 09:20:15 +00:00
if(game.zhong){
game.zhong.identity='zhong';
}
2015-04-29 03:25:17 +00:00
if(lib.storage.test){
if(game.zhu.isAlive()){
console.log('主忠胜利');
}
else if(game.players[0].identity=='nei'&&game.players.length==1){
console.log('内奸胜利');
}
else{
console.log('反贼胜利');
}
}
2015-11-30 13:08:29 +00:00
game.showIdentity();
2015-04-29 03:25:17 +00:00
if(game.me.identity=='zhu'||game.me.identity=='zhong'){
if(game.zhu.classList.contains('dead')){
game.over(false);
}
else{
game.over(true);
}
}
else if(game.me.identity=='nei'){
2016-04-15 16:20:05 +00:00
if(game.players.length==1&&game.me.isAlive()){
2015-04-29 03:25:17 +00:00
game.over(true);
}
else{
game.over(false);
}
}
else{
2016-02-01 09:32:18 +00:00
if((get.population('fan')+get.population('zhong')>0||get.population('nei')>1)&&
game.zhu.classList.contains('dead')){
2015-04-29 03:25:17 +00:00
game.over(true);
}
else{
game.over(false);
}
}
},
2016-04-03 09:03:46 +00:00
checkOnlineResult:function(player){
if(game.zhu.isAlive()){
return (player.identity=='zhu'||player.identity=='zhong');
}
else if(game.players.length==1&&game.players[0].identity=='nei'){
return player.isAlive();
}
else{
return player.identity=='fan';
}
},
2015-04-29 03:25:17 +00:00
chooseCharacter:function(){
var next=game.createEvent('chooseCharacter',false);
next.showConfig=true;
next.addPlayer=function(player){
var list=lib.config.mode_config.identity.identity[game.players.length-3].slice(0);
var list2=lib.config.mode_config.identity.identity[game.players.length-2].slice(0);
for(var i=0;i<list.length;i++) list2.remove(list[i]);
player.identity=list2[0];
player.setIdentity('cai');
};
next.removePlayer=function(){
return game.players.randomGet(game.me,game.zhu);
};
2016-01-28 06:46:42 +00:00
next.ai=function(player,list,list2,back){
2015-11-07 09:20:15 +00:00
if(_status.event.zhongmode){
if(get.config('double_character')){
player.init(list[0],list[1]);
}
else{
player.init(list[0]);
}
if(player.identity=='mingzhong'){
player.hp++;
player.maxHp++;
player.update();
}
}
else if(player.identity=='zhu'){
2015-05-03 15:17:15 +00:00
list2.randomSort();
2015-04-29 03:25:17 +00:00
var choice,choice2;
2015-11-07 09:20:15 +00:00
if(!_status.event.zhongmode&&Math.random()-0.8<0&&list2.length){
2015-04-29 03:25:17 +00:00
choice=list2[0];
choice2=list[0];
if(choice2==choice){
choice2=list[1];
}
}
else{
choice=list[0];
choice2=list[1];
}
if(get.config('double_character')){
player.init(choice,choice2);
}
else{
player.init(choice);
}
if(game.players.length>4){
player.hp++;
player.maxHp++;
player.update();
}
2015-06-10 09:10:24 +00:00
}
else if(player.identity=='zhong'&&Math.random()<0.5){
2015-04-29 03:25:17 +00:00
var choice=0;
for(var i=0;i<list.length;i++){
if(lib.character[list[i]][1]==game.zhu.group){
choice=i;break;
}
}
if(get.config('double_character')){
player.init(list[choice],list[choice==0?choice+1:choice-1]);
}
else{
player.init(list[choice]);
}
2015-06-10 09:10:24 +00:00
}
else{
2015-04-29 03:25:17 +00:00
if(get.config('double_character')){
player.init(list[0],list[1]);
}
else{
player.init(list[0]);
}
}
2016-01-28 06:46:42 +00:00
if(back){
list.remove(player.name);
list.remove(player.name2);
for(var i=0;i<list.length;i++){
back.push(list[i]);
}
}
2015-04-29 03:25:17 +00:00
}
next.content=function(){
"step 0"
var i;
var list;
var list2=[];
var list3=[];
2015-11-07 09:20:15 +00:00
var identityList;
2015-12-27 09:27:25 +00:00
var chosen=lib.config.continue_name||[];
game.saveConfig('continue_name');
event.chosen=chosen;
2015-12-15 05:13:47 +00:00
if(_status.mode=='zhong'){
2015-11-07 09:20:15 +00:00
event.zhongmode=true;
identityList=['zhu','zhong','mingzhong','nei','fan','fan','fan','fan'];
}
else{
identityList=lib.config.mode_config.identity.identity[game.players.length-2].slice(0);
2016-02-01 09:32:18 +00:00
if(get.config('double_nei')){
switch(get.config('player_number')){
case '8':
identityList.remove('fan');
identityList.push('nei');
break;
case '7':
identityList.remove('zhong');
identityList.push('nei');
break;
case '6':
identityList.remove('fan');
identityList.push('nei');
break;
case '5':
identityList.remove('fan');
identityList.push('nei');
break;
case '4':
identityList.remove('zhong');
identityList.push('nei');
break;
case '3':
identityList.remove('fan');
identityList.push('nei');
break;
}
2015-11-07 09:20:15 +00:00
}
2015-11-06 10:05:08 +00:00
}
2015-11-07 09:20:15 +00:00
2015-04-29 03:25:17 +00:00
var addSetting=function(dialog){
dialog.add('选择身份');
2015-04-29 03:25:17 +00:00
var table=document.createElement('table');
table.style.margin='0 auto';
2015-11-25 12:34:54 +00:00
table.style.maxWidth='400px';
2015-04-29 03:25:17 +00:00
var tr=document.createElement('tr');
table.appendChild(tr);
2015-11-07 09:20:15 +00:00
var list;
if(event.zhongmode){
list=['random','zhu','mingzhong','zhong','nei','fan'];
}
else{
list=['random','zhu','zhong','nei','fan'];
}
for(var i=0;i<list.length;i++){
2015-04-29 03:25:17 +00:00
var td=document.createElement('td');
tr.appendChild(td);
td.link=list[i];
2015-11-25 12:34:54 +00:00
td.style.fontSize='25px';
td.style.fontFamily='xinwei';
if(td.link===game.me.identity){
td.classList.add('thundertext');
}
2015-04-29 03:25:17 +00:00
td.innerHTML=get.translation(list[i]+'2');
td.addEventListener(lib.config.touchscreen?'touchend':'click',function(){
if(_status.dragged) return;
2015-12-12 08:37:15 +00:00
if(_status.justdragged) return;
2015-11-14 15:48:04 +00:00
_status.tempNoButton=true;
setTimeout(function(){
_status.tempNoButton=false;
},500);
2015-04-29 03:25:17 +00:00
if(game.zhu.name){
game.zhu.uninit();
2015-11-07 09:20:15 +00:00
delete game.zhu.isZhu;
2015-04-29 03:25:17 +00:00
delete game.zhu.identityShown;
}
dialog.close();
_status.event=_status.event.parent;
_status.event.step=0;
if(this.link!='random'){
_status.event.identity=this.link;
}
else{
delete _status.event.identity;
}
game.resume();
});
}
dialog.content.appendChild(table);
dialog.add('选择座位');
var seats=document.createElement('table');
seats.style.margin='0 auto';
2015-11-25 12:34:54 +00:00
seats.style.maxWidth=(60*(parseInt(get.config('player_number'))-1))+'px';
var tr=document.createElement('tr');
seats.appendChild(tr);
for(var i=2;i<=game.players.length;i++){
var td=document.createElement('td');
tr.appendChild(td);
td.style.width='40px';
2015-11-25 12:34:54 +00:00
td.style.fontSize='25px';
td.style.fontFamily='xinwei';
td.innerHTML=get.cnNumber(i,true);
td.link=i-1;
if(get.distance(game.zhu,game.me,'absolute')===i-1){
td.classList.add('thundertext');
}
td.addEventListener(lib.config.touchscreen?'touchend':'click',function(){
if(_status.dragged) return;
2015-12-12 08:37:15 +00:00
if(_status.justdragged) return;
if(get.distance(game.zhu,game.me,'absolute')==this.link) return;
var current=this.parentNode.querySelector('.thundertext');
if(current){
current.classList.remove('thundertext');
}
this.classList.add('thundertext');
for(var i=0;i<game.players.length;i++){
if(get.distance(game.players[i],game.me,'absolute')==this.link){
game.swapSeat(game.zhu,game.players[i],false);return;
}
}
});
}
dialog.content.appendChild(seats);
if(game.me==game.zhu){
seats.previousSibling.style.display='none';
seats.style.display='none';
}
2015-04-29 03:25:17 +00:00
dialog.add(ui.create.div('.placeholder'));
dialog.add(ui.create.div('.placeholder'));
dialog.add(ui.create.div('.placeholder'));
};
var removeSetting=function(){
var dialog=_status.event.dialog;
if(dialog.querySelector('table')&&!get.config('change_identity')){
dialog.querySelector('table').previousSibling.remove();
dialog.querySelector('table').nextSibling.remove();
dialog.querySelector('table').nextSibling.remove();
dialog.querySelector('table').nextSibling.remove();
dialog.querySelector('table').nextSibling.remove();
dialog.querySelector('table').nextSibling.remove();
dialog.querySelector('table').remove();
}
};
2015-04-29 03:25:17 +00:00
event.addSetting=addSetting;
event.removeSetting=removeSetting;
2015-04-29 03:25:17 +00:00
event.list=[];
2015-05-03 15:17:15 +00:00
identityList.randomSort();
2015-04-29 03:25:17 +00:00
if(event.identity){
identityList.remove(event.identity);
identityList.unshift(event.identity);
delete event.identity;
}
for(i=0;i<game.players.length;i++){
game.players[i].identity=identityList[i];
game.players[i].setIdentity('cai');
2015-11-07 09:20:15 +00:00
if(event.zhongmode){
if(identityList[i]=='mingzhong'){
game.zhu=game.players[i];
}
else if(identityList[i]=='zhu'){
game.zhu2=game.players[i];
}
}
else{
if(identityList[i]=='zhu'){
game.zhu=game.players[i];
}
2015-04-29 03:25:17 +00:00
}
game.players[i].identityShown=false;
}
game.zhu.setIdentity();
game.zhu.identityShown=true;
2015-11-07 09:20:15 +00:00
game.zhu.isZhu=(game.zhu.identity=='zhu');
2015-04-29 03:25:17 +00:00
game.me.setIdentity();
for(i in lib.character){
2015-12-27 09:27:25 +00:00
if(chosen.contains(i)) continue;
2016-04-07 06:42:16 +00:00
if(lib.filter.characterDisabled(i)) continue;
2015-04-29 03:25:17 +00:00
event.list.push(i);
if(lib.character[i][4]&&lib.character[i][4].contains('zhu')){
list2.push(i);
}
else{
list3.push(i);
}
}
2015-05-03 15:17:15 +00:00
event.list.randomSort();
list3.randomSort();
2015-11-28 07:19:04 +00:00
var num=get.config('choice_'+game.me.identity);
2015-11-07 09:20:15 +00:00
if(event.zhongmode){
num=3;
}
2015-04-29 03:25:17 +00:00
if(game.zhu!=game.me){
event.ai(game.zhu,event.list,list2)
event.list.remove(game.zhu.name);
event.list.remove(game.zhu.name2);
list=event.list.splice(0,num);
}
else{
2015-11-07 09:20:15 +00:00
if(event.zhongmode){
list=list3.slice(0,6);
}
else{
2015-11-10 10:13:53 +00:00
list=list2.concat(list3.slice(0,num));
2015-11-07 09:20:15 +00:00
}
2015-04-29 03:25:17 +00:00
}
2015-12-27 09:27:25 +00:00
var dialog=ui.create.dialog('选择角色','hidden',[list,'character']);
2015-04-29 03:25:17 +00:00
if(get.config('change_identity')){
addSetting(dialog);
}
2015-12-27 09:27:25 +00:00
if(!event.chosen.length){
game.me.chooseButton(dialog,true).selectButton=function(){
return get.config('double_character')?2:1
};
}
2015-04-29 03:25:17 +00:00
ui.create.cheat=function(){
2015-09-03 03:49:14 +00:00
_status.createControl=ui.cheat2;
2015-04-29 03:25:17 +00:00
ui.cheat=ui.create.control('更换',function(){
2015-05-08 08:07:38 +00:00
if(ui.cheat2&&ui.cheat2.dialog==_status.event.dialog){
return;
}
2015-12-27 08:09:12 +00:00
if(game.changeCoin){
2016-01-12 13:18:47 +00:00
game.changeCoin(-3);
2015-12-27 08:09:12 +00:00
}
2015-04-29 03:25:17 +00:00
if(game.zhu!=game.me){
event.list=event.list.concat(list);
2015-05-03 15:17:15 +00:00
event.list.randomSort();
2015-04-29 03:25:17 +00:00
list=event.list.splice(0,num);
}
else{
2015-05-03 15:17:15 +00:00
list3.randomSort();
2015-04-29 03:25:17 +00:00
list=list3.slice(0,num).concat(list2);
}
_status.event.dialog.close();
_status.event.dialog=ui.create.dialog('选择角色',[list,'character']);
if(get.config('change_identity')){
addSetting(_status.event.dialog);
}
game.uncheck();
game.check();
});
2015-09-03 03:49:14 +00:00
delete _status.createControl;
2015-04-29 03:25:17 +00:00
};
2015-05-02 09:54:39 +00:00
event.dialogxx=ui.create.characterDialog();
2015-04-29 03:25:17 +00:00
ui.create.cheat2=function(){
ui.cheat2=ui.create.control('自由选将',function(){
if(this.dialog==_status.event.dialog){
2015-12-27 08:09:12 +00:00
if(game.changeCoin){
game.changeCoin(50);
}
2015-04-29 03:25:17 +00:00
this.dialog.close();
_status.event.dialog=this.backup;
this.backup.open();
delete this.backup;
game.uncheck();
game.check();
2015-09-03 03:49:14 +00:00
if(ui.cheat){
ui.cheat.style.opacity=1;
}
2015-04-29 03:25:17 +00:00
if(ui.cheat2x){
ui.cheat2x.close();
delete ui.cheat2x;
}
}
else{
2015-12-27 08:09:12 +00:00
if(game.changeCoin){
2016-01-12 13:18:47 +00:00
game.changeCoin(-10);
2015-12-27 08:09:12 +00:00
}
2015-05-02 09:54:39 +00:00
ui.cheat2x=ui.create.groupControl(_status.event.parent.dialogxx);
2015-04-29 03:25:17 +00:00
this.backup=_status.event.dialog;
_status.event.dialog.close();
_status.event.dialog=_status.event.parent.dialogxx;
this.dialog=_status.event.dialog;
this.dialog.open();
game.uncheck();
game.check();
2015-09-03 03:49:14 +00:00
if(ui.cheat){
ui.cheat.style.opacity=0.6;
}
2015-04-29 03:25:17 +00:00
}
});
}
if(!ui.cheat&&get.config('change_choice'))
ui.create.cheat();
if(!ui.cheat2&&get.config('free_choose'))
ui.create.cheat2();
"step 1"
if(ui.cheat){
ui.cheat.close();
delete ui.cheat;
}
if(ui.cheat2){
ui.cheat2.close();
delete ui.cheat2;
}
if(ui.cheat2x){
ui.cheat2x.close();
delete ui.cheat2x;
}
2015-12-27 09:27:25 +00:00
if(event.chosen.length){
game.me.init(event.chosen[0],event.chosen[1]);
}
else if(result.buttons.length==2){
2015-04-29 03:25:17 +00:00
game.me.init(result.buttons[0].link,result.buttons[1].link)
}
else{
game.me.init(result.buttons[0].link)
}
2016-03-29 02:34:06 +00:00
game.addRecentCharacter(game.me.name,game.me.name2);
2015-04-29 03:25:17 +00:00
event.list.remove(game.me.name);
event.list.remove(game.me.name2);
2015-11-07 09:20:15 +00:00
if(game.me==game.zhu&&game.players.length>4){
2015-04-29 03:25:17 +00:00
game.me.hp++;
game.me.maxHp++;
game.me.update();
}
for(var i=0;i<game.players.length;i++){
if(game.players[i]!=game.zhu&&game.players[i]!=game.me){
2016-01-28 06:46:42 +00:00
event.ai(game.players[i],event.list.splice(0,get.config('choice_'+game.players[i].identity)),null,event.list)
2015-04-29 03:25:17 +00:00
}
}
}
},
2016-03-31 06:00:53 +00:00
chooseCharacterOL:function(){
var next=game.createEvent('chooseCharacter',false);
next.content=function(){
"step 0"
var i;
var identityList;
if(_status.mode=='zhong'){
event.zhongmode=true;
identityList=['zhu','zhong','mingzhong','nei','fan','fan','fan','fan'];
}
else{
identityList=lib.config.mode_config.identity.identity[game.players.length-2].slice(0);
2016-04-14 10:46:23 +00:00
if(lib.configOL.double_nei){
switch(lib.configOL.number){
case 8:
2016-03-31 06:00:53 +00:00
identityList.remove('fan');
identityList.push('nei');
break;
2016-04-14 10:46:23 +00:00
case 7:
2016-03-31 06:00:53 +00:00
identityList.remove('zhong');
identityList.push('nei');
break;
2016-04-14 10:46:23 +00:00
case 6:
2016-03-31 06:00:53 +00:00
identityList.remove('fan');
identityList.push('nei');
break;
2016-04-14 10:46:23 +00:00
case 5:
2016-03-31 06:00:53 +00:00
identityList.remove('fan');
identityList.push('nei');
break;
2016-04-14 10:46:23 +00:00
case 4:
2016-03-31 06:00:53 +00:00
identityList.remove('zhong');
identityList.push('nei');
break;
2016-04-14 10:46:23 +00:00
case 3:
2016-03-31 06:00:53 +00:00
identityList.remove('fan');
identityList.push('nei');
break;
}
}
}
identityList.randomSort();
for(i=0;i<game.players.length;i++){
game.players[i].identity=identityList[i];
game.players[i].setIdentity('cai');
if(event.zhongmode){
if(identityList[i]=='mingzhong'){
game.zhu=game.players[i];
}
else if(identityList[i]=='zhu'){
game.zhu2=game.players[i];
}
}
else{
if(identityList[i]=='zhu'){
game.zhu=game.players[i];
}
}
game.players[i].identityShown=false;
}
game.zhu.setIdentity();
game.zhu.identityShown=true;
game.zhu.isZhu=(game.zhu.identity=='zhu');
game.me.setIdentity();
2016-04-01 07:47:18 +00:00
for(var i=0;i<game.players.length;i++){
2016-04-03 02:19:24 +00:00
game.players[i].send(function(zhu,zhuid,me,identity){
2016-04-01 07:47:18 +00:00
for(var i in lib.playerOL){
lib.playerOL[i].setIdentity('cai');
}
zhu.identityShown=true;
2016-04-03 02:19:24 +00:00
zhu.identity=zhuid;
zhu.setIdentity();
2016-04-01 07:47:18 +00:00
me.setIdentity(identity);
2016-04-03 02:19:24 +00:00
},game.zhu,game.zhu.identity,game.players[i],game.players[i].identity);
2016-04-01 07:47:18 +00:00
}
2016-03-31 06:00:53 +00:00
var list;
var list2=[];
var list3=[];
event.list=[];
2016-04-15 16:20:05 +00:00
event.list2=[];
2016-04-01 07:47:18 +00:00
var libCharacter={};
for(var i=0;i<lib.configOL.characterPack.length;i++){
var pack=lib.characterPack[lib.configOL.characterPack[i]];
for(var j in pack){
2016-04-06 06:09:27 +00:00
if(j=='zuoci') continue;
if(lib.character[j]) libCharacter[j]=pack[j];
2016-04-01 07:47:18 +00:00
}
}
for(i in libCharacter){
2016-04-11 06:13:35 +00:00
if(lib.filter.characterDisabled(i)) continue;
2016-03-31 06:00:53 +00:00
event.list.push(i);
2016-04-15 16:20:05 +00:00
event.list2.push(i);
2016-04-01 07:47:18 +00:00
if(libCharacter[i][4]&&libCharacter[i][4].contains('zhu')){
2016-03-31 06:00:53 +00:00
list2.push(i);
}
else{
list3.push(i);
}
}
if(event.zhongmode){
list=event.list.randomGets(6);
}
else{
2016-04-01 07:47:18 +00:00
list=list2.concat(list3.randomGets(3));
2016-03-31 06:00:53 +00:00
}
var next=game.zhu.chooseButton(true);
2016-04-01 07:47:18 +00:00
next.set('selectButton',(lib.configOL.double_character?2:1));
next.set('createDialog',['选择角色',[list,'character']]);
next.set('callback',function(player,result){
player.init(result.links[0],result.links[1]);
});
next.set('ai',function(button){
2016-03-31 06:00:53 +00:00
return Math.random();
2016-04-01 07:47:18 +00:00
});
2016-03-31 06:00:53 +00:00
"step 1"
2016-04-01 07:47:18 +00:00
if(game.me!=game.zhu){
2016-03-31 06:00:53 +00:00
game.zhu.init(result.links[0],result.links[1])
}
event.list.remove(game.zhu.name);
event.list.remove(game.zhu.name2);
2016-04-15 16:20:05 +00:00
event.list2.remove(game.zhu.name);
event.list2.remove(game.zhu.name2);
2016-04-01 07:47:18 +00:00
2016-04-03 09:03:46 +00:00
if(game.players.length>4){
game.zhu.maxHp++;
game.zhu.hp++;
game.zhu.update();
}
game.broadcast(function(zhu,name,name2,addMaxHp){
2016-04-01 07:47:18 +00:00
if(game.zhu!=game.me){
zhu.init(name,name2);
}
2016-04-03 09:03:46 +00:00
if(addMaxHp){
zhu.maxHp++;
zhu.hp++;
zhu.update();
}
},game.zhu,game.zhu.name,game.zhu.name2,game.players.length>4);
2016-04-01 07:47:18 +00:00
var list=[];
var selectButton=(lib.configOL.double_character?2:1);
2016-04-15 16:20:05 +00:00
var num,num2=0;
if(event.zhongmode){
num=3;
}
else{
num=Math.floor(event.list.length/(game.players.length-1));
num2=event.list.length-num*(game.players.length-1);
if(lib.configOL.double_nei){
num2=Math.floor(num2/2);
}
if(num>5){
num=5;
}
if(num2>2){
num2=2;
}
}
2016-04-01 07:47:18 +00:00
for(var i=0;i<game.players.length;i++){
if(game.players[i]!=game.zhu){
2016-04-15 16:20:05 +00:00
var num3;
if(game.players[i].identity=='nei'){
num3=num2;
2016-04-03 02:19:24 +00:00
}
else{
2016-04-15 16:20:05 +00:00
num3=0;
2016-04-01 07:47:18 +00:00
}
2016-04-15 16:20:05 +00:00
list.push([game.players[i],['选择角色',[event.list.randomRemove(num+num3),'character']],selectButton,true]);
2016-04-01 07:47:18 +00:00
}
}
game.me.chooseButtonOL(list,function(player,result){
2016-04-07 15:54:17 +00:00
if(game.online||player==game.me) player.init(result.links[0],result.links[1]);
2016-04-01 07:47:18 +00:00
});
"step 2"
2016-04-15 16:20:05 +00:00
for(var i in result){
if(result[i]&&result[i].links){
for(var j=0;j<result[i].links.length;j++){
event.list2.remove(result[i].links[j]);
}
}
}
2016-04-01 07:47:18 +00:00
for(var i in result){
if(result[i]=='ai'){
2016-04-15 16:20:05 +00:00
result[i]=event.list2.randomRemove(lib.configOL.double_character?2:1);
2016-04-01 07:47:18 +00:00
}
else{
result[i]=result[i].links
}
if(!lib.playerOL[i].name){
lib.playerOL[i].init(result[i][0],result[i][1]);
}
}
game.broadcast(function(result){
for(var i in result){
if(!lib.playerOL[i].name){
lib.playerOL[i].init(result[i][0],result[i][1]);
}
}
},result);
2016-03-31 06:00:53 +00:00
}
},
2015-04-29 03:25:17 +00:00
},
translate:{
zhu:"主",
zhong:"忠",
2015-11-07 09:20:15 +00:00
mingzhong:"忠",
2015-04-29 03:25:17 +00:00
nei:"内",
fan:"反",
cai:"猜",
zhu2:"主公",
zhong2:"忠臣",
2015-11-07 09:20:15 +00:00
mingzhong2:"明忠",
2015-04-29 03:25:17 +00:00
nei2:"内奸",
fan2:"反贼",
random2:"随机",
ai_strategy_1:'均衡',
ai_strategy_2:'偏反',
ai_strategy_3:'偏主',
ai_strategy_4:'酱油',
ai_strategy_5:'天使',
ai_strategy_6:'仇主',
},
element:{
player:{
2016-04-03 16:11:05 +00:00
$dieAfter:function(){
2016-04-05 09:30:38 +00:00
if(_status.video) return;
2016-04-03 16:11:05 +00:00
if(!this.node.dieidentity){
var node=ui.create.div('.damage.dieidentity',get.translation(this.identity+'2'),this);
ui.refresh(node);
node.style.opacity=1;
this.node.dieidentity=node;
}
var trans=this.style.transform;
if(trans){
if(trans.indexOf('rotateY')!=-1){
this.node.dieidentity.style.transform='rotateY(180deg)';
}
else if(trans.indexOf('rotateX')!=-1){
this.node.dieidentity.style.transform='rotateX(180deg)';
}
else{
this.node.dieidentity.style.transform='';
}
}
else{
this.node.dieidentity.style.transform='';
}
},
2015-04-29 03:25:17 +00:00
dieAfter:function(source){
2016-04-04 14:15:58 +00:00
if(!this.identityShown){
game.broadcastAll(function(player){
player.setIdentity(player.identity);
player.identityShown=true;
},this);
2015-04-29 03:25:17 +00:00
}
game.checkResult();
2016-03-21 09:05:16 +00:00
if(game.zhu.isZhu){
if(get.population('zhong')+get.population('nei')==0||
get.population('zhong')+get.population('fan')==0){
2016-04-04 14:15:58 +00:00
game.broadcastAll(game.showIdentity);
2016-03-21 09:05:16 +00:00
}
}
2015-04-29 03:25:17 +00:00
if(this.identity=='fan'&&source) source.draw(3);
2015-11-07 09:20:15 +00:00
else if(this.identity=='zhong'&&source&&source.identity=='zhu'&&source.isZhu){
2015-04-29 03:25:17 +00:00
source.discard(source.get('he'));
}
if(game.zhu.storage.enhance_zhu&&get.population('fan')<3){
game.zhu.removeSkill(game.zhu.storage.enhance_zhu);
delete game.zhu.storage.enhance_zhu;
}
2015-11-07 09:20:15 +00:00
if(this==game.zhong){
2016-04-04 14:15:58 +00:00
game.broadcastAll(function(player){
game.zhu=player;
game.zhu.identityShown=true;
game.zhu.ai.shown=1;
game.zhu.setIdentity();
game.zhu.isZhu=true;
if(lib.config.animation&&!lib.config.low_performance) game.zhu.$legend();
delete game.zhong;
if(_status.clickingidentity&&_status.clickingidentity[0]==game.zhu){
for(var i=0;i<_status.clickingidentity[1].length;i++){
_status.clickingidentity[1][i].delete();
_status.clickingidentity[1][i].style.transform='';
}
delete _status.clickingidentity;
}
},game.zhu);
2015-11-07 09:20:15 +00:00
game.delay(2);
2015-11-09 03:15:16 +00:00
game.zhu.playerfocus(1000);
2015-11-07 09:20:15 +00:00
}
2016-04-03 09:03:46 +00:00
if(!_status.over){
var giveup;
if(get.population('fan')+get.population('nei')==1){
for(var i=0;i<game.players.length;i++){
if(game.players[i].identity=='fan'||game.players[i].identity=='nei'){
giveup=game.players[i];break;
}
}
}
else if(get.population('zhong')+get.population('mingzhong')+get.population('nei')==0){
giveup=game.zhu;
}
if(giveup){
2016-04-16 07:54:14 +00:00
giveup.showGiveup();
2016-04-03 09:03:46 +00:00
}
}
2015-04-29 03:25:17 +00:00
},
logAi:function(targets,card){
if(this.ai.shown==1) return;
if(typeof targets=='number'){
this.ai.shown+=targets;
}
else{
var effect=0,c,shown;
var info=get.info(card);
if(info.ai&&info.ai.expose){
2015-12-06 15:23:47 +00:00
this.ai.shown+=info.ai.expose;
2015-04-29 03:25:17 +00:00
}
if(targets.length>0){
for(var i=0;i<targets.length;i++){
shown=Math.abs(targets[i].ai.shown);
if(shown<0.2||targets[i].identity=='nei') c=0;
else if(shown<0.4) c=0.5;
else if(shown<0.6) c=0.8;
else c=1;
2016-03-21 09:05:16 +00:00
var eff=ai.get.effect(targets[i],card,this);
effect+=eff*c;
if(eff==0&&shown==0&&this.identity=='zhong'&&targets[i]!=this){
effect+=0.1;
}
2015-04-29 03:25:17 +00:00
}
}
2015-12-06 15:23:47 +00:00
if(effect>0){
2015-04-29 03:25:17 +00:00
if(effect<1) c=0.5;
else c=1;
if(targets.length==1&&targets[0]==this);
else if(targets.length==1) this.ai.shown+=0.2*c;
else this.ai.shown+=0.1*c;
}
else if(effect<0&&this==game.me&&game.me.identity!='nei'){
if(targets.length==1&&targets[0]==this);
else if(targets.length==1) this.ai.shown-=0.2;
else this.ai.shown-=0.1;
}
}
if(this!=game.me) this.ai.shown*=2;
if(this.ai.shown>0.95) this.ai.shown=0.95;
if(this.ai.shown<-0.5) this.ai.shown=-0.5;
2016-02-18 06:22:24 +00:00
2016-04-03 02:19:24 +00:00
var marknow=(!_status.connectMode&&this!=game.me&&get.config('auto_mark_identity')&&this.ai.identity_mark!='finished');
2016-03-21 09:05:16 +00:00
if(true){
if(marknow&&_status.clickingidentity&&_status.clickingidentity[0]==this){
2016-02-18 06:22:24 +00:00
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(!Array.isArray(targets)){
targets=[];
}
var effect=0,c,shown;
var zhu=game.zhu;
if(_status.mode=='zhong'&&!game.zhu.isZhu){
zhu=game.zhong;
}
if(targets.length==1&&targets[0]==this){
effect=0;
}
else if(this.identity!='nei'){
if(this.ai.shown>0){
if(this.identity=='fan'){
effect=-1;
}
else{
effect=1;
}
}
}
else if(targets.length>0){
for(var i=0;i<targets.length;i++){
shown=Math.abs(targets[i].ai.shown);
if(shown<0.2||targets[i].identity=='nei') c=0;
else if(shown<0.4) c=0.5;
else if(shown<0.6) c=0.8;
else c=1;
effect+=ai.get.effect(targets[i],card,this,zhu)*c;
}
}
if(this.identity=='nei'){
2016-03-21 09:05:16 +00:00
if(effect>0){
2016-02-18 06:22:24 +00:00
if(this.ai.identity_mark=='fan'){
2016-03-21 09:05:16 +00:00
if(marknow) this.setIdentity();
2016-02-18 06:22:24 +00:00
this.ai.identity_mark='finished';
}
else{
2016-03-21 09:05:16 +00:00
if(marknow) this.setIdentity('zhong');
2016-02-18 06:22:24 +00:00
this.ai.identity_mark='zhong';
}
}
2016-03-21 09:05:16 +00:00
else if(effect<0&&get.population('fan')>0){
2016-02-18 06:22:24 +00:00
if(this.ai.identity_mark=='zhong'){
2016-03-21 09:05:16 +00:00
if(marknow) this.setIdentity();
2016-02-18 06:22:24 +00:00
this.ai.identity_mark='finished';
}
else{
2016-03-21 09:05:16 +00:00
if(marknow) this.setIdentity('fan');
2016-02-18 06:22:24 +00:00
this.ai.identity_mark='fan';
}
}
}
2016-03-21 09:05:16 +00:00
else if(marknow){
2016-02-18 06:22:24 +00:00
if(effect>0&&this.identity!='fan'){
this.setIdentity('zhong');
this.ai.identity_mark='finished';
}
else if(effect<0&&this.identity=='fan'){
this.setIdentity('fan');
this.ai.identity_mark='finished';
}
}
}
2016-03-21 09:05:16 +00:00
2015-04-29 03:25:17 +00:00
},
}
},
ai:{
get:{
attitude:function(from,to){
2016-04-02 16:05:48 +00:00
if(!from||!to) return 0;
2015-04-29 03:25:17 +00:00
var x=0,num=0,temp,i;
if(_status.ai.customAttitude){
for(i=0;i<_status.ai.customAttitude.length;i++){
temp=_status.ai.customAttitude[i](from,to);
if(temp!=undefined){
x+=temp;
num++;
}
}
}
if(num){
return x/num;
}
var difficulty=0;
if(to==game.me) difficulty=2-get.difficulty();
2016-03-21 09:05:16 +00:00
if(from==to||to.identityShown){
2015-04-29 03:25:17 +00:00
return ai.get.realAttitude(from,to)+difficulty*1.5;
}
else{
2015-11-06 10:05:08 +00:00
if(from.identity=='zhong'&&to.ai.shown==0&&from.ai.tempIgnore&&
!from.ai.tempIgnore.contains(to)){
for(var i=0;i<game.players.length;i++){
if(game.players[i].ai.shown==0&&game.players[i].identity=='fan'){
return -0.1+difficulty*1.5;
}
}
}
2016-03-21 09:05:16 +00:00
var aishown=to.ai.shown;
if(to.identity=='nei'&&to.ai.shown<1&&(to.ai.identity_mark=='fan'||to.ai.identity_mark=='zhong')){
aishown=0.5;
}
else if(aishown==0&&to.identity!='fan'&&to.identity!='zhu'){
var fanshown=true;
for(var i=0;i<game.players.length;i++){
if(game.players[i].identity=='fan'&&game.players[i].ai.shown==0&&game.players[i]!=from){
fanshown=false;break;
}
}
if(fanshown) aishown=0.3;
}
return ai.get.realAttitude(from,to)*aishown+difficulty*1.5;
2015-04-29 03:25:17 +00:00
}
},
realAttitude:function(from,to){
var situation=ai.get.situation();
2015-11-07 09:20:15 +00:00
var identity=from.identity;
2015-04-29 03:25:17 +00:00
var identity2=to.identity;
2015-11-07 09:20:15 +00:00
if(identity2=='zhu'&&!to.isZhu){
identity2='zhong';
if(from==to) return 10;
}
2016-03-27 03:58:38 +00:00
if(from!=to&&to.identity=='nei'&&to.ai.shown<1&&(to.ai.identity_mark=='fan'||to.ai.identity_mark=='zhong')){
2016-03-21 09:05:16 +00:00
identity2=to.ai.identity_mark;
}
2016-03-27 03:58:38 +00:00
if(from.identity!='nei'&&from!=to&&get.population('fan')==0&&identity2=='zhong'){
2016-03-26 08:24:43 +00:00
for(var i=0;i<game.players.length;i++){
if(game.players[i].identity=='nei'&&
game.players[i].ai.identity_mark=='zhong'&&
game.players[i].ai.shown<1){
identity2='nei';break;
}
}
}
2015-11-07 09:20:15 +00:00
var zhongmode=false;
if(!game.zhu.isZhu){
zhongmode=true;
}
2015-04-29 03:25:17 +00:00
switch(identity){
case 'zhu':
switch(identity2){
case 'zhu': return 10;
2015-11-07 09:20:15 +00:00
case 'zhong':case 'mingzhong': return 6;
2015-04-29 03:25:17 +00:00
case 'nei':
if(game.players.length==2) return -10;
2016-03-26 08:24:43 +00:00
if(to.identity=='zhong') return 0;
if(get.population('fan')==0){
if(to.ai.identity_mark=='zhong'&&to.ai.shown<1) return 0;
return -0.5;
}
2016-03-22 06:45:57 +00:00
if(zhongmode&&to.ai.sizhong&&to.ai.shown<1) return 6;
2016-03-20 14:53:44 +00:00
if(get.population('fan')==1&&get.population('nei')==1&&game.players.length==3){
var fan;
for(var i=0;i<game.players.length;i++){
if(game.players[i].identity=='fan'){
fan=game.players[i];break;
}
}
if(fan){
if(to.hp>1&&to.hp>fan.hp&&to.num('he')>fan.num('he')){
return -3;
}
}
return 0;
}
2015-05-11 11:57:44 +00:00
if(situation>1) return 0;
2015-04-29 03:25:17 +00:00
return Math.min(3,get.population('fan'));
2016-03-20 14:53:44 +00:00
case 'fan':
if(get.population('fan')==1&&get.population('nei')==1&&game.players.length==3){
var nei;
for(var i=0;i<game.players.length;i++){
if(game.players[i].identity=='nei'){
nei=game.players[i];break;
}
}
if(nei){
if(nei.hp>1&&nei.hp>to.hp&&nei.num('he')>to.num('he')){
return 0;
}
}
return -3;
}
return -4;
2015-04-29 03:25:17 +00:00
}
2015-05-11 11:57:44 +00:00
break;
2015-11-07 09:20:15 +00:00
case 'zhong':case 'mingzhong':
2015-04-29 03:25:17 +00:00
switch(identity2){
case 'zhu': return 10;
2015-11-07 09:20:15 +00:00
case 'zhong':case 'mingzhong': return 4;
2015-04-29 03:25:17 +00:00
case 'nei':
if(get.population('fan')==0) return -2;
2016-03-22 06:45:57 +00:00
if(zhongmode&&to.ai.sizhong&&to.ai.shown<1) return 6;
2015-05-11 11:57:44 +00:00
return Math.min(3,-situation);
2015-04-29 03:25:17 +00:00
case 'fan': return -8;
}
2015-05-11 11:57:44 +00:00
break;
2015-04-29 03:25:17 +00:00
case 'nei':
if(identity2=='zhu'&&game.players.length==2) return -10;
var strategy=get.aiStrategy();
if(strategy==4){
if(from==to) return 10;
return 0;
}
var num;
switch(identity2){
case 'zhu':
if(strategy==6) return -1;
if(strategy==5) return 10;
if(to.hp<=0) return 10;
2015-12-06 15:23:47 +00:00
if(get.population('fan')==1){
var fan;
for(var i=0;i<game.players.length;i++){
if(game.players[i].identity=='fan'){
fan=game.players[i];break;
}
}
if(fan){
if(to.hp>1&&to.hp>fan.hp&&to.num('he')>fan.num('he')){
return -3;
}
}
return 0;
}
else{
if(situation>1||get.population('fan')==0) num=0;
else num=get.population('fan')+Math.max(0,3-game.zhu.hp);
}
2015-04-29 03:25:17 +00:00
if(strategy==2) num--;
if(strategy==3) num++;
return num;
case 'zhong':
2015-05-11 11:57:44 +00:00
if(strategy==5) return Math.min(0,-situation);
if(strategy==6) return Math.max(-1,-situation);
2015-04-29 03:25:17 +00:00
if(get.population('fan')==0) num=-5;
2015-05-11 11:57:44 +00:00
else if(situation<=0) num=0;
2015-04-29 03:25:17 +00:00
else if(game.zhu&&game.zhu.hp<2) num=0;
2015-11-06 10:05:08 +00:00
else if(game.zhu&&game.zhu.hp==2) num=-1;
else if(game.zhu&&game.zhu.hp<=2&&situation>1) num=-1;
2015-04-29 03:25:17 +00:00
else num=-2;
2015-11-07 09:20:15 +00:00
if(zhongmode&&situation<2){
num=4;
}
if(strategy==2) num--;
if(strategy==3) num++;
return num;
case 'mingzhong':
2016-02-18 06:22:24 +00:00
if(zhongmode){
if(from.ai.sizhong==undefined){
from.ai.sizhong=(Math.random()<0.5);
}
if(from.ai.sizhong) return 6;
}
2015-11-07 09:20:15 +00:00
if(strategy==5) return Math.min(0,-situation);
if(strategy==6) return Math.max(-1,-situation);
if(get.population('fan')==0) num=-5;
else if(situation<=0) num=0;
else num=-3;
2015-04-29 03:25:17 +00:00
if(strategy==2) num--;
if(strategy==3) num++;
return num;
case 'nei':
if(from==to) return 10;
if(from.ai.friend.contains(to)) return 5;
2015-11-06 10:05:08 +00:00
if(get.population('fan')+get.population('zhong')>0) return 0;
2016-02-01 09:32:18 +00:00
return -5;
2015-04-29 03:25:17 +00:00
case 'fan':
2015-05-11 11:57:44 +00:00
if(strategy==5) return Math.max(-1,situation);
if(strategy==6) return Math.min(0,situation);
2015-11-06 10:05:08 +00:00
if((game.zhu&&game.zhu.hp<=2&&situation<0)||situation<-1) num=-3;
2015-11-07 09:20:15 +00:00
else if(situation<0||get.population('zhong')+get.population('mingzhong')==0) num=-2;
2015-11-06 10:05:08 +00:00
else if((game.zhu&&game.zhu.hp>=4&&situation>0)||situation>1) num=1;
2015-04-29 03:25:17 +00:00
else num=0;
if(strategy==2) num++;
if(strategy==3) num--;
return num;
}
2015-05-11 11:57:44 +00:00
break;
2015-04-29 03:25:17 +00:00
case 'fan':
switch(identity2){
case 'zhu':
2015-11-07 00:01:37 +00:00
if(get.population('nei')>0){
if(situation==1) return -6;
if(situation>1) return -5;
}
2016-03-21 09:05:16 +00:00
return -8;
case 'zhong':
if(!zhongmode&&game.zhu.hp>=3&&to.hp==1){
return -10;
}
return -7;
2015-11-07 09:20:15 +00:00
case 'mingzhong':return -5;
2015-04-29 03:25:17 +00:00
case 'nei':
2016-02-18 06:22:24 +00:00
if(zhongmode&&to.ai.sizhong) return -7;
2015-12-06 15:23:47 +00:00
if(get.population('fan')==1) return 0;
2015-11-07 09:20:15 +00:00
if(get.population('zhong')+get.population('mingzhong')==0) return -7;
2015-04-29 03:25:17 +00:00
if(game.zhu&&game.zhu.hp<=2) return -1;
2015-05-11 11:57:44 +00:00
return Math.min(3,situation);
2015-04-29 03:25:17 +00:00
case 'fan': return 5;
}
}
},
situation:function(absolute){
var i,j,player;
var zhuzhong=0,total=0,zhu,fan=0;
for(i=0;i<game.players.length;i++){
player=game.players[i];
2015-11-06 10:05:08 +00:00
var php=player.hp;
if(player.skills.contains('benghuai')&&php>4){
php=4;
2015-04-29 03:25:17 +00:00
}
2015-12-07 11:15:35 +00:00
else if(php>6){
php=6;
}
2015-11-06 10:05:08 +00:00
j=player.get('h').length+player.get('e').length*1.5+php*2;
2015-04-29 03:25:17 +00:00
if(player.identity=='zhu'){
zhuzhong+=j*1.2+5;
total+=j*1.2+5;
zhu=j;
}
2015-11-07 09:20:15 +00:00
else if(player.identity=='zhong'||player.identity=='mingzhong'){
2015-04-29 03:25:17 +00:00
zhuzhong+=j*0.8+3;
total+=j*0.8+3;
}
else if(player.identity=='fan'){
zhuzhong-=j+4;
total+=j+4;
fan+=j+4;
}
}
if(absolute) return zhuzhong;
var result=parseInt(10*Math.abs(zhuzhong/total));
if(zhuzhong<0) result=-result;
2015-11-07 09:20:15 +00:00
if(!game.zhong){
if(zhu<12&&fan>30) result--;
if(zhu<6&&fan>15) result--;
if(zhu<4) result--;
}
2015-04-29 03:25:17 +00:00
return result;
},
population:function(identity){
return get.population(identity);
}
}
},
2016-03-27 06:50:39 +00:00
help:{
'身份模式':'<div style="margin:10px">选项</div><ul style="margin-top:0"><li>加强主公<br>反贼人数多于2时主公会额外增加一个技能每个主公的额外技能固定非常备主公增加天命</ul>'+
'<div style="margin:10px">明忠</div><ul style="margin-top:0"><li>本模式需要8名玩家进行游戏使用的身份牌为1主公、2忠臣、4反贼和1内奸。游戏开始时每名玩家随机获得一个身份由系统随机选择一名忠臣身份的玩家亮出身份将忠臣牌正面朝上放在面前其他身份包括主公的玩家不亮出身份。<li>'+
'首先由亮出身份的忠臣玩家随机获得六张武将牌,挑选一名角色,并将选好的武将牌展示给其他玩家。之后其余每名玩家随机获得三张武将牌,各自从其中挑选一张同时亮出<li>'+
'亮出身份牌的忠臣增加1点体力上限。角色濒死和死亡的结算及胜利条件与普通身份局相同。',
}
2015-04-29 03:25:17 +00:00
}