You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

script.js 84 kB

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
6 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406
  1. var Cards; //怪物数据
  2. var Skills; //技能数据
  3. var currentLanguage; //当前语言
  4. var currentDataSource; //当前数据
  5. const teamBigBoxs = []; //储存全部teamBigBox
  6. const allMembers = []; //储存所有成员,包含辅助
  7. var interchangeSvg; //储存划线的SVG
  8. var controlBox; //储存整个controlBox
  9. var statusLine; //储存状态栏
  10. var formationBox; //储存整个formationBox
  11. var editBox; //储存整个editBox
  12. var showSearch; //整个程序都可以用的显示搜索函数
  13. const dataStructure = 3; //阵型输出数据的结构版本
  14. const className_displayNone = "display-none";
  15. //队员基本的留空
  16. var Member = function(){
  17. this.id=0;
  18. this.ability = [0,0,0];
  19. };
  20. Member.prototype.outObj = function(){
  21. const m = this;
  22. let obj = [m.id];
  23. if (m.level != undefined) obj[1] = m.level;
  24. if (m.awoken != undefined) obj[2] = m.awoken;
  25. if (m.plus != undefined && m.plus instanceof Array && m.plus.length>=3 && (m.plus[0]+m.plus[1]+m.plus[2])!=0)
  26. {
  27. if (m.plus[0] === m.plus[1] && m.plus[0] === m.plus[2])
  28. { //当3个加值一样时只生成第一个减少长度
  29. obj[3] = m.plus[0];
  30. }else
  31. {
  32. obj[3] = m.plus;
  33. }
  34. }
  35. if (m.latent != undefined && m.latent instanceof Array && m.latent.length>=1) obj[4] = m.latent;
  36. if (m.sawoken != undefined && m.sawoken>=0) obj[5] = m.sawoken;
  37. const card = Cards[m.id] || Cards[0]; //怪物固定数据
  38. const skill = Skills[card.activeSkillId];
  39. //有技能等级,并且技能等级低于最大等级时才记录技能
  40. if (m.skilllevel != undefined && m.skilllevel < skill.maxLevel) obj[6] = m.skilllevel;
  41. return obj;
  42. };
  43. Member.prototype.loadObj = function(m,dataVersion){
  44. if (m == undefined) //如果没有提供数据,直接返回默认
  45. {
  46. return;
  47. }
  48. if (dataVersion == undefined) dataVersion = 1;
  49. this.id = dataVersion>1 ? m[0] : m.id;
  50. this.level = dataVersion>1 ? m[1] : m.level;
  51. this.awoken = dataVersion>1 ? m[2] : m.awoken;
  52. if (dataVersion>1)
  53. {
  54. if (isNaN(m[3]) || m[3]==null)
  55. {
  56. this.plus = m[3];
  57. }else
  58. {
  59. const singlePlus = parseInt(m[3],10);//如果只有一个数字时,复制3份
  60. this.plus = [singlePlus,singlePlus,singlePlus];
  61. }
  62. }else
  63. {
  64. this.plus = m.plus;
  65. }
  66. if (!(this.plus instanceof Array)) this.plus = [0,0,0]; //如果加值不是数组,则改变
  67. this.latent = dataVersion>1 ? m[4] : m.latent;
  68. if (this.latent && dataVersion<=2) this.latent = this.latent.map(l=>l>=13?l+3:l); //修复以前自己编的潜觉编号为官方编号
  69. if (!(this.latent instanceof Array)) this.latent = []; //如果潜觉不是数组,则改变
  70. this.sawoken = dataVersion>1 ? m[5] : m.sawoken;
  71. this.skilllevel = m[6] || null;
  72. };
  73. Member.prototype.loadFromMember = function(m){
  74. if (m == undefined) //如果没有提供数据,直接返回默认
  75. {
  76. return;
  77. }
  78. this.id = m.id;
  79. };
  80. //只用来防坐的任何队员
  81. var MemberDelay = function(){
  82. this.id=-1;
  83. };
  84. MemberDelay.prototype = Object.create(Member.prototype);
  85. MemberDelay.prototype.constructor = MemberDelay;
  86. //辅助队员
  87. var MemberAssist = function(){
  88. this.level = 0;
  89. this.awoken = 0;
  90. this.plus = [0,0,0];
  91. Member.call(this);
  92. };
  93. MemberAssist.prototype = Object.create(Member.prototype);
  94. MemberAssist.prototype.constructor = MemberAssist;
  95. MemberAssist.prototype.loadFromMember = function(m){
  96. if (m == undefined) //如果没有提供数据,直接返回默认
  97. {
  98. return;
  99. }
  100. this.id = m.id;
  101. if (m.level != undefined) this.level = m.level;
  102. if (m.awoken != undefined) this.awoken = m.awoken;
  103. if (m.plus != undefined && m.plus instanceof Array && m.plus.length>=3 && (m.plus[0]+m.plus[1]+m.plus[2])>0) this.plus = JSON.parse(JSON.stringify(m.plus));
  104. if (m.skilllevel != undefined) this.skilllevel = m.skilllevel;
  105. };
  106. //正式队伍
  107. var MemberTeam = function(){
  108. this.latent = [];
  109. this.ability = [0,0,0];
  110. MemberAssist.call(this);
  111. //sawoken作为可选项目,默认不在内
  112. };
  113. MemberTeam.prototype = Object.create(MemberAssist.prototype);
  114. MemberTeam.prototype.constructor = MemberTeam;
  115. MemberTeam.prototype.loadFromMember = function(m){
  116. if (m == undefined) //如果没有提供数据,直接返回默认
  117. {
  118. return;
  119. }
  120. this.id = m.id;
  121. if (m.level != undefined) this.level = m.level;
  122. if (m.awoken != undefined) this.awoken = m.awoken;
  123. if (m.plus != undefined && m.plus instanceof Array && m.plus.length>=3 && (m.plus[0]+m.plus[1]+m.plus[2])>0) this.plus = JSON.parse(JSON.stringify(m.plus));
  124. if (m.latent != undefined && m.latent instanceof Array && m.latent.length>=1) this.latent = JSON.parse(JSON.stringify(m.latent));
  125. if (m.sawoken != undefined) this.sawoken = m.sawoken;
  126. if (m.ability != undefined && m.ability instanceof Array && m.plus.length>=3) this.ability = JSON.parse(JSON.stringify(m.ability));
  127. if (m.skilllevel != undefined) this.skilllevel = m.skilllevel;
  128. };
  129. var Formation = function(teamCount,memberCount){
  130. this.title = "";
  131. this.detail = "";
  132. this.teams = [];
  133. for (let ti=0;ti<teamCount;ti++)
  134. {
  135. const team = [[],[],0]; //第三个是徽章
  136. for (let mi=0;mi<memberCount;mi++)
  137. {
  138. team[0].push(new MemberTeam());
  139. team[1].push(new MemberAssist());
  140. }
  141. this.teams.push(team);
  142. }
  143. };
  144. Formation.prototype.outObj= function(){
  145. const obj = {};
  146. if (this.title != undefined && this.title.length>0) obj.t = this.title;
  147. if (this.detail != undefined && this.detail.length>0) obj.d = this.detail;
  148. obj.f = this.teams.map(t=>
  149. {
  150. const teamArr = [];
  151. teamArr[0] = t[0].map(m=>
  152. m.outObj()
  153. );
  154. teamArr[1] = t[1].map(m=>
  155. m.outObj()
  156. );
  157. if (t[2]) teamArr[2] = t[2];
  158. return teamArr;
  159. });
  160. obj.v = dataStructure;
  161. return obj;
  162. };
  163. Formation.prototype.loadObj= function(f){
  164. const dataVeision = f.v?f.v:(f.f?2:1); //是第几版格式
  165. this.title = dataVeision>1 ? f.t : f.title;
  166. this.detail = dataVeision>1 ? f.d : f.detail;
  167. const loadTeamArr = dataVeision>1 ? f.f : f.team;
  168. this.teams.forEach(function(t,ti){
  169. const tf = loadTeamArr[ti];
  170. if (tf)
  171. {
  172. t[0].forEach(function(m,mi){
  173. const fm = tf[0][mi];
  174. m.loadObj(fm,dataVeision);
  175. });
  176. t[1].forEach(function(m,mi){
  177. const fm = tf[1][mi];
  178. m.loadObj(fm,dataVeision);
  179. });
  180. if (tf[2] != undefined) t[2] = tf[2]; //徽章
  181. }
  182. });
  183. if (f.b)
  184. this.teams[2] = f.b; //原来模式的徽章
  185. };
  186. //获取最大潜觉数量
  187. function getMaxLatentCount(id)
  188. { //转生2和超转生3为8个格子
  189. if (Cards[id])
  190. {
  191. return Cards[id].is8Latent ? 8 : 6;
  192. }else
  193. {
  194. return 6;
  195. }
  196. }
  197. //切换通用的切换className显示的函数
  198. function toggleDomClassName(checkBox, className, checkedAdd = true, dom = document.body)
  199. {
  200. if (!checkBox) return;
  201. const checked = checkBox.checked;
  202. if (checked && checkedAdd || !checked && !checkedAdd)
  203. {
  204. dom.classList.add(className);
  205. }else
  206. {
  207. dom.classList.remove(className);
  208. }
  209. }
  210. //清除数据
  211. function clearData()
  212. {
  213. location.search = "";
  214. }
  215. //轮换ABC队伍
  216. function swapABCteam()
  217. {
  218. if (formation.teams.length>1)
  219. {
  220. formation.teams.push(formation.teams.splice(0,1)[0]); //将队伍1移动到最后
  221. creatNewUrl();
  222. refreshAll(formation);
  223. }
  224. }
  225. //在单人和多人之间转移数据
  226. function turnPage(toPage,e = null)
  227. {
  228. console.log(e)
  229. let pagename = null;
  230. switch(toPage)
  231. {
  232. case 1:
  233. if (formation.teams[0][0].length<6)
  234. {
  235. //把第二支队伍的队长添加到最后方
  236. formation.teams[0][0].push(formation.teams[1][0][0]);
  237. formation.teams[0][1].push(formation.teams[1][1][0]);
  238. }
  239. //删掉第2支开始的队伍
  240. formation.teams.splice(1);
  241. pagename = "solo.html";
  242. break;
  243. case 2:
  244. if (formation.teams.length<2)
  245. { //从1人到2人
  246. formation.teams[1] = [[],[]];
  247. //把右边的队长加到第二支队伍最后面
  248. formation.teams[1][0].splice(0,0,formation.teams[0][0].splice(5,1)[0]);
  249. formation.teams[1][1].splice(0,0,formation.teams[0][1].splice(5,1)[0]);
  250. }else
  251. { //从3人到2人,直接删除后面两个队伍
  252. //删掉第3支开始的队伍
  253. formation.teams.splice(2);
  254. //删掉前面两支队伍的战友
  255. formation.teams[0][0].splice(5);
  256. formation.teams[0][1].splice(5);
  257. formation.teams[1][0].splice(5);
  258. formation.teams[1][1].splice(5);
  259. }
  260. formation.badge = 0;
  261. pagename = "multi.html";
  262. break;
  263. case 3:
  264. if (formation.teams.length<2)
  265. { //从1人到3人
  266. }else
  267. { //从2人到3人
  268. formation.teams[0][0].push(formation.teams[1][0][0]);
  269. formation.teams[0][1].push(formation.teams[1][1][0]);
  270. formation.teams[1][0].push(formation.teams[0][0][0]);
  271. formation.teams[1][1].push(formation.teams[0][1][0]);
  272. }
  273. formation.badge = 0;
  274. pagename = "triple.html";
  275. break;
  276. }
  277. const newURL = creatNewUrl({url:pagename, notPushState:true});
  278. if (e && e.ctrlKey)
  279. {
  280. window.open(newURL);
  281. }else
  282. {
  283. location.href = newURL;
  284. }
  285. }
  286. window.onload = function()
  287. {
  288. controlBox = document.body.querySelector(".control-box");
  289. statusLine = controlBox.querySelector(".status"); //显示当前状态的
  290. const helpLink = controlBox.querySelector(".help-link");
  291. interchangeSVG = document.body.querySelector("#interchange-line");
  292. interchangeSVG.line = interchangeSVG.querySelector("g line");
  293. interchangeSVG.changePoint = function(p1,p2){
  294. const line = this.line;
  295. if (p1 && p1.x != undefined)
  296. line.setAttribute("x1",p1.x);
  297. if (p1 && p1.y != undefined)
  298. line.setAttribute("y1",p1.y);
  299. if (p2 && p2.x != undefined)
  300. line.setAttribute("x2",p2.x);
  301. if (p2 && p2.y != undefined)
  302. line.setAttribute("y2",p2.y);
  303. };
  304. //设定初始的显示设置
  305. toggleDomClassName(controlBox.querySelector("#show-mon-id"),'not-show-mon-id',false);
  306. toggleDomClassName(controlBox.querySelector("#btn-show-mon-skill-cd"),'show-mon-skill-cd');
  307. toggleDomClassName(controlBox.querySelector("#btn-show-awoken-count"),'not-show-awoken-count',false);
  308. formationBox = document.body.querySelector(".formation-box");
  309. editBox = document.body.querySelector(".edit-box");
  310. if (location.hostname.includes("gitee")) { helpLink.hostname = "gitee.com"; }
  311. //▼添加语言列表开始
  312. const langSelectDom = controlBox.querySelector(".languages");
  313. languageList.forEach(lang=>
  314. langSelectDom.options.add(new Option(lang.name,lang.i18n))
  315. );
  316. const parameter_i18n = getQueryString("l") || getQueryString("lang"); //获取参数指定的语言
  317. const browser_i18n = (navigator.language || navigator.userLanguage); //获取浏览器语言
  318. currentLanguage = languageList.find(lang=>{ //筛选出符合的语言
  319. if (parameter_i18n) //如果已指定就用指定的语言
  320. return parameter_i18n.includes(lang.i18n);
  321. else //否则筛选浏览器默认语言
  322. return browser_i18n.includes(lang.i18n);
  323. }) ||
  324. languageList[0]; //没有找到指定语言的情况下,自动用第一个语言(英语)
  325. document.head.querySelector("#language-css").href = "languages/"+currentLanguage.i18n+".css";
  326. const langOptionArray = Array.from(langSelectDom.options);
  327. langOptionArray.find(langOpt=>langOpt.value == currentLanguage.i18n).selected = true;
  328. //▲添加语言列表结束
  329. //▼添加数据来源列表开始
  330. const dataSelectDom = controlBox.querySelector(".datasource");
  331. dataSourceList.forEach(ds=>
  332. dataSelectDom.options.add(new Option(ds.source,ds.code))
  333. );
  334. const parameter_dsCode = getQueryString("s"); //获取参数指定的数据来源
  335. currentDataSource = parameter_dsCode?
  336. (dataSourceList.find(ds => ds.code == parameter_dsCode) || dataSourceList[0]) ://筛选出符合的数据源
  337. dataSourceList[0]; //没有指定,直接使用日服
  338. document.body.classList.add("ds-"+currentDataSource.code);
  339. const dataSourceOptionArray = Array.from(dataSelectDom.options);
  340. dataSourceOptionArray.find(dataOpt=>dataOpt.value == currentDataSource.code).selected = true;
  341. const sourceDataFolder = "monsters-info";
  342. var newCkeys; //当前的Ckey
  343. var lastCkeys; //以前Ckey们
  344. statusLine.classList.add("loading-check-version");
  345. GM_xmlhttpRequest({
  346. method: "GET",
  347. url: `${sourceDataFolder}/ckey.json`, //版本文件
  348. onload: function(response) {
  349. dealCkeyData(response.response);
  350. },
  351. onerror: function(response) {
  352. const isChrome = navigator.userAgent.includes("Chrome");
  353. if (isChrome && location.host.length==0 && response.response.length>0)
  354. {
  355. console.info("因为是Chrome本地打开,正在尝试读取JSON");
  356. dealCkeyData(response.response);
  357. }else
  358. {
  359. console.error("Ckey JSON数据获取失败",response);
  360. }
  361. }
  362. });
  363. //处理返回的数据
  364. function dealCkeyData(responseText)
  365. { //处理数据版本
  366. try
  367. {
  368. newCkeys = JSON.parse(responseText);
  369. }catch(e)
  370. {
  371. console.log("Ckey数据JSON解码出错",e);
  372. return;
  373. }
  374. const currentCkey = newCkeys.find(ckey=>ckey.code == currentDataSource.code); //获取当前语言的ckey
  375. lastCkeys = localStorage.getItem("PADDF-ckey"); //读取本地储存的原来的ckey
  376. try
  377. {
  378. lastCkeys = JSON.parse(lastCkeys);
  379. if (lastCkeys == null || !(lastCkeys instanceof Array))
  380. lastCkeys = [];
  381. }catch(e)
  382. {
  383. console.log("上次的Ckey数据JSON解码出错",e);
  384. return;
  385. }
  386. let lastCurrentCkeys = lastCkeys.find(ckey=>ckey.code == currentDataSource.code);
  387. if (!lastCurrentCkeys)
  388. { //如果未找到上个ckey,则添加个新的
  389. lastCurrentCkeys = {
  390. code: currentDataSource.code,
  391. ckey: {},
  392. updateTime: null
  393. };
  394. lastCkeys.push(lastCurrentCkeys);
  395. }
  396. statusLine.classList.remove("loading-check-version");
  397. statusLine.classList.add("loading-mon-info");
  398. if (currentCkey.ckey.card == lastCurrentCkeys.ckey.card)
  399. {
  400. console.log("Cards ckey相等,直接读取已有的数据",currentCkey.ckey.card);
  401. localforage.getItem(`PADDF-${currentDataSource.code}-cards`).then(function(value) {
  402. // This code runs once the value has been loaded
  403. // from the offline store.
  404. dealCardsData(value);
  405. }).catch(function(err) {
  406. // This code runs if there were any errors
  407. alert("Local Database error. Please refresh.");
  408. localStorage.removeItem("PADDF-ckey");
  409. console.log(err);
  410. });
  411. }else
  412. {
  413. GM_xmlhttpRequest({
  414. method: "GET",
  415. url:`${sourceDataFolder}/mon_${currentDataSource.code}.json`, //Cards数据文件
  416. onload: function(response) {
  417. console.log("Cards ckey变化,储存新数据",currentCkey.ckey.card);
  418. localforage.setItem(`PADDF-${currentDataSource.code}-cards`, JSON.parse(response.response)).then(function(){
  419. lastCurrentCkeys.ckey.card = currentCkey.ckey.card;
  420. lastCurrentCkeys.updateTime = currentCkey.updateTime;
  421. localStorage.setItem("PADDF-ckey", JSON.stringify(lastCkeys));
  422. dealCardsData(response.response);
  423. }).catch(function(err) {
  424. // This code runs if there were any errors
  425. console.log(err);
  426. });
  427. },
  428. onerror: function(response) {
  429. const isChrome = navigator.userAgent.includes("Chrome");
  430. if (isChrome && location.host.length==0 && response.response.length>0)
  431. {
  432. console.info("因为是Chrome本地打开,正在尝试读取JSON");
  433. dealCardsData(response.response);
  434. }else
  435. {
  436. console.error("Cards JSON数据获取失败",response);
  437. }
  438. }
  439. });
  440. }
  441. }
  442. function dealCardsData(response)
  443. {
  444. try
  445. {
  446. if (typeof(response) == "string")
  447. Cards = JSON.parse(response);
  448. else
  449. Cards = response;
  450. }catch(e)
  451. {
  452. console.log("Cards数据JSON解码出错",e);
  453. return;
  454. }
  455. statusLine.classList.remove("loading-mon-info");
  456. statusLine.classList.add("loading-skill-info");
  457. const currentCkey = newCkeys.find(ckey=>ckey.code == currentDataSource.code); //获取当前语言的ckey
  458. const lastCurrentCkeys = lastCkeys.find(ckey=>ckey.code == currentDataSource.code);
  459. if (currentCkey.ckey.skill == lastCurrentCkeys.ckey.skill)
  460. {
  461. console.log("Skills ckey相等,直接读取已有的数据",currentCkey.ckey.skill);
  462. localforage.getItem(`PADDF-${currentDataSource.code}-skills`).then(function(value) {
  463. // This code runs once the value has been loaded
  464. // from the offline store.
  465. dealSkillData(value);
  466. }).catch(function(err) {
  467. // This code runs if there were any errors
  468. alert("Local Database error. Please refresh.");
  469. localStorage.removeItem("PADDF-ckey");
  470. console.log(err);
  471. });
  472. }else
  473. {
  474. GM_xmlhttpRequest({
  475. method: "GET",
  476. url:`${sourceDataFolder}/skill_${currentDataSource.code}.json`, //Skills数据文件
  477. onload: function(response) {
  478. console.log("Skills ckey变化,储存新数据",currentCkey.ckey.skill);
  479. localforage.setItem(`PADDF-${currentDataSource.code}-skills`, JSON.parse(response.response)).then(function(){
  480. lastCurrentCkeys.ckey.skill = currentCkey.ckey.skill;
  481. lastCurrentCkeys.updateTime = currentCkey.updateTime;
  482. localStorage.setItem("PADDF-ckey", JSON.stringify(lastCkeys));
  483. dealSkillData(response.response);
  484. }).catch(function(err) {
  485. // This code runs if there were any errors
  486. console.log(err);
  487. });
  488. },
  489. onerror: function(response) {
  490. let isChrome = navigator.userAgent.includes("Chrome");
  491. if (isChrome && location.host.length==0 && response.response.length>0)
  492. {
  493. console.info("因为是Chrome本地打开,正在尝试读取JSON");
  494. dealSkillData(response.response);
  495. }else
  496. {
  497. console.error("Skills JSON数据获取失败",response);
  498. }
  499. }
  500. });
  501. }
  502. }
  503. function dealSkillData(response)
  504. {
  505. try
  506. {
  507. if (typeof(response) == "string")
  508. Skills = JSON.parse(response);
  509. else
  510. Skills = response;
  511. }catch(e)
  512. {
  513. console.log("Skills数据JSON解码出错",e);
  514. return;
  515. }
  516. const currentCkey = newCkeys.find(ckey=>ckey.code == currentDataSource.code);
  517. const updateTime = controlBox.querySelector(".datasource-updatetime");
  518. updateTime.innerHTML = new Date(currentCkey.updateTime).toLocaleString(undefined,{hour12: false});
  519. initialize();//初始化
  520. statusLine.classList.remove("loading-skill-info");
  521. //如果通过的话就载入URL中的怪物数据
  522. reloadFormationData();
  523. }
  524. };
  525. //重新读取URL中的Data数据并刷新页面
  526. function reloadFormationData()
  527. {
  528. let formationData;
  529. try
  530. {
  531. const parameterDataString = getQueryString("d") || getQueryString("data");
  532. if (parameterDataString)
  533. {
  534. formationData = JSON.parse(parameterDataString);
  535. }
  536. }catch(e)
  537. {
  538. console.error("URL中队伍数据JSON解码出错",e);
  539. return;
  540. }
  541. if (formationData)
  542. {
  543. formation.loadObj(formationData);
  544. refreshAll(formation);
  545. }
  546. }
  547. window.onpopstate = reloadFormationData; //前进后退时修改页面
  548. //创建新的分享地址
  549. function creatNewUrl(arg){
  550. if (arg == undefined) arg = {};
  551. if (!!(window.history && history.pushState))
  552. { // 支持History API
  553. const language_i18n = arg.language || getQueryString("l") || getQueryString("lang"); //获取参数指定的语言
  554. const datasource = arg.datasource || getQueryString("s");
  555. const outObj = formation.outObj();
  556. const newSearch = new URLSearchParams();
  557. if (language_i18n) newSearch.set("l",language_i18n);
  558. if (datasource && datasource!="ja") newSearch.set("s",datasource);
  559. if (outObj) newSearch.set("d", JSON.stringify(outObj));
  560. const newUrl = (arg.url || "") + '?' + newSearch.toString();
  561. if (!arg.notPushState)
  562. {
  563. history.pushState(null, null, newUrl);
  564. }
  565. else
  566. {
  567. return newUrl;
  568. }
  569. }
  570. }
  571. //截图
  572. function capture()
  573. {
  574. statusLine.classList.add("prepare-cauture");
  575. const titleBox = formationBox.querySelector(".title-box");
  576. const detailBox = formationBox.querySelector(".detail-box");
  577. const txtTitle = titleBox.querySelector(".title");
  578. const txtDetail = detailBox.querySelector(".detail");
  579. //去掉可能的空白文字的编辑状态
  580. titleBox.classList.remove("edit");
  581. detailBox.classList.remove("edit");
  582. const downLink = controlBox.querySelector(".down-capture");
  583. html2canvas(formationBox).then(canvas => {
  584. canvas.toBlob(function(blob) {
  585. window.URL.revokeObjectURL(downLink.href);
  586. downLink.href = URL.createObjectURL(blob);
  587. downLink.download = `${teamsCount}P formation cauture.png`;
  588. downLink.click();
  589. statusLine.classList.remove("prepare-cauture");
  590. //如果是空白文字,加回编辑状态
  591. if (txtTitle.value.length==0)
  592. titleBox.classList.add("edit");
  593. if (txtDetail.value.length==0)
  594. detailBox.classList.add("edit");
  595. });
  596. //document.body.appendChild(canvas);
  597. });
  598. }
  599. //初始化
  600. function initialize()
  601. {
  602. const monstersList = editBox.querySelector("#monsters-name-list");
  603. let fragment = document.createDocumentFragment();
  604. Cards.forEach(function(m){ //添加下拉框候选
  605. const opt = fragment.appendChild(document.createElement("option"));
  606. opt.value = m.id;
  607. opt.label = m.id + " - " + returnMonsterNameArr(m, currentLanguage.searchlist, currentDataSource.code).join(" | ");
  608. const linkRes = new RegExp("link:(\\d+)","ig").exec(m.specialAttribute);
  609. if (linkRes)
  610. {//每个有链接的符卡,把它们被链接的符卡的进化根修改到链接前的
  611. const _m = Cards[parseInt(linkRes[1],10)];
  612. _m.evoRootId = m.evoRootId;
  613. m.henshinFrom = true;
  614. _m.henshinTo = true;
  615. }
  616. });
  617. monstersList.appendChild(fragment);
  618. //标题和介绍文本框
  619. const titleBox = formationBox.querySelector(".title-box");
  620. const detailBox = formationBox.querySelector(".detail-box");
  621. const txtTitle = titleBox.querySelector(".title");
  622. const txtDetail = detailBox.querySelector(".detail");
  623. const txtTitleDisplay = titleBox.querySelector(".title-display");
  624. const txtDetailDisplay = detailBox.querySelector(".detail-display");
  625. txtTitle.onchange = function(){
  626. formation.title = this.value;
  627. //txtTitleDisplay.innerHTML = "";
  628. //txtTitleDisplay.appendChild(document.createTextNode(this.value));
  629. txtTitleDisplay.innerHTML = descriptionToHTML(this.value);
  630. creatNewUrl();
  631. };
  632. txtTitle.onblur = function(){
  633. if (this.value.length>0)
  634. titleBox.classList.remove("edit");
  635. };
  636. txtDetail.onchange = function(){
  637. formation.detail = this.value;
  638. /*txtDetailDisplay.innerHTML = "";
  639. const txtDetailLines = this.value.split("\n");
  640. txtDetailLines.forEach((line,idx)=>{
  641. if (idx>0) txtDetailDisplay.appendChild(document.createElement("br"));
  642. txtDetailDisplay.appendChild(document.createTextNode(line));
  643. });*/
  644. txtDetailDisplay.innerHTML = descriptionToHTML(this.value);
  645. creatNewUrl();
  646. };
  647. txtDetail.onblur = function(){
  648. if (this.value.length>0)
  649. detailBox.classList.remove("edit");
  650. this.style.height = txtDetailDisplay.scrollHeight+"px";
  651. };
  652. txtTitleDisplay.onclick = function(){
  653. titleBox.classList.add("edit");
  654. txtTitle.focus();
  655. };
  656. txtDetailDisplay.onclick = function(){
  657. detailBox.classList.add("edit");
  658. txtDetail.focus();
  659. };
  660. //这个写法的目的其实是为了确保添加顺序与1、2、3一致,即便打乱了顺序,也能正确添加
  661. for (let ti=0,ti_len=formationBox.querySelectorAll(".team-bigbox").length;ti<ti_len;ti++)
  662. {
  663. teamBigBoxs.push(formationBox.querySelector(`.teams .team-${ti+1}`));
  664. }
  665. //将所有怪物头像添加到全局数组
  666. teamBigBoxs.forEach(teamBigBox=>{
  667. const teamBox = teamBigBox.querySelector(".team-box");
  668. const menbers = Array.from(teamBox.querySelectorAll(".team-members .monster"));
  669. const assist = Array.from(teamBox.querySelectorAll(".team-assist .monster"));
  670. menbers.forEach(m=>{
  671. allMembers.push(m);
  672. });
  673. assist.forEach(m=>{
  674. allMembers.push(m);
  675. });
  676. });
  677. //所有怪物头像,添加拖动交换的代码
  678. allMembers.forEach(m=>{
  679. //点击
  680. m.onclick = clickMonHead;
  681. //拖动
  682. m.draggable = true;
  683. m.ondragstart = dragStartMonHead;
  684. m.ondragover = dropOverMonHead;
  685. m.ondrop = dropMonHead;
  686. //触摸
  687. m.ontouchstart = touchstartMonHead;
  688. m.ontouchmove = touchmoveMonHead;
  689. m.ontouchend = touchendMonHead;
  690. m.ontouchcancel = touchcancelMonHead;
  691. });
  692. //添加徽章
  693. const className_ChoseBadges = "show-all-badges";
  694. teamBigBoxs.forEach((teamBigBox,teamIdx)=>{
  695. //徽章
  696. const teamBadge = teamBigBox.querySelector(".team-badge");
  697. if (!teamBadge) return;
  698. const badges = Array.from(teamBadge.querySelectorAll(".badge-radio"));
  699. function setBadge(){
  700. if (teamBadge.classList.contains(className_ChoseBadges))
  701. {
  702. const team = formation.teams[teamIdx];
  703. teamBadge.classList.remove(className_ChoseBadges);
  704. team[2] = parseInt(this.value,10);
  705. const teamTotalInfoDom = teamBigBox.querySelector(".team-total-info"); //队伍能力值合计
  706. refreshTeamTotalHP(teamTotalInfoDom, team);
  707. creatNewUrl();
  708. }else
  709. {
  710. teamBadge.classList.add(className_ChoseBadges);
  711. }
  712. }
  713. badges.forEach(badge => badge.onclick = setBadge);
  714. });
  715. //编辑框
  716. editBox.mid = null; //储存怪物id
  717. editBox.latent = []; //储存潜在觉醒
  718. editBox.isAssist = false; //储存是否为辅助宠物
  719. editBox.monsterHead = null;
  720. editBox.latentBox = null;
  721. editBox.memberIdx = []; //储存队伍数组下标
  722. editBox.show = function(){
  723. this.classList.remove(className_displayNone);
  724. formationBox.classList.add("blur-bg");
  725. controlBox.classList.add("blur-bg");
  726. };
  727. editBox.hide = function(){
  728. this.classList.add(className_displayNone);
  729. formationBox.classList.remove("blur-bg");
  730. controlBox.classList.remove("blur-bg");
  731. };
  732. const smonsterinfoBox = editBox.querySelector(".monsterinfo-box");
  733. const mSeriesId = smonsterinfoBox.querySelector(".monster-seriesId");
  734. mSeriesId.onclick = function(){ //搜索系列
  735. const seriesId = parseInt(this.getAttribute('data-seriesId'),10);
  736. if (seriesId>0)
  737. {
  738. showSearch(Cards.filter(card=>{return card.seriesId == seriesId;}));
  739. }
  740. };
  741. const mCollabId = smonsterinfoBox.querySelector(".monster-collabId");
  742. mCollabId.onclick = function(){ //搜索合作
  743. const collabId = parseInt(this.getAttribute('data-collabId'),10);
  744. if (collabId>0);
  745. {
  746. searchColla(collabId);
  747. }
  748. };
  749. const mAltName = smonsterinfoBox.querySelector(".monster-altName");
  750. mAltName.onclick = function(){ //搜索合作
  751. const altName = this.getAttribute('data-altName');
  752. const splitAltName = altName.split("|");
  753. if (altName.length>0);
  754. {
  755. showSearch(Cards.filter(card=>{
  756. return splitAltName.some(alt=>{
  757. return alt.length > 0 && (card.altName.includes(alt) || card.name.includes(alt));
  758. });
  759. }));
  760. }
  761. };
  762. //创建一个新的怪物头像
  763. editBox.createCardHead = function(id)
  764. {
  765. function clickHeadToNewMon()
  766. {
  767. monstersID.value = this.getAttribute("data-cardid");
  768. monstersID.onchange();
  769. return false; //取消链接的默认操作
  770. }
  771. const cli = document.createElement("li");
  772. const cdom = cli.head = createCardA(id);
  773. cli.appendChild(cdom);
  774. changeid({id:id},cdom);
  775. cli.card = Cards[id];
  776. cdom.onclick = clickHeadToNewMon;
  777. return cli;
  778. };
  779. const searchBox = editBox.querySelector(".search-box");
  780. const settingBox = editBox.querySelector(".setting-box");
  781. const searchOpen = settingBox.querySelector(".row-mon-id .open-search");
  782. searchOpen.onclick = function(){
  783. s_includeSuperAwoken.onclick();
  784. s_canAssist.onclick();
  785. searchBox.classList.toggle(className_displayNone);
  786. };
  787. const s_attr1s = Array.from(searchBox.querySelectorAll(".attrs .attr-list-1 .attr-radio"));
  788. const s_attr2s = Array.from(searchBox.querySelectorAll(".attrs .attr-list-2 .attr-radio"));
  789. const s_fixMainColor = searchBox.querySelector("#fix-main-color");
  790. const s_types = Array.from(searchBox.querySelectorAll(".types-div .type-check"));
  791. const s_awokensItems = Array.from(searchBox.querySelectorAll(".awoken-div .awoken-count"));
  792. const s_awokensIcons = s_awokensItems.map(it=>it.querySelector(".awoken-icon"));
  793. const s_awokensCounts = s_awokensItems.map(it=>it.querySelector(".count"));
  794. const searchMonList = searchBox.querySelector(".search-mon-list"); //搜索结果列表
  795. searchMonList.originalHeads = null; //用于存放原始搜索结果
  796. const s_awokensEquivalent = searchBox.querySelector("#consider-equivalent-awoken"); //搜索等效觉醒
  797. const s_canAssist = searchBox.querySelector("#can-assist"); //只搜索辅助
  798. s_canAssist.onclick = function(){
  799. toggleDomClassName(this, "only-display-can-assist", true, searchMonList);
  800. };
  801. const s_sawokenDiv = searchBox.querySelector(".sawoken-div");
  802. const s_sawokens = Array.from(s_sawokenDiv.querySelectorAll(".sawoken-check"));
  803. const s_includeSuperAwoken = searchBox.querySelector("#include-super-awoken"); //搜索超觉醒
  804. s_includeSuperAwoken.onclick = function(){
  805. toggleDomClassName(this, className_displayNone, true, s_sawokenDiv);
  806. };
  807. function search_awokenAdd1()
  808. {
  809. const countDom = this.parentNode.querySelector(".count");
  810. let count = parseInt(countDom.value,10);
  811. if (count<9)
  812. {
  813. count++;
  814. countDom.value = count;
  815. this.parentNode.classList.remove("zero");
  816. }
  817. }
  818. s_awokensIcons.forEach((b,idx)=>{ //每种觉醒增加1
  819. b.onclick = search_awokenAdd1;
  820. });
  821. function search_awokenSub1()
  822. {
  823. let count = parseInt(this.value,10);
  824. if (count>0)
  825. {
  826. count--;
  827. this.value = count;
  828. if (count === 0)
  829. {
  830. this.parentNode.parentNode.classList.add("zero");
  831. }
  832. }
  833. }
  834. s_awokensCounts.forEach((b,idx)=>{ //每种觉醒减少1
  835. b.onclick = search_awokenSub1;
  836. });
  837. const awokenClear = searchBox.querySelector(".awoken-div .awoken-clear");
  838. const sawokenClear = searchBox.querySelector(".sawoken-div .sawoken-clear");
  839. awokenClear.onclick = function(){ //清空觉醒选项
  840. s_awokensCounts.forEach(t=>{
  841. t.value = 0;
  842. });
  843. s_awokensItems.forEach(t=>{
  844. t.classList.add("zero");
  845. });
  846. };
  847. sawokenClear.onclick = function(){ //清空超觉醒选项
  848. s_sawokens.forEach(t=>{
  849. t.checked = false;
  850. });
  851. };
  852. const s_controlDiv = searchBox.querySelector(".control-div");
  853. const searchStart = s_controlDiv.querySelector(".search-start");
  854. const searchClose = s_controlDiv.querySelector(".search-close");
  855. const searchClear = s_controlDiv.querySelector(".search-clear");
  856. function returnCheckedInput(ipt)
  857. {
  858. return ipt.checked;
  859. }
  860. function returnInputValue(ipt)
  861. {
  862. return ipt.value;
  863. }
  864. function Str2Int(str)
  865. {
  866. return parseInt(str, 10);
  867. }
  868. //将搜索结果显示出来(也可用于其他的搜索)
  869. showSearch = function(searchArr){
  870. editBox.show();
  871. searchBox.classList.remove(className_displayNone);
  872. const createCardHead = editBox.createCardHead;
  873. searchMonList.classList.add(className_displayNone);
  874. searchMonList.innerHTML = ""; //清空旧的
  875. if (searchArr.length>0)
  876. {
  877. let fragment = document.createDocumentFragment(); //创建节点用的临时空间
  878. //获取原始排序的头像列表
  879. searchMonList.originalHeads = searchArr.map(card=>createCardHead(card.id));
  880. //对头像列表进行排序
  881. const headsArray = sortHeadsArray(searchMonList.originalHeads);
  882. headsArray.forEach(head=>fragment.appendChild(head));
  883. searchMonList.appendChild(fragment);
  884. }
  885. searchMonList.classList.remove(className_displayNone);
  886. };
  887. const startSearch = function(cards){
  888. const attr1Filter = s_attr1s.filter(returnCheckedInput).map(returnInputValue);
  889. const attr2Filter = s_attr2s.filter(returnCheckedInput).map(returnInputValue);
  890. let attr1,attr2;
  891. if (attr1Filter.length>0)
  892. {
  893. if (!isNaN(attr1Filter[0]))
  894. {
  895. attr1 = parseInt(attr1Filter[0],10);
  896. }else
  897. {
  898. attr1 = null;
  899. }
  900. }
  901. if (attr2Filter.length>0)
  902. {
  903. if (!isNaN(attr2Filter[0]))
  904. {
  905. attr2 = parseInt(attr2Filter[0],10);
  906. }else
  907. {
  908. attr2 = null;
  909. }
  910. }
  911. const typesFilter = s_types.filter(returnCheckedInput).map(returnInputValue).map(Str2Int);
  912. const sawokensFilter = s_sawokens.filter(returnCheckedInput).map(returnInputValue).map(Str2Int);
  913. const awokensFilter = s_awokensCounts.filter(btn=>parseInt(btn.value,10)>0).map(btn=>{
  914. const awokenIndex = parseInt(btn.parentNode.parentNode.querySelector(".awoken-icon").getAttribute("data-awoken-icon"),10);
  915. return {id:awokenIndex,num:parseInt(btn.value,10)};
  916. });
  917. const searchResult = searchCards(cards,
  918. attr1,attr2,
  919. s_fixMainColor.checked,
  920. typesFilter,
  921. awokensFilter,
  922. sawokensFilter,
  923. s_awokensEquivalent.checked,
  924. s_includeSuperAwoken.checked
  925. );
  926. console.log("搜索结果",searchResult);
  927. showSearch(searchResult);
  928. };
  929. searchBox.startSearch = startSearch;
  930. searchStart.onclick = function(){
  931. startSearch(Cards);
  932. };
  933. searchClose.onclick = function(){
  934. searchBox.classList.add(className_displayNone);
  935. };
  936. searchClear.onclick = function(){ //清空搜索选项
  937. s_attr1s[0].checked = true;
  938. s_attr2s[0].checked = true;
  939. s_types.forEach(t=>{
  940. t.checked = false;
  941. });
  942. s_awokensCounts.forEach(t=>{
  943. t.value = 0;
  944. });
  945. s_awokensItems.forEach(t=>{
  946. t.classList.add("zero");
  947. });
  948. // 这些觉醒的选项干脆都不清除
  949. //s_awokensEquivalent.checked = false;
  950. //if (s_includeSuperAwoken.checked) s_includeSuperAwoken.click();
  951. s_sawokens.forEach(t=>{
  952. t.checked = false;
  953. });
  954. searchMonList.originalHeads = null;
  955. searchMonList.innerHTML = "";
  956. };
  957. const s_sortList = s_controlDiv.querySelector(".sort-list");
  958. const s_sortReverse = s_controlDiv.querySelector("#sort-reverse");
  959. //对heads重新排序
  960. function sortHeadsArray(heads)
  961. {
  962. const sortIndex = parseInt(s_sortList.value,10);
  963. const reverse = s_sortReverse.checked;
  964. let headsArray = heads.concat();
  965. headsArray.sort((head_a,head_b)=>{
  966. const card_a = head_a.card,card_b = head_b.card;
  967. let sortNumber = sort_function_list[sortIndex].function(card_a,card_b);
  968. //if (reverse) sortNumber *= -1; //会导致默认情况无法逆序
  969. return sortNumber;
  970. });
  971. if (reverse) headsArray.reverse();
  972. return headsArray;
  973. }
  974. //对搜索到的Cards重新排序
  975. function reSortCards()
  976. {
  977. searchMonList.classList.add(className_displayNone);
  978. let fragment = document.createDocumentFragment(); //创建节点用的临时空间
  979. const headsArray = sortHeadsArray(searchMonList.originalHeads);
  980. headsArray.forEach(head=>fragment.appendChild(head));
  981. searchMonList.appendChild(fragment);
  982. searchMonList.classList.remove(className_displayNone);
  983. }
  984. s_sortList.onchange = reSortCards;
  985. s_sortReverse.onchange = reSortCards;
  986. sort_function_list.forEach((sfunc,idx)=>{
  987. const newOpt = new Option(sfunc.name,idx);
  988. newOpt.setAttribute("data-tag",sfunc.tag);
  989. s_sortList.options.add(newOpt);
  990. });
  991. //id搜索
  992. const monstersID = settingBox.querySelector(".row-mon-id .m-id");
  993. monstersID.onchange = function(){
  994. if (/^\d+$/.test(this.value))
  995. {
  996. const newId = parseInt(this.value, 10);
  997. if (editBox.mid != newId) //避免多次运行oninput、onchange
  998. {
  999. editBox.mid = newId;
  1000. editBoxChangeMonId(editBox.mid);
  1001. }
  1002. }
  1003. };
  1004. monstersID.oninput = monstersID.onchange;
  1005. //觉醒
  1006. const monEditAwokensRow = settingBox.querySelector(".row-mon-awoken");
  1007. const awokenCountLabel = monEditAwokensRow.querySelector(".awoken-count");
  1008. const monEditAwokens = Array.from(monEditAwokensRow.querySelectorAll(".awoken-ul input[name='awoken-number']"));
  1009. function checkAwoken(){
  1010. const card = Cards[editBox.mid];
  1011. const value = parseInt(this.value,10);
  1012. awokenCountLabel.innerHTML = value;
  1013. if (value>0 && value==(card.awakenings.length))
  1014. awokenCountLabel.classList.add("full-awoken");
  1015. else
  1016. awokenCountLabel.classList.remove("full-awoken");
  1017. reCalculateAbility();
  1018. }
  1019. monEditAwokens.forEach(akDom=>akDom.onclick = checkAwoken);
  1020. const monEditAwokensLabel = Array.from(monEditAwokensRow.querySelectorAll(".awoken-ul .awoken-icon"));
  1021. function playVoiceAwoken(){ //点击label才播放语音
  1022. const card = Cards[editBox.mid];
  1023. if (parseInt(this.getAttribute("data-awoken-icon"),10) === 63)
  1024. {
  1025. let decoder = new Adpcm(adpcm_wasm, pcmImportObj);
  1026. decoder.resetDecodeState(new Adpcm.State(0, 0));
  1027. decodeAudio(`sound/voice/${currentDataSource.code}/padv${PrefixInteger(card.voiceId,3)}.wav`, decoder.decode.bind(decoder));
  1028. }
  1029. }
  1030. monEditAwokensLabel.forEach(akDom=>akDom.onclick = playVoiceAwoken);
  1031. //超觉醒
  1032. const monEditSAwokensRow = settingBox.querySelector(".row-mon-super-awoken");
  1033. monEditSAwokensRow.swaokenIndex = -1;
  1034. const monEditSAwokens = Array.from(monEditSAwokensRow.querySelectorAll(".awoken-ul input[name='sawoken-choice']"));
  1035. function notCheckMyself(){
  1036. const value = parseInt(this.value,10);
  1037. if (value>=0 && monEditSAwokensRow.swaokenIndex === value)
  1038. {
  1039. monEditSAwokens[0].click();
  1040. }else
  1041. {
  1042. monEditSAwokensRow.swaokenIndex = value;
  1043. }
  1044. }
  1045. monEditSAwokens.forEach(akDom=>{
  1046. akDom.onclick = notCheckMyself;
  1047. });
  1048. //3个快速设置this.ipt为自己的value
  1049. function setIptToMyValue()
  1050. {
  1051. if (this.ipt.value != this.value)
  1052. {
  1053. this.ipt.value = this.value;
  1054. this.ipt.onchange();
  1055. }
  1056. }
  1057. //等级
  1058. const monEditLv = settingBox.querySelector(".m-level");
  1059. monEditLv.onchange = function(){
  1060. reCalculateExp();
  1061. reCalculateAbility();
  1062. };
  1063. const monEditLvMin = settingBox.querySelector(".m-level-btn-min");
  1064. const monLvExp = settingBox.querySelector(".m-level-exp");
  1065. monEditLvMin.ipt = monEditLv;
  1066. monEditLvMin.onclick = setIptToMyValue;
  1067. const monEditLvMax = settingBox.querySelector(".m-level-btn-max");
  1068. monEditLvMax.ipt = monEditLv;
  1069. monEditLvMax.onclick = setIptToMyValue;
  1070. const monEditLv110 = settingBox.querySelector(".m-level-btn-110");
  1071. monEditLv110.ipt = monEditLv;
  1072. monEditLv110.onclick = setIptToMyValue;
  1073. //编辑界面重新计算怪物的经验值
  1074. function reCalculateExp(){
  1075. const monid = parseInt(monstersID.value || 0, 10);
  1076. const level = parseInt(monEditLv.value || 0, 10);
  1077. const tempMon = {
  1078. id:monid,
  1079. level:level
  1080. };
  1081. const needExp = calculateExp(tempMon);
  1082. monLvExp.innerHTML = needExp ? parseBigNumber(needExp[0]) + (level>99?` + ${parseBigNumber(needExp[1])}` : "") : "";
  1083. }
  1084. editBox.reCalculateExp = reCalculateExp;
  1085. //三维
  1086. const rowMonAbility = settingBox.querySelector(".row-mon-ability");
  1087. const monEditHpValue = rowMonAbility.querySelector(".m-hp-li .ability-value");
  1088. const monEditAtkValue = rowMonAbility.querySelector(".m-atk-li .ability-value");
  1089. const monEditRcvValue = rowMonAbility.querySelector(".m-rcv-li .ability-value");
  1090. //加蛋
  1091. const rowMonPlus = settingBox.querySelector(".row-mon-plus");
  1092. const monEditAddHpLi = rowMonPlus.querySelector(".m-hp-li");
  1093. const monEditAddAtkLi = rowMonPlus.querySelector(".m-atk-li");
  1094. const monEditAddRcvLi = rowMonPlus.querySelector(".m-rcv-li");
  1095. const monEditAddHp = monEditAddHpLi.querySelector(".m-plus-hp");
  1096. monEditAddHp.onchange = reCalculateAbility;
  1097. const monEditAddAtk = monEditAddAtkLi.querySelector(".m-plus-atk");
  1098. monEditAddAtk.onchange = reCalculateAbility;
  1099. const monEditAddRcv = monEditAddRcvLi.querySelector(".m-plus-rcv");
  1100. monEditAddRcv.onchange = reCalculateAbility;
  1101. //3个快速设置按钮
  1102. const monEditAddHpBtn = monEditAddHpLi.querySelector(".m-plus-btn");
  1103. monEditAddHpBtn.ipt = monEditAddHp;
  1104. monEditAddHpBtn.onclick = setIptToMyValue;
  1105. const monEditAddAtkBtn = monEditAddAtkLi.querySelector(".m-plus-btn");
  1106. monEditAddAtkBtn.ipt = monEditAddAtk;
  1107. monEditAddAtkBtn.onclick = setIptToMyValue;
  1108. const monEditAddRcvBtn = monEditAddRcvLi.querySelector(".m-plus-btn");
  1109. monEditAddRcvBtn.ipt = monEditAddRcv;
  1110. monEditAddRcvBtn.onclick = setIptToMyValue;
  1111. //297按钮
  1112. const monEditAdd297 = rowMonPlus.querySelector(".m-plus-btn-297");
  1113. monEditAdd297.onclick = function(){
  1114. monEditAddHp.value = 99;
  1115. monEditAddAtk.value = 99;
  1116. monEditAddRcv.value = 99;
  1117. reCalculateAbility();
  1118. };
  1119. //潜觉
  1120. const monEditLatentUl = settingBox.querySelector(".m-latent-ul");
  1121. const monEditLatents = Array.from(monEditLatentUl.querySelectorAll("li"));
  1122. const monEditLatentAllowableUl = settingBox.querySelector(".m-latent-allowable-ul");
  1123. const monEditLatentsAllowable = Array.from(monEditLatentAllowableUl.querySelectorAll("li"));
  1124. editBox.refreshLatent = function(latent,monid) //刷新潜觉
  1125. {
  1126. const maxLatentCount = getMaxLatentCount(monid); //最大潜觉数量
  1127. const usedHoleN = usedHole(latent);
  1128. const showLatentCount = maxLatentCount-usedHoleN+latent.length; //显示的潜觉个数(包含空格)
  1129. for (let ai = 0; ai<monEditLatents.length; ai++)
  1130. {
  1131. if (latent[ai] != undefined) //有的潜觉
  1132. {
  1133. monEditLatents[ai].setAttribute("data-latent-icon", latent[ai]);
  1134. monEditLatents[ai].classList.remove(className_displayNone);
  1135. }
  1136. else if(ai < showLatentCount) //空格
  1137. {
  1138. monEditLatents[ai].removeAttribute("data-latent-icon");
  1139. monEditLatents[ai].classList.remove(className_displayNone);
  1140. }
  1141. else //不显示的部分
  1142. {
  1143. monEditLatents[ai].classList.add(className_displayNone);
  1144. }
  1145. }
  1146. };
  1147. const rowSkill = settingBox.querySelector(".row-mon-skill");
  1148. const skillBox = rowSkill.querySelector(".skill-box");
  1149. const skillTitle = skillBox.querySelector(".skill-name");
  1150. const skillCD = skillBox.querySelector(".skill-cd");
  1151. const skillLevel = skillBox.querySelector(".m-skill-level");
  1152. const skillLevel_1 = skillBox.querySelector(".m-skill-lv-1");
  1153. const skillLevel_Max = skillBox.querySelector(".m-skill-lv-max");
  1154. skillTitle.onclick = function(){
  1155. const skillId = parseInt(this.getAttribute("data-skillid"),10); //获得当前技能ID
  1156. const s_cards = Cards.filter(card=>card.activeSkillId === skillId); //搜索同技能怪物
  1157. if (s_cards.length > 1)
  1158. {
  1159. showSearch(s_cards); //显示
  1160. }
  1161. };
  1162. skillLevel.onchange = function(){
  1163. const card = Cards[editBox.mid] || Cards[0]; //怪物固定数据
  1164. const skill = Skills[card.activeSkillId];
  1165. skillCD.innerHTML = skill.initialCooldown - this.value + 1;
  1166. };
  1167. skillLevel_1.ipt = skillLevel;
  1168. skillLevel_1.onclick = setIptToMyValue;
  1169. skillLevel_Max.ipt = skillLevel;
  1170. skillLevel_Max.onclick = setIptToMyValue;
  1171. //已有觉醒的去除
  1172. function deleteLatent(){
  1173. const aIdx = parseInt(this.value, 10);
  1174. editBox.latent.splice(aIdx,1);
  1175. editBox.reCalculateAbility(); //重计算三维
  1176. editBox.refreshLatent(editBox.latent,editBox.mid); //刷新潜觉
  1177. }
  1178. monEditLatents.forEach((la)=>{la.onclick = deleteLatent;});
  1179. //可选觉醒的添加
  1180. function addLatent(){
  1181. if (this.classList.contains("unselected-latent")) return; //不能选的觉醒直接退出
  1182. const lIdx = parseInt(this.getAttribute("data-latent-icon"),10); //潜觉的序号
  1183. const usedHoleN = usedHole(editBox.latent); //使用了的格子
  1184. const maxLatentCount = getMaxLatentCount(editBox.mid); //最大潜觉数量
  1185. if (lIdx >= 12 && usedHoleN<=(maxLatentCount-2) || //如果能添加2格的觉醒
  1186. lIdx < 12 && usedHoleN<=(maxLatentCount-1)) //如果能添加1格的觉醒
  1187. {editBox.latent.push(lIdx);}
  1188. else {return;}
  1189. editBox.reCalculateAbility();
  1190. editBox.refreshLatent(editBox.latent,editBox.mid);
  1191. }
  1192. monEditLatentsAllowable.forEach((la)=>{la.onclick = addLatent;});
  1193. //编辑界面重新计算怪物的能力
  1194. function reCalculateAbility(){
  1195. const monid = parseInt(monstersID.value || 0, 10);
  1196. const level = parseInt(monEditLv.value || 0, 10);
  1197. const mAwokenNumIpt = monEditAwokensRow.querySelector("input[name='awoken-number']:checked");
  1198. const awoken = mAwokenNumIpt ? parseInt(mAwokenNumIpt.value,10) : 0;
  1199. const plus = [
  1200. parseInt(monEditAddHp.value || 0, 10),
  1201. parseInt(monEditAddAtk.value || 0, 10),
  1202. parseInt(monEditAddRcv.value || 0, 10)
  1203. ];
  1204. const latent = editBox.latent;
  1205. const tempMon = {
  1206. id:monid,
  1207. level:level,
  1208. plus:plus,
  1209. awoken:awoken,
  1210. latent:latent
  1211. };
  1212. const abilitys = calculateAbility(tempMon, null, true) || [0,0,0];
  1213. monEditHpValue.innerHTML = abilitys[0].toLocaleString();
  1214. monEditAtkValue.innerHTML = abilitys[1].toLocaleString();
  1215. monEditRcvValue.innerHTML = abilitys[2].toLocaleString();
  1216. }
  1217. editBox.reCalculateAbility = reCalculateAbility;
  1218. const btnCancel = editBox.querySelector(".button-cancel");
  1219. const btnDone = editBox.querySelector(".button-done");
  1220. const btnNull = editBox.querySelector(".button-null");
  1221. const btnDelay = editBox.querySelector(".button-delay");
  1222. btnCancel.onclick = function(){
  1223. btnDone.classList.remove("cant-assist");
  1224. btnDone.disabled = false;
  1225. editBox.memberIdx = [];
  1226. editBox.hide();
  1227. };
  1228. btnDone.onclick = function(){
  1229. if (parseInt(monEditLv.value,10) == 0)
  1230. {
  1231. btnNull.onclick();
  1232. return;
  1233. }
  1234. const mon = editBox.isAssist ? new MemberAssist() : new MemberTeam();
  1235. const teamData = formation.teams[editBox.memberIdx[0]];
  1236. const teamBigBox = teamBigBoxs[editBox.memberIdx[0]];
  1237. const teamBox = teamBigBox.querySelector(".team-box");
  1238. teamData[editBox.memberIdx[1]][editBox.memberIdx[2]] = mon;
  1239. mon.id = parseInt(monstersID.value,10);
  1240. const card = Cards[mon.id] || Cards[0];
  1241. const skill = Skills[card.activeSkillId];
  1242. mon.level = parseInt(monEditLv.value,10);
  1243. const mAwokenNumIpt = monEditAwokensRow.querySelector("input[name='awoken-number']:checked");
  1244. mon.awoken = mAwokenNumIpt ? parseInt(mAwokenNumIpt.value,10) : 0;
  1245. if (card.superAwakenings.length) //如果支持超觉醒
  1246. {
  1247. const mSAwokenChoIpt = monEditSAwokensRow.querySelector("input[name='sawoken-choice']:checked");
  1248. mon.sawoken = mSAwokenChoIpt ? parseInt(mSAwokenChoIpt.value,10) : -1;
  1249. }
  1250. if (card.types.some(t=>{return t == 0 || t == 12 || t == 14 || t == 15;}) &&
  1251. (!card.overlay || mon.level>= card.maxLevel))
  1252. { //当4种特殊type的时候是无法297和打觉醒的,但是不能叠加的在未满级时可以
  1253. mon.plus = [0,0,0];
  1254. }else
  1255. {
  1256. mon.plus[0] = parseInt(monEditAddHp.value) || 0;
  1257. mon.plus[1] = parseInt(monEditAddAtk.value) || 0;
  1258. mon.plus[2] = parseInt(monEditAddRcv.value) || 0;
  1259. if (!editBox.isAssist)
  1260. { //如果不是辅助,则可以设定潜觉
  1261. mon.latent = editBox.latent.concat();
  1262. }
  1263. }
  1264. const skillLevelNum = parseInt(skillLevel.value,10);
  1265. if (skillLevelNum < skill.maxLevel)
  1266. {
  1267. mon.skilllevel = skillLevelNum;
  1268. }
  1269. changeid(mon,editBox.monsterHead,editBox.memberIdx[1] ? null : editBox.latentBox);
  1270. const teamAbilityDom = teamBigBox.querySelector(".team-ability");
  1271. refreshAbility(teamAbilityDom, teamData, editBox.memberIdx[2]); //本人能力值
  1272. const teamTotalInfoDom = teamBigBox.querySelector(".team-total-info"); //队伍能力值合计
  1273. if (teamTotalInfoDom) refreshTeamTotalHP(teamTotalInfoDom, teamData);
  1274. const formationTotalInfoDom = formationBox.querySelector(".formation-total-info"); //所有队伍能力值合计
  1275. if (formationTotalInfoDom) refreshFormationTotalHP(formationTotalInfoDom, formation.teams);
  1276. const teamAwokenDom = teamBigBox.querySelector(".team-awoken"); //队伍觉醒合计
  1277. if (teamAwokenDom) refreshTeamAwokenCount(teamAwokenDom,teamData);
  1278. const formationAwokenDom = formationBox.querySelector(".formation-awoken"); //所有队伍觉醒合计
  1279. if (formationAwokenDom) refreshFormationAwokenCount(formationAwokenDom, formation.teams);
  1280. //刷新改队员的CD
  1281. refreshMemberSkillCD(teamBox,teamData,editBox.memberIdx[2]);
  1282. creatNewUrl();
  1283. editBox.hide();
  1284. };
  1285. window.onkeydown = function(e){
  1286. if (!editBox.classList.contains(className_displayNone))
  1287. {
  1288. if (e.keyCode == 27)
  1289. { //按下ESC时,自动关闭编辑窗
  1290. btnCancel.onclick();
  1291. }
  1292. }
  1293. };
  1294. btnNull.onclick = function(){ //空位置
  1295. const mon = new Member();
  1296. const teamBigBox = teamBigBoxs[editBox.memberIdx[0]];
  1297. const teamData = formation.teams[editBox.memberIdx[0]];
  1298. teamData[editBox.memberIdx[1]][editBox.memberIdx[2]] = mon;
  1299. changeid(mon ,editBox.monsterHead, editBox.latentBox);
  1300. const teamAbilityDom = teamBigBox.querySelector(".team-ability");
  1301. refreshAbility(teamAbilityDom, teamData, editBox.memberIdx[2]); //本人能力值
  1302. const teamTotalInfoDom = teamBigBox.querySelector(".team-total-info"); //队伍能力值合计
  1303. if (teamTotalInfoDom) refreshTeamTotalHP(teamTotalInfoDom, teamData);
  1304. const formationTotalInfoDom = formationBox.querySelector(".formation-total-info"); //所有队伍能力值合计
  1305. if (formationTotalInfoDom) refreshFormationTotalHP(formationTotalInfoDom, formation.teams);
  1306. const teamAwokenDom = teamBigBox.querySelector(".team-awoken"); //队伍觉醒合计
  1307. if (teamAwokenDom) refreshTeamAwokenCount(teamAwokenDom,teamData);
  1308. const formationAwokenDom = formationBox.querySelector(".formation-awoken"); //所有队伍觉醒合计
  1309. if (formationAwokenDom) refreshFormationAwokenCount(formationAwokenDom, formation.teams);
  1310. //刷新改队员的CD
  1311. refreshMemberSkillCD(teamBigBox,teamData,editBox.memberIdx[2]);
  1312. creatNewUrl();
  1313. editBox.hide();
  1314. };
  1315. btnDelay.onclick = function(){ //应对威吓
  1316. const mon = new MemberDelay();
  1317. const teamBigBox = teamBigBoxs[editBox.memberIdx[0]];
  1318. const teamData = formation.teams[editBox.memberIdx[0]];
  1319. teamData[editBox.memberIdx[1]][editBox.memberIdx[2]] = mon;
  1320. changeid(mon, editBox.monsterHead, editBox.latentBox);
  1321. const teamAbilityDom = teamBigBox.querySelector(".team-ability");
  1322. refreshAbility(teamAbilityDom, teamData, editBox.memberIdx[2]); //本人能力值
  1323. const teamTotalInfoDom = teamBigBox.querySelector(".team-total-info"); //队伍能力值合计
  1324. if (teamTotalInfoDom) refreshTeamTotalHP(teamTotalInfoDom, teamData);
  1325. const formationTotalInfoDom = formationBox.querySelector(".formation-total-info"); //所有队伍能力值合计
  1326. if (formationTotalInfoDom) refreshFormationTotalHP(formationTotalInfoDom, formation.teams);
  1327. const teamAwokenDom = teamBigBox.querySelector(".team-awoken"); //队伍觉醒合计
  1328. if (teamAwokenDom) refreshTeamAwokenCount(teamAwokenDom,teamData);
  1329. const formationAwokenDom = formationBox.querySelector(".formation-awoken"); //所有队伍觉醒合计
  1330. if (formationAwokenDom) refreshFormationAwokenCount(formationAwokenDom, formation.teams);
  1331. //刷新改队员的CD
  1332. refreshMemberSkillCD(teamBigBox,teamData,editBox.memberIdx[2]);
  1333. creatNewUrl();
  1334. editBox.hide();
  1335. };
  1336. //语言选择
  1337. const langList = controlBox.querySelector(".languages");
  1338. langList.onchange = function(){
  1339. creatNewUrl({"language":this.value});
  1340. history.go();
  1341. };
  1342. //数据源选择
  1343. const dataList = controlBox.querySelector(".datasource");
  1344. dataList.onchange = function(){
  1345. creatNewUrl({datasource:this.value});
  1346. history.go();
  1347. };
  1348. /*添对应语言执行的JS*/
  1349. const languageJS = document.head.appendChild(document.createElement("script"));
  1350. languageJS.id = "language-js";
  1351. languageJS.type = "text/javascript";
  1352. languageJS.src = "languages/"+currentLanguage.i18n+".js";
  1353. }
  1354. //编辑界面点击每个怪物的头像的处理
  1355. function clickMonHead(e)
  1356. {
  1357. let team = parseInt(this.getAttribute("data-team"),10);
  1358. let assist = parseInt(this.getAttribute("data-assist"),10);
  1359. let index = parseInt(this.getAttribute("data-index"),10);
  1360. editMon(team,assist,index);
  1361. return false; //没有false将会打开链接
  1362. }
  1363. //编辑界面每个怪物的头像的拖动
  1364. function dragStartMonHead(e)
  1365. {
  1366. let team = parseInt(this.getAttribute("data-team"),10);
  1367. let assist = parseInt(this.getAttribute("data-assist"),10);
  1368. let index = parseInt(this.getAttribute("data-index"),10);
  1369. e.dataTransfer.setData('from',[team,assist,index].join(","));
  1370. }
  1371. //编辑界面每个怪物的头像的经过,阻止事件发生
  1372. function dropOverMonHead(e)
  1373. {
  1374. e.preventDefault();
  1375. }
  1376. //从怪物头像获取队员的队伍编号
  1377. function getMemberArrayIndexFromMonHead(headDom)
  1378. {
  1379. return [
  1380. parseInt(headDom.getAttribute("data-team"),10),
  1381. parseInt(headDom.getAttribute("data-assist"),10),
  1382. parseInt(headDom.getAttribute("data-index"),10),
  1383. ];
  1384. }
  1385. //编辑界面每个怪物的头像的放下
  1386. function dropMonHead(e)
  1387. {
  1388. const dataFrom = e.dataTransfer.getData('from').split(",").map((i)=>{return parseInt(i,10);});
  1389. const dataTo = getMemberArrayIndexFromMonHead(this);
  1390. if ((dataTo[0] != dataFrom[0]) ||
  1391. (dataTo[1] != dataFrom[1]) ||
  1392. (dataTo[2] != dataFrom[2]))
  1393. { //必须有所不同才继续交换
  1394. interchangeCard(dataFrom,dataTo);
  1395. }
  1396. return false; //没有false将会打开链接
  1397. }
  1398. //移动端编辑界面每个怪物的头像的放下
  1399. function touchstartMonHead(e)
  1400. {
  1401. e.stopPropagation();
  1402. //console.log("开始触摸",e,this);
  1403. const tc = e.changedTouches[0];
  1404. const pX = tc.pageX, pY = tc.pageY;
  1405. interchangeSVG.style.display = "none";
  1406. interchangeSVG.changePoint({x:pX,y:pY},{x:pX,y:pY});
  1407. }
  1408. //移动端编辑界面每个怪物的头像的移动
  1409. function touchmoveMonHead(e)
  1410. {
  1411. //console.log("移动中",e,this);
  1412. const tc = e.changedTouches[0];
  1413. const pX = tc.pageX, pY = tc.pageY;
  1414. const rect = this.getBoundingClientRect();
  1415. const top = rect.top + document.documentElement.scrollTop;
  1416. const left = rect.left + document.documentElement.scrollLeft;
  1417. if ((pY < top) || (pY > (top + rect.height)) ||
  1418. (pX < left) || (pX > (left + rect.width)))
  1419. {
  1420. interchangeSVG.style.display = "block";
  1421. interchangeSVG.changePoint(null,{x:pX,y:pY});
  1422. }else
  1423. {
  1424. interchangeSVG.style.display = "none";
  1425. }
  1426. }
  1427. //移动端编辑界面每个怪物的头像的结束
  1428. function touchendMonHead(e)
  1429. {
  1430. const tc = e.changedTouches[0];
  1431. const pX = tc.pageX, pY = tc.pageY;
  1432. //console.log("移动结束",pX,pY,e,this);
  1433. interchangeSVG.style.display = "none";
  1434. interchangeSVG.changePoint(null,{x:pX,y:pY});
  1435. let target = allMembers.find(m=>{
  1436. const rect = m.getBoundingClientRect();
  1437. const top = rect.top + document.documentElement.scrollTop;
  1438. const left = rect.left + document.documentElement.scrollLeft;
  1439. const isInRect = (pY > top) && (pY < (top + rect.height)) &&
  1440. (pX > left) && (pX < (left + rect.width));
  1441. return isInRect;
  1442. });
  1443. if (target && this != target)
  1444. {
  1445. //console.log("找到的对象",targets[0]);
  1446. let dataFrom = getMemberArrayIndexFromMonHead(this);
  1447. let dataTo = getMemberArrayIndexFromMonHead(target);
  1448. if ((dataTo[0] != dataFrom[0]) ||
  1449. (dataTo[1] != dataFrom[1]) ||
  1450. (dataTo[2] != dataFrom[2]))
  1451. { //必须有所不同才继续交换
  1452. interchangeCard(dataFrom,dataTo);
  1453. }
  1454. }
  1455. }
  1456. //移动端编辑界面每个怪物的头像的取消
  1457. function touchcancelMonHead(e)
  1458. {
  1459. interchangeSVG.style.display = "none";
  1460. console.log("移动取消",e,this);
  1461. }
  1462. function interchangeCard(formArr,toArr)
  1463. {
  1464. function changeType(member,isAssist)
  1465. {
  1466. if (member.id == 0 || (isAssist && member.id == -1))
  1467. {
  1468. return new Member();
  1469. }else
  1470. {
  1471. const newMember = isAssist ? new MemberTeam() : new MemberAssist();
  1472. newMember.loadFromMember(member);
  1473. return newMember;
  1474. }
  1475. }
  1476. const changeSwapToCopy = controlBox.querySelector("#change-swap-to-copy");//储存交换“复制”和“替换”
  1477. const isCopy = changeSwapToCopy.checked;
  1478. let from = formation.teams[formArr[0]][formArr[1]][formArr[2]];
  1479. let to = formation.teams[toArr[0]][toArr[1]][toArr[2]];
  1480. if(formArr[1] != toArr[1]) //从武器拖到非武器才改变类型
  1481. {
  1482. from = changeType(from,formArr[1]);
  1483. if (!isCopy) to = changeType(to,toArr[1]);
  1484. }else if (isCopy)
  1485. {
  1486. const newFrom = new from.constructor();
  1487. newFrom.loadFromMember(from);
  1488. from = newFrom;
  1489. }
  1490. formation.teams[toArr[0]][toArr[1]][toArr[2]] = from;
  1491. if (!isCopy) formation.teams[formArr[0]][formArr[1]][formArr[2]] = to;
  1492. creatNewUrl(); //刷新URL
  1493. refreshAll(formation); //刷新全部
  1494. }
  1495. //改变一个怪物头像
  1496. function changeid(mon,monDom,latentDom)
  1497. {
  1498. let fragment = document.createDocumentFragment(); //创建节点用的临时空间
  1499. const parentNode = monDom.parentNode;
  1500. fragment.appendChild(monDom);
  1501. const monId = mon.id;
  1502. const card = Cards[monId] || Cards[0]; //怪物固定数据
  1503. monDom.setAttribute("data-cardid", monId); //设定新的id
  1504. if (monId<0) //如果是延迟
  1505. {
  1506. monDom.removeAttribute("href");
  1507. monDom.removeAttribute("title");
  1508. parentNode.classList.add("delay");
  1509. parentNode.classList.remove("null");
  1510. parentNode.appendChild(fragment);
  1511. if (latentDom) latentDom.classList.add(className_displayNone);
  1512. return;
  1513. }else if (monId==0) //如果是空
  1514. {
  1515. monDom.removeAttribute("href");
  1516. monDom.removeAttribute("title");
  1517. parentNode.classList.add("null");
  1518. parentNode.classList.remove("delay");
  1519. parentNode.appendChild(fragment);
  1520. if (latentDom) latentDom.classList.add(className_displayNone);
  1521. return;
  1522. }else if (monId>-1) //如果提供了id
  1523. {
  1524. parentNode.classList.remove("null");
  1525. parentNode.classList.remove("delay");
  1526. monDom.setAttribute("data-cards-pic-idx",Math.ceil(monId/100)); //添加图片编号
  1527. const idxInPage = (monId-1) % 100; //获取当前页面的总序号
  1528. monDom.setAttribute("data-cards-pic-x", idxInPage % 10); //添加X方向序号
  1529. monDom.setAttribute("data-cards-pic-y", Math.floor(idxInPage / 10)); //添加Y方向序号
  1530. monDom.querySelector(".property").setAttribute("data-property", card.attrs[0]); //主属性
  1531. monDom.querySelector(".subproperty").setAttribute("data-property", card.attrs[1]); //副属性
  1532. monDom.title = "No." + monId + " " + (card.otLangName ? (card.otLangName[currentLanguage.searchlist[0]] || card.name) : card.name);
  1533. monDom.href = currentLanguage.guideURL(monId, card.name);
  1534. if (card.canAssist)
  1535. monDom.classList.add("allowable-assist");
  1536. else
  1537. monDom.classList.remove("allowable-assist");
  1538. if (card.awakenings.includes(49))//武器
  1539. monDom.classList.add("wepon");
  1540. else
  1541. monDom.classList.remove("wepon");
  1542. }
  1543. const levelDom = monDom.querySelector(".level");
  1544. if (levelDom) //如果提供了等级
  1545. {
  1546. const level = mon.level || 1;
  1547. levelDom.innerHTML = level;
  1548. if (level == card.maxLevel)
  1549. { //如果等级刚好等于最大等级,则修改为“最大”的字
  1550. levelDom.classList.add("max");
  1551. }else
  1552. {
  1553. levelDom.classList.remove("max");
  1554. }
  1555. if (card.limitBreakIncr && level >= card.maxLevel)
  1556. { //如果支持超觉,并且等级超过99,就添加支持超觉的蓝色
  1557. levelDom.classList.add("_110");
  1558. }else
  1559. {
  1560. levelDom.classList.remove("_110");
  1561. }
  1562. }
  1563. if (mon.awoken>-1) //如果提供了觉醒
  1564. {
  1565. const awokenIcon = monDom.querySelector(".awoken-count");
  1566. if (mon.awoken == 0 || card.awakenings.length < 1 || !awokenIcon) //没觉醒
  1567. {
  1568. awokenIcon.classList.add(className_displayNone);
  1569. awokenIcon.innerHTML = "";
  1570. }else
  1571. {
  1572. awokenIcon.classList.remove(className_displayNone);
  1573. awokenIcon.innerHTML = mon.awoken;
  1574. if (mon.awoken == card.awakenings.length)
  1575. {
  1576. awokenIcon.classList.add("full-awoken");
  1577. }else
  1578. {
  1579. awokenIcon.classList.remove("full-awoken");
  1580. }
  1581. }
  1582. }
  1583. const sawoken = monDom.querySelector(".super-awoken");
  1584. if (sawoken) //如果存在超觉醒的DOM且提供了超觉醒
  1585. {
  1586. if (mon.sawoken != undefined && mon.sawoken>=0 && card.superAwakenings.length)
  1587. {
  1588. sawoken.classList.remove(className_displayNone);
  1589. const sawokenIcon = sawoken.querySelector(".awoken-icon");
  1590. sawokenIcon.setAttribute("data-awoken-icon",card.superAwakenings[mon.sawoken]);
  1591. }else
  1592. {
  1593. sawoken.classList.add(className_displayNone);
  1594. }
  1595. }
  1596. const m_id = monDom.querySelector(".id");
  1597. if (m_id) //怪物ID
  1598. {
  1599. m_id.innerHTML = monId;
  1600. }
  1601. const plusArr = mon.plus || [0,0,0];
  1602. const plusDom = monDom.querySelector(".plus");
  1603. if (plusArr && plusDom) //如果提供了加值,且怪物头像内有加值
  1604. {
  1605. const plusCount = plusArr[0]+plusArr[1]+plusArr[2];
  1606. if (plusCount <= 0)
  1607. {
  1608. plusDom.classList.add(className_displayNone);
  1609. }else if (plusCount >= 297)
  1610. {
  1611. plusDom.classList.add("has297");
  1612. plusDom.classList.remove(className_displayNone);
  1613. }else
  1614. {
  1615. plusDom.querySelector(".hp").innerHTML = plusArr[0];
  1616. plusDom.querySelector(".atk").innerHTML = plusArr[1];
  1617. plusDom.querySelector(".rcv").innerHTML = plusArr[2];
  1618. plusDom.classList.remove("has297");
  1619. plusDom.classList.remove(className_displayNone);
  1620. }
  1621. }
  1622. if (latentDom)
  1623. {
  1624. const latentDoms = Array.from(latentDom.querySelectorAll("li"));
  1625. if (mon.latent) //如果提供了潜觉
  1626. {
  1627. const latent = mon.latent.sort(function(a,b){
  1628. if(b>=12 && a<12) {return 1;} //如果大于12,就排到前面
  1629. else if(b<12 && a>=12) {return -1;} //如果小于12就排到后面
  1630. else {return 0;} //其他情况不变
  1631. });
  1632. if (latent.length < 1)
  1633. {
  1634. latentDom.classList.add(className_displayNone);
  1635. }else
  1636. {
  1637. latentDom.classList.remove(className_displayNone);
  1638. const usedHoleN = usedHole(latent); //使用的格子数
  1639. const maxLatentCount = getMaxLatentCount(mon.id); //最大潜觉数量
  1640. const showLatentCount = maxLatentCount-usedHoleN+latent.length; //显示的潜觉个数(包含空格)
  1641. for (let ai=0;ai<latentDoms.length;ai++)
  1642. {
  1643. if (latent[ai]) //有的潜觉
  1644. {
  1645. latentDoms[ai].setAttribute("data-latent-icon", latent[ai]);
  1646. latentDoms[ai].classList.remove(className_displayNone);
  1647. }
  1648. else if(ai<showLatentCount) //空格
  1649. {
  1650. latentDoms[ai].removeAttribute("data-latent-icon");
  1651. latentDoms[ai].classList.remove(className_displayNone);
  1652. }
  1653. else //不显示的部分
  1654. {
  1655. latentDoms[ai].classList.add(className_displayNone);
  1656. }
  1657. }
  1658. }
  1659. }else
  1660. {
  1661. latentDom.classList.add(className_displayNone);
  1662. }
  1663. }
  1664. const skillCdDom = monDom.querySelector(".skill");
  1665. if (skillCdDom) //如果存在技能CD DOM
  1666. {
  1667. //const skill = Skills[card.activeSkillId];
  1668. if (card.activeSkillId == 0)
  1669. {
  1670. skillCdDom.classList.add(className_displayNone);
  1671. }else
  1672. {
  1673. skillCdDom.classList.remove(className_displayNone);
  1674. }
  1675. }
  1676. parentNode.appendChild(fragment);
  1677. }
  1678. //点击怪物头像,出现编辑窗
  1679. function editMon(teamNum,isAssist,indexInTeam)
  1680. {
  1681. //数据
  1682. const mon = formation.teams[teamNum][isAssist][indexInTeam];
  1683. const teamBigBox = teamBigBoxs[teamNum];
  1684. const teamBox = teamBigBox.querySelector(".team-box");
  1685. const memberBox = teamBox.querySelector(isAssist?".team-assist":".team-members");
  1686. const memberLi = memberBox.querySelector(`.member-${indexInTeam+1}`);
  1687. const monsterHead = memberLi.querySelector(".monster");
  1688. editBox.show();
  1689. editBox.isAssist = isAssist;
  1690. editBox.monsterHead = monsterHead;
  1691. editBox.memberIdx = [teamNum, isAssist, indexInTeam]; //储存队伍数组下标
  1692. if (!isAssist)
  1693. {
  1694. const latentBox = teamBox.querySelector(".team-latents .latents-"+(indexInTeam+1)+" .latent-ul");
  1695. editBox.latentBox = latentBox;
  1696. }
  1697. const settingBox = editBox.querySelector(".setting-box");
  1698. const monstersID = settingBox.querySelector(".row-mon-id .m-id");
  1699. monstersID.value = mon.id > 0 ? mon.id : 0;
  1700. monstersID.onchange();
  1701. //觉醒
  1702. const monEditAwokens = settingBox.querySelectorAll(".row-mon-awoken .awoken-ul input[name='awoken-number']");
  1703. //if (mon.awoken > 0 && monEditAwokens[mon.awoken]) monEditAwokens[mon.awoken].click(); //涉及到觉醒数字的显示,所以需要点一下,为了减少计算次数,把这一条移动到了最后面
  1704. //超觉醒
  1705. const monEditSAwokens = settingBox.querySelectorAll(".row-mon-super-awoken .awoken-ul input[name='sawoken-choice']"); //单选框,0号是隐藏的
  1706. monEditSAwokens[(mon.sawoken >= 0 && monEditSAwokens[mon.sawoken+1]) ? mon.sawoken+1 : 0].checked = true;
  1707. const monEditLv = settingBox.querySelector(".row-mon-level .m-level");
  1708. monEditLv.value = mon.level || 1;
  1709. const monEditAddHp = settingBox.querySelector(".row-mon-plus .m-plus-hp");
  1710. const monEditAddAtk = settingBox.querySelector(".row-mon-plus .m-plus-atk");
  1711. const monEditAddRcv = settingBox.querySelector(".row-mon-plus .m-plus-rcv");
  1712. if (mon.plus)
  1713. {
  1714. monEditAddHp.value = mon.plus[0];
  1715. monEditAddAtk.value = mon.plus[1];
  1716. monEditAddRcv.value = mon.plus[2];
  1717. }
  1718. const rowMonLatent = settingBox.querySelector(".row-mon-latent");
  1719. const skillLevel = settingBox.querySelector(".row-mon-skill .skill-box .m-skill-level");
  1720. if (mon.skilllevel)
  1721. {
  1722. skillLevel.value = mon.skilllevel;
  1723. }
  1724. skillLevel.onchange();
  1725. const editBoxTitle = editBox.querySelector(".edit-box-title");
  1726. const btnDelay = editBox.querySelector(".button-box .button-delay");
  1727. if (!isAssist)
  1728. {
  1729. editBox.latent = mon.latent ? mon.latent.concat() : [];
  1730. editBox.refreshLatent(editBox.latent, mon.id);
  1731. btnDelay.classList.add(className_displayNone);
  1732. rowMonLatent.classList.remove(className_displayNone);
  1733. editBoxTitle.classList.remove("edit-box-title-assist");
  1734. }else
  1735. {
  1736. btnDelay.classList.remove(className_displayNone);
  1737. rowMonLatent.classList.add(className_displayNone);
  1738. editBoxTitle.classList.add("edit-box-title-assist");
  1739. }
  1740. editBox.reCalculateExp();
  1741. if (mon.awoken > 0 && monEditAwokens[mon.awoken])
  1742. monEditAwokens[mon.awoken].click(); //涉及到觉醒数字的显示,所以需要点一下
  1743. else
  1744. editBox.reCalculateAbility();
  1745. }
  1746. //编辑窗,修改怪物ID
  1747. function editBoxChangeMonId(id)
  1748. {
  1749. const card = Cards[id] || Cards[0]; //怪物固定数据
  1750. if (card.id == 0){
  1751. id = 0;
  1752. }
  1753. const skill = Skills[card.activeSkillId];
  1754. const leaderSkill = Skills[card.leaderSkillId];
  1755. let fragment = null;
  1756. const monInfoBox = editBox.querySelector(".monsterinfo-box");
  1757. const settingBox = editBox.querySelector(".setting-box");
  1758. //id搜索
  1759. const monHead = monInfoBox.querySelector(".monster");
  1760. changeid({id:id},monHead); //改变图像
  1761. const mId = monInfoBox.querySelector(".monster-id");
  1762. mId.innerHTML = id;
  1763. const mRare = monInfoBox.querySelector(".monster-rare");
  1764. mRare.setAttribute("data-rarity",card.rarity);
  1765. const mCost = monInfoBox.querySelector(".monster-cost");
  1766. mCost.innerHTML = card.cost;
  1767. /*const mExp = monInfoBox.querySelector(".monster-exp");
  1768. mExp.innerHTML = card.exp.max;*/
  1769. const mName = monInfoBox.querySelector(".monster-name");
  1770. mName.innerHTML = returnMonsterNameArr(card, currentLanguage.searchlist, currentDataSource.code)[0];
  1771. const mSeriesId = monInfoBox.querySelector(".monster-seriesId");
  1772. mSeriesId.innerHTML = card.seriesId;
  1773. mSeriesId.setAttribute("data-seriesId",card.seriesId);
  1774. if (card.seriesId == 0)
  1775. {
  1776. mSeriesId.classList.add(className_displayNone);
  1777. }else
  1778. {
  1779. mSeriesId.classList.remove(className_displayNone);
  1780. }
  1781. const mCollabId = monInfoBox.querySelector(".monster-collabId");
  1782. mCollabId.innerHTML = card.collabId;
  1783. mCollabId.setAttribute("data-collabId",card.collabId);
  1784. if (card.collabId == 0)
  1785. {
  1786. mCollabId.classList.add(className_displayNone);
  1787. }else
  1788. {
  1789. mCollabId.classList.remove(className_displayNone);
  1790. }
  1791. const mAltName = monInfoBox.querySelector(".monster-altName");
  1792. mAltName.innerHTML = card.altName;
  1793. mAltName.setAttribute("data-altName",card.altName);
  1794. if (card.altName.length == 0)
  1795. { //当没有合作名
  1796. mAltName.classList.add(className_displayNone);
  1797. }else
  1798. {
  1799. mAltName.classList.remove(className_displayNone);
  1800. }
  1801. const evoCardUl = settingBox.querySelector(".row-mon-id .evo-card-list");
  1802. evoCardUl.style.display = "none";
  1803. evoCardUl.innerHTML = ""; //据说直接清空HTML性能更好
  1804. const evoLinkCardsIdArray = Cards.filter(function(m){
  1805. return m.evoRootId == card.evoRootId;
  1806. }).map(function(m){return m.id;}); //筛选出相同进化链的
  1807. const createCardHead = editBox.createCardHead;
  1808. if (evoLinkCardsIdArray.length>1)
  1809. {
  1810. fragment = document.createDocumentFragment(); //创建节点用的临时空间
  1811. evoLinkCardsIdArray.forEach(function(mid){
  1812. const cli = createCardHead(mid);
  1813. if (mid == id)
  1814. {
  1815. cli.classList.add("unable-monster");
  1816. }
  1817. fragment.appendChild(cli);
  1818. });
  1819. evoCardUl.appendChild(fragment);
  1820. evoCardUl.style.display = "block";
  1821. }
  1822. const mType = monInfoBox.querySelectorAll(".monster-type li");
  1823. for (let ti=0;ti<mType.length;ti++)
  1824. {
  1825. if (ti<card.types.length && card.types[ti]>= 0)
  1826. {
  1827. mType[ti].setAttribute("data-type-name",card.types[ti]);
  1828. mType[ti].querySelector(".type-icon").setAttribute("data-type-icon",card.types[ti]);
  1829. mType[ti].classList.remove(className_displayNone);
  1830. }else
  1831. {
  1832. mType[ti].classList.add(className_displayNone);
  1833. }
  1834. }
  1835. const monEditAwokensRow = settingBox.querySelector(".row-mon-awoken .awoken-ul");
  1836. const mAwokenIcon = monEditAwokensRow.querySelectorAll(".awoken-icon");
  1837. const mAwokenIpt = monEditAwokensRow.querySelectorAll("input[name='awoken-number']");
  1838. if (card.canAssist)
  1839. {
  1840. monEditAwokensRow.classList.add("allowable-assist");
  1841. }else
  1842. {
  1843. monEditAwokensRow.classList.remove("allowable-assist");
  1844. }
  1845. for (let ai=0;ai<mAwokenIcon.length;ai++)
  1846. {
  1847. if (ai<card.awakenings.length)
  1848. {
  1849. mAwokenIcon[ai].setAttribute("data-awoken-icon",card.awakenings[ai]);
  1850. mAwokenIcon[ai].classList.remove(`display-none`);
  1851. }else
  1852. {
  1853. mAwokenIcon[ai].classList.add(`display-none`);
  1854. }
  1855. }
  1856. mAwokenIpt[card.awakenings.length].click(); //选择最后一个觉醒
  1857. //超觉醒
  1858. const monEditSAwokensRow = settingBox.querySelector(".row-mon-super-awoken");
  1859. const mSAwoken = monEditSAwokensRow.querySelectorAll(".awoken-ul .awoken-icon");
  1860. if (card.superAwakenings.length>0) //辅助时也还是加入超觉醒吧
  1861. {
  1862. for (let ai=0;ai<mSAwoken.length;ai++)
  1863. {
  1864. if (ai < card.superAwakenings.length)
  1865. {
  1866. mSAwoken[ai].setAttribute("data-awoken-icon",card.superAwakenings[ai]);
  1867. mSAwoken[ai].classList.remove(`display-none`);
  1868. }
  1869. else
  1870. {
  1871. mSAwoken[ai].classList.add(`display-none`);
  1872. }
  1873. }
  1874. monEditSAwokensRow.classList.remove(className_displayNone);
  1875. }else
  1876. {
  1877. monEditSAwokensRow.classList.add(className_displayNone);
  1878. }
  1879. monEditSAwokensRow.querySelector("#sawoken-choice--1").click(); //选中隐藏的空超觉
  1880. const monEditLvMax = settingBox.querySelector(".m-level-btn-max");
  1881. monEditLvMax.innerHTML = monEditLvMax.value = card.maxLevel;
  1882. const monEditLv = settingBox.querySelector(".m-level");
  1883. monEditLv.max = monEditLv.value = card.maxLevel + (card.limitBreakIncr ? 11 : 0); //默认等级为110
  1884. const monEditLv110 = settingBox.querySelector(".m-level-btn-110");
  1885. if (card.limitBreakIncr)
  1886. {
  1887. monEditLv110.classList.remove(className_displayNone);
  1888. }else
  1889. {
  1890. monEditLv110.classList.add(className_displayNone);
  1891. }
  1892. const rowPlus = settingBox.querySelector(".row-mon-plus");
  1893. const rowLatent = settingBox.querySelector(".row-mon-latent");
  1894. const monLatentAllowUl = rowLatent.querySelector(".m-latent-allowable-ul");
  1895. //该宠Type允许的杀,uniq是去重的自定义函数
  1896. const allowLatent = [].concat(...card.types.filter(i=>i>=0).map(type=>type_allowable_latent[type])).uniq();
  1897. typekiller_for_type.forEach(type=>{ //显示允许的杀,隐藏不允许的杀
  1898. const latentDom = monLatentAllowUl.querySelector(`.latent-icon[data-latent-icon='${type.latent}']`);
  1899. if (!latentDom) return;
  1900. if (allowLatent.includes(type.latent))
  1901. {
  1902. latentDom.classList.remove("unallowable-latent");
  1903. }else
  1904. {
  1905. latentDom.classList.add("unallowable-latent");
  1906. }
  1907. })
  1908. //怪物主动技能
  1909. const rowSkill = settingBox.querySelector(".row-mon-skill");
  1910. const skillBox = rowSkill.querySelector(".skill-box");
  1911. const skillTitle = skillBox.querySelector(".skill-name");
  1912. const skillCD = skillBox.querySelector(".skill-cd");
  1913. const skillLevel = skillBox.querySelector(".m-skill-level");
  1914. //const skillLevel_1 = skillBox.querySelector(".m-skill-lv-1");
  1915. const skillLevel_Max = skillBox.querySelector(".m-skill-lv-max");
  1916. const skillDetail = skillBox.querySelector(".skill-datail");
  1917. fragment = document.createDocumentFragment(); //创建节点用的临时空间
  1918. fragment.appendChild(skillBox);
  1919. skillTitle.innerHTML = descriptionToHTML(skill.name);
  1920. skillTitle.setAttribute("data-skillid", skill.id);
  1921. skillDetail.innerHTML = parseSkillDescription(skill);
  1922. const t_maxLevel = card.overlay || card.types.includes(15) ? 1 : skill.maxLevel; //遇到不能升技的,最大等级强制为1
  1923. skillLevel.max = t_maxLevel;
  1924. skillLevel.value = t_maxLevel;
  1925. skillLevel_Max.value = t_maxLevel;
  1926. skillLevel_Max.innerHTML = skill.maxLevel;
  1927. skillCD.innerHTML = skill.initialCooldown - t_maxLevel + 1;
  1928. rowSkill.appendChild(fragment);
  1929. //怪物队长技能
  1930. const rowLederSkill = settingBox.querySelector(".row-mon-leader-skill");
  1931. const lskillBox = rowLederSkill.querySelector(".skill-box");
  1932. const lskillTitle = lskillBox.querySelector(".skill-name");
  1933. const lskillDetail = lskillBox.querySelector(".skill-datail");
  1934. fragment = document.createDocumentFragment(); //创建节点用的临时空间
  1935. fragment.appendChild(lskillBox);
  1936. lskillTitle.innerHTML = descriptionToHTML(leaderSkill.name);
  1937. lskillDetail.innerHTML = parseSkillDescription(leaderSkill);
  1938. rowLederSkill.appendChild(fragment);
  1939. if (card.overlay || card.types[0] == 15 && card.types[1] == -1)
  1940. { //当可以叠加时,不能打297和潜觉
  1941. rowPlus.classList.add("disabled");
  1942. rowLatent.classList.add("disabled");
  1943. skillLevel.setAttribute("readonly",true);
  1944. }else
  1945. {
  1946. rowPlus.classList.remove("disabled");
  1947. rowLatent.classList.remove("disabled");
  1948. skillLevel.removeAttribute("readonly");
  1949. }
  1950. if (editBox.isAssist)
  1951. {
  1952. const btnDone = editBox.querySelector(".button-done");
  1953. if (!card.canAssist)
  1954. {
  1955. btnDone.classList.add("cant-assist");
  1956. btnDone.disabled = true;
  1957. }else
  1958. {
  1959. btnDone.classList.remove("cant-assist");
  1960. btnDone.disabled = false;
  1961. }
  1962. }
  1963. editBox.latent.length = 0;
  1964. editBox.refreshLatent(editBox.latent,id);
  1965. editBox.reCalculateExp();
  1966. editBox.reCalculateAbility();
  1967. }
  1968. //搜索并显示合作
  1969. function searchColla(collabId)
  1970. {
  1971. if (typeof(collabId) == "string") collabId = parseInt(collabId,10);
  1972. showSearch(Cards.filter(card=>{return card.collabId == collabId;}));
  1973. }
  1974. //刷新整个队伍
  1975. function refreshAll(formationData){
  1976. let fragment = document.createDocumentFragment(); //创建节点用的临时空间
  1977. const titleBox = fragment.appendChild(formationBox.querySelector(".title-box"));
  1978. const detailBox = formationBox.querySelector(".detail-box");
  1979. const formationTotalInfoDom = formationBox.querySelector(".formation-total-info"); //所有队伍能力值合计
  1980. const formationAwokenDom = formationBox.querySelector(".formation-awoken"); //所有队伍觉醒合计
  1981. while(formationBox.childNodes.length>0)
  1982. {
  1983. fragment.appendChild(formationBox.childNodes[0]);
  1984. }
  1985. const txtTitle = titleBox.querySelector(".title");
  1986. const txtDetail = detailBox.querySelector(".detail");
  1987. txtTitle.value = formationData.title || "";
  1988. txtDetail.value = formationData.detail || "";
  1989. const txtTitleDisplay = titleBox.querySelector(".title-display");
  1990. const txtDetailDisplay = detailBox.querySelector(".detail-display");
  1991. txtTitleDisplay.innerHTML = descriptionToHTML(txtTitle.value);
  1992. txtDetailDisplay.innerHTML = descriptionToHTML(txtDetail.value);
  1993. if (txtTitle.value.length == 0)
  1994. titleBox.classList.add("edit");
  1995. else
  1996. titleBox.classList.remove("edit");
  1997. if (txtDetail.value.length == 0)
  1998. detailBox.classList.add("edit");
  1999. else
  2000. detailBox.classList.remove("edit");
  2001. teamBigBoxs.forEach((teamBigBox,teamNum)=>{
  2002. const teamBox = teamBigBox.querySelector(".team-box");
  2003. const teamData = formationData.teams[teamNum];
  2004. const badgeBox = teamBigBox.querySelector(".team-badge");
  2005. if (badgeBox)
  2006. {
  2007. const badge = badgeBox.querySelector(`#team-${teamNum+1}-badge-${teamData[2] || 0}`);
  2008. badge.checked = true;
  2009. }
  2010. const membersDom = teamBox.querySelector(".team-members");
  2011. const latentsDom = teamBox.querySelector(".team-latents");
  2012. const assistsDom = teamBox.querySelector(".team-assist");
  2013. const teamAbilityDom = teamBigBox.querySelector(".team-ability");
  2014. for (let ti=0,ti_len=membersDom.querySelectorAll(".member").length;ti<ti_len;ti++)
  2015. {
  2016. const member = membersDom.querySelector(`.member-${ti+1} .monster`);
  2017. const latent = latentsDom.querySelector(`.latents-${ti+1} .latent-ul`);
  2018. const assist = assistsDom.querySelector(`.member-${ti+1} .monster`);
  2019. changeid(teamData[0][ti],member,latent); //队员
  2020. changeid(teamData[1][ti],assist); //辅助
  2021. refreshMemberSkillCD(teamBox,teamData,ti); //技能CD
  2022. refreshAbility(teamAbilityDom, teamData, ti); //本人能力值
  2023. }
  2024. const teamTotalInfoDom = teamBigBox.querySelector(".team-total-info"); //队伍能力值合计
  2025. if (teamTotalInfoDom) refreshTeamTotalHP(teamTotalInfoDom, teamData);
  2026. const teamAwokenDom = teamBigBox.querySelector(".team-awoken"); //队伍觉醒合计
  2027. if (teamAwokenDom) refreshTeamAwokenCount(teamAwokenDom, teamData);
  2028. });
  2029. if (formationTotalInfoDom) refreshFormationTotalHP(formationTotalInfoDom, formation.teams);
  2030. if (formationAwokenDom) refreshFormationAwokenCount(formationAwokenDom, formation.teams);
  2031. formationBox.appendChild(fragment);
  2032. txtDetail.onblur(); //这个需要放在显示出来后再改才能生效
  2033. }
  2034. //刷新队伍觉醒统计
  2035. function refreshTeamAwokenCount(awokenDom,team){
  2036. let fragment = document.createDocumentFragment(); //创建节点用的临时空间
  2037. const awokenUL = fragment.appendChild(awokenDom.querySelector(".awoken-ul"));
  2038. function setCount(aicon,number){
  2039. if (!aicon) return; //没有这个觉醒就撤回
  2040. const ali = aicon.parentNode;
  2041. const countDom = ali.querySelector(".count");
  2042. countDom.innerHTML = number;
  2043. if (number)
  2044. ali.classList.remove(className_displayNone);
  2045. else
  2046. ali.classList.add(className_displayNone);
  2047. }
  2048. for (let ai=1;ai<=72;ai++)
  2049. {
  2050. const aicon = awokenUL.querySelector(`.awoken-icon[data-awoken-icon='${ai}']`);
  2051. if (!aicon) continue; //如果没有这个觉醒图,直接跳过
  2052. //搜索等效觉醒
  2053. const equalIndex = equivalent_awoken.findIndex(eak=>eak.small === ai || eak.big === ai);
  2054. if (equalIndex >= 0)
  2055. {
  2056. const equivalentAwoken = equivalent_awoken[equalIndex];
  2057. if (equivalentAwoken.small === ai)
  2058. {
  2059. const totalNum = awokenCountInTeam(team, equivalentAwoken.small, solo, teamsCount) +
  2060. awokenCountInTeam(team, equivalentAwoken.big, solo, teamsCount) * equivalentAwoken.times;
  2061. setCount(aicon, totalNum);
  2062. }else
  2063. {
  2064. continue;
  2065. }
  2066. }else
  2067. {
  2068. setCount(aicon,awokenCountInTeam(team,ai,solo, teamsCount));
  2069. }
  2070. }
  2071. awokenDom.appendChild(fragment);
  2072. }
  2073. //刷新阵型觉醒统计
  2074. function refreshFormationAwokenCount(awokenDom,teams){
  2075. let fragment = document.createDocumentFragment(); //创建节点用的临时空间
  2076. const awokenUL = fragment.appendChild(awokenDom.querySelector(".awoken-ul"));
  2077. function setCount(aicon,number){
  2078. if (!aicon) return; //没有这个觉醒就撤回
  2079. const ali = aicon.parentNode;
  2080. const countDom = ali.querySelector(".count");
  2081. countDom.innerHTML = number;
  2082. if (number)
  2083. ali.classList.remove(className_displayNone);
  2084. else
  2085. ali.classList.add(className_displayNone);
  2086. }
  2087. for (let ai=1;ai<=72;ai++)
  2088. {
  2089. const aicon = awokenUL.querySelector(`.awoken-icon[data-awoken-icon='${ai}']`);
  2090. if (!aicon) continue; //如果没有这个觉醒图,直接跳过
  2091. //搜索等效觉醒
  2092. const equalIndex = equivalent_awoken.findIndex(eak=>eak.small === ai || eak.big === ai);
  2093. if (equalIndex >= 0)
  2094. {
  2095. const equivalentAwoken = equivalent_awoken[equalIndex];
  2096. if (equivalentAwoken.small === ai)
  2097. {
  2098. const totalNum = awokenCountInFormation(teams, equivalentAwoken.small, solo) +
  2099. awokenCountInFormation(teams, equivalentAwoken.big, solo) * equivalentAwoken.times;
  2100. setCount(aicon, totalNum);
  2101. }else
  2102. {
  2103. continue;
  2104. }
  2105. }else
  2106. {
  2107. setCount(aicon,awokenCountInFormation(teams,ai,solo));
  2108. }
  2109. }
  2110. awokenDom.appendChild(fragment);
  2111. }
  2112. //刷新能力值
  2113. function refreshAbility(abilityDom,team,idx){
  2114. const memberData = team[0][idx];
  2115. const assistData = team[1][idx];
  2116. //基底三维,如果辅助是武器,还要加上辅助的觉醒
  2117. const mainAbility = calculateAbility(memberData, assistData, solo);
  2118. if (mainAbility && memberData.ability)
  2119. {
  2120. for (let ai=0;ai<3;ai++)
  2121. {
  2122. memberData.ability[ai] = mainAbility[ai];
  2123. }
  2124. }
  2125. if (!abilityDom) return; //如果没有dom,直接跳过
  2126. const abilityLi = abilityDom.querySelector(".abilitys-" + (idx+1));
  2127. const hpDom = abilityLi.querySelector(".hp");
  2128. const atkDom = abilityLi.querySelector(".atk");
  2129. const rcvDom = abilityLi.querySelector(".rcv");
  2130. [hpDom,atkDom,rcvDom].forEach(function(div,ai){
  2131. if (mainAbility)
  2132. {
  2133. div.classList.remove(className_displayNone);
  2134. div.innerHTML = memberData.ability[ai];
  2135. }else
  2136. {
  2137. div.classList.add(className_displayNone);
  2138. div.innerHTML = 0;
  2139. }
  2140. });
  2141. }
  2142. //刷新队伍能力值合计
  2143. function refreshTeamTotalHP(totalDom,team){
  2144. //计算总的生命值
  2145. if (!totalDom) return;
  2146. const tHpDom = totalDom.querySelector(".tIf-total-hp");
  2147. const tRcvDom = totalDom.querySelector(".tIf-total-rcv");
  2148. if (tHpDom)
  2149. {
  2150. const tHP = team[0].reduce(function(value,mon){ //队伍计算的总HP
  2151. return value += mon.ability ? mon.ability[0] : 0;
  2152. },0);
  2153. const teamHPAwoken = awokenCountInTeam(team,46,solo, teamsCount); //全队大血包个数
  2154. let badgeHPScale = 1; //徽章倍率
  2155. if (team[2] == 4 && (solo || (teamsCount === 3 && currentDataSource.code === 'ja')))
  2156. {
  2157. badgeHPScale = 1.05;
  2158. }else if (team[2] == 11 && (solo || (teamsCount === 3 && currentDataSource.code === 'ja')))
  2159. {
  2160. badgeHPScale = 1.15;
  2161. }
  2162. tHpDom.innerHTML = tHP.toString() +
  2163. (teamHPAwoken>0||badgeHPScale!=1 ?
  2164. ("("+Math.round(tHP * (1 + 0.05 * teamHPAwoken)*badgeHPScale).toString()+")") :
  2165. "");
  2166. }
  2167. if (tRcvDom)
  2168. {
  2169. const tRCV = team[0].reduce(function(value,mon){ //队伍计算的总回复
  2170. return value += mon.ability ? mon.ability[2] : 0;
  2171. },0);
  2172. const teamRCVAwoken = awokenCountInTeam(team,47,solo, teamsCount); //全队大回复个数
  2173. let badgeRCVScale = 1; //徽章倍率
  2174. if (team[2] == 3 && (solo || (teamsCount === 3 && currentDataSource.code === 'ja')))
  2175. {
  2176. badgeRCVScale = 1.25;
  2177. }else if (team[2] == 10 && (solo || (teamsCount === 3 && currentDataSource.code === 'ja')))
  2178. {
  2179. badgeRCVScale = 1.35;
  2180. }
  2181. tRcvDom.innerHTML = tRCV.toString() +
  2182. (teamRCVAwoken>0||badgeRCVScale!=1 ?
  2183. ("("+Math.round(tRCV * (1 + 0.10 * teamRCVAwoken)*badgeRCVScale).toString()+")") :
  2184. "");
  2185. }
  2186. }
  2187. //刷新所有队伍能力值合计
  2188. function refreshFormationTotalHP(totalDom, teams){
  2189. //计算总的生命值
  2190. if (!totalDom) return;
  2191. const tHpDom = totalDom.querySelector(".tIf-total-hp");
  2192. const tRcvDom = totalDom.querySelector(".tIf-total-rcv");
  2193. if (tHpDom)
  2194. {
  2195. const tHPArr = teams.map(function(team){
  2196. const teamTHP = team[0].reduce(function(value,mon){ //队伍计算的总HP
  2197. return value += mon.ability ? mon.ability[0] : 0;
  2198. },0);
  2199. const teamHPAwoken = awokenCountInTeam(team,46,solo, teamsCount); //全队大血包个数
  2200. return [teamTHP,teamHPAwoken];
  2201. });
  2202. const tHP = tHPArr.reduce(function(value, teamHP){
  2203. return [value[0] + teamHP[0], value[1] + Math.round(teamHP[0] * (1 + 0.05 * teamHP[1]))];
  2204. },[0,0]);
  2205. tHpDom.innerHTML = tHP[0].toString() +
  2206. (tHP[0] != tHP[1] ? `(${tHP[1]})` : "");
  2207. }
  2208. if (tRcvDom)
  2209. {
  2210. const tRCVArr = teams.map(function(team){
  2211. const teamTRCV = team[0].reduce(function(value,mon){ //队伍计算的总回复
  2212. return value += mon.ability ? mon.ability[2] : 0;
  2213. },0);
  2214. const teamRCVAwoken = awokenCountInTeam(team,47,solo, teamsCount); //全队大回复个数
  2215. return [teamTRCV,teamRCVAwoken];
  2216. },0);
  2217. const tRCV = tRCVArr.reduce(function(value, teamRCV){
  2218. return [value[0] + teamRCV[0], value[1] + Math.round(teamRCV[0] * (1 + 0.10 * teamRCV[1]))];
  2219. },[0,0]);
  2220. tRcvDom.innerHTML = tRCV[0].toString() +
  2221. (tRCV[0] != tRCV[1] ? `(${tRCV[1]})` : "");
  2222. }
  2223. }
  2224. //刷新单人技能CD
  2225. function refreshMemberSkillCD(teamDom,team,idx){
  2226. const memberMonDom = teamDom.querySelector(`.team-members .member-${idx+1} .monster`);
  2227. const assistMonDom = teamDom.querySelector(`.team-assist .member-${idx+1} .monster`);
  2228. const member = team[0][idx];
  2229. const assist = team[1][idx];
  2230. const memberCard = Cards[member.id] || Cards[0];
  2231. const memberSkill = Skills[memberCard.activeSkillId];
  2232. const assistCard = Cards[assist.id] || Cards[0];
  2233. const assistSkill = Skills[assistCard.activeSkillId];
  2234. const memberSkillCdDom = memberMonDom.querySelector(".skill");
  2235. const assistSkillCdDom = assistMonDom.querySelector(".skill");
  2236. const memberSkillCd = memberSkill ? (memberSkill.initialCooldown - (member.skilllevel||memberSkill.maxLevel) + 1) : 0;
  2237. const assistSkillCd = assistSkill ? (assistSkill.initialCooldown - (assist.skilllevel||assistSkill.maxLevel) + 1) : 0;
  2238. memberSkillCdDom.innerHTML = memberSkillCd;
  2239. assistSkillCdDom.innerHTML = memberSkillCd + assistSkillCd;
  2240. if (member.skilllevel != undefined && member.skilllevel < memberSkill.maxLevel)
  2241. {
  2242. memberSkillCdDom.classList.remove("max-skill");
  2243. }else
  2244. {
  2245. memberSkillCdDom.classList.add("max-skill");
  2246. }
  2247. if (assist.skilllevel != undefined && assist.skilllevel < assistSkill.maxLevel){
  2248. assistSkillCdDom.classList.remove("max-skill");
  2249. }else
  2250. {
  2251. assistSkillCdDom.classList.add("max-skill");
  2252. }
  2253. }
  2254. function localisation($tra)
  2255. {
  2256. if (!$tra) return;
  2257. document.title = $tra.webpage_title;
  2258. formationBox.querySelector(".title-box .title").placeholder = $tra.title_blank;
  2259. formationBox.querySelector(".detail-box .detail").placeholder = $tra.detail_blank;
  2260. const s_sortList = editBox.querySelector(".search-box .sort-div .sort-list");
  2261. const sortOptions = Array.from(s_sortList.options);
  2262. sortOptions.forEach(opt=>{
  2263. const tag = opt.getAttribute("data-tag");
  2264. const trans = $tra.sort_name[tag];
  2265. if (trans)
  2266. {
  2267. opt.text = trans;
  2268. }
  2269. });
  2270. }

智龙迷城队伍图制作工具