Qt实战项目——贪吃蛇

一、项目介绍

本项目是一个使用Qt框架开发的经典贪吃蛇游戏,旨在通过简单易懂的游戏机制和精美的用户界面,为玩家提供娱乐和编程学习的机会。

游戏展示

二、主要功能

2.1 游戏界面

游戏主要是由三个界面构成,分别是游戏大厅、难度选择和游戏内界面,因此需要建立三个.cpp文件,分别对应的是gamehall.cpp、gameselect.cpp和gameroom.cpp。

2.1.1 gamehall.cpp

在游戏大厅界面,需要将图片设置到背景板上,并且创建一个“开始游戏”按钮

GameHall::GameHall(QWidget *parent): QWidget(parent), ui(new Ui::GameHall)
{ui->setupUi(this);// 设置窗口大小、图标、名字this->setFixedSize(1080,720);this->setWindowIcon(QIcon(":Resource/icon.png"));this->setWindowTitle("贪吃蛇大作战");// 设置开始按钮QFont font("华文行楷",18);QPushButton* pushButton_start = new QPushButton(this);pushButton_start->setText("开始游戏");pushButton_start->setFont(font);pushButton_start->move(520,400);pushButton_start->setGeometry(440,520,160,90);pushButton_start->setStyleSheet("QPushButton{border:0px;}");// 点击“开始游戏”按钮进入难度选择界面GameSelect* gameSelect = new GameSelect;connect(pushButton_start,&QPushButton::clicked,[=](){this->close();gameSelect->setGeometry(this->geometry());gameSelect->show();QSound::play(":Resource/clicked.wav");});
}GameHall::~GameHall()
{delete ui;
}void GameHall::paintEvent(QPaintEvent *event)
{(void) *event;// 实例化画家QPainter painter(this);// 实例化绘图设备QPixmap pix(":Resource/game_hall.png");// 绘图painter.drawPixmap(0,0,this->width(),this->height(),pix);
}

2.1.2 gameselect.cpp

在游戏选择界面中,同样是需要设置背景,创建按钮等操作。

其中点击“简单模式”、“正常模式”、“困难模式”可以直接进入游戏房间内,而查阅“历史战绩”时会弹出一个新窗口显示战绩。

GameSelect::GameSelect(QWidget *parent) : QWidget(parent)
{// 设置“难度选择”界面的图标、名字this->setFixedSize(1080,720);this->setWindowIcon(QIcon(":Resource/icon.png"));this->setWindowTitle("难度选择");QFont font("华文行楷",24);GameRoom* gameRoom = new GameRoom;// 设置选择难度按钮和历史战绩按钮QPushButton* pushButton_easy = new QPushButton(this);pushButton_easy->move(460,160);pushButton_easy->setGeometry(460,160,150,80);pushButton_easy->setText("简单模式");pushButton_easy->setFont(font);pushButton_easy->setStyleSheet("QPushButton{border:0px;color:white}");QPushButton* pushButton_normal = new QPushButton(this);pushButton_normal->move(460,280);pushButton_normal->setGeometry(460,280,150,80);pushButton_normal->setText("正常模式");pushButton_normal->setFont(font);pushButton_normal->setStyleSheet("QPushButton{border:0px;color:white}");QPushButton* pushButton_hard = new QPushButton(this);pushButton_hard->move(460,400);pushButton_hard->setGeometry(460,400,150,80);pushButton_hard->setText("困难模式");pushButton_hard->setFont(font);pushButton_hard->setStyleSheet("QPushButton{border:0px;color:white}");QPushButton* pushButton_record = new QPushButton(this);pushButton_record->move(460,520);pushButton_record->setGeometry(460,520,150,80);pushButton_record->setText("历史战绩");pushButton_record->setFont(font);pushButton_record->setStyleSheet("QPushButton{border:0px;color:white}");// 点击不同困难模式按钮进入游戏房间connect(pushButton_easy,&QPushButton::clicked,[=](){this->close();gameRoom->setGeometry(this->geometry());gameRoom->show();QSound::play(":Resource/clicked.wav");gameRoom->setTimeout(300);});connect(pushButton_normal,&QPushButton::clicked,[=](){this->close();gameRoom->setGeometry(this->geometry());gameRoom->show();QSound::play(":Resource/clicked.wav");gameRoom->setTimeout(200);});connect(pushButton_hard,&QPushButton::clicked,[=](){this->close();gameRoom->setGeometry(this->geometry());gameRoom->show();QSound::play(":Resource/clicked.wav");gameRoom->setTimeout(100);});// 设置历史战绩窗口connect(pushButton_record,&QPushButton::clicked,[=](){QWidget* widget = new QWidget;widget->setWindowTitle("历史战绩");widget->setWindowIcon(QIcon(":Resource/icon.png"));widget->setFixedSize(500,300);QSound::play(":Resource/clicked.wav");QTextEdit* edit = new QTextEdit(widget);edit->setFont(font);edit->setFixedSize(500,300);QFile file("D:/bite/C-program/project/Snake/gamedata.txt");file.open(QIODevice::ReadOnly);QTextStream in(&file);int data = in.readLine().toInt();edit->append("历史得分为:");edit->append(QString::number(data));widget->show();});
}void GameSelect::paintEvent(QPaintEvent *event)
{(void) *event;QPainter painter(this);QPixmap pix(":Resource/game_select.png");painter.drawPixmap(0,0,this->width(),this->height(),pix);
}

