forked from mountyzilla/mountyzilla
-
Notifications
You must be signed in to change notification settings - Fork 0
/
capitan.user.js
1464 lines (1343 loc) · 55.9 KB
/
capitan.user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// ==UserScript==
// @author TilK, Dabihul, Rouletabille
// @description Aide à la recherche de cachettes de Capitan
// @grant GM_getValue
// @grant GM_setValue
// @grant GM_deleteValue
// @grant GM_listValues
// @include */mountyhall/View/TresorHistory*
// @include */mountyhall/MH_Play/Play_a_TrouverCachette2*
// @include */mountyhall/MH_Play/Play_equipement.php*
// @include */mountyhall/MH_Taniere/TanierePJ_o_Stock.php*
// @include */mountyhall/MH_Play/Play_a_ActionResult.php*
// @exclude *mh2.mh.raistlin.fr*
// @exclude *mzdev.mh.raistlin.fr*
// @name Capitan
// @version 8.8.19
// @namespace https://greasyfork.org/users/70018
// ==/UserScript==
/****************************************************************
* Aide à la recherche de cachettes de Capitan *
* Développé par Mini TilK (n°36216) *
*****************************************************************
* Adapté pour GreaseMonkey par Dabihul (n°79738) *
* Roule : ajout https 07/08/2016 *
*****************************************************************
* Pour utiliser la recherche, allez des les infos *
* de la carte de la cachette du capitan *
* Une fois ceci fait, *
* toutes les recherches seront sauvergardées *
* Et dans le détail de la carte vous verrez *
* Le nombre de cachettes possibles et leur position *
****************************************************************/
/*
Roule 06/02/2024 V8.8.14
Remise en route
Roule 01/05/2023 V8.8.13
Adaptation modif de présentation MH
Roule 27/11/2021 V8.8.12
Fix résultat pas remis à zéro quand on affiche une 2e fois
Roule 03/01/2021 V8.8.10
Réécriture de la recherche des solutions
Roule 26/11/2020 V8.8.09
Fix suppression d'essai
Roule 16/10/2020 V8.8.08
Adaptation à des modifications MH
Roule 07/10/2020 V8.8.07
Adaptation à des modifications MH
disciple 17/06/2020 V8.8.06
Correction ± #2
Roule 05/08/2018 V8.8.04
Saut de version suite à une erreur de numérotation
Correction ± (Tu es => Vous êtes)
Roule 05/08/2018 V8.2.03
Passage en objet pour assurer l'indépendance par rapport aux autres scripts
Blindage de la détection sous/hors GreaseMonkey ou ViolentMonkey
Roule 05/08/2018 V8.1.67
Correction ±
Roule 04/08/2018 V8.1.66
Utilisation hors GM
Roule 25/08/2017 V8.1.61
Réactivation de la gestion des signes (+/-)
Roule 23/11/2016 V8.1.6
Adaptation à l'affichage en popup dans les tanières (méthode toujours très discutable par setInterval)
Roule 09/12/2016 V8.1.5
Nouvelle méthode de migration des essais V1.0 par copier/coller de tout pref.js
Roule 23/11/2016 V8.1.4
Adaptation à l'affichage en popup du détail d'un équipement (méthode très discutable par setInterval)
Roule 14/10/2016 V8.1.3
simplification de l'entête GM (include)
passage à greasyfork
Roule 24 à 26/08/2016 V8.1.2
Ajout outils de récupération des recherches pré Greasemonkey
Roule 15/08/2016 V8.1.1
Ajout demande d'avis sur la position courante sur le site Psyko-Chasseurs
Quelques corrections de calcul (on avait du NaN)
Roule 08 à 10/08/2016
recopie ici de this.appendButton() version MZ
Ajout liste des essais et possibilité d'en supprimer
Ajout lien vers Psyko Chasseurs
Adaptation aux IDs dans la page de résultat d'une recherche de cachette (et plus besoin de stocker le numéro de carte)
*/
/* 05/08/2018 passage en objet
avantages
indépendance du nomage par rapport aux autres scripts (il y avait effectivement un souci aléatoire sans doute lié à une collision de nom)
inconvénient
syntaxe plus compliquée (utilisation de this, déclaration pas naturelle des fonctions
complexité pour l'utilisation des callback (par exemple setIntervale)
*/
var oCAPITAN_MH_ROULE;
if (oCAPITAN_MH_ROULE instanceof Object) {
window.console.log("script capitan déjà chargé"); // ça arrive dans le cas de l'affichage des détails d'une carte en popup
} else {
oCAPITAN_MH_ROULE = {
bDebug: false,
appendButton: function(paren,value,onClick) {
var input = document.createElement('input');
input.type = 'button';
input.className = 'mh_form_submit';
input.value = value;
input.onmouseover = function(){this.style.cursor='pointer';};
if (onClick) input.onclick = onClick;
paren.appendChild(input);
return input;
},
/* Ajout des éléments manquants de libs */
isPage: function(url) {
return window.location.href.indexOf(url)!=-1;
},
insertTitle: function(next,txt) {
var div = document.createElement('div');
div.className = 'titre2';
this.appendText(div,txt);
this.insertBefore(next,div);
},
insertBefore: function(next,el) {
next.parentNode.this.insertBefore(el,next);
},
// Roule 08/08/2016 ajout cssClass
appendTr: function(tbody, cssClass) {
var tr = document.createElement('tr');
tbody.appendChild(tr);
if (cssClass) tr.className = cssClass;
return tr;
},
appendTd: function(tr) {
var td = document.createElement('td');
if(tr) { tr.appendChild(td); }
return td;
},
appendText: function(paren,text,bold) {
if(bold) {
var b = document.createElement('b');
b.appendChild(document.createTextNode(text));
paren.appendChild(b);
}
else
paren.appendChild(document.createTextNode(text));
},
appendTdText: function(tr,text,bold) {
var td = this.appendTd(tr);
this.appendText(td,text,bold);
return td;
},
/* */
sortNumber: function(a,b) {
return b-a;
},
removeTab: function(tab, i) {
var newTab = new Array();
for(var j=0;j<i;j++)
{
newTab.push(tab[j]);
}
for(var j=i+1;j<tab.length;j++)
{
newTab.push(tab[j]);
}
return newTab;
},
cache: new Array(),
tabToString: function(tab) {
var string = tab[0];
for(var i=1;i<tab.length;i++)
string+=";"+tab[i];
return string;
},
extractPosition: function(nombre, indice) {
if((nombre+"").length<=indice)
return "%";
indice = (nombre+"").length - 1 - indice;
return (nombre+"").substring(indice,indice+1);
},
comparePos: function(x,y,n,x1,y1,n1) {
x = Math.abs(x);
y = Math.abs(y);
n = Math.abs(n);
x1 = Math.abs(x1);
y1 = Math.abs(y1);
n1 = Math.abs(n1);
var nbGood=0;
for(var i=0;i<(x+"").length;i++)
if(this.extractPosition(x,i)==this.extractPosition(x1,i))
nbGood++;
for(var i=0;i<(y+"").length;i++)
if(this.extractPosition(y,i)==this.extractPosition(y1,i))
nbGood++;
for(var i=0;i<(n+"").length;i++)
if(this.extractPosition(n,i)==this.extractPosition(n1,i))
nbGood++;
return nbGood;
},
signe: function(x) {
if(x<0)
return -1;
return 1;
},
getPosFromArray: function(liste,begin,length) {
var pos="";
for(var i=begin;i<begin+length;i++)
pos+=""+liste[i];
return parseInt(pos, 10);
},
toggleTableau: function() {
var tbody = this.parentNode.parentNode.parentNode.childNodes[1];
tbody.setAttribute('style', !tbody.getAttribute('style') || tbody.getAttribute('style') == '' ? 'display:none;' : '');
},
createCase: function(titre,table,width) {
if(width==null)
width="120";
var tr = this.appendTr(table, 'mh_tdpage');
var td = this.appendTdText(tr, titre, true);
td.setAttribute('class', 'mh_tdpage');
td.setAttribute('width', width);
td.setAttribute('align', 'center');
return td;
},
showXYN: function(tabXYN, signes) {
var sx = '±';
var sy = '±';
if (signes) {
sx = '+';
sy = '+';
if (signes[0] < 0) sx = '-';
if (signes[1] < 0) sy = '-';
}
return "X = " + sx + Math.abs(tabXYN[0]) + ", Y = " + sy + Math.abs(tabXYN[1]) + ", N = -" + Math.abs(tabXYN[2]);
},
is200: function(tabXYN) { // vrai si au moins une coord >= 200
if (Math.abs(tabXYN[0]) >= 200) return true;
if (Math.abs(tabXYN[1]) >= 200) return true;
if (Math.abs(tabXYN[2]) >= 200) return true;
return false;
},
gbody: null,
generateTable: function(listeSolutions, signes) {
var table = document.createElement('table');
table.setAttribute('class', 'mh_tdborder');
table.setAttribute('border', '0');
table.setAttribute('cellspacing', '1');
table.setAttribute('cellpadding', '4');
table.setAttribute('style', 'width: 400px;');
table.setAttribute('align', 'center');
if(listeSolutions.length==1)
{
var thead = document.createElement('thead');
var tr = this.appendTr(thead, 'mh_tdtitre');
var td = this.appendTdText(tr, "Position de la cachette : " + this.showXYN(listeSolutions[0], signes), true);
td.setAttribute('align', 'center');
table.appendChild(thead);
return table;
}
else if(listeSolutions.length==0)
{
var thead = document.createElement('thead');
var tr = this.appendTr(thead, 'mh_tdtitre');
var td = this.appendTdText(tr, "Aucune solution trouvée.", true);
td.setAttribute('align', 'center');
table.appendChild(thead);
return table;
}
var thead = document.createElement('thead');
var tr = this.appendTr(thead, 'mh_tdtitre');
var td = this.appendTdText(tr, "Il y a "+listeSolutions.length+" positions possibles", true);
td.setAttribute('align', 'center');
table.appendChild(thead);
this.gbody = document.createElement('tbody');
table.appendChild(this.gbody);
var bExist200 = false;
for (var i = 0; i < listeSolutions.length; i++) {
if (this.is200(listeSolutions[i]))
bExist200 = true;
else
this.createCase(this.showXYN(listeSolutions[i], signes),this.gbody,400);
}
if (bExist200) {
this.createCase("Les suivantes sont peu probables car trop en dehors du Hall",this.gbody,400);
for (var i = 0; i < listeSolutions.length; i++) {
if (this.is200(listeSolutions[i]))
this.createCase(this.showXYN(listeSolutions[i], signes),this.gbody,400);
}
}
td.addEventListener("click", this.toggleTableau, true);
td.setAttribute('onmouseover', "this.style.cursor = 'pointer'; this.className = 'mh_tdpage';");
td.setAttribute('onmouseout', "this.className = 'mh_tdtitre';");
this.gbody.setAttribute('style', 'display:none;');
return table;
},
gListeSolutions: new Array(), // tableau de tableaux des 3 coord
gEssais: new Array(), // tableau d'objets de type oEssai
oMort: null, // objet de type oEssai sans "c"
oEssai: function(x, y, n, c) { // déclaration d'objet méthode "function"
if (y == undefined) { // initialisation à partir d'une chaine séparée par ";"
let t = x.split(";");
this.x = parseInt(t[0], 10);
this.y = parseInt(t[1], 10);
this.n = parseInt(t[2], 10);
this.c = parseInt(t[3], 10);
} else {
this.x = x;
this.y = y;
this.n = n;
this.c = c;
}
this.xAbs = Math.abs(this.x);
this.yAbs = Math.abs(this.y);
this.nAbs = Math.abs(this.n);
this.xText = this.xAbs + '';
if (this.xText.length < 2) this.xText = '0' + this.xText;
this.yText = this.yAbs + '';
if (this.yText.length < 2) this.yText = '0' + this.yText;
this.nText = this.nAbs + '';
if (this.nText.length < 2) this.nText = '0' + this.nText;
this.nbMatchesOne = function (t1, t2) {
t1 = '' + parseInt(t1, 10); // virer le zéro à gauche. MH n'en tient pas compte quand il compte le nombre de match
t2 = '' + parseInt(t2, 10);
var nRet = 0;
var l1 = t1.length;
var l2 = t2.length;
for (var i = 0; i < l1 && i < l2; i++)
if (t1.substring(l1 - (i+1), l1 - i) == t2.substring(l2 - (i+1), l2 - i)) nRet++;
return nRet;
};
this.isCompatible = function(tabCoord) { // vérifie si c'est compatible avec les coord passées en argument sous forme de tableau de chaines
var nMatches = this.nbMatchesOne(this.xText, tabCoord[0]);
nMatches += this.nbMatchesOne(this.yText, tabCoord[1]);
nMatches += this.nbMatchesOne(this.nText, tabCoord[2]);
return nMatches == this.c
};
this.forPsychoChasseur = function() { // rend le bout de texte à mettre dans l'URL vers l'outil des Psycho Chasseurs
return this.xAbs + '+' + this.yAbs + '+' + this.nAbs + '+' + this.c;
};
this.nbChiffre = function() { // rend le nombre de chiffres (une coord à 1 chiffe en donne 2, le "0" et le chiffre des unités)
return this.xText.length + this.yText.length + this.nText.length;
};
this.tabOccurenceChiffre = function() { // le nombre d'occurrence de chaque chiffre (0 à 9) dans les coord
var tabRet = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0];
this.addOccurenceChiffre(tabRet, this.xText);
this.addOccurenceChiffre(tabRet, this.yText);
this.addOccurenceChiffre(tabRet, this.nText);
return tabRet;
};
this.addOccurenceChiffre = function(t, s) {
var l = s.length;
for (var i = 0; i < l; i++) {
var c = s.substring(i, i+1);
var n = parseInt(c, 10);
if (!isNaN(n)) t[n]++;
}
};
},
calculeSolution2: function() { // calcule les solutions à partir des propriétés de oMort et gEssai
var oContexte = {
// nombre de chiffres (une coord à 1 chiffe en donne 2, le "0" et le chiffre des unités) dans les coord de la mort du Capitan
nbChiffre: this.oMort.nbChiffre(),
// nombre d'occurrence de chaque chiffre (0 à 9) dans les coord de la mort du Capitan
tabOccurrenceChiffre: this.oMort.tabOccurenceChiffre(),
// Si on a plus de 6 chiffres, il y a des coordonnées à 3 chiffres, leur nombre sera calculé plus loin
nCoord3: undefined,
// On n'a encore traité aucune coordonnée
nCoordEnCours: 0, // 0:x, 1:y, 2:n
// les chaines des coord en cours de construction
tabCoord: ['', '', ''],
};
oContexte.nCoord3 = oContexte.nbChiffre - 6;
if (this.bDebug) window.console.log("CAPITAN calculeSolution2 contexte initial=" + JSON.stringify(oContexte));
// On lance le balayage récursif des possibilités
this.gListeSolutions = new Array();
this.calculeSolutionRecursifCoord(oContexte);
if (this.bDebug) window.console.log("CAPITAN calculeSolution2 résultat=" + JSON.stringify(this.gListeSolutions));
},
calculeSolutionRecursifCoord: function(oContexte) { // balayage récursif des solutions, balayage coordonnée (x, y ou n)
if (oContexte.nCoord3 > 0) { // lancer le test sur une coord à 3 chiffres
var newContexte = Object.assign({}, oContexte); // clone car on modifie le contexte
newContexte.nCoord3--;
this.calculeSolutionRecursifDigit(newContexte, 3);
}
if (oContexte.nCoord3 <= (2- oContexte.nCoordEnCours)) { // pas de test à 2 chiffres si toutes les coord restantes doivent être à 3 chiffres
this.calculeSolutionRecursifDigit(oContexte, 2);
}
},
calculeSolutionRecursifDigit: function(oContexte, nChiffreThisCoord) { // balayage récursif des solutions, balayages des suites de chiffres possibles
var thisCoord = '';
var newContexte = Object.assign({}, oContexte); // clone car on modifie le contexte
newContexte.tabCoord = oContexte.tabCoord.slice(); // clone (le clone ci-dessus est un "shallow" clone)
for (var i = 0; i <= 9; i++) { // boucle sur les chiffres possibles à cette position
if (oContexte.tabOccurrenceChiffre[i] == 0) continue; // chiffre non disponible
newContexte.tabCoord[oContexte.nCoordEnCours] = oContexte.tabCoord[oContexte.nCoordEnCours] + i;
newContexte.tabOccurrenceChiffre = oContexte.tabOccurrenceChiffre.slice(); // clone car on modifie ce tableau
newContexte.tabOccurrenceChiffre[i]--;
if (nChiffreThisCoord > 1) { // continuer à tirer des chiffres pour cette coord
this.calculeSolutionRecursifDigit(newContexte, nChiffreThisCoord-1);
continue;
}
// on a fini avec cette coord
if (oContexte.nCoordEnCours != 2) {
// continuer sur la coord suivante
newContexte.nCoordEnCours = oContexte.nCoordEnCours + 1;
this.calculeSolutionRecursifCoord(newContexte);
continue;
}
// ici, on a tiré tous les chiffres des 3 coordonnées, on teste si ces coord sont compatibles avec les essais
var isCompatible = true;
for (oEssai of this.gEssais) {
if (!oEssai.isCompatible(newContexte.tabCoord)) {
isCompatible = false;
break;
}
}
if (this.bDebug && newContexte.tabCoord[0] == '03' && newContexte.tabCoord[1] == '80') {
let sCause = '';
if (!isCompatible) {
sCause = ' bad ' + oEssai.forPsychoChasseur() + ' nMatches=';
sCause += oEssai.nbMatchesOne(oEssai.xText, newContexte.tabCoord[0]);
sCause += ' ' + oEssai.nbMatchesOne(oEssai.yText, newContexte.tabCoord[1]);
sCause += ' ' + oEssai.nbMatchesOne(oEssai.nText, newContexte.tabCoord[2]);
}
window.console.log('CAPITAN calculeSolutionRecursifDigit, teste ' + newContexte.tabCoord.join("; ") + ', isCompatible=' + isCompatible + sCause);
}
if (isCompatible) {
this.gListeSolutions.push(newContexte.tabCoord.slice()); // slice pour cloner le tableau
}
}
},
afficheInfoCarte: function(idCarte) {
var originalPosText = this.CAPITAN_getValue("capitan."+idCarte+".position");
if (originalPosText === undefined) {
let msg = "La recherche a été enregistrée. Mais vous n'avez pas encore affiché le détail de la carte "
+ idCarte + " et le « script du Capitan » ne connait pas la position de la mort du Capitan. Il ne peut pas vous en dire plus. Allez dans « EQUIPEMENT » et affichez cette carte.";
window.console.log('afficheInfoCarte_log: ' + msg);
this.afficheMsg(msg, 'red');
return;
}
var originalPos = originalPosText.split(";");
if(originalPos.length!=3) {
msg = 'Text non reconnu : ' + originalPosText;
window.console.log('afficheInfoCarte_log: ' + msg);
this.afficheMsg(msg, 'red');
return;
}
this.oMort = new this.oEssai(originalPosText);
this.gEssais = new Array();
var i = 0;
var essaiText;
while((essaiText = this.CAPITAN_getValue("capitan."+idCarte+".essai."+i)) != null)
{
//this.gEssais.push(this.CAPITAN_getValue("capitan."+idCarte+".essai."+i).split(";"));
this.gEssais.push(new this.oEssai(essaiText));
i++;
}
if(this.CAPITAN_getValue("capitan."+idCarte+".this.signe") !=null)
{
var signes = this.CAPITAN_getValue("capitan."+idCarte+".this.signe").split(";");
if (this.bDebug) window.console.log('CAPITAN afficheInfoCarte_log signes=' + JSON.stringify(signes));
}
else
{
if (this.bDebug) window.console.log('CAPITAN afficheInfoCarte_log pas de signe ' + originalPos[0] + ',' + originalPos[1] + ',' + originalPos[2]);
}
this.calculeSolution2();
return this.generateTable(this.gListeSolutions, signes);
},
getRepartitionFromCase: function(tx, ty, tn, listeSolutions) {
// Roule 15/08/2016 plus que dubitatif sur ce calcul de Size, je modifie l'algorithme
//var size = (";"+Math.abs(listeSolutions[0][0])+Math.abs(listeSolutions[0][0])+Math.abs(listeSolutions[0][0])).length-1;
var repartition = new Array();
//for(var i=0;i<size;i++)
// repartition.push(0);
for(var i=0;i<listeSolutions.length;i++)
{
var nbGood = this.comparePos(listeSolutions[i][0],listeSolutions[i][1],listeSolutions[i][2],tx,ty,tn);
for (var j = repartition.length; j <= nbGood; j++) repartition.push(0); // Roule 15/08/2016 compléter le tableau selon le besoin
repartition[nbGood]++;
}
repartition.sort(this.sortNumber);
return repartition;
},
getMeanPositionNumber: function(repartition,nbSolutions) {
var result=0;
for(var i=0;i<repartition.length;i++)
{
result+=repartition[i]*repartition[i];
}
return result/nbSolutions;
},
// Roule 08/08/2016 passage numTroll en paramètre
// Roule 15/08/2016 passage position courante en paramètre (tableau des 3 valeurs)
newRecherche: function(listeSolutions, currentPos) {
if(listeSolutions.length<=1)
return null;
// Roule 15/08/2016 plus que dubitatif sur ce calcul de Size, j'utilise repartition.length
//var size = (";"+Math.abs(listeSolutions[0][0])+Math.abs(listeSolutions[0][0])+Math.abs(listeSolutions[0][0])).length-1;
var repartition = this.getRepartitionFromCase(currentPos[0], currentPos[1], currentPos[2], listeSolutions);
var size = repartition.length;
if (this.bDebug) window.console.log('newRecherche_log: this.newRecherche_log, repartition=' + JSON.stringify(repartition));
var table = document.createElement('table');
table.setAttribute('class', 'mh_tdborder');
table.setAttribute('border', '0');
table.setAttribute('cellspacing', '1');
table.setAttribute('cellpadding', '4');
table.setAttribute('style', 'width: 400px;');
table.setAttribute('align', 'center');
var nbNotZero = 0;
for(var i=0;i<size;i++)
{
if(repartition[i]!=0)
nbNotZero++;
}
var string = "Il y a une utilité de faire une recherche en X = "+currentPos[0]+" Y = "+currentPos[1]+" N = "+currentPos[2];
if(nbNotZero<=1)
{
//
var minsolution = listeSolutions.length;
var newpos = "";
var isNotN = true;
for(var dx=-1;dx<=1;dx++)
for(var dy=-1;dy<=1;dy++)
for(var dn=0;dn!=-3;dn=(dn==0?1:dn-2))
{
if(dx==0 && dy==0 && dn==0)
continue;
var tmprepartition = this.getRepartitionFromCase(currentPos[0]+dx, currentPos[1]+dy, currentPos[2]+dn, listeSolutions);
var tmpmeanscore = this.getMeanPositionNumber(tmprepartition,listeSolutions.length);
if(((dn==0 || !isNotN) && minsolution>=tmpmeanscore) || (dn!=0 && isNotN && tmpmeanscore<=2*minsolution/3))
{
minsolution = tmpmeanscore;
repartition = tmprepartition;
newpos = "X = "+(currentPos[0]+dx)+" Y = "+(currentPos[1]+dy)+" N = "+(currentPos[2]+dn);
isNotN = (dn==0);
}
}
if(minsolution == listeSolutions.length)
{
var thead = document.createElement('thead');
var tr = this.appendTr(thead, 'mh_tdtitre');
var td = this.appendTdText(tr, "Il n'y a aucune utilité de faire une recherche en X = "+currentPos[0]+" Y = "+currentPos[1]+" N = "+currentPos[2], true);
td.setAttribute('align', 'center');
table.appendChild(thead);
return table;
}
string = "Conseil : allez faire une recherche en "+newpos;
}
var thead = document.createElement('thead');
var tr = this.appendTr(thead, 'mh_tdtitre');
var td = this.appendTdText(tr,string, true);
td.setAttribute('align', 'center');
table.appendChild(thead);
var tbody = document.createElement('tbody');
table.appendChild(tbody);
for(var i=0;i<size;i++)
{
if(i==size-1)
{
if(repartition[i]!=0)
this.createCase(Math.round(100*repartition[i]/listeSolutions.length)+"% de chance d'éliminer "+(listeSolutions.length-repartition[i])+" positions possibles",tbody,400);
}
else
{
var n=1;
while((i+n)<size && repartition[i]==repartition[i+n])
n++;
if(repartition[i]!=0)
this.createCase(Math.round(100*n*repartition[i]/listeSolutions.length)+"% de chance d'éliminer "+(listeSolutions.length-repartition[i])+" positions possibles",tbody,400);
i+=n-1;
}
}
td.addEventListener("click", this.toggleTableau, true);
td.setAttribute('onmouseover', "this.style.cursor = 'pointer'; this.className = 'mh_tdpage';");
td.setAttribute('onmouseout', "this.className = 'mh_tdtitre';");
tbody.setAttribute('style', 'display:none;');
return table;
},
// Roule 08/08/2016 récupération numéro de Troll dans la page HTML
getNumTroll: function() {
/* 07/10/2020, l'info n'est plus dans la page, on se replie sur le localStorage
var infoObjet = document.evaluate("//td[@class = 'mh_tdtitre']/text()[contains(.,'Propriétaire actuel')]",
document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
if (this.bDebug) {
if (infoObjet) {
window.console.log('CAPITAN getNumTroll: infoObjet.nodeValue=' + infoObjet.nodeValue);
} else {
window.console.log('CAPITAN getNumTroll: infoObjet est nul');
}
}
var numTroll = 0;
if (infoObjet)
{
// infoObjet.nodeValue=Propriétaire actuel : TROLL - 91305. Rouletabille
var m = infoObjet.nodeValue.match(/troll[ -]*(\d*)[. +]/i);
if (m) {
if (this.bDebug) window.console.log('CAPITAN getNumTroll: m=' + m);
if (m.length > 1) numTroll = parseInt(m[1]);
}
}
*/
numTroll = parseInt(window.localStorage['NUM_TROLL']);
if (this.bDebug) window.console.log('CAPITAN getNumTroll: numTroll=' + numTroll);
return numTroll;
},
getIDCarte: function() {
var infoObjet = document.evaluate("//h2[@class = 'titre2']/text()[contains(.,'Carte de la Cachette')]",
document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
// si échec, essayer avec l'ancienne méthode
if (!infoObjet) infoObjet = document.evaluate("//td[@class = 'titre2']/text()[contains(.,'Carte de la Cachette')]",
document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
// si échec, essayer avec l'ancienne méthode
if (!infoObjet) infoObjet = document.evaluate("//div[@class = 'titre2']/text()[contains(.,'Carte de la Cachette')]",
document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
var idCarte = 0;
if(infoObjet)
{
idCarte = parseInt(infoObjet.nodeValue.replace('[', ''));
}
return idCarte;
},
analyseObjectCallback: function() { // appelle analyseObject dans le contexte de l'objet
oCAPITAN_MH_ROULE.analyseObject();
},
analyseObject: function() {
var eSpacer = document.getElementById('spacerMZCapitan');
if (eSpacer) return; // déjà affiché
var numTroll = this.getNumTroll(); // Roule 08/08/2016 récupération numéro de Troll dans la page HTML
if( !numTroll) {
window.console.log('CAPITAN analyseObject: *** erreur *** pas de numéro de Trõll');
return;
}
var idCarte = this.getIDCarte();
if (this.bDebug && idCarte == 11987020) { // test Roule
var originalPos = '-101;-8;-73';
this.CAPITAN_setValue("capitan."+idCarte+".position", originalPos)
} else if (idCarte > 0) {
var originalPos = this.CAPITAN_getValue("capitan."+idCarte+".position");
} else {
var parentElt = document.body;
var modalElt = document.evaluate("//div[@class = 'modal']",
document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
if (modalElt && !modalElt.errorIDDone) {
modalElt.appendChild(document.createTextNode("Erreur à la récupération de l'ID de la carte"));
modalElt.errorIDDone = true;
}
return;
}
if (this.bDebug) window.console.log('CAPITAN analyseObject: this.analyseObject numTroll=' + numTroll + ', idCarte=' + idCarte + ', originalPos=' + originalPos);
if(!originalPos || originalPos == null)
{
var infoPos = document.evaluate("//td/text()[contains(.,'ai été tué en')]",
document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
if(!infoPos) {
if (this.bDebug) window.console.log('CAPITAN analyseObject: numTroll=' + numTroll + ', idCarte=' + idCarte + ', impossible de trouver le texte de la mort du Capitan');
return;
}
var listePos = infoPos.nodeValue.split("=");
if(listePos.length!=4) {
if (this.bDebug) window.console.log('CAPITAN analyseObject: numTroll=' + numTroll + ', idCarte=' + idCarte + ', impossible de trouver les coord. de la mort du Capitan ' + infoPos.nodeValue);
return;
}
var x = parseInt(listePos[1]);
var y = parseInt(listePos[2]);
var n = parseInt(listePos[3]);
if (this.bDebug) window.console.log('CAPITAN analyseObject: setValue("capitan.'+idCarte+'.position, '+x+";"+y+";"+n);
this.CAPITAN_setValue("capitan."+idCarte+".position",x+";"+y+";"+n);
}
// Roule 23/11/2016 travail dans le body (ancienne version, fenêtre indépendante) ou dans la div modale (nouvelle version en "popup")
var parentElt = document.body;
var modalElt = document.evaluate("//div[@class = 'modal']",
document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
if (modalElt) parentElt = modalElt;
// bloc liste de solutions
var table = this.afficheInfoCarte(idCarte);
if (table) {
var p = document.createElement('p');
p.id = 'spacerMZCapitan';
//window.console.log('analyseObject_log: table=' + JSON.stringify(table));
p.appendChild(table);
parentElt.appendChild(p);
}
// position courante du Troll
// Roule 08/08/2016 utilisation de localStorage car c'est là que tout_MZ stocke les coord
var curPos = [];
curPos[0] = parseInt(window.localStorage[numTroll+".position.X"]);
curPos[1] = parseInt(window.localStorage[numTroll+".position.Y"]);
curPos[2] = parseInt(window.localStorage[numTroll+".position.N"]);
if (this.bDebug) window.console.log('CAPITAN analyseObject: position du troll récupérée en localStorage=' + JSON.stringify(curPos));
// bloc utilité de faire une recherche sur la position courante
table = this.newRecherche(this.gListeSolutions, curPos);
if(table!=null)
{
var p = document.createElement('p');
p.appendChild(table);
parentElt.appendChild(p);
// bloc ajout de nouvelle recherche
this.createNewRecherche(parentElt);
}
// Roule 08/08/2016 bloc des recherches mémorisées
if(this.gEssais)
{
table = this.prevRecherche(idCarte);
var p = document.createElement('p');
p.id = 'MZ_capitan_p_liste_memo';
p.appendChild(table);
parentElt.appendChild(p);
// Roule 08/08/2016 bloc préparant les infos pour l'outil Mamoune (Psyko-Chasseurs)
table = this.blocMamoune(idCarte, curPos);
if(table!=null)
{
p = document.createElement('p');
p.appendChild(table);
parentElt.appendChild(p);
}
}
// Roule 25/08/2016 récupération des anciennes recherches (préférences)
table = this.PrepareRecupFromPreferences();
if(table!=null)
{
p = document.createElement('p');
p.appendChild(table);
parentElt.appendChild(p);
}
// Roule 24/08/2016 récupération des anciennes recherches (localStorage)
table = this.PrepareRecupFromLocalStorage(idCarte);
if(table!=null)
{
p = document.createElement('p');
p.appendChild(table);
parentElt.appendChild(p);
}
},
afficheMsg: function(msg, color) {
let p = document.createElement('p');
if (color) p.style.color = color;
p.appendChild(document.createTextNode('MZ Capitan : ' + msg));
let contMsg = document.getElementById('msgDiv');
if (!contMsg) {
contMsg = document.evaluate("//div[@class = 'modal']",
document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue;
}
if (!contMsg) contMsg = document.body;
contMsg.appendChild(p);
},
// Roule 08/08/2016
blocMamoune: function(idCarte, currentPos) {
var table = document.createElement('table');
table.setAttribute('class', 'mh_tdborder');
table.setAttribute('border', '0');
table.setAttribute('cellspacing', '1');
table.setAttribute('cellpadding', '4');
table.setAttribute('style', 'width: 400px;');
table.setAttribute('align', 'center');
var thead = document.createElement('thead');
var tr = this.appendTr(thead, 'mh_tdtitre');
var td = this.appendTdText(tr, "Outil du cercle des Psyko-Chasseurs", true);
td.setAttribute('align', 'center');
//td.setAttribute('title', 'sélectionnez (triple-clic), copiez et collez dans l\'outil des Psyko-Chasseurs');
table.appendChild(thead);
var tbody = document.createElement('tbody');
table.appendChild(tbody);
// http://mountyhall.dispas.net/dynamic/outils_capitan.php?x=101&y=8&n=73&t=3+77+30+1%0D%0A37+57+48+0%0D%0A33+32+29+1%0D%0A87+20+74+2%0D%0A17+56+63+0%0D%0A22+89+78+2&voir=1¢=100&enter=Go#
var tabtxt = new Array();
var currentPosAlreadyDone = false;
for (var i = 0; i < this.gEssais.length; i++) {
tabtxt.push(this.gEssais[i].forPsychoChasseur());
if (this.gEssais[i].x == currentPos[0] && this.gEssais[i].y == currentPos[1] && this.gEssais[i].n == currentPos[2]) currentPosAlreadyDone = true;
//tabtxt.push(this.gEssais[i].join('+'));
//if (this.gEssais[i][0] == currentPos[0] && this.gEssais[i][1] == currentPos[1] && this.gEssais[i][2] == currentPos[2]) currentPosAlreadyDone = true;
}
if (!currentPosAlreadyDone) tabtxt.push(currentPos.join('+') + '+%3F'); // spécial pour demander à Mamoune ce qu'elle pense d'un essai à la position courante
var tr2 = this.appendTr(tbody, 'mh_tdpage');
var td2 = this.appendTd(tr2);
var originalPos = this.CAPITAN_getValue("capitan."+idCarte+".position").split(";");
if(originalPos.length!=3) {
td2.this.appendText('Erreur\u00A0: impossible de retrouver les coordonnées de la mort');
} else {
var a = document.createElement('a');
this.appendText(a, 'Cliquer ici pour savoir ce qu\'en pensent les Psyko-Chasseurs');
a.setAttribute('href', 'http://mountyhall.dispas.net/dynamic/outils_capitan.php?x=' + originalPos[0] + '&y=' + originalPos[1] + '&n=' + originalPos[2] + '&t=' + tabtxt.join('%0D%0A') + '&voir=1¢=100');
a.setAttribute('target', 'psykochasseurs');
td2.appendChild(a);
}
td.setAttribute('class', 'mh_tdpage');
//td.setAttribute('width', width);
td.setAttribute('align', 'center');
td.addEventListener("click", this.toggleTableau, true);
td.setAttribute('onmouseover', "this.style.cursor = 'pointer'; this.className = 'mh_tdpage';");
td.setAttribute('onmouseout', "this.className = 'mh_tdtitre';");
td.setAttribute('colspan', 2);
tbody.setAttribute('style', 'display:none;');
return table;
},
prevRecherche: function(idCarte) {
var table = document.createElement('table');
table.setAttribute('class', 'mh_tdborder');
table.setAttribute('border', '0');
table.setAttribute('cellspacing', '1');
table.setAttribute('cellpadding', '4');
table.setAttribute('style', 'width: 400px;');
table.setAttribute('align', 'center');
var thead = document.createElement('thead');
var tr = this.appendTr(thead, 'mh_tdtitre');
var td = this.appendTdText(tr, "Vous avez mémorisé " + this.gEssais.length + " essai" + (this.gEssais.length > 1 ? "s" : ""), true);
td.setAttribute('align', 'center');
table.appendChild(thead);
var tbody = document.createElement('tbody');
tbody.id = 'MZ_capitan_tbody_liste_memo';
table.appendChild(tbody);
for (var i = 0; i < this.gEssais.length; i++) {
var td2 = this.createCase("X = " + this.gEssais[i].x + ", Y = "+this.gEssais[i].y +", N = " + this.gEssais[i].n + " => " + this.gEssais[i].c,tbody,400);
var td3 = this.appendTd(td2.parentNode);
var bt = this.appendButton(td3, "Supprimer", this.delRecherche);
bt.idEssai = i;
bt.idCarte = idCarte;
td3.setAttribute('class', 'mh_tdpage');
td3.setAttribute('width', 200);
td3.setAttribute('align', 'center');
}
td.addEventListener("click", this.toggleTableau, true);
td.setAttribute('onmouseover', "this.style.cursor = 'pointer'; this.className = 'mh_tdpage';");
td.setAttribute('onmouseout', "this.className = 'mh_tdtitre';");
td.setAttribute('colspan', 2);
tbody.setAttribute('style', 'display:none;');
return table;
},
delRecherche: function(e) { // ATTENTION, cette fonction ne tourne pas dans le contexte de l'objet ("this" pointe vers le bouton)
let idEssaiDel = e.target.idEssai;
let idCarte = e.target.idCarte;
if (oCAPITAN_MH_ROULE.bDebug) window.console.log('CAPITAN delRecherche: idEssaiDel=' + idEssaiDel + ', idCarte=' + idCarte + ', oCAPITAN_MH_ROULE.gEssais.length=' + oCAPITAN_MH_ROULE.gEssais.length);
oCAPITAN_MH_ROULE.gEssais.splice(idEssaiDel, 1);
if (oCAPITAN_MH_ROULE.bDebug) window.console.log('delRecherche_log ' + JSON.stringify(oCAPITAN_MH_ROULE.gEssais));
let lg = oCAPITAN_MH_ROULE.gEssais.length;
for (let i = 0; i < lg; i++) {
let clef = "capitan." + idCarte + ".essai." + i;
let oEssai = oCAPITAN_MH_ROULE.gEssais[i];
let v = oEssai.x + ';' + oEssai.y + ';' + oEssai.n + ';' + oEssai.c;
if (oCAPITAN_MH_ROULE.bDebug) window.console.log('CAPITAN delRecherche_log: set ' + clef + '=' + v);
oCAPITAN_MH_ROULE.CAPITAN_setValue(clef, v);
}
for (let i = 0; i < 10; i++) { // pour être sûr, on supprime les 10 suivantes
let clef = "capitan." + idCarte + ".essai." + (i + lg);
if (oCAPITAN_MH_ROULE.bDebug) window.console.log('CAPITAN delRecherche_log: remove ' + clef);
oCAPITAN_MH_ROULE.CAPITAN_deleteValue(clef);
}
let eP = document.getElementById('MZ_capitan_p_liste_memo');
while (eP.lastChild) eP.removeChild(eP.lastChild);
let eTable = oCAPITAN_MH_ROULE.prevRecherche(idCarte);
eP.appendChild(eTable);
let tbody = document.getElementById('MZ_capitan_tbody_liste_memo');
tbody.style.display = ''; // show
},
createNewRecherche: function(parentElt) {
p = document.createElement('p');
var table = document.createElement('table');
table.setAttribute('class', 'mh_tdborder');
table.setAttribute('border', '0');
table.setAttribute('cellspacing', '1');
table.setAttribute('cellpadding', '4');
table.setAttribute('style', 'width: 400px;');
table.setAttribute('align', 'center');
var tbody = document.createElement('tbody');
table.appendChild(tbody);
var td = this.createCase("Rajouter manuellement une recherche :",tbody);
td.appendChild(document.createElement('br'));
td.appendChild(document.createTextNode("X = "));
this.addInput(td, "rX");
td.appendChild(document.createTextNode(" Y = "));
this.addInput(td, "rY");
td.appendChild(document.createTextNode(" N = "));
this.addInput(td, "rN");
td.appendChild(document.createElement('br'));
td.appendChild(document.createTextNode("Nombre de chiffres bien placés : "));
this.addInput(td, "rBP",1);
td.appendChild(document.createElement('br'));
var button=this.appendButton(td, "Ajouter", this.addRecherche);
p.appendChild(table);
parentElt.appendChild(p);
},
// Roule 24/08/2016 récupération des anciennes recherches (localStorage)
PrepareRecupFromLocalStorage: function(idCarte) {
var table = document.createElement('table');
table.setAttribute('class', 'mh_tdborder');
table.setAttribute('border', '0');
table.setAttribute('cellspacing', '1');
table.setAttribute('cellpadding', '4');
table.setAttribute('style', 'width: 400px;');
table.setAttribute('align', 'center');
var thead = document.createElement('thead');
var tr = this.appendTr(thead, 'mh_tdtitre');
var td = this.appendTdText(tr, "Récupération des anciens essais V1.1", true);
td.setAttribute('align', 'center');
td.title = "C'est ici pour tenter de récupérer les essais faits avec le version 1.1 du script";
table.appendChild(thead);
var tbody = document.createElement('tbody');
tbody.idCarte = idCarte;
table.appendChild(tbody);
td.addEventListener("click", this.recupFromLocalStorage, true);
td.setAttribute('onmouseover', "this.style.cursor = 'pointer'; this.className = 'mh_tdpage';");
td.setAttribute('onmouseout', "this.className = 'mh_tdtitre';");
td.setAttribute('colspan', 2);
tbody.setAttribute('style', 'display:none;');
return table;
},
// Roule 24/08/2016 récupération des anciennes recherches (localStorage)
recupFromLocalStorage: function() {
var tbody = this.parentNode.parentNode.parentNode.childNodes[1];
if (tbody.RecupVisible) return; // ne pas populer 2 fois
var idCarte = parseInt(tbody.idCarte);
tbody.setAttribute('style', !tbody.getAttribute('style') || tbody.getAttribute('style') == '' ? 'display:none;' : '');
// entrée d'un jeu de test
// window.localStorage.setItem('91305.capitan.8600686.essai.1', '1;2;3;4');
// window.localStorage.removeItem('91305.capitan.8600686.essai.2');
// window.localStorage.removeItem('91305.capitan.8600686.essai.3');