Win32 API implements 2048 game example

  • 2020-04-02 02:22:48
  • OfStack

Self-taught win32 programming, wrote a win32 API version of 2048, oneself grope to write, press up and down left and right arrows to start the game


#include <windows.h>
#include <stdlib.h>
#include <stdio.h>
#include <ctime>
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
//Global operation array
int arr[4][4] = { { 0, 0, 0, 0 }, { 0, 0, 0, 0 }, { 0, 0, 0, 0 }, { 0, 0, 0, 0 } };
//Global window handle
HWND g_hwnd;
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, PSTR szCmdLine, int iCmdShow)
{
 TCHAR *szAppName = TEXT("2048");
 HWND hwnd;
 MSG msg;
 WNDCLASS wndclass;
 wndclass.cbClsExtra = 0;
 wndclass.cbWndExtra = 0;
 wndclass.hbrBackground = (HBRUSH)GetStockObject(WHITE_BRUSH);
 wndclass.hCursor = LoadCursor(NULL, IDC_ARROW);
 wndclass.hIcon = LoadIcon(NULL, IDI_APPLICATION);
 wndclass.hInstance = hInstance;
 wndclass.lpfnWndProc = WndProc;
 wndclass.lpszClassName = szAppName;
 wndclass.lpszMenuName = NULL;
 wndclass.style = CS_HREDRAW | CS_VREDRAW;
 if (!RegisterClass(&wndclass))
 {
  MessageBox(NULL, TEXT(" Unable to register window class "), TEXT(" Registration error "), MB_ICONERROR);
  return -1;
 }
 hwnd = CreateWindow(szAppName, TEXT(" my 2048 The game "), WS_OVERLAPPEDWINDOW^WS_THICKFRAME,
  CW_USEDEFAULT, CW_USEDEFAULT, 500, 500,
  NULL, NULL, hInstance, NULL);
 g_hwnd = hwnd;
 ShowWindow(hwnd, iCmdShow);
 UpdateWindow(hwnd);
 while (GetMessage(&msg, NULL, 0, 0))
 {
  TranslateMessage(&msg);
  DispatchMessage(&msg);
 }
 return 0;
}