同时在这个界面中,我们需要创建一个“回退”按钮,点击可回退到游戏大厅界面

    // 设置回退按钮QPushButton* pushButton_back = new QPushButton(this);pushButton_back->move(1000,640);pushButton_back->setGeometry(1000,640,60,60);pushButton_back->setIcon(QIcon(":Resource/back.png"));// 点击回退按钮回到上一页connect(pushButton_back,&QPushButton::clicked,[=](){this->close();GameHall* gameHall = new GameHall;gameHall->show();QSound::play(":Resource/clicked.wav");});

2.1.3 gameroom.cpp

在游戏房间界面中,我们可以看到许多元素,其中不仅有“开始”、“暂停”、“退出”三个按钮,还有控制小蛇移动的方向键按钮,还有计分板等等元素。

我们首先要做的是设计背景以及创建各个按钮。

    // 设置游戏房间大小、图标、名字this->setFixedSize(1080,720);this->setWindowIcon(QIcon(":Resource/icon.png"));this->setWindowTitle("游戏房间");// 开始游戏、暂停游戏QFont font("楷体",20);QPushButton* pushButton_start = new QPushButton(this);pushButton_start->move(890,460);pushButton_start->setGeometry(890,460,100,60);pushButton_start->setText("开始");pushButton_start->setFont(font);connect(pushButton_start,&QPushButton::clicked,[=](){isGameStart = true;timer->start(moveTimeout);sound = new QSound(":Resource/Trepak.wav");sound->play();sound->setLoops(-1);});QPushButton* pushButton_stop = new QPushButton(this);pushButton_stop->move(890,540);pushButton_stop->setGeometry(890,540,100,60);pushButton_stop->setText("暂停");pushButton_stop->setFont(font);connect(pushButton_stop,&QPushButton::clicked,[=](){isGameStart = false;timer->stop();sound->stop();});// 设置方向键的位置、大小、图标和快捷键QPushButton* pushButton_up = new QPushButton(this);pushButton_up->move(900,220);pushButton_up->setGeometry(900,220,80,60);pushButton_up->setIcon(QIcon(":Resource/up1.png"));connect(pushButton_up,&QPushButton::clicked,[=](){if(moveDirect != SnakeDirect::DOWN)moveDirect = SnakeDirect::UP;});pushButton_up->setShortcut(QKeySequence(Qt::Key_W));QPushButton* pushButton_down = new QPushButton(this);pushButton_down->move(900,340);pushButton_down->setGeometry(900,340,80,60);pushButton_down->setIcon(QIcon(":Resource/down1.png"));connect(pushButton_down,&QPushButton::clicked,[=](){if(moveDirect != SnakeDirect::UP)moveDirect = SnakeDirect::DOWN;});pushButton_down->setShortcut(QKeySequence(Qt::Key_S));QPushButton* pushButton_left = new QPushButton(this);pushButton_left->move(820,280);pushButton_left->setGeometry(820,280,80,60);pushButton_left->setIcon(QIcon(":Resource/left1.png"));connect(pushButton_left,&QPushButton::clicked,[=](){if(moveDirect != SnakeDirect::RIGHT)moveDirect = SnakeDirect::LEFT;});pushButton_left->setShortcut(QKeySequence(Qt::Key_A));QPushButton* pushButton_right = new QPushButton(this);pushButton_right->move(980,280);pushButton_right->setGeometry(980,280,80,60);pushButton_right->setIcon(QIcon(":Resource/right1.png"));connect(pushButton_right,&QPushButton::clicked,[=](){if(moveDirect != SnakeDirect::LEFT)moveDirect = SnakeDirect::RIGHT;});pushButton_right->setShortcut(QKeySequence(Qt::Key_D));// 设置退出按钮QPushButton* pushButton_exit = new QPushButton(this);pushButton_exit->move(890,620);pushButton_exit->setGeometry(890,620,100,60);pushButton_exit->setText("退出");pushButton_exit->setFont(font);

