skeleton.cpp

来自「《24小时教会你游戏编程》上的源码」· C++ 代码 · 共 81 行

CPP
81
字号
//-----------------------------------------------------------------
// Game Skeleton Application
// C++ Source - Skeleton.cpp
//-----------------------------------------------------------------

//-----------------------------------------------------------------
// Include Files
//-----------------------------------------------------------------
#include "Skeleton.h"

//-----------------------------------------------------------------
// Game Engine Functions
//-----------------------------------------------------------------
BOOL GameInitialize(HINSTANCE hInstance)
{
  // Create the game engine
  _pGame = new GameEngine(hInstance, TEXT("Game Skeleton"),
    TEXT("Game Skeleton"), IDI_SKELETON, IDI_SKELETON_SM);
  if (_pGame == NULL)
    return FALSE;
  
  // Set the frame rate
  _pGame->SetFrameRate(15);

  return TRUE;
}

void GameStart(HWND hWindow)
{
  // Seed the random number generator
  srand(GetTickCount());
}

void GameEnd()
{
  // Cleanup the game engine
  delete _pGame;
}

void GameActivate(HWND hWindow)
{
  HDC   hDC;
  RECT  rect;

  // Draw activation text on the game screen
  GetClientRect(hWindow, &rect);
  hDC = GetDC(hWindow);
  DrawText(hDC, TEXT("Activated!"), -1, &rect,
    DT_SINGLELINE | DT_CENTER | DT_VCENTER);
  ReleaseDC(hWindow, hDC);
}

void GameDeactivate(HWND hWindow)
{
  HDC   hDC;
  RECT  rect;

  // Draw deactivation text on the game screen
  GetClientRect(hWindow, &rect);
  hDC = GetDC(hWindow);
  DrawText(hDC, TEXT("Deactivated!"), -1, &rect,
    DT_SINGLELINE | DT_CENTER | DT_VCENTER);
  ReleaseDC(hWindow, hDC);
}

void GamePaint(HDC hDC)
{
}

void GameCycle()
{
  HDC   hDC;
  HWND  hWindow = _pGame->GetWindow();

  // Draw the skeleton icon at random positions on the game screen
  hDC = GetDC(hWindow);
  DrawIcon(hDC, rand() % _pGame->GetWidth(), rand() % _pGame->GetHeight(),
    (HICON)(WORD)GetClassLong(hWindow, GCL_HICON));
  ReleaseDC(hWindow, hDC);
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?