用C++输出一个贪吃蛇游戏代码
时间: 2024-02-12 16:06:49 浏览: 64
好的,这里给你一个简单的用C++输出的贪吃蛇游戏代码:
```c++
#include <iostream>
#include <conio.h>
#include <windows.h>
using namespace std;
const int width = 20; // 游戏区域宽度
const int height = 20; // 游戏区域高度
int x, y, fruitX, fruitY, score; // 蛇头坐标,水果坐标,分数
int tailX[100], tailY[100]; // 蛇身坐标
int nTail; // 蛇身长度
enum eDirection { STOP = 0, LEFT, RIGHT, UP, DOWN }; // 方向枚举
eDirection dir; // 蛇移动方向
void Setup() {
dir = STOP; // 初始方向为静止
x = width / 2; // 初始坐标为游戏区域中心
y = height / 2;
fruitX = rand() % width; // 随机生成水果坐标
fruitY = rand() % height;
score = 0; // 初始分数为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':
dir = STOP;
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;
}
// 判断是否吃到水果
if (x == fruitX && y == fruitY) {
score += 10;
fruitX = rand() % width;
fruitY = rand() % height;
nTail++;
}
// 判断是否撞墙或撞到自己
if (x < 0 || x >= width || y < 0 || y >= height) {
cout << "Game Over!" << endl;
exit(0);
}
for (int i = 0; i < nTail; i++) {
if (tailX[i] == x && tailY[i] == y) {
cout << "Game Over!" << endl;
exit(0);
}
}
}
int main() {
Setup();
while (1) {
Draw();
Input();
Logic();
Sleep(60); // 控制游戏速度
}
return 0;
}
```
这里的代码实现了一个简单的贪吃蛇游戏,使用了C++语言编写。你可以根据需求修改代码中的参数,进行难度和体验效果的调整。
阅读全文