void newNum()
{
 int num = 0;//A book between zero and nine
 int xPos = 0, yPos = 0;
 srand(time(0));
 do{
  xPos = rand() % 4;
  yPos = rand() % 4;
 } while (arr[xPos][yPos] != 0);
 num = rand() % 10;
 if (num < 7)
  arr[xPos][yPos] = 2;
 else
  arr[xPos][yPos] = 4;
}
//Draw array function
void DrawCanvas(HWND hwnd)
{
 HBRUSH hBrush;
 HDC hdc;
 RECT rt;
 TCHAR szBuffer[10];
 for (int i = 0; i < 4; i++)
 {
  for (int j = 0; j < 4; j++)
  {
   if (arr[i][j] != 0)
   {
    LOGFONT logfont;
    hdc = GetDC(hwnd);
    //Sets the font size of the number
    ZeroMemory(&logfont, sizeof(LOGFONT));
    logfont.lfCharSet = GB2312_CHARSET;
    logfont.lfHeight = -50; //Set the font size
    HFONT hFont = CreateFontIndirect(&logfont);
    SetTextColor(hdc, RGB(255, 255, 255));
    SetBkColor(hdc, RGB(200, 200, 0));
    SetBkMode(hdc, TRANSPARENT);
    SelectObject(hdc, hFont);
    //Create a brush
    hBrush = CreateSolidBrush(RGB((arr[i][j] * 10) % 256, (arr[i][j]*40)%256, 0));
    SetRect(&rt, j * 100, i * 100, j * 100 + 100, i * 100 + 100);
    FillRect(hdc, &rt, hBrush);
    TextOut(hdc, j * 100 , i * 100 + 25, szBuffer, wsprintf(szBuffer, TEXT("%d"), arr[i][j]));
    ReleaseDC(hwnd, hdc);
    DeleteObject(hBrush);
   }
   else
   {
    SetRect(&rt, j * 100, i * 100, j * 100 + 100, i * 100 + 100);
    hdc = GetDC(hwnd);
    hBrush = CreateSolidBrush(RGB(200, 250, 0));
    FillRect(hdc, &rt, hBrush);
    ReleaseDC(hwnd, hdc);
    DeleteObject(hBrush);
   }
  }
 }
}
//Determines if the array is full
bool isFull()
{
 bool full = true;
 for (int i = 0; i < 4; i++)
 {
  for (int j = 0; j < 4; j++)
  {
   if (arr[i][j] == 0)
   {
    full = false;
   }
  }
 }
 return full;
}
//Processing array function
void changeArr(int direct)
{
 bool xiaoyici = false;
 bool chendi = false;

 switch (direct)
 {
  //Key on the done
 case 0:
 {

     //Start array operation
     for (int i = 0; i < 4; i++)
     {

      for (int a = 0; a < 4; a++){

       //1 first sink
       for (int b = 0; b < 4; b++)
       {
        for (int m = 0; m < 4; ++m)
        {
         for (int k = m; k < 3; ++k)
         {

          if (arr[k][i] == 0 && arr[k+1][i]!=0)
          {
           chendi = true;
           arr[k][i] = arr[k + 1][i];
           arr[k + 1][i] = 0;
          }
         }
        }
       }
       //Two in pairs

        for (int j = a; j < 4; ++j)
        {

         
         if (arr[j][i] != 0 && arr[j][i] == arr[j + 1][i])
         {
          xiaoyici = true;
          arr[j][i] <<= 1;
          arr[j + 1][i] = 0;
          j++;
          a++;

         }
         else
         {
          continue;
         }
        }

      }

      
     }//End array operation
     //To decide whether or not to die
     if (!xiaoyici && isFull())
     {
      MessageBox(g_hwnd, TEXT(" You hang up "), TEXT(" bad "), MB_OK);
      SendMessage(g_hwnd,WM_DESTROY,0,0);
     }
     else{
      //Randomly generate a new 2 or 4 to put into the array
      if (xiaoyici || chendi){ newNum(); }
     }

 }
  break;
  //The key
 case 1:
 {
     //Start array operation
     for (int i = 0; i < 4; i++)
     {
      for (int a = 0; a < 4; a++)
      {

       //1 first sink
       for (int b = 3; b >= 0; b--)
       {
        for (int m = 3; m >= 0; --m)
        {
         for (int k = m; k > 0; --k)
         {
          if (arr[k][i] == 0&&arr[k-1][i]!=0)
          {
           chendi = true;
           arr[k][i] = arr[k - 1][i];
           arr[k - 1][i] = 0;
          }
         }
        }
       }
       //Two in pairs

     for (int j = 3 - a; j >= 0; --j)
     {
      if (arr[j][i] != 0 && arr[j][i] == arr[j - 1][i])
      {
       xiaoyici = true;
       arr[j][i] += arr[j][i];
       arr[j - 1][i] = 0;
       a++;
       --j;
      }
      else
      {
       continue;
      }
     }

      }
     }
     //End array operation
     //To decide whether or not to die
     if (!xiaoyici && isFull())
     {
      MessageBox(g_hwnd, TEXT(" You hang up "), TEXT(" bad "), MB_OK);
      SendMessage(g_hwnd, WM_DESTROY, 0, 0);
     }
     else{
      //Randomly generate a new 2 or 4 to put into the array
      if (xiaoyici || chendi){ newNum(); }
     }
 }
  break;
  //Click done
 case 2:
 {

     //Start array operation
     for (int i = 0; i < 4; i++)
     {
      for (int a = 0; a < 4; a++){
       //1 first sink
       for (int b = 0; b < 4; b++)
       {
        for (int m = 0; m < 4; ++m)
        {
         for (int k = m; k < 3; ++k)
         {
          if (arr[i][k] == 0&&arr[i][k+1]!=0)
          {
           chendi = true;
           arr[i][k] = arr[i][k+1];
           arr[i][k+1] = 0;
          }
         }
        }
       }
       //Two in pairs
       for (int j = a; j < 4; ++j)
       {

        if (arr[i][j] != 0 && arr[i][j] == arr[i][j+1])
        {
         xiaoyici = true;
         arr[i][j] <<= 1;
         arr[i][j+1] = 0;
         j++;
         a++;

        }
        else
        {
         continue;
        }
       }
      }

     }//End array operation
     //To decide whether or not to die
     if (!xiaoyici && isFull())
     {
      MessageBox(g_hwnd, TEXT(" You hang up "), TEXT(" bad "), MB_OK);
      SendMessage(g_hwnd, WM_DESTROY, 0, 0);
     }
     else{
      //Randomly generate a new 2 or 4 to put into the array
      if (xiaoyici || chendi){ newNum(); }
     }
 }
  break;
  //Right click
 case 3:
 {
     //Start array operation
     for (int i = 0; i < 4; i++)
     {
      for (int a = 0; a < 4; a++)
      {
       //1 first sink
       for (int b = 3; b >= 0; b--)
       {
        for (int m = 3; m >= 0; --m)
        {
         for (int k = m; k > 0; --k)
         {
          if (arr[i][k] == 0&&arr[i][k-1]!=0)
          {
           chendi = true;
           arr[i][k] = arr[i][k-1];
           arr[i][k-1] = 0;
          }
         }
        }
       }
       //Two in pairs
       for (int j = 3 - a; j >= 0; --j)
       {
        if (arr[i][j] != 0 && arr[i][j] == arr[i][j-1])
        {
         xiaoyici = true;
         arr[i][j] += arr[i][j];
         arr[i][j-1] = 0;
         a++;
         --j;
        }
        else
        {
         continue;
        }
       }
      }
     }
     //End array operation
     //To decide whether or not to die
     if (!xiaoyici && isFull())
     {
      MessageBox(g_hwnd, TEXT(" You hang up "), TEXT(" bad "), MB_OK);
      SendMessage(g_hwnd, WM_DESTROY, 0, 0);
     }
     else{
      //Randomly generate a new 2 or 4 to put into the array
      if (xiaoyici || chendi){ newNum(); }
     }
 }
  break;
 default:
  return;
 }
}
LRESULT CALLBACK WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
 switch (msg)
 {
 case WM_CREATE:
 {
       newNum();
       //newNum();
 }
  break;
 case WM_KEYDOWN:
 {
        switch (wParam)
        {
         //If the up button is pressed
        case VK_UP:
        {

          changeArr(0);
          DrawCanvas(hwnd);
          
        }
         break;
         // if The key Is pressed 
        case VK_DOWN:
        {
            changeArr(1);
            DrawCanvas(hwnd);
        }
         break;
         //If the left key is pressed
        case VK_LEFT:
        {
            changeArr(2);
            DrawCanvas(hwnd);
        }
         break;
         // if Right click Is pressed 
        case VK_RIGHT:
        {
          changeArr(3);
          DrawCanvas(hwnd);
        }
         break;
        default:
         break;
        }
 }
  break;
 case WM_DESTROY:
  PostQuitMessage(0);
 }
 return DefWindowProc(hwnd, msg, wParam, lParam);
}


< img SRC = "border = 0 / / files.jb51.net/file_images/article/201405/20140504111531.jpg? 201444111614 ">


Related articles: