-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEngine.cs
4067 lines (3609 loc) · 142 KB
/
Engine.cs
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
namespace Sachy_Obrazky
{
using System;
using System.IO;
using System.Runtime.CompilerServices;
using System.Security.Cryptography;
using System.Collections.Generic;
using System.Collections.Concurrent;
using System.Diagnostics;
using System.Linq;
using System.Collections;
using System.Runtime.InteropServices;
using System.Text;
public partial class Engine
{
public const int
Rank_1 = 7,
Rank_2 = 6,
Rank_3 = 5,
Rank_4 = 4,
Rank_5 = 3,
Rank_6 = 2,
Rank_7 = 1,
Rank_8 = 0,
File_A = 0,
File_B = 1,
File_C = 2,
File_D = 3,
File_E = 4,
File_F = 5,
File_G = 6,
File_H = 7;
public const byte
pawn = 1,
knight = 2,
bishop = 3,
rook = 4,
queen = 5,
king = 6;
public const uint emptymove = ((uint)1 << 27) - 1;
public static Dictionary<char, byte> Types = new Dictionary<char, byte>
{
{'K',0 },{'P',1},{'N',2},{'B',3},{'R',4},{'Q',5 },
{'k',6 },{'p',7},{'n',8},{'b',9},{'r',10},{'q',11 },
};
public static Dictionary<char, short> Values_Char = new Dictionary<char, short>
{
{'K',short.MaxValue },{'P',100},{'N',320},{'B',330},{'R',500},{'Q',900 },
{'k',short.MaxValue },{'p',100},{'n',320},{'b',330},{'r',500},{'q',900 },
};
public static readonly int[] Values = new int[]
{
short.MaxValue, 100,320,330,500,900,
short.MaxValue, 100,320,330,500,900,
};
public static Random los = new Random();
public static readonly int[][] Posit_Values = new int[][]
{
//empty(for testing)
/*
new int[]
{
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
};
*/
//king early/mid
new int[]
{
-30,-40,-40,-50,-50,-40,-40,-30,
-30,-40,-40,-50,-50,-40,-40,-30,
-30,-40,-40,-50,-50,-40,-40,-30,
-30,-40,-40,-50,-50,-40,-40,-30,
-20,-30,-30,-40,-40,-30,-30,-20,
-10,-20,-20,-20,-20,-20,-20,-10,
20, 20, 0, 0, 0, 0, 20, 20,
20, 30, 10, 0, 0, 10, 30, 20
},
//pawn
new int[]
{
0, 0, 0, 0, 0, 0, 0, 0,
50, 50, 50, 50, 50, 50, 50, 50,
10, 10, 20, 30, 30, 20, 10, 10,
0, 5, 10, 15, 15, 10, 5, 0,
-10, 0, 5, 5, 5, 5, 0,-10,
-5, -5,-10, 0, 0,-10, -5, -5,
0, 5, 10, 0, 0, 10, 5, 0,
0, 0, 0, 0, 0, 0, 0, 0
},
//knight
new int[]
{
-25,-20,-15,-15,-15,-15,-20,-25,
-20, -5, 0, 0, 0, 0, -5,-20,
-15, 0, 5, 5, 5, 5, 0,-15,
-15, 5, 10, 15, 15, 10, 5,-15,
-15, 0, 10, 15, 15, 10, 0,-15,
-15, 0, 5, 5, 5, 5, 0,-15,
-20, -5, 0, 5, 5, 0, -5,-20,
-25,-20,-15,-15,-15,-15,-20,-25,
},
/*new int[]
{
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
},*/
/*new int[]
{
-10, -5, -5, -5, -5, -5, -5,-10,
-5, -5, 0, 0, 0, 0, -5, -5,
-5, 0, 5, 7, 7, 5, 0, -5,
-5, 5, 7, 10, 10, 7, 5, -5,
-5, 0, 7, 10, 10, 7, 0, -5,
-5, 0, 5, 7, 7, 5, 0, -5,
-5, -5, 0, 0, 0, 0, -5, -5,
-10, -20, -5, -5, -5, -5, -20,-10,
},*/
//bishop
new int[]
{
-20,-10,-10,-10,-10,-10,-10,-20,
-10, 0, 0, 0, 0, 0, 0,-10,
-10, 0, 5, 10, 10, 5, 0,-10,
-10, 5, 5, 10, 10, 5, 5,-10,
-10, 0, 15, 10, 10, 15, 0,-10,
-10, 15, 10, 10, 10, 10, 15,-10,
-10, 15, 5, 0, 0, 5, 15,-10,
-20,-10,-10,-10,-10,-10,-10,-20,
},
//rook
new int[]
{
0, 0, 0, 0, 0, 0, 0, 0,
5, 10, 10, 10, 10, 10, 10, 5,
-5, 0, 0, 0, 0, 0, 0, -5,
-5, 0, 0, 0, 0, 0, 0, -5,
-5, 0, 0, 0, 0, 0, 0, -5,
-5, 0, 0, 0, 0, 0, 0, -5,
-5, 0, 0, 0, 0, 0, 0, -5,
0, 0, 0, 0, 0, 0, 0, 0,
},
//queen
new int[]
{
-20,-10,-10, -5, -5,-10,-10,-20,
-10, 0, 0, 0, 0, 0, 0,-10,
-10, 0, 5, 5, 5, 5, 0,-10,
-5, 0, 5, 5, 5, 5, 0, -5,
0, 0, 5, 5, 5, 5, 0, 0,
-10, 5, 5, 5, 5, 5, 5,-10,
-10, 0, 5, 0, 0, 5, 0,-10,
-20,-10,-10, -5, -5,-10,-10,-20
},
//king late
new int[]
{
-50,-40,-30,-20,-20,-30,-40,-50,
-30,-20,-10, 0, 0,-10,-20,-30,
-30,-10, 20, 30, 30, 20,-10,-30,
-30,-10, 30, 40, 40, 30,-10,-30,
-30,-10, 30, 40, 40, 30,-10,-30,
-30,-10, 20, 30, 30, 20,-10,-30,
-30,-30, 0, 0, 0, 0,-30,-30,
-50,-30,-30,-30,-30,-30,-30,-50
},
};
public static readonly int[] PassPawnBuff = new int[64]
{
0, 0, 0, 0, 0, 0, 0, 0,
0, 15, 15, 15, 15, 15, 15, 0, //7th rank already considered in default, but this extra is for low material as well
15, 30, 30, 30, 30, 30, 30, 15,
10, 20, 20, 20, 20, 20, 20, 10,
10, 20, 20, 20, 20, 20, 20, 10,
5, 10, 10, 10, 10, 10, 10, 5,
5, 15, 15, 15, 15, 15, 15, 5,
0, 0, 0, 0, 0, 0, 0, 0
};
const ulong blacksquares = 0xAA55AA55AA55AA55;
const ulong whitesquares = ~0xAA55AA55AA55AA55;
public static readonly uint[] Priorities = new uint[]
{
1,6,5,4,3,2,
1,6,5,4,3,2,
};
public static readonly int[] Indices = new int[64]
{
0,1,2,3,4,5,6,7,
16,17,18,19,20,21,22,23,
32,33,34,35,36,37,38,39,
48,49,50,51,52,53,54,55,
64,65, 66,67,68,69,70,71,
80, 81, 82,83,84,85,86, 87,
96, 97,98, 99,100,101,102,103,
112,113, 114, 115, 116,117, 118,119
};
public static int[] Deinds = new int[128]
{
0, 1, 2, 3, 4, 5, 6, 7, -1, -1, -1, -1, -1, -1, -1, -1,
8, 9, 10, 11, 12, 13, 14, 15,-1, -1, -1, -1, -1, -1, -1, -1,
16, 17, 18, 19, 20, 21, 22, 23, -1, -1, -1, -1, -1, -1, -1, -1,
24, 25, 26, 27, 28, 29, 30, 31, -1, -1, -1, -1, -1, -1, -1, -1,
32, 33, 34, 35, 36, 37, 38, 39, -1, -1, -1, -1, -1, -1, -1, -1,
40, 41, 42, 43, 44, 45, 46, 47, -1, -1, -1, -1, -1, -1, -1, -1,
48, 49, 50, 51, 52, 53, 54, 55, -1, -1, -1, -1, -1, -1, -1, -1,
56, 57, 58, 59, 60, 61, 62, 63, -1, -1, -1, -1, -1, -1, -1, -1,
};
static readonly int[] Directions_King = new int[8] { -17, -16, -15, -1, +1, 15, 16, 17 };
static readonly int[] Directions_Knight = new int[8] { -33, -31, -18, -14, +14, 18, 31, 33 };
static readonly int[] Directions_Rook = new int[4] { -16, -1, 1, 16 };
static readonly int[] Directions_Bishop = new int[4] { -17, -15, 15, 17 };
static readonly int[] Directions_Queen = new int[8] { -17, -16, -15, -1, +1, 15, 16, 17 };
static readonly int[] Directions_Pawn_White = new int[4] { -16, -32, -15, -17 };
static readonly int[] Directions_Pawn_Black = new int[4] { 16, 32, 15, 17 };
const int //bitboard indices
BB_K = 0,
BB_P = 1,
BB_N = 2,
BB_B = 3,
BB_R = 4,
BB_Q = 5,
BB_k = 6,
BB_p = 7,
BB_n = 8,
BB_b = 9,
BB_r = 10,
BB_q = 11;
public static readonly char[] pieces = new char[12] { 'K', 'P', 'N', 'B', 'R', 'Q', 'k', 'p', 'n', 'b', 'r', 'q' };
static ulong Wmask; //1 bit for every white piece on given square
static ulong Bmask; //same, for black
static ulong Block; //union
public static int Position; // 1 repetition + blank moves, 2 moves, 3 moves+ep, 4 castling + color
public int GetPos()
{
return Position;
}
static int Wking;
static int Bking;
static ulong CurrentHash;
public static Dictionary<ulong, Hashentry>[] TranspoTable;
public string Notation { get; set; } = "";
const int
hash_side = 772,
hash_castling = 768;
public string BBsToPosition()
{
StringBuilder result = new StringBuilder();
for(int i = 0; i<12; ++i)
{
var bb = BitBoards[i];
if(bb > 0)
{
ulong idx = 1;
for(int j = 0; j<64;++j)
{
if((bb&idx) != 0)
{
result.Append($"{pieces[i]}{Squares[j]} ");
}
idx <<= 1;
}
}
}
return result.ToString();
}
static int HammingWeight(ulong x)
{
//returns amount of set bits in given ulong
x = (x & 0x5555555555555555) + ((x >> 1) & 0x5555555555555555); //put count of each 2^n bits into those 2^n bits
x = (x & 0x3333333333333333) + ((x >> 2) & 0x3333333333333333);
x = (x & 0x0f0f0f0f0f0f0f0f) + ((x >> 4) & 0x0f0f0f0f0f0f0f0f);
x = (x & 0x00ff00ff00ff00ff) + ((x >> 8) & 0x00ff00ff00ff00ff);
x = (x & 0x0000ffff0000ffff) + ((x >> 16) & 0x0000ffff0000ffff);
x = (x & 0x00000000ffffffff) + ((x >> 32) & 0x00000000ffffffff);
return (int)x;
}
//public static ulong[] Bitboards = new ulong[12];
static bool ArraysMatching(ref ulong[]arr1,ref ulong[] arr2)
{
if(arr1 is null)
{
return (arr2 is null);
}
else if (arr1.Length != arr2.Length)
return false;
else
{
for(int i = 0; i < arr1.Length; ++i)
{
if (arr1[i] != arr2[i])
return false;
}
}
return true;
}
static ulong Land_Moves(int[] Directions, int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
//generates moves in every direction, and then zeroes the one which would land on piece of the same color
ulong posmov = 0;
int p;
int di;
foreach (int i in Directions)
{
p = Indices[index];
p += i;
if ((p&0x88)!=0) //out of bounds
continue;
di = Deinds[p];
posmov |= (((ulong)1) << di);
}
posmov &= white ? (~WhiteBoard) : (~BlackBoard);
return (posmov);
}
/*static ulong Land_Moves_Premade(ulong[] table, int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{ //does not iterate through directions, just directly gets the possible moves from table (64 elements)
ulong posmov = table[index];
if (white)
posmov &= (~WhiteBoard);
else
posmov &= (~BlackBoard);
return posmov;
}*/
static void Remask()
{
Wmask = BitBoards[0] | BitBoards[1] | BitBoards[2] | BitBoards[3] | BitBoards[4] | BitBoards[5];
Bmask = BitBoards[6] | BitBoards[7] | BitBoards[8] | BitBoards[9] | BitBoards[10] | BitBoards[11];
Block = Wmask | Bmask;
}
public static ulong Ray_Moves(int[] Directions, int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong posmov = 0;
int p;
int di;
//using 0x88 indices for this generation
foreach (int i in Directions)
{
p = Indices[index];
while (true) //moves into one direction until it falls off or crashes
{
p += i;
if ((p&0x88)!=0) //out of bounds
break;
di = Deinds[p];
posmov |= (((ulong)1) << di);
if (Bit(Block, di)) //if blocked, stop in this direction
break;
}
}
posmov &= white ? (~WhiteBoard) : (~BlackBoard);
return (posmov);
}
//only captures
static ulong Land_Captures(int[] Directions, int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
//move generation is completely the same, except it ignores empty squares
ulong posmov = 0;
int p;
int di;
foreach (int i in Directions)
{
p = Indices[index];
p += i;
if ((p&0x88)!=0)
continue;
di = Deinds[p];
posmov |= (((ulong)1) << di);
}
ulong w = ~WhiteBoard;
ulong b = ~BlackBoard;
if (white)
{
posmov &= w;
posmov &= BlackBoard;
}
else
{
posmov &= b;
posmov &= WhiteBoard;
}
return (posmov);
}
static ulong Land_Captures_Premade(ulong[] table, int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{ //does not iterate through directions, just directly gets the possible moves from table (64 elements)
ulong posmov = table[index];
if (white)
{
posmov &= (~WhiteBoard);
posmov &= (BlackBoard);
}
else
{
posmov &= (~BlackBoard);
posmov &= (WhiteBoard);
}
return posmov;
}
public static ulong Ray_Captures(int[] Directions, int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong poscaps = 0;
int p;
int di;
//using 0x88 indices for this generation
foreach (int i in Directions)
{
p = Indices[index];
while (true) //moves into one direction until it falls off or crashes
{
p += i;
if ((p&0x88)!=0)
break;
di = Deinds[p];
if (Bit(Block, di)) //if blocked, stop in this direction
{
//and add it as capture, regardless of color
poscaps |= (((ulong)1) << di);
break;
}
}
}
//now ignore pieces of the same color
if (white)
poscaps &= (~WhiteBoard);
else
poscaps &= (~BlackBoard);
return (poscaps);
}
//KING
static ulong King_Moves(int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong posmov1 = Land_Moves(Directions_King, index, WhiteBoard, BlackBoard, Block, white);
//ulong posmov1 = Land_Moves_Premade(AllKingMoves, index, WhiteBoard, BlackBoard, Block, white);
return posmov1;
}
static ulong FreeKingMoves(int index)
{
return King_Moves(index, 0, 0, 0, true);
}
//public static ulong[] AllKingMoves = new ulong[64];
static ulong[] AllKingMoves = initKingMoves(); //moves on empty board
static ulong[] initKingMoves()
{
//efficient generation by for loop
int n = 64;
var result = new ulong[n];
for (int i = 0; i < n; ++i)
result[i] = FreeKingMoves(i);
return result;
}
public static ulong MovesKing(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
return white ? (AllKingMoves[index] & (~WhiteMask)) : (AllKingMoves[index] & (~BlackMask));
}
//KNIGHT
static ulong Knight_Moves(int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong posmov = Land_Moves(Directions_Knight, index, WhiteBoard, BlackBoard, Block, white);
return posmov;
}
static ulong FreeKnightMoves(int index)
{
return Knight_Moves(index, 0, 0, 0, true);
}
//public static ulong[] AllKnightMoves = new ulong[64];
static ulong[] AllKnightMoves = initKnightMoves(); //moves on empty board
static ulong[] initKnightMoves()
{
//efficient generation by for loop
int n = 64;
var result = new ulong[n];
for (int i = 0; i < n; ++i)
result[i] = FreeKnightMoves(i);
return result;
}
public static ulong MovesKnight(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
return white ? (AllKnightMoves[index] & (~WhiteMask)) : (AllKnightMoves[index] & (~BlackMask));
}
//ROOK
public static ulong Rook_Moves(int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong posmov = Ray_Moves(Directions_Rook, index, WhiteBoard, BlackBoard, Block, white);
return (posmov);
}
static ulong FreeRookMoves(int index)
{
return Rook_Moves(index, 0, 0, 0, true);
}
//public static ulong[] AllRookMoves = new ulong[64];
static ulong[] AllRookMoves = initRookMoves();
static ulong[] initRookMoves()
{
int n = 64;
var result = new ulong[n];
for (int i = 0; i < n; ++i)
result[i] = FreeRookMoves(i);
return result;
}
public static ulong MovesRook(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
return Rook_Moves(index, WhiteMask, BlackMask, Block, white);
}
//BISHOP
public static ulong Bishop_Moves(int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong posmov = Ray_Moves(Directions_Bishop, index, WhiteBoard, BlackBoard, Block, white);
return (posmov);
}
static ulong FreeBishopMoves(int index)
{
return Bishop_Moves(index, 0, 0, 0, true);
}
static ulong[] AllBishopMoves = initBishopMoves();
static ulong[] initBishopMoves()
{
int n = 64;
var result = new ulong[n];
for (int i = 0; i < n; ++i)
result[i] = FreeBishopMoves(i);
return result;
}
public static ulong MovesBishop(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
return Bishop_Moves(index, WhiteMask, BlackMask, Block, white);
}
//QUEEN
public static ulong Queen_Moves(int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong posmov = Ray_Moves(Directions_Queen, index, WhiteBoard, BlackBoard, Block, white);
return (posmov);
}
static ulong FreeQueenMoves(int index)
{
return Queen_Moves(index, 0, 0, 0, true);
}
static ulong[] AllQueenMoves = initQueenMoves();
static ulong[] initQueenMoves()
{
int n = 64;
var result = new ulong[n];
for (int i = 0; i < n; ++i)
result[i] = FreeQueenMoves(i);
return result;
}
public static ulong MovesQueen(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
return Queen_Moves(index, WhiteMask, BlackMask, Block, white);
}
//and now for captures
//KING
public static ulong CapturesKing(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
ulong caps = Land_Captures_Premade(AllKingMoves, index, WhiteMask, BlackMask, Block, white);
return caps;
}
//KNIGHT
public static ulong CapturesKnight(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
ulong caps = Land_Captures_Premade(AllKnightMoves, index, WhiteMask, BlackMask, Block, white);
return caps;
}
//ROOK
public static ulong Rook_Captures(int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong posmov = Ray_Captures(Directions_Rook, index, WhiteBoard, BlackBoard, Block, white);
return (posmov);
}
static ulong FreeRookCaptures(int index)
{
return Rook_Captures(index, 0, 0, 0, true);
}
//public static ulong[] AllRookCaptures = new ulong[64];
static ulong[] AllRookCaptures = initRookCaptures();
static ulong[] initRookCaptures()
{
int n = 64;
var result = new ulong[n];
for (int i = 0; i < n; ++i)
result[i] = FreeRookCaptures(i);
return result;
}
public static ulong CapturesRook(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
return Rook_Captures(index, WhiteMask, BlackMask, Block, white);
}
//BISHOP
public static ulong Bishop_Captures(int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong posmov = Ray_Captures(Directions_Bishop, index, WhiteBoard, BlackBoard, Block, white);
return (posmov);
}
static ulong FreeBishopCaptures(int index)
{
return Bishop_Captures(index, 0, 0, 0, true);
}
static ulong[] AllBishopCaptures = initBishopCaptures();
static ulong[] initBishopCaptures()
{
int n = 64;
var result = new ulong[n];
for (int i = 0; i < n; ++i)
result[i] = FreeBishopCaptures(i);
return result;
}
public static ulong CapturesBishop(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
return Bishop_Captures(index, WhiteMask, BlackMask, Block, white);
}
//QUEEN
public static ulong Queen_Captures(int index, ulong WhiteBoard, ulong BlackBoard, ulong Block, bool white)
{
ulong posmov = Ray_Captures(Directions_Queen, index, WhiteBoard, BlackBoard, Block, white);
return (posmov);
}
static ulong FreeQueenCaptures(int index)
{
return Queen_Captures(index, 0, 0, 0, true);
}
static ulong[] AllQueenCaptures = initQueenCaptures();
static ulong[] initQueenCaptures()
{
int n = 64;
var result = new ulong[n];
for (int i = 0; i < n; ++i)
result[i] = FreeQueenCaptures(i);
return result;
}
public static ulong CapturesQueen(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
return Queen_Captures(index, WhiteMask, BlackMask, Block, white);
}
//PAWN
public static ulong MovesPawn(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white)
{
int idx;
int sq;
int tar;
ulong mo = 0;
if (white)
{
idx = Indices[index];
tar = idx + Directions_Pawn_White[0];
if ((tar & 0x88) == 0) //not out of the edge
{
sq = Deinds[tar];
if (!Bit(Block, sq)) //not blocked
{
mo |= (ulong)1 << sq;
if (48 <= index && index < 56) //double
{
tar = idx + Directions_Pawn_White[1];
if ((tar & 0x88) == 0)
{
sq = Deinds[tar];
if (!Bit(Block, sq))
mo |= (ulong)1 << sq;
}
}
}
}
for (int i = 2; i <= 3; ++i)
{
tar = idx + Directions_Pawn_White[i];
if ((tar & 0x88) != 0)
continue;
sq = Deinds[tar];
if (Bit(BlackMask, sq)) //if piece is for taking
mo |= (ulong)1 << sq;
}
}
else
{
idx = Indices[index];
tar = idx + Directions_Pawn_Black[0];
if ((tar & 0x88) == 0) //not out of the edge
{
sq = Deinds[tar];
if (!Bit(Block, sq)) //not blocked
{
mo |= (ulong)1 << sq;
if (8 <= index && index < 16) //double
{
tar = idx + Directions_Pawn_Black[1];
if ((tar & 0x88) == 0)
{
sq = Deinds[tar];
if (!Bit(Block, sq))
mo |= (ulong)1 << sq;
}
}
}
}
for (int i = 2; i <= 3; ++i)
{
tar = idx + Directions_Pawn_Black[i];
if ((tar & 0x88) != 0)
continue;
sq = Deinds[tar];
if (Bit(WhiteMask, sq)) //if piece is for taking
mo |= (ulong)1 << sq;
}
}
return mo;
}
public static ulong[] initPawnCaps(bool white)
{ //initializes capture squares for pawn
var captures = new ulong[64];
for (int i = 0; i < captures.Length; ++i)
{
captures[i] = genCapturesPawn(i, white);
}
return captures;
}
public static short[] initEPawnCaps(bool white)
{ //initializes ep-capture squares for pawn
var captures = new short[64];
for (int i = 0; i < captures.Length; ++i)
{
captures[i] = genECapturesPawn(i, white);
}
return captures;
}
public static ulong genCapturesPawn(int index, bool white)
{
//returns points which can be captured by pawn
ulong mo = 0;
int tar;
int sq;
int[] Dir;
int idx = Indices[index];
if (white)
Dir = Directions_Pawn_White;
else
Dir = Directions_Pawn_Black;
for (int i = 2; i <= 3; ++i)
{
tar = idx + Dir[i];
if ((tar & 0x88) != 0)
continue;
sq = Deinds[tar];
mo |= (ulong)1 << sq;
}
return mo;
}
public static short genECapturesPawn(int index, bool white)
{
//returns two squares available for ep capture
short mo = 0;
int tar;
int sq;
int[] Dir;
int idx = Indices[index];
if (white)
Dir = Directions_Pawn_White;
else
Dir = Directions_Pawn_Black;
for (int i = 2; i <= 3; ++i)
{
tar = idx + Dir[i];
if ((tar & 0x88) != 0)
continue;
sq = Deinds[tar];
mo |= (short)(sq << (8 * (3 - i)));
}
return mo;
}
public static readonly ulong[] CapturesPawn_White = initPawnCaps(true);
public static readonly ulong[] CapturesPawn_Black = initPawnCaps(false);
public static readonly short[] EP_Pawn_White = initEPawnCaps(true);
public static readonly short[] EP_Pawn_Black = initEPawnCaps(false);
static byte Castling_White(int position)
{ //returns two bits, kingside and queenside
//least significant bits 1-4 signify castling, higher ones for white
byte cas = (byte)((position >> 2) & 3);
if ((cas & 1) != 0) //queenside
{
if (
((Block & ((ulong)0b111 << 57)) != 0) || //if squares 57-59 are bocked or squares 58-60 attacked by opponent
(Attacked(60, Wmask, Bmask, Block, false, BitBoards) || Attacked(59, Wmask, Bmask, Block, false, BitBoards) || Attacked(58, Wmask, Bmask, Block, false, BitBoards))
)
cas ^= 1;
}
if ((cas & 2) != 0) //kingside
{
if (
((Block & ((ulong)0b11 << 61)) != 0) || //if squares 61-62 are bocked or squares 60-62 attacked by opponent
(Attacked(60, Wmask, Bmask, Block, false, BitBoards) || Attacked(61, Wmask, Bmask, Block, false, BitBoards) || Attacked(62, Wmask, Bmask, Block, false, BitBoards))
)
cas ^= 2;
}
return cas;
}
static byte Castling_Black(int position)
{
//least significant bits 1-4 signify castling, lower ones for black
byte cas = (byte)((position) & 3);
if ((cas & 1) != 0) //queenside
{
if (
((Block & (0b111 << 1)) != 0) || //if squares 1-3 are blocked or squares 2-4 attacked by opponent
(Attacked(4, Wmask, Bmask, Block, true, BitBoards) || Attacked(3, Wmask, Bmask, Block, true, BitBoards) || Attacked(2, Wmask, Bmask, Block, true, BitBoards))
)
cas ^= 1;
}
if ((cas & 2) != 0) //kingside
{
if (
((Block & (0b11 << 5)) != 0) || //if squares 5-6 are blocked or squares 4-6 attacked by opponent
(Attacked(4, Wmask, Bmask, Block, true, BitBoards) || Attacked(5, Wmask, Bmask, Block, true, BitBoards) || Attacked(6, Wmask, Bmask, Block, true, BitBoards))
)
cas ^= 2;
}
return cas;
}
//SUPER PIECE - ATTACKED
public static bool Attacked(int index, ulong WhiteMask, ulong BlackMask, ulong Block, bool white, ulong[] Bitboards) //"white" parameter is the attacking side!
{
//inverts colors
if (white)
{
ulong Pawn = CapturesPawn_Black[index]; //inverted, as pawns move only forward
if ((Bitboards[BB_P] & Pawn) != 0)
return true;
ulong Knight = CapturesKnight(index, BlackMask, WhiteMask, Block, true);
if ((Bitboards[BB_N] & Knight) != 0)
return true;
ulong King = CapturesKing(index, BlackMask, WhiteMask, Block, true);
if ((Bitboards[BB_K] & King) != 0)
return true;
ulong BishopOrQueen = CapturesBishop(index, BlackMask, WhiteMask, Block, true);
if (((Bitboards[BB_B] | Bitboards[BB_Q]) & BishopOrQueen) != 0)
return true;
ulong RookOrQueen = CapturesRook(index, BlackMask, WhiteMask, Block, true);
if (((Bitboards[BB_R] | Bitboards[BB_Q]) & RookOrQueen) != 0)
return true;
return false;
}
else
{
ulong Pawn = CapturesPawn_White[index]; //inverted, as pawns move only forward
if ((Bitboards[BB_p] & Pawn) != 0)
return true;
ulong Knight = CapturesKnight(index, BlackMask, WhiteMask, Block, false);
if ((Bitboards[BB_n] & Knight) != 0)
return true;
ulong King = CapturesKing(index, BlackMask, WhiteMask, Block, false);
if ((Bitboards[BB_k] & King) != 0)
return true;
ulong BishopOrQueen = CapturesBishop(index, BlackMask, WhiteMask, Block, false);
if (((Bitboards[BB_b] | Bitboards[BB_q]) & BishopOrQueen) != 0)
return true;
ulong RookOrQueen = CapturesRook(index, BlackMask, WhiteMask, Block, false);
if (((Bitboards[BB_r] | Bitboards[BB_q]) & RookOrQueen) != 0)
return true;
return false;
}
}
static ulong GenMoves(int index, int type, bool white, ulong WhiteMask, ulong BlackMask, ulong Block)
{
ulong moves = 0;
switch (type)
{
case 0:
case 6:
//moves = MovesCastling(index, Block, white);
moves |= MovesKing(index, WhiteMask, BlackMask, Block, white); break;
case 1:
case 7:
moves = MovesPawn(index, WhiteMask, BlackMask, Block, white); break;
case 2:
case 8:
moves = MovesKnight(index, WhiteMask, BlackMask, Block, white); break;
case 3:
case 9:
moves = MovesBishop(index, WhiteMask, BlackMask, Block, white); break;
case 4:
case 10:
moves = MovesRook(index, WhiteMask, BlackMask, Block, white); break;
case 5:
case 11:
moves = MovesQueen(index, WhiteMask, BlackMask, Block, white); break;
}
return moves;
}
static ulong GenCaptures(int index, int type, bool white, ulong WhiteMask, ulong BlackMask, ulong Block)
{
ulong captures = 0;
switch (type)
{
case 0: