Click here to Skip to main content
15,885,767 members
Articles / Multimedia / GDI+
Tip/Trick

Chess Piece Movement

Rate me:
Please Sign up or sign in to vote.
4.52/5 (9 votes)
8 Oct 2015CPOL3 min read 19.8K   829   9   6
Chess piece movement project using C++ and GDI+

Image 1

Introduction

This tip is a simple chess game project which shows the basic technique of chess piece movement.

The movement technique will not prevent you from moving pieces illegally which means all the pieces can be moved forward, backward, sideways, or diagonally. In fact, you can move pieces from a square to any square if the square remains empty.

Board and Piece Images

The chess board is a 537x537 bitmap image and pieces are 62x62 transparent png images.
By the way, all the pieces are designed by my little sister Zeba. She is very good graphics designer.

Description Of Project Source Code

The project is developed in C++ and it uses GDI+ library for drawing chessboard and all the pieces. This Chess piece movement project has three classes for various purposes. CPiece, CBoard and CGame.

The CPiece class contains information for each piece. It contains position, size, type and row column information for each piece.

The following code shows all the member declarations of the class:

C++
class CPiece 
{
private:
    INT m_nX;
    INT m_nY;
               //  .. . . . .... . . . .. .
public:
    CPiece();
    ~CPiece();
    int init(CBoard* pBoard, TCHAR* lpFileName, enum EBlockPiece eColor, 
	enum EPieceType ePieceType, UINT row, UINT column, UINT pieceIndex);
    void moveTo(INT pieceIndex, enum EBlockPiece eColor, UINT row, UINT column);
    void draw(Graphics* g);
};
  • init: It is used for initializing the piece data. It also updates information of square of given row and column.
C++
int CPiece::init(CBoard* pBoard, TCHAR* lpFileName, enum EBlockPiece eColor, 
	enum EPieceType eType, UINT row, UINT column, UINT index)
{
        . . . . . . . .
        SChessBlock* pBlock = pBoard->getBlockAt(row, column);

    this->m_nX = pBlock->x;
    this->m_nY = pBlock->y;

