-
QT编写的C++贪吃蛇小游戏
游戏通过按键控制
部分代码:
#include "gamewidget.h"
#define ROW 13
#define COL 16
#define UP 0
#define DOWN 1
#define LEFT 2
#define RIGHT 3
GameWidget::GameWidget(QWidget *parent)
:QWidget(parent)
{
this->setAutoFillBackground(true);//覆盖
this->resize(480,270);
this->setWindowIcon(QIcon("img/icon.jpg"));
this->setWindowTitle("贪吃蛇");
QPalette palette;
palette.setBrush(QPalette::Background,QBrush((QPixmap)"img/bjt.png"));
this->setPalette(palette);
//按扭区
leftbtn=new QPushButton(this);
leftbtn->setIcon((QIcon)"img/zuo.png");
leftbtn->setIconSize(QSize(40,40));
leftbtn->setGeometry(QRect(340,180,40,40));
leftbtn->setFlat(true);
rightbtn=new QPushButton(this);
rightbtn->setIcon((QIcon)"img/you.png");
rightbtn->setIconSize(QSize(40,40));
rightbtn->setGeometry(QRect(430,180,40,40));
rightbtn->setFlat(true
- 2022-03-21 19:09:00下载
- 积分:1
-
基于python的小游戏
基于python的二人小游戏,可在闲暇之时用于打发时间,操作简单,易于上手,本程序源码来自于书籍,
- 2022-03-19 15:25:28下载
- 积分:1
-
介绍认知网络的定义与内容,结合具体实例容易理解。适合学生和教师使用。...
介绍认知网络的定义与内容,结合具体实例容易理解。适合学生和教师使用。-Introduce the definition of cognitive networks and content, combined with concrete examples easier to understand. The use of suitable students and teachers.
- 2022-09-25 06:20:03下载
- 积分:1
-
是一个读取硬盘数据的小程序,是一个可执行的程序。
是一个读取硬盘数据的小程序,是一个可执行的程序。-is a read data from the hard drives small program is an executable program.
- 2022-02-07 04:03:02下载
- 积分:1
-
刚学编程,多多指导
刚学编程,多多指导-just learning programming, many guidance
- 2023-07-08 13:30:03下载
- 积分:1
-
<Multimedia framework> is worth working in this area take a look at the To...
很值得从事这方面的同仁看一看,讲得不错,免费给你看啊,很有帮助,请支持一下本网站,真的很不错!- is worth working in this area take a look at the Tongren, speak well, look for free Here you are, ah, very helpful, please click Supporting this site, really very good!
- 2022-03-05 07:01:54下载
- 积分:1
-
在arm9 2440 使用rtp协议使用G.726编码传输音频的PC接受端程序
在arm9 2440 使用rtp协议使用G.726编码传输音频的PC接受端程序-In the arm9 2440 using the rtp protocol the use of G.726 encoded audio transmission the receiving end of the PC program
- 2022-07-09 17:24:55下载
- 积分:1
-
利用VB编写的文本朗读程序,在输入文本后进行朗读并可保存
利用VB编写的文本朗读程序,在输入文本后进行朗读并可保存-VB prepared text read aloud procedures, the imported text after reading can preserve
- 2022-06-19 05:51:24下载
- 积分:1
-
jpeg 编码器和解码器
此代码 pemet 我们使 jpeg 编码器和解码器
转移块
对块进行 DCT
量子化块
减去从当前的 DC 系数的最后一个 DC 系数
之字形块
零的运行的长度编码块
分解成可变长度二进制数及它们的长度的非零系数
熵编码
- 2022-01-25 20:58:34下载
- 积分:1
-
时钟类 C++ 实现闹钟
时钟类 C++ 实现闹钟,编码规范,编码风格良好,实现了类的封装。注释详细,是给留学生做的作业,里面的代码都比较好,命名规范,合理
- 2023-06-01 14:00:03下载
- 积分:1