VsC++带登录界面贪吃蛇游戏代码
时间: 2023-06-24 16:07:43 浏览: 108
贪吃蛇游戏C++代码
3星 · 编辑精心推荐
以下是一个简单的使用Visual Studio和C++编写的带登录界面的贪吃蛇游戏代码:
```c++
#include <iostream>
#include <conio.h>
#include <windows.h>
#include <fstream>
#include <string>
#include <ctime>
#include <cstdlib>
using namespace std;
// 定义游戏区域大小
const int width = 20;
const int height = 20;
// 定义蛇的结构体
struct Snake
{
int x, y;
} s[100];
// 定义食物的结构体
struct Food
{
int x, y;
} food;
// 定义分数和速度
int score = 0;
int speed = 100;
// 定义游戏状态
bool gameOver = false;
// 定义方向
enum Direction { STOP = 0, LEFT, RIGHT, UP, DOWN };
Direction dir;
// 定义登录状态
bool login = false;
// 定义用户名和密码
string username;
string password;
// 显示游戏界面
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 == food.y && j == food.x)
cout << "F"; // 绘制食物
else if (i == s[0].y && j == s[0].x)
cout << "O"; // 绘制蛇头
else
{
bool print = false;
for (int k = 1; k < score; k++)
{
if (s[k].x == j && s[k].y == 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;
cout << "Speed: " << speed << endl;
}
// 初始化游戏
void Setup()
{
// 初始化蛇的位置和方向
s[0].x = width / 2;
s[0].y = height / 2;
dir = STOP;
// 初始化食物的位置
food.x = rand() % (width - 2) + 1;
food.y = rand() % (height - 2) + 1;
// 初始化分数和速度
score = 0;
speed = 100;
}
// 处理键盘输入
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 Move()
{
// 记录上一次蛇尾的位置
int prevX = s[score - 1].x;
int prevY = s[score - 1].y;
// 移动蛇的身体
for (int i = score - 1; i > 0; i--)
{
s[i].x = s[i - 1].x;
s[i].y = s[i - 1].y;
}
// 移动蛇的头部
switch (dir)
{
case LEFT:
s[0].x--;
break;
case RIGHT:
s[0].x++;
break;
case UP:
s[0].y--;
break;
case DOWN:
s[0].y++;
break;
}
// 检测碰撞
if (s[0].x == food.x && s[0].y == food.y)
{
// 吃到食物,增加分数和速度
score++;
if (score % 10 == 0)
speed -= 10;
food.x = rand() % (width - 2) + 1;
food.y = rand() % (height - 2) + 1;
}
else if (s[0].x == 0 || s[0].x == width - 1 || s[0].y == 0 || s[0].y == height - 1)
{
// 撞墙了,游戏结束
gameOver = true;
}
else
{
for (int i = 1; i < score; i++)
{
if (s[i].x == s[0].x && s[i].y == s[0].y)
{
// 撞到自己了,游戏结束
gameOver = true;
break;
}
}
}
// 更新蛇尾的位置
if (score > 1)
{
s[score - 1].x = prevX;
s[score - 1].y = prevY;
}
}
// 登录
void Login()
{
system("cls"); // 清屏
// 读取用户名和密码
ifstream file("user.txt");
if (file.is_open())
{
file >> username >> password;
file.close();
}
// 输入用户名和密码
string inputUsername, inputPassword;
cout << "Username: ";
cin >> inputUsername;
cout << "Password: ";
cin >> inputPassword;
// 验证用户名和密码
if (inputUsername == username && inputPassword == password)
{
login = true;
}
else
{
cout << "Invalid username or password." << endl;
cout << "Press any key to try again..." << endl;
_getch();
}
}
// 主函数
int main()
{
srand(time(NULL)); // 初始化随机数种子
Login(); // 登录
if (login)
{
Setup(); // 初始化游戏
while (!gameOver)
{
Draw(); // 显示游戏界面
Input(); // 处理键盘输入
Move(); // 移动蛇
Sleep(speed); // 延迟
// 检测是否需要重新登录
if (!_kbhit())
{
cout << "Press X to exit, any other key to restart..." << endl;
char c = _getch();
if (c == 'x' || c == 'X')
gameOver = true;
else
Setup();
}
}
// 游戏结束
system("cls"); // 清屏
cout << "Game Over!" << endl;
cout << "Press any key to exit..." << endl;
_getch();
}
return 0;
}
```
此代码使用了文件读写来实现登录功能,用户名和密码保存在 `user.txt` 文件中,每次登录时从文件中读取,并与用户输入的信息进行比较。游戏结束后,会提示按任意键退出程序。
阅读全文