1
0
mirror of https://github.com/tiyn/yeschess.git synced 2025-04-03 15:37:46 +02:00

20 Commits

Author SHA1 Message Date
TiynGER
23a97ae9fe chess bugfix: en passant square creation
The en passant square is only important if it is
target of an enemy pawn.
If that is not the case it should not be set
and shouldn't appear in the fen string either.

Now it is checked if the en passant square is
the target of an enemy pawn
2021-05-11 01:42:20 +02:00
TiynGER
5e796751d7 chess: repetition now uses less data
Repetitions can only occur if the pieces and castling
rights are exactly the same.
For memory sake the sequence of last boards
is now emptied if a capture occurs,
a pawn moves, or if the castle
rights change.
That directly makes the saving of the castling
rights obsolete.
2021-05-10 23:50:30 +02:00
TiynGER
a3c48fd50c chess: chess to fen notation added
Now there is a method to turn a chess
object into a fen-string.
Additionally the enPassant handling was
changed.
There can be only one enPassant field
at a time.
So a new attribute was added to the chess
object that stores the field for the
enPassant capture.
If there is no enPassant field it will be set to -1.
2021-05-10 01:30:11 +02:00
TiynGER
53e1cc8df3 bugfix chess: genPawnPromotion always gives back promotions
The if statement was not tailored to the color and according
back ranks.
It didnt even check if the piece is a pawn.
Now it does.
2021-05-07 02:25:08 +02:00
TiynGER
a383e52bd7 ches: added fen
FEN is a notation to describe a state
of a chess game.
Added a initChess function, which is able
to create a chess object from FEN
2021-05-06 02:26:57 +02:00
TiynGER
c195f2da6a chess: refactoring genLegalMoves
genLegalMoves procs where copy and pasted, now they
are done by a common function.
Some magic numbers have been removed.
2021-05-04 18:36:13 +02:00
TiynGER
ee7d5a0a9d chess: refactoring genDests
genDests procs where copy and pasted, now they
are done by a common function.
Single line functions where also removed, due
to them being to trivial
2021-05-04 18:12:05 +02:00
TiynGER
087da7d3f1 bugfix chess: moveToNotation promotion part wrong
The function moveToNotation added the promotion character
even if a piece and not a pawn moves to the final rank.
2021-05-04 00:46:17 +02:00
TiynGER
3c97395ce8 refactoring: cleanup engine code and add alpha beta to readme 2021-05-03 17:09:48 +02:00
TiynGER
b7480a0cd4 engine: added piece-square tables
Piece square tables are a way to encurage the engine to
put pieces on active squares.
Each piece got a corresponding table.
2021-05-03 02:01:36 +02:00
TiynGER
b3c76fd2c1 visibility: use include in tests and only set needed functions as public 2021-05-03 00:15:58 +02:00
TiynGER
10098da82f refactoring: renaming classes and functions
Renamed the 'game' type to 'chess' to make more sense
of the existing filestructure.
Doubled functions where removed.
2021-05-01 16:21:30 +02:00
TiynGER
3bc523c37a chess: fixed field indices
Field indices where counting up from h to a,
now they are counting up from a to h, so the board
is not inverted anymore
2021-05-01 02:40:08 +02:00
TiynGER
5bee0f84d2 bugfix: threefold repitition throws nullpointer
If the threefold repitition check is called before enough moves
are saved in the previous board state it throws a nullpointer.
A simple null check solves the problem
2021-05-01 01:54:16 +02:00
TiynGER
91281d97a7 lichess: added lichess integration
Lichess is a free and open source platform to play chess.
Connection is realized via the berserk python plugin that uses the lichess api.
2021-04-29 01:15:54 +02:00
TiynGER
4ba3e06d93 engine: first push for engine
I created an engine, that uses a basic version of the minimax algorithm
to evaluate a position.
It then evaluates all the possible next moves in a given position and picks
the one that has the best evaluation.
Basic test cases were also added.
2021-04-27 00:49:39 +02:00
TiynGER
0e27d0a6b5 chess: syntax and structure changes
gameTest renamed to chessTest due to it testing chess.nim and not game.nim.
always used += in chess.nim to increase readability.
2021-04-26 19:54:19 +02:00
TiynGER
0a0accb3d0 chess: Moved replaced with CastleRights
Moved was a 10x12 1-d array, that stored bools.
It was only used for checking if a pawn moved (especially important for
the double move of the pawns) and if the other pieces moved (important
for checking if the player can castle or not).
The pawn moves are now checked by the starting position (pawns on the
second rank cant be already moved).
The castle rights of a game are expressed as CastleRights, a tuple with 4 bools.
This saves basically 116 boolean values.
2020-12-18 01:01:58 +01:00
TiynGER
c91bf64047 chess restructuring: changed order of functions 2020-12-18 00:25:22 +01:00
TiynGER
0ceb567048 structure: made a src folder and moved all source file into it 2020-12-16 04:24:19 +01:00