Abdullah-PyDev/chess-game — reverse-engineered prompt
Reverse engineered prompt
Build me a simple chess game in C++ that I can open and run in Visual Studio. I want it to feel like a normal two player chess game on one computer, with a board, white and black turns, and all the usual pieces moving the way they should.
Keep it straightforward and easy to understand. A console version is fine if that’s the simplest fit. Players should be able to choose a move, see the updated board, capture pieces, and not make illegal moves. Please organize the code cleanly with separate classes for the board, game flow, and each chess piece, so it’s easy to read or improve later.
If something is already started, finish it and make sure it builds without errors. Add simple instructions in the README for how to run it and how to enter moves. Look up current Visual Studio C++ setup details online if you need to.
Want more depth? Deep Reverse