2.2 游戏规则

蛇移动时不能碰到自己的身体,否则游戏结束。每吃掉一个食物(食物会随机刷新),身体变长,分数增加。

    // 初始化贪吃蛇snakeList.push_back(QRectF(this->width() * 0.5,this->height() * 0.5,kSnakeNodeWight,kSnakeNodeHeight));moveUP();moveUP();creatFood();timer = new QTimer(this);connect(timer,&QTimer::timeout,[=](){int count = 1;if(snakeList.front().intersects(foodRect)){creatFood();count++;QSound::play(":Resource/eatfood.wav");}while(count--){switch(moveDirect){case SnakeDirect::UP:moveUP();break;case SnakeDirect::DOWN:moveDOWN();break;case SnakeDirect::LEFT:moveLEFT();break;case SnakeDirect::RIGHT:moveRIGHT();break;}}snakeList.pop_back();update();});// 绘制蛇if(moveDirect == SnakeDirect::UP){pix.load(":Resource/up.png");}else if(moveDirect == SnakeDirect::DOWN){pix.load(":Resource/down.png");}else if(moveDirect == SnakeDirect::LEFT){pix.load(":Resource/left.png");}else{pix.load(":Resource/right.png");}// 绘制蛇头、身体和尾巴auto Head = snakeList.front();painter.drawPixmap(Head.x(),Head.y(),Head.width(),Head.height(),pix);pix.load(":Resource/Bd.png");for (int i = 0;i < snakeList.size() - 1;i++){auto Body = snakeList.at(i);painter.drawPixmap(Body.x(),Body.y(),Body.width(),Body.height(),pix);};auto tail = snakeList.back();painter.drawPixmap(tail.x(),tail.y(),tail.width(),tail.height(),pix);// 绘制食物pix.load(":Resource/food.png");painter.drawPixmap(foodRect.x(),foodRect.y(),foodRect.width(),foodRect.height(),pix);
bool GameRoom::checkFail()
{for(int i = 0;i < snakeList.size();i++){for(int j = i + 1;j < snakeList.size();j++){if(snakeList.at(i) == snakeList.at(j)){return true;}}}return false;
}void GameRoom::creatFood()
{foodRect = QRectF(qrand() % (800 / kSnakeNodeWight) * kSnakeNodeWight,qrand() % (this->height() / kSnakeNodeHeight) * kSnakeNodeHeight,kSnakeNodeWight,kSnakeNodeHeight);
}

2.3 控制方式

使用界面上的方向键(上、下、左、右)或者通过键盘上的快捷键(W、S、A、D)来控制蛇的移动方向,但不能直接反向移动。

void GameRoom::moveUP()
{QPointF leftTop;QPointF rightBottom;// 蛇头auto snakeNode = snakeList.front();int headX = snakeNode.x();int headY = snakeNode.y();// 如果穿模if(headY < 20){leftTop = QPointF(headX,this->height() - kSnakeNodeHeight);}else{leftTop = QPointF(headX,headY - kSnakeNodeHeight);}rightBottom = leftTop + QPointF(kSnakeNodeWight,kSnakeNodeHeight);snakeList.push_front(QRectF(leftTop,rightBottom));
}void GameRoom::moveDOWN()
{QPointF leftTop;QPointF rightBottom;auto snakeNode = snakeList.front();int headX = snakeNode.x();int headY = snakeNode.y();if(headY > this->height()){leftTop = QPointF(headX,0);}else{leftTop = snakeNode.bottomLeft();}rightBottom = leftTop + QPointF(kSnakeNodeWight,kSnakeNodeHeight);snakeList.push_front(QRectF(leftTop,rightBottom));
}void GameRoom::moveLEFT()
{QPointF leftTop;QPointF rightBottom;auto snakeNode = snakeList.front();int headX = snakeNode.x();int headY = snakeNode.y();if(headX < 0){leftTop = QPointF(800 - kSnakeNodeWight,headY);}else{leftTop = QPointF(headX - kSnakeNodeWight,headY);}rightBottom = leftTop + QPointF(kSnakeNodeWight,kSnakeNodeHeight);snakeList.push_front(QRectF(leftTop,rightBottom));
}void GameRoom::moveRIGHT()
{QPointF leftTop;QPointF rightBottom;auto snakeNode = snakeList.front();int headX = snakeNode.x();int headY = snakeNode.y();if(headX > 760){leftTop = QPointF(0,headY);}else{leftTop = snakeNode.topRight();}rightBottom = leftTop + QPointF(kSnakeNodeWight,kSnakeNodeHeight);snakeList.push_front(QRectF(leftTop,rightBottom));
}

三、结语

这个项目比较简单,通过这个项目,不仅可以学习到Qt的GUI开发和事件处理技术,还能熟悉C++编程及基本的游戏开发概念。关于Qt中的一些基础知识,我也会在后续逐步更新。

好了,源码我会放在下面,大家有兴趣的可以看一看,欢迎大家一键三连!!!

四、源码

https://gitee.com/hu-jiahao143/project/commit/f83b287c800dd105f8358d7ffb244202ebf015c9

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/36175.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

基于QFD的景区共享代步车创新设计

一、传统景区交通方式的瓶颈 在传统景区中&#xff0c;游客往往面临着步行太累、乘坐观光车又不够自由灵活的困境。同时&#xff0c;随着游客数量的不断增加&#xff0c;景区内的交通压力也在逐渐增大。因此&#xff0c;开发一种既环保又便捷的代步工具&#xff0c;成为了摆在…

【Java Web】会话管理

目录 一、为什么需要会话管理&#xff1f; 二、会话管理机制 三、Cookie概述 四、HttpSession概述 4.1 HttpSession时效性 一、为什么需要会话管理&#xff1f; HTTP协议在设计之初就是无状态的&#xff0c;所谓无状态就是在浏览器和服务器之间的通信过程中&#xff0c;服务器并…

数据分类分级分几步?“6步分解”一目了然!

数据分类分级是企业开展数据安全治理的第一步。通过数据分类分级对数据资产进行盘点&#xff0c;及时掌握内部数据情况&#xff0c;有针对性的对各类型数据采取安全防护措施&#xff0c;为后续企业数据资产管理和数据安全体系建设起到关键作用。 同时&#xff0c;随着《中华人民…

PVE 8.2.2安装OpenWrt 23.05.3

1,下载官方openwrt 23.5.3镜像并解压 2&#xff0c;进入pve上传镜像 复制这段文字之后需要使用 创建虚拟机 删除磁盘 安装完毕后 shell 运行 qm importdisk 100 /var/lib/vz/template/iso/openwrt-23.05.3-x86-64-generic-ext4-combined-efi.img local-lvm 其中100是虚拟…

C++ 参数传递方式有哪些?它们有什么区别【面试】

传递方式 在C中&#xff0c;参数的传递方式主要有以下几种&#xff1a; 按值传递&#xff08;Pass by Value&#xff09;&#xff1a; 将实参的值复制给形参&#xff0c;函数内对形参的操作不会影响实参的值。适用于基本数据类型和小型结构体&#xff0c;因为复制开销较小。 按…

Java中反射的应用举例

一、技术难点 Java反射&#xff08;Reflection&#xff09;是Java语言提供的一种强大工具&#xff0c;它允许程序在运行时进行自我检查和修改。然而&#xff0c;反射也带来了一些技术难点&#xff1a; 性能问题&#xff1a;反射涉及到了动态类型解析和代码生成&#xff0c;相…

想学gis开发,java和c++那个比较好?

ava与C的应用场景不同&#xff0c;究竟选择谁&#xff0c;应该由开发者的兴趣方向来决定。 你选择Java&#xff0c;意味着以后的业务方向就是偏后台服务开发&#xff0c;如果你非得说我用java也可以写界面&#xff0c;对不起&#xff0c;别人不会。 刚好我有一些资料&#xf…

AudioLM深度解析:革新音频生成的未来

在人工智能领域&#xff0c;自然语言处理&#xff08;NLP&#xff09;的突破性进展已经催生了多种语言模型&#xff0c;如GPT系列和BERT。这些模型在文本生成、翻译和理解方面取得了巨大成功。随着技术的发展&#xff0c;类似的模型也被应用于音频领域&#xff0c;其中AudioLM便…

光电液位传感器工作时容易受哪些因素影响?

光电式水位传感器的检测液位时是必须要接触液体才能进行检测的。当液体覆盖光电式水位传感器的探头时&#xff0c;传感器内的发光二极管发射出去的光线会折射在液体中&#xff0c;而光敏接收器只能接收到少量光电或者接收不到光线。反之正常接收光线则是无水状态。 光电式水位…

使用前缀积求最后K个数的乘积

前缀积解题基本思路&#xff1a; 1.首先创建整型集合&#xff0c;添加元素1&#xff08;任何整数乘以1都等于整数本身&#xff09;。 2.将与新元素的乘积依次添加到整型集合中&#xff0c;再根据相应的索引值进行除法操作&#xff0c;从而获取最后K个数的乘积。 3.&#xff…

腾讯云对象存储cors错误处理

最近将公司的域名进行了修改&#xff0c;同时将腾讯云的对象存储改成了https&#xff0c;为了安全嘛。然后上传软件包的时候发现上传软件就失败了。 在浏览器中打开该 HTML 文件&#xff0c;单击 Test CORS 发送请求后&#xff0c;出现以下错误&#xff0c;错误提示&#xff1…

单点登录系统8大原理机制详解

单点登录系统详解(8大原理机制图解) 单点登录 单点登录&#xff08;SSO&#xff09;实现一处登录&#xff0c;全平台畅通。用户只需登录一次&#xff0c;即可无缝访问多个互信的应用系统&#xff0c;高效便捷&#xff0c;省时省心。 举例来说&#xff0c;阿里旗下拥有多款热门…

Java面试题:解释常见的HTTP状态码及其含义

HTTP状态码是由服务器返回给客户端的三位数字&#xff0c;用于表示HTTP请求的结果状态。以下是一些常见的HTTP状态码及其含义&#xff1a; 1xx: 信息响应 102 Processing (WebDAV)&#xff1a;表示服务器已收到并正在处理请求&#xff0c;但尚未有响应可用。 2xx: 成功 203…

Jackson序列化时实现任意类型自定义转换

自定义Jackson2序列化反序列化&#xff0c;参考&#xff1a; Jackson序列化时实现任意类型自定义转换_jackson 自定义转换-CSDN博客

Spring Boot中的会话管理

Spring Boot中的会话管理 大家好&#xff0c;我是免费搭建查券返利机器人省钱赚佣金就用微赚淘客系统3.0的小编&#xff0c;也是冬天不穿秋裤&#xff0c;天冷也要风度的程序猿&#xff01;今天我们来聊聊Spring Boot中的会话管理。会话管理是Web应用中非常重要的一部分&#…

策略模式(Strategy Pattern)

策略模式 &#xff08;Strategy Pattern&#xff09; 定义 它是将定义的算法家族、分别封装起来&#xff0c;让它们之间可以相互替换&#xff0c;从而让算法的变化不会影响到使用算法的用户。 可以避免多重分支的 if-else、switch语句。 属于行为型模式。 适用场景 如果系…

现货黄金如何操作:黄金技术性止损的运用

止损是现货黄金如何操作中不得不提及的方法。在现货黄金投资过程中&#xff0c;风险是存在的&#xff0c;重要的是如何将风险把控好。这里的一个重要概念就是&#xff0c;要对每一笔交易设定好止损&#xff0c;可以讲&#xff0c;这就是现货黄金如何操作的方法中最重要的一种。…

如何降低MCU系统功耗?

大家在做MCU系统开发的时候&#xff0c;是否也碰到过降低MCU系统功耗的需求&#xff1f; MCU系统整板功耗是个综合的数据&#xff0c;包括MCU功耗以及外部器件功耗&#xff0c;在此我们主要介绍如何降低MCU的功耗&#xff1a; 可以在满足应用的前提下&#xff0c;降低MCU的运…

单片机里面中断状态寄存器是什么

中断状态寄存器是存在于许多微控制器和硬件设备中的一个特殊类型的寄存器&#xff0c;用于指示发生了哪些中断事件。当中断发生时&#xff0c;相应的中断状态寄存器中的一个或多个位会被硬件设置为1。软件可以通过读取这个寄存器来确定哪些中断需要处理&#xff0c;并通过写回特…

top和ps的cpu区别

CPU使用率计算方式&#xff1a; top 命令计算的是在固定时间间隔内&#xff0c;每个进程占用CPU的时间百分比&#xff0c;因此它能反映进程的实时CPU使用情况。top 中的CPU使用率之和可能超过100%&#xff0c;因为在多核系统中&#xff0c;每个核心的使用率可以单独计算&#…