    pBlock->ePiece = eColor;
    pBlock->pieceIndex = index;
  • moveTo: This function moves a piece from its current row and column to given row and column. It changes the value of m_nX and m_nY variable. It also updates data of both old and new square of the piece.
  • draw: This function draws the piece to the main window.

The other class is called CBoard. This class holds information of chess board and
it contains a 8x8 array variable called m_aChessBlocks of type SChessBlock which holds information for each square.

C++
struct SChessBlock {
    INT row;
    INT column;
    INT x;
    INT y;
    . . . . . . . . . 
    . . . . . .. 
};

Here is the declaration of CBoard Class:

C++
class CBoard
{
private:
    Image* m_pImage;
    . . . . . . .
    . . . . .
public:
    CBoard() ;
    ~CBoard() ;
    void init(TCHAR* lpFileName, UINT x, UINT y, UINT width, UINT height);
    /* Returns pointer to the block of given row and column
     */
    SChessBlock* getBlockAt(UINT row, UINT column);
    void draw(Graphics* g);
};
  • getBlockAt: Returns pointer to square information of given row and column.
  • draw: Draws the board image.

The last class is CGame which contains instance to CBoard class and CPiece class and it also contains code for piece selection movement.

C++
class CGame
{
private:
    CPiece m_aBlackPieces[16];
    CPiece m_aWhitePieces[16];
    CBoard m_Board;
    SChessBlock* m_pSelectedBlock;
public:
    CGame();
    ~CGame();
    void init();
    void onLButtonDown(INT x, INT y);
    void onLButtonUp(INT x, INT y);
    void draw(Graphics* g);
};

The init member function initializes the chess board and all the pieces. The main window initializer will call this function after creating the main window:

C++
. . . . . . . .
// Initialize our chess game.
g_Game.init();
. . . . . . . 

g_Game is a global variable instance to the CGame class.

The init function calls the init member function of CBoard class and passes an image file name called 'ChessBoard2.bmp' to its parameter to initialize the chess board with this image. Then it calls the init member function of CPiece class for each element of m_aBlackPieces and m_aWhitePieces array variable to initialize them.

C++
void CGame::init()
{
    m_Board.init(L".\\ChessBoard2.bmp", 0, 80, 537, 537);
    // Initialize all pawns through a loop
    for(UINT col=0;col<8;col++) {
        m_aBlackPieces[col].init(&m_Board, L".\\Pawn.png", EPT_PAWN, 1, col, col);
    }
    m_aBlackPieces[8].init(&m_Board, L".\\Rook.png", EPT_ROOK, 0, 0, 8);
    m_aBlackPieces[9].init(&m_Board, L".\\Knight.png", EPT_KNIGHT, 0, 1, 9);
                . . . . .  . . . .  . .
               . . . . . . ..

The CGame class has two member functions called onLButtonDown And onLButtonUp. Our main window procedure function will call those functions on WM_LBUTTONDOWN and WM_LBUTTONUP message.

C++
case WM_LBUTTONDOWN:
    g_Game.onLButtonDown(LOWORD(lParam), HIWORD(lParam));
    break;
case WM_LBUTTONUP:
    g_Game.onLButtonUp(LOWORD(lParam), HIWORD(lParam));
    break;

The onLButtonDown function is used for checking whether the mouse clicked at any square of our chess board or not.

The onLButtonDown function loops through all the rows and columns of chess board:

C++
for(UINT row = 0;row < 8;row++)
{
    for(UINT col = 0;col < 8;col++)
    {
        SChessBlock* pBlock = m_Board.getBlockAt(row, col);
        . . . . . .

The getBlockAt member function of CBoard class returns pointer to square information of given row and column.

Then it checks whether the mouse pointer is inside the square or not:

C++
if ( ( x >= px && x <= (px + 62)) && (y >= py && y <= (py + 62)) )
{
    . . . . . . .

Size of each square is 62.
And finally it checks whether the game should perform a piece movement or just mark the square as selected:

C++
if ( pBlock->eStatus == EBS_NONE )
                {
                    if ( pBlock != m_pSelectedBlock ) // Clicked at new block
                    {
                        // If we need to perform piece movement
                        if ( m_pSelectedBlock && m_pSelectedBlock->ePiece == EBP_BLACK )
                        {
                            if ( pBlock->ePiece == EBP_EMPTY )
                            {
                                if ( m_pSelectedBlock->ePiece == EBP_BLACK )
                                {
                                    INT pieceToMove = m_pSelectedBlock->pieceIndex;
                                    this->m_aBlackPieces[pieceToMove].moveTo
					(pieceToMove, EBP_BLACK, pBlock->row, pBlock->column);

                                    m_pSelectedBlock->eStatus = EBS_NONE;
                                    m_pSelectedBlock = nullptr;
                                    ::InvalidateRect(hWnd, NULL, TRUE);
                                    break;
                                }
                                else if ( m_pSelectedBlock->ePiece == EBP_WHITE )
                                {
                                    INT pieceToMove = m_pSelectedBlock->pieceIndex;
                                    this->m_aWhitePieces[pieceToMove].moveTo
					(pieceToMove, EBP_WHITE, pBlock->row, pBlock->column);

                                    m_pSelectedBlock->eStatus = EBS_NONE;
                                    m_pSelectedBlock = nullptr;
                                    ::InvalidateRect(hWnd, NULL, TRUE);
                                    break;
                                }
                            }
                        }
                    }

                    pBlock->eStatus = EBS_SELECTED;
                    if ( m_pSelectedBlock ) {
                        m_pSelectedBlock->eStatus = EBS_NONE;
                    }
                    m_pSelectedBlock = pBlock;
                    ::InvalidateRect(hWnd, NULL, TRUE);
                    break;
                }

The draw member function of CGame class will draw board and all the pieces of our chess game. The WM_PAINT message handler of main window will call this function.

C++
case WM_PAINT:
{
    . . . . .. . .
    // Ohh! The old way to handle flickering!!
    HDC drawDC = ::CreateCompatibleDC(hdc);
    HBITMAP hBitmap = ::CreateCompatibleBitmap(hdc, rcClient.right, rcClient.bottom);
    HBITMAP hOldBitmap = (HBITMAP)::SelectObject(drawDC, hBitmap);

    // We will use the CUTE GDI+!
    Graphics g(drawDC);

    // Let's render our chess game.
    g_Game.draw(&g);

    // Now draw it to our main window.
    ::BitBlt(hdc, 0, 0, rcClient.right, rcClient.bottom, drawDC, 0, 0, SRCCOPY);

    // Clean resources.
    ::SelectObject(drawDC, hOldBitmap);
    ::DeleteDC(drawDC);
    ::DeleteObject(hBitmap);
    . . . . .
}

Points of Interest

From this tip, you can learn the basic starting of chess game creation. And also, you can apply various movement techniques to the project for experiment purposes.

Conclusion

I've added only very few features in this Chess Piece Movement project, but I hope this project will help you to develop chess games and other games.

Next time, I will try to show the technique of legal movement calculation for each different piece.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Bangladesh Bangladesh
Hi, I'm Shah Farhad Reza. I'm a desktop and web software developer.

Recently I've developed an web based ERP (Enterprise Resource Planning) Software for a manufacturing company. The software is in use and working effectively fulfilling its goal (Alhamdulillah) - [February 10, 2023]

The areas of my expertise are the followings:

- OS Kernel developing.
- Programming language's compiler design and implement.
- Expert in C, C++ and Visual Basic and have basic knowledge on C#, D, Java.
- A few times used the Microsoft's new language F#.
- SQL Database programming.
- I've basic knowledge on lowest level programming language like assembly.
- Learning Mozilla’s Rust & Google’s GO programming language for software development.
- Code optimization for performance.
- Multi-threaded programming in C/C++ and Java.
- Know various advanced computer algorithm and have used them to develop graphics and simulation programs. Also working with Linear Algebra and keen to learn Quadratic Algebra in future.
- Graphics and Game programming (Both 2D and 3D).

Currently, I'm doing research on programming language and its compiler development. I've made various kind of software and now I want to share my experiences with people.


Comments and Discussions

 
Questionpiece set up Pin
Member 93578739-Oct-15 7:37
Member 93578739-Oct-15 7:37 
GeneralRe: piece set up Pin
Midnight4899-Oct-15 9:35
Midnight4899-Oct-15 9:35 
AnswerRe: piece set up Pin
Farhad Reza9-Oct-15 10:01
Farhad Reza9-Oct-15 10:01 
Generallooks like fun Pin
Midnight4899-Oct-15 6:20
Midnight4899-Oct-15 6:20 
GeneralRe: looks like fun Pin
Farhad Reza9-Oct-15 9:57
Farhad Reza9-Oct-15 9:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.