Python Chess: Game Simulation and Illegal Moves

Python Chess: Game Simulation and Illegal Moves

This is exciting! We’re nearly ready to start simulating a whole game of Chess. There’s just a few more components we need.
To begin, let’s first consider what information we need to encode to fully describe a move.

In standard chess move notation, we are given only the type of piece, and it’s new location. E.g. Ne2 which indicates that a knight should be moved to the square e2.

Python Chess: Efficient Move Generation Using Bitwise Operations

Python Chess: Efficient Move Generation Using Bitwise Operations

This is part 2 in a series of articles documenting my process of building a chess engine. I hope to share insights from my previous experience, and explain some of the concepts and techniques I’ll be using. If you haven’t already read part 1, I’d strongly recommend taking a look before reading part 2. You can check it out at the link above.

Time to pick up where we left of…