21xrx.com
2024-11-22 05:57:58 Friday
登录
文章检索 我的文章 写文章
C++小游戏源代码
2023-07-07 22:03:15 深夜i     --     --
C++ 小游戏 源代码 编程 游戏开发

C++是一种流行的编程语言,其代码能够被应用于制作各种类型的小游戏,如迷宫游戏、射击游戏、跑酷游戏等。下方是一个简单的C++小游戏源代码示例,供您参考和学习。

#include

#include

#include

using namespace std;

bool gameOver;

const int width = 30;

const int height = 20;

int x, y, fruitX, fruitY, score;

int tailX[100], tailY[100];

int nTail;

enum eDirection DOWN ;

eDirection dir;

void Setup() {

  gameOver = false;

  dir = STOP;

  x = width / 2;

  y = height / 2;

  fruitX = rand() % width;

  fruitY = rand() % height;

  score = 0;

}

void Draw() {

  system("cls"); //清除屏幕上的内容

  for (int i = 0; i < width+2; i++)

    cout << "#";

  cout << endl;

  for (int i = 0; i < height; i++) {

    for (int j = 0; j < width; j++) {

      if (j == 0)

        cout << "#";

      if (i == y && j == x)

        cout << "O";

      else if (i == fruitY && j == fruitX)

        cout << "F";

      else {

        bool print = false;

        for (int k = 0; k < nTail; k++) {

          if (tailX[k] == j && tailY[k] == i)

            cout << "o";

            print = true;

        }

        if (!print)

          cout << " ";

      }

      if (j == width - 1)

        cout << "#";

    }

    cout << endl;

  }

  for (int i = 0; i < width+2; i++)

    cout << "#";

  cout << endl;

  cout << "Score:" << score << endl;

}

void Input() {

  if (_kbhit()) {

    switch (_getch())

    case 'a':

      dir = LEFT;

      break;

    case 'd':

      dir = RIGHT;

      break;

    case 'w':

      dir = UP;

      break;

    case 's':

      dir = DOWN;

      break;

    case 'x':

      gameOver = true;

      break;

  }

}

void Logic() {

  int prevX = tailX[0];

  int prevY = tailY[0];

  int prev2X, prev2Y;

  tailX[0] = x;

  tailY[0] = y;

  for (int i = 1; i < nTail; i++) {

    prev2X = tailX[i];

    prev2Y = tailY[i];

    tailX[i] = prevX;

    tailY[i] = prevY;

    prevX = prev2X;

    prevY = prev2Y;

  }

  switch (dir) {

  case LEFT:

    x--;

    break;

  case RIGHT:

    x++;

    break;

  case UP:

    y--;

    break;

  case DOWN:

    y++;

    break;

  default:

    break;

  }

  if (x >= width) x = 0; else if (x < 0) x = width - 1;

  if (y >= height) y = 0; else if (y < 0) y = height - 1;

  for (int i = 0; i < nTail; i++)

    if (tailX[i] == x && tailY[i] == y)

      gameOver = true;

  if (x == fruitX && y == fruitY) {

    score += 10;

    fruitX = rand() % width;

    fruitY = rand() % height;

    nTail++;

  }

}

int main() {

  Setup();

  while (!gameOver) {

    Draw();

    Input();

    Logic();

    Sleep(50);

  }

  return 0;

}

这个示例游戏是一个简单的贪吃蛇游戏,您可以在控制台上玩。为了运行代码,您需要一个c++编译器,比如 Microsoft Visual Studio 2019。

总的来说,C++是一个高度可扩展的编程语言,可用于创建各种类型的游戏。您可以在此基础上,扩展代码、添加更多的游戏元素和功能,创作属于你自己的 C++小游戏。

  
  

评论区

{{item['qq_nickname']}}
()
回复
回复