简单的天天酷跑小游戏实现

初级函数实现人物,背景,小乌龟的移动

#include <graphics.h>
#include <iostream>
#include <Windows.h>
#include "tools.h"
#include <mmsystem.h>
#include <conio.h>
#include <time.h>//时间头文件
#include <cstdlib>//随机数文件
#pragma comment(lib, "winmm.lib")
using namespace std;
/*

日志:

游戏界面,(游戏窗口(init),游戏背景(3重背景以不同的速度循环滚动(updateBg(渲染背景)))
实现人物(跳跃活动)

随机出现道具

加分
*/
#define WIN_WIDTH   1012
#define WIN_HEIGHT  396

#define BG_IMAGE    3//多少张背景图片
IMAGE imgBgs[BG_IMAGE];//背景图片
int bgX[3];//背景图片x的初始位置
int bgXSpeed[3] = { 1,2,3 };

//人物图片
#define HERO_IMAGE  12
int index = HERO_IMAGE;
IMAGE imgHeros[HERO_IMAGE];
int HERO_X;
int HERO_Y;
bool hero_jump;//判断人物是否跳跃
int heroJumpMax;//人物跳跃的最大值
int heroJumpMaxoff; //人物跳跃的偏移量

//小乌龟图片
#define tortoiseNum 7
IMAGE imgTortoise[tortoiseNum];
int tortoiseX;//小乌龟的水平坐标
int tortoiseY;
bool tortoiseExise;//设置一次只显示一个小乌龟
int index1 = tortoiseNum;
bool update1;


void init() {
	initgraph(WIN_WIDTH, WIN_HEIGHT);
	char name[64];
	for (int i = 0; i < BG_IMAGE; i++){
		sprintf_s(name, "res/bg%03d.png", i + 1);//不够三位前面补零
		loadimage(&imgBgs[i], name);
		bgX[i] = 0;
	}
	//加载人物图片
	for (int i = 0; i < HERO_IMAGE; i++) {
		sprintf_s(name, "res/hero%d.png", i + 1);
		loadimage(&imgHeros[i], name);
	}
	//加载小乌龟的图片
	for (int i = 0; i < tortoiseNum; i++) {
		sprintf_s(name, "res/t%d.png", i + 1);
		loadimage(&imgTortoise[i], name);
	}
	//设置小乌龟相关信息
	tortoiseExise = false;
	update1 = false;
	//设置人物位置
	HERO_X = WIN_WIDTH * 0.5 - imgHeros[0].getwidth() * 0.5;
	HERO_Y = 295-imgHeros[0].getheight()*0.5;
	hero_jump = false;
	heroJumpMax= 295 - imgHeros[0].getheight() * 0.5 -120;
	heroJumpMaxoff = -4;
}
//玩家跳跃的开关
void jump() {
	hero_jump = true;
	update1 = true;
}
//设置背景图片不同速度移动
void fly() {
	//三重背景回位
	for (int i = 0; i < BG_IMAGE; i++){
		bgX[i] -= bgXSpeed[i];
		if (bgX[i] < -WIN_WIDTH) {
			bgX[i] = 0;//设置回位
		}
	}
	//人物实现跳跃
	if (hero_jump) {
		if (HERO_Y < heroJumpMax) {
			heroJumpMaxoff = 4;
		}
		HERO_Y += heroJumpMaxoff;
		if (HERO_Y > 295 - imgHeros[0].getheight() * 0.5){
			hero_jump = false;
			heroJumpMaxoff = -4;
		}
	}
	else {//跳跃的时候不会刷新图片帧
		index = (index + 1) % 12;//人物图片帧
	}
	index1 = (index1 + 1) % 7;//小乌龟图片帧

	//创建小乌龟
	static int torZhen = 0;
	static int torZhen1 = 100;
	torZhen++;
	if (torZhen > torZhen1) {
		torZhen = 0;
		if (!tortoiseExise){
			tortoiseExise = true;
			tortoiseX = WIN_WIDTH + imgTortoise[0].getwidth();
			tortoiseY = 300  + imgTortoise[0].getheight()*0.4;
		}
		torZhen1 = 100 + rand() % 300;
	}
	if (tortoiseExise){
		tortoiseX -= bgXSpeed[2];
		if (tortoiseX < -imgTortoise[0].getwidth()) {
			tortoiseExise = false;
		}
	}
}

//渲染背景
void updateBg() {
	putimagePNG2(bgX[0],  0,  &imgBgs[0]);
	putimagePNG2(bgX[1], 119, &imgBgs[1]);
	putimagePNG2(bgX[2], 330, &imgBgs[2]);
	//实现玩家奔跑
	putimagePNG2(HERO_X, HERO_Y, &imgHeros[index]);
	
}
//渲染障碍物
void updateEmy() {
	if (tortoiseExise){
		//实现小乌龟图片帧
		putimagePNG2(tortoiseX, tortoiseY,WIN_WIDTH, &imgTortoise[index1]);
	}
	
	
}
//处理按键事件
void keyEvent() {
	//键盘空格跳跃
	char c;
	if (_kbhit()) {
		c = _getch();
		if (c == ' '){
			jump();
		}
	}
	//鼠标左键跳跃
	/*MOUSEMSG msg;
	msg = GetMouseMsg();
	if (msg.uMsg == WM_LBUTTONDOWN) {
		jump();
	}*/
}
int main(void) {

	init();
	int timer = 0;
	while (1) {
		keyEvent();
		timer += getDelay();//距离上一次相差多久时间
		if (timer>30){
			timer = 0;
			update1 = true;
		}
		if (update1) {
			update1 = false;
			BeginBatchDraw();//设置双缓冲
			fly();
			updateBg();//渲染图片
			updateEmy();
			EndBatchDraw();
		}
	}
	system("pause");
	return 0;
}

封装其他障碍物

#include <graphics.h>
#include <iostream>
#include <Windows.h>
#include "tools.h"
#include <mmsystem.h>
#include <conio.h>
#include <vector>//C++提供的长度可变数组
#pragma comment(lib, "winmm.lib")
using namespace std;
/*

日志:

游戏界面,(游戏窗口(init),游戏背景(3重背景以不同的速度循环滚动(updateBg(渲染背景)))
实现人物(跳跃活动)

随机出现道具

加分
*/
#define WIN_WIDTH    1012
#define WIN_HEIGHT   396
bool update1;
#define OBSTRACT_NUM 10

#define BG_IMAGE    3//多少张背景图片
IMAGE imgBgs[BG_IMAGE];//背景图片
int bgX[3];//背景图片x的初始位置
int bgXSpeed[3] = { 1,2,4 };

//人物图片
#define HERO_IMAGE  12
int index = HERO_IMAGE;
IMAGE imgHeros[HERO_IMAGE];
int HERO_X;
int HERO_Y;
bool hero_jump;//判断人物是否跳跃
int heroJumpMax;//人物跳跃的最大值
int heroJumpMaxoff; //人物跳跃的偏移量

//小乌龟图片
#define tortoiseNum 7//小乌龟的图片数量
#define lionNum     6//狮子的数量
#define pillarNum   4//柱子数量

int tortoiseX;//小乌龟的水平坐标
int tortoiseY;
bool tortoiseExise;//设置一次只显示一个小乌龟
int index1 = tortoiseNum;

//设置障碍物枚举
typedef enum {
	tortiose,
	lion,
	pillar
}obstract_type;

//IMAGE ObstractIMG[3][12];
//C++提供的长度可变数组
vector<vector<IMAGE>> ObstractIMG;//image ObstractIMG[][]
//设置障碍物的属性
typedef struct obstract {
	obstract_type type;//障碍物类型
	int imgIndex;//当前显示的图片序号
	int x, y;//障碍物的坐标
	int speed;
	int power;//杀伤力
	bool exist;
}obstract_t;
obstract_t obstracts[OBSTRACT_NUM];
void init() {
	initgraph(WIN_WIDTH, WIN_HEIGHT);
	char name[128];
	for (int i = 0; i < BG_IMAGE; i++){
		sprintf_s(name, "res/bg%03d.png", i + 1);//不够三位前面补零
		loadimage(&imgBgs[i], name);
		bgX[i] = 0;
	}
	update1 = false;
	//加载人物图片
	for (int i = 0; i < HERO_IMAGE; i++) {
		sprintf_s(name, "res/hero%d.png", i + 1);
		loadimage(&imgHeros[i], name);
	}
	//设置人物位置
	HERO_X = WIN_WIDTH * 0.5 - imgHeros[0].getwidth() * 0.5;
	HERO_Y = 295 - imgHeros[0].getheight() * 0.5;
	hero_jump = false;
	heroJumpMax = 295 - imgHeros[0].getheight() * 0.5 - 120;
	heroJumpMaxoff = -4;

	//加载小乌龟的图片
	IMAGE imgTortoise[tortoiseNum];
	for (int i = 0; i < tortoiseNum; i++) {
		sprintf_s(name, "res/t%d.png", i + 1);
		loadimage(&imgTortoise[i], name);
	}
	//使用封装//二维容器
	vector<IMAGE> imgTortArray1;
	for (int i = 0; i < tortoiseNum; i++){
		imgTortArray1.push_back(imgTortoise[i]);
	}
	ObstractIMG.push_back(imgTortArray1);

	//狮子图片
	IMAGE imgLion[lionNum];
	for (int i = 0; i < lionNum; i++) {
		sprintf_s(name, "res/p%d.png", i + 1);
		loadimage(&imgLion[i], name);
	}
	vector<IMAGE> imgTortArray2;
	for (int i = 0; i < lionNum; i++) {
		imgTortArray2.push_back(imgLion[i]);
	}
	ObstractIMG.push_back(imgTortArray2);
	//柱子图片
	IMAGE imgPillar[pillarNum];
	for (int i = 0; i < pillarNum; i++) {
		sprintf_s(name, "res/t%d.png", i + 1);
		loadimage(&imgPillar[i], name);
	}
	vector<IMAGE> imgTortArray3;
	for (int i = 0; i < pillarNum; i++) {
		imgTortArray3.push_back(imgPillar[i]);
	}
	ObstractIMG.push_back(imgTortArray3);
	//设置各种障碍物的共同属性
	for (int i = 0; i < OBSTRACT_NUM; i++){
		obstracts[i].exist = false;

	}

}
void createObstract() {
	int i;
	for (i = 0; i < OBSTRACT_NUM; i++){
		if (obstracts[i].exist == false){
			break;
		}
	}
	if (i> OBSTRACT_NUM){
		return;
	}
	obstracts[i].exist = true;
	obstracts[i].imgIndex = 0;
	//设置随机出现障碍物的类型
	//枚举类型最后一个就是这个枚举的长度,强制转化
	obstracts[i].type =(obstract_type)(rand() % pillar);
	obstracts[i].x = WIN_WIDTH;
	if (obstracts[i].type==pillar) {
		obstracts[i].y = 0;
	}
	else {
		obstracts[i].y = 295;

	}
	if (obstracts[i].type==tortiose){
		obstracts[i].speed = 0;
		obstracts[i].power = 5;
	}else if (obstracts[i].type == lion) {
		obstracts[i].speed = 4;
		obstracts[i].power = 10;
	}else if (obstracts[i].type == pillar) {
		obstracts[i].speed = 0;
		obstracts[i].power = 20;
	}
}
//玩家跳跃的开关
void jump() {
	hero_jump = true;
	update1 = true;
}
//设置背景图片不同速度移动
void fly() {
	//三重背景回位
	for (int i = 0; i < BG_IMAGE; i++){
		bgX[i] -= bgXSpeed[i];
		if (bgX[i] < -WIN_WIDTH) {
			bgX[i] = 0;//设置回位
		}
	}
	//人物实现跳跃
	if (hero_jump) {
		if (HERO_Y < heroJumpMax) {
			heroJumpMaxoff = 4;
		}
		HERO_Y += heroJumpMaxoff;
		if (HERO_Y > 295 - imgHeros[0].getheight() * 0.5){
			hero_jump = false;
			heroJumpMaxoff = -4;
		}
	}
	else {//跳跃的时候不会刷新图片帧
		index = (index + 1) % 12;//人物图片帧
	}
	

	//创建小乌龟
	static int torZhen = 0;
	static int torZhen1 = 100;
	torZhen++;
	if (torZhen > torZhen1) {
		torZhen = 0;
		/*if (!tortoiseExise){
			tortoiseExise = true;
			tortoiseX = WIN_WIDTH + imgTortoise[0].getwidth();
			tortoiseY = 300  + imgTortoise[0].getheight()*0.4;
		}*/
		//障碍物出现的函数
		createObstract();
		torZhen1 = 100 + rand() % 70;
	}
	/*if (tortoiseExise){
		tortoiseX -= bgXSpeed[2];
		if (tortoiseX < -imgTortoise[0].getwidth()) {
			tortoiseExise = false;
		}
	}*/
	//更新障碍物的坐标
	for (int i = 0; i < OBSTRACT_NUM; i++){
		if (obstracts[i].exist) {
			obstracts[i].x -= obstracts[i].speed + bgXSpeed[2];
			if (obstracts[i].x < -ObstractIMG[obstracts[i].type][0].getwidth()*2) {
				obstracts[i].exist = false;
			}
			int len = ObstractIMG[obstracts[i].type].size();
			obstracts[i].imgIndex = (obstracts[i].imgIndex + 1) % len;
		}
	}
}

//渲染背景
void updateBg() {
	putimagePNG2(bgX[0],  0,  &imgBgs[0]);
	putimagePNG2(bgX[1], 119, &imgBgs[1]);
	putimagePNG2(bgX[2], 330, &imgBgs[2]);
	//实现玩家奔跑
	putimagePNG2(HERO_X, HERO_Y, &imgHeros[index]);
	
}
//渲染障碍物
void updateEmy() {
	//if (tortoiseExise){
	//	//实现小乌龟图片帧
	//	putimagePNG2(tortoiseX, tortoiseY,WIN_WIDTH, &imgTortoise[index1]);
	//}
	for (int  i = 0; i < OBSTRACT_NUM; i++){
		if (obstracts[i].exist) {
			putimagePNG2(obstracts[i].x, obstracts[i].y, WIN_WIDTH, 
				&ObstractIMG[obstracts[i].type][obstracts[i].imgIndex]);
		}
	}
	
}
//处理按键事件
void keyEvent() {
	//键盘空格跳跃
	char c;
	if (_kbhit()) {
		c = _getch();
		if (c == ' '){
			jump();
		}
	}
	//鼠标左键跳跃
	/*MOUSEMSG msg;
	msg = GetMouseMsg();
	if (msg.uMsg == WM_LBUTTONDOWN) {
		jump();
	}*/
}
int main(void) {

	init();
	int timer = 0;
	while (1) {
		keyEvent();
		timer += getDelay();//距离上一次相差多久时间
		if (timer>30){
			timer = 0;
			update1 = true;
		}
		if (update1) {
			update1 = false;
			BeginBatchDraw();//设置双缓冲
			updateBg();//渲染图片
			updateEmy();
			EndBatchDraw();
			fly();
		}
	}
	system("pause");
	return 0;
}

代码忒难分块了(直接放最好的源码了)

#include <graphics.h>
#include <iostream>
#include <Windows.h>
#include "tools.h"
#include <mmsystem.h>
#include <conio.h>
#include <vector>//C++提供的长度可变数组
#pragma comment(lib, "winmm.lib")
using namespace std;
/*

日志:

游戏界面,(游戏窗口(init),游戏背景(3重背景以不同的速度循环滚动(updateBg(渲染背景)))
实现人物(跳跃活动)

随机出现道具

加分
*/
#define WIN_WIDTH    1012
#define WIN_HEIGHT   396
bool update1;
#define OBSTRACT_NUM 10
#define WIN_NUM      5

#define BG_IMAGE    3//多少张背景图片
IMAGE imgBgs[BG_IMAGE];//背景图片
int bgX[3];//背景图片x的初始位置
int bgXSpeed[3] = { 1,2,4 };

//人物图片
#define HERO_IMAGE  12
int index = HERO_IMAGE;
IMAGE imgHeros[HERO_IMAGE];
//人物下蹲图片
IMAGE imgHerosDown[2];
int HERO_X;
int HERO_Y;
int heroBlood;
bool hero_jump;//判断人物是否跳跃
bool hero_down;//判断人物是否下蹲
int heroJumpMax;//人物跳跃的最大值
int heroJumpMaxoff; //人物跳跃的偏移量

//小乌龟图片
#define tortoiseNum 7//小乌龟的图片数量
#define lionNum     6//狮子的数量
#define pillarNum   4//柱子数量

int tortoiseX;//小乌龟的水平坐标
int tortoiseY;
bool tortoiseExise;//设置一次只显示一个小乌gui

//设置障碍物枚举
typedef enum {
	tortiose,
	lion,
	pillar1,
	pillar2,
	pillar3,
	pillar4,
	pillar
}obstract_type;

//IMAGE ObstractIMG[3][12];
//C++提供的长度可变数组
vector<vector<IMAGE>> ObstractIMG;//image ObstractIMG[][]
//设置障碍物的属性
typedef struct obstract {
	obstract_type type;//障碍物类型
	int imgIndex;//当前显示的图片序号
	int x, y;//障碍物的坐标
	int speed;
	int power;//杀伤力
	bool exist;
	bool hitH; //是否发生碰撞
	bool pass;//表示是否跨过障碍物
}obstract_t;
obstract_t obstracts[OBSTRACT_NUM];
//解决死亡陷阱
int lastObsIndex;
//记录分数
int scores;
//加分的图片数组
IMAGE imgScores[9];
void init() {
	initgraph(WIN_WIDTH, WIN_HEIGHT ,1);
	char name[128];
	
	preLoadSound("res/hit.mp3");
	mciSendString("play res/bg.mp3 repeat", 0, 0, 0);
	for (int i = 0; i < BG_IMAGE; i++){
		sprintf_s(name, "res/bg%03d.png", i + 1);//不够三位前面补零
		loadimage(&imgBgs[i], name);
		bgX[i] = 0;
	}
	update1 = false;
	//加载人物图片
	for (int i = 0; i < HERO_IMAGE; i++) {
		sprintf_s(name, "res/hero%d.png", i + 1);
		loadimage(&imgHeros[i], name);
	}
	//设置人物位置
	HERO_X = WIN_WIDTH * 0.5 - imgHeros[0].getwidth() * 0.5;
	HERO_Y = 345 - imgHeros[0].getheight();
	heroBlood = 100;
	hero_jump = false;
	hero_down = false;
	heroJumpMax = 295 - imgHeros[0].getheight() * 0.5 - 120;
	heroJumpMaxoff = -4;
	//
	lastObsIndex = -1;
	scores = 0;
	//加载小乌龟的图片
	IMAGE imgTortoise[tortoiseNum];
	for (int i = 0; i < tortoiseNum; i++) {
		sprintf_s(name, "res/t%d.png", i + 1);
		loadimage(&imgTortoise[i], name);
	}
	//使用封装//二维容器
	vector<IMAGE> imgTortArray;
	for (int i = 0; i < tortoiseNum; i++){
		imgTortArray.push_back(imgTortoise[i]);
	}
	ObstractIMG.push_back(imgTortArray);

	//狮子图片
	IMAGE imgLion[lionNum];
	for (int i = 0; i < lionNum; i++) {
		sprintf_s(name, "res/p%d.png", i + 1);
		loadimage(&imgLion[i], name);
	}
	vector<IMAGE> imgPArray;
	for (int i = 0; i < lionNum; i++) {
		imgPArray.push_back(imgLion[i]);
	}
	ObstractIMG.push_back(imgPArray);
	//柱子图片
	//我这里写循环会报错
	IMAGE imgPillar[pillarNum];
	vector<IMAGE> imgHArray;
	sprintf_s(name,sizeof(name) ,"res/h1.png");
	loadimage(&imgPillar[0], name, 63, 260, true);
	imgHArray.push_back(imgPillar[0]);
	ObstractIMG.push_back(imgHArray);
	vector<IMAGE> imgHArray1;
	sprintf_s(name, sizeof(name), "res/h2.png");
	loadimage(&imgPillar[1], name, 63, 260, true);
	imgHArray1.push_back(imgPillar[1]);
	ObstractIMG.push_back(imgHArray1);
	vector<IMAGE> imgHArray2;
	sprintf_s(name, sizeof(name),"res/h3.png");
	loadimage(&imgPillar[2], name, 63, 260, true);
	imgHArray2.push_back(imgPillar[2]);
	ObstractIMG.push_back(imgHArray2);
	vector<IMAGE> imgHArray3;
	sprintf_s(name, sizeof(name),"res/h4.png");
	loadimage(&imgPillar[3], name, 63, 260, true);
	imgHArray3.push_back(imgPillar[3]);
	ObstractIMG.push_back(imgHArray3);

	//设置各种障碍物的共同属性
	for (int i = 0; i < OBSTRACT_NUM; i++){
		obstracts[i].exist = false;

	}
	//加载分数图片
	for (int i = 0; i < 9; i++) {
		sprintf_s(name, "res/sz/%d.png", i);
		loadimage(&imgScores[i], name);
	}
	//设置人物下蹲素材
	loadimage(&imgHerosDown[0],"res/d1.png");
	loadimage(&imgHerosDown[1],"res/d2.png");
}
void createObstract() {
	int i;
	for (i = 0; i < OBSTRACT_NUM; i++){
		if (obstracts[i].exist == false){
			break;
		}
	}
	if (i> OBSTRACT_NUM){
		return;
	}
	obstracts[i].exist = true;
	obstracts[i].hitH = false;
	obstracts[i].pass = false;
	obstracts[i].imgIndex = 0;
	//设置随机出现障碍物的类型
	//枚举类型最后一个就是这个枚举的长度,强制转化
	obstracts[i].type =(obstract_type)(rand() % 3);
	if (lastObsIndex>=0 &&obstracts[lastObsIndex].type>=pillar1
		&&obstracts[lastObsIndex].type<=pillar4
		&&obstracts[i].type == lion&&obstracts[lastObsIndex].x>WIN_WIDTH -500) {
		obstracts[i].type = tortiose;
	}
	lastObsIndex = i;
	if (obstracts[i].type == pillar1){
		obstracts[i].type = (obstract_type)((int)(obstracts[i].type) + rand() % 4);
	}
	obstracts[i].x = WIN_WIDTH;
	
	obstracts[i].y = 345+5- ObstractIMG[obstracts[i].type][0].getheight();
	
	if (obstracts[i].type==tortiose){
		obstracts[i].speed = 0;
		obstracts[i].power = 5;
	}else if (obstracts[i].type == lion) {
		obstracts[i].speed = 4;
		obstracts[i].power = 10;
	}else if (obstracts[i].type >= pillar1 && obstracts[i].type <= pillar4) {
		obstracts[i].speed = 0;
		obstracts[i].power = 20;
		obstracts[i].y = 0;
	}
}
//计算障碍物
void checkHit() {
	for (int i = 0; i < OBSTRACT_NUM; i++) {
		if (obstracts[i].exist&& obstracts[i].hitH == false) {
			int a1x, a1y, a2x, a2y;
			int off = 30;
			if (!hero_down) {
				a1x = HERO_X + off;
				a1y = HERO_Y + off;
				a2x = HERO_X + imgHeros[index].getwidth() - off;
				a2y = HERO_Y + imgHeros[index].getheight();
			}
			else {
				a1x = HERO_X + off;
				a1y = 345 - imgHerosDown[index].getheight();
				a2x = HERO_X + imgHerosDown[index].getwidth() - off;
				a2y = 345;
			}
			IMAGE img = ObstractIMG[obstracts[i].type][obstracts[i].imgIndex];
			int b1x = obstracts[i].x +off;
			int b1y = obstracts[i].y +off;
			int b2x = obstracts[i].x + img.getwidth() - off;
			int b2y = obstracts[i].y +img.getheight() - 10;
			if (rectIntersect(a1x, a1y, a2x, a2y, b1x, b1y, b2x, b2y)){
				heroBlood -= obstracts[i].power;
				//cout << "英雄血量:" << heroBlood << endl;
				playSound("res/hit.mp3");
				obstracts[i].hitH = true;
			}
		} 
	}
}
//玩家跳跃的开关
void jump() {
	hero_jump = true;
	update1 = true;
}
//玩家下蹲
void down() {
	update1 = true;
	hero_down = true;
	index = 0;
}
//设置背景图片不同速度移动
void fly() {
	//三重背景回位
	for (int i = 0; i < BG_IMAGE; i++){
		bgX[i] -= bgXSpeed[i];
		if (bgX[i] < -WIN_WIDTH) {
			bgX[i] = 0;//设置回位
		}
	}
	//人物实现跳跃
	if (hero_jump) {
		if (HERO_Y < heroJumpMax) {
			heroJumpMaxoff = 4;
		}
		HERO_Y += heroJumpMaxoff;
		if (HERO_Y > 295 - imgHeros[0].getheight() * 0.5){
			hero_jump = false;
			heroJumpMaxoff = -4;
		}
	}
	else if (hero_down) {
		static int i = 0;
		int delayIndex[2] = { 4,30 };
		i++;
		if (i>=delayIndex[index]) {
			i = 0;
			index++;
			if (index >= 2) {
				hero_down = false;
				index = 0;
			}
		}
		
	}else {//跳跃的时候不会刷新图片帧
		index = (index + 1) % 12;//人物图片帧
	}
	

	//创建小乌龟
	static int torZhen = 0;
	static int torZhen1 = 100;
	torZhen++;
	if (torZhen > torZhen1) {
		torZhen = 0;
		/*if (!tortoiseExise){
			tortoiseExise = true;
			tortoiseX = WIN_WIDTH + imgTortoise[0].getwidth();
			tortoiseY = 300  + imgTortoise[0].getheight()*0.4;
		}*/
		//障碍物出现的函数
		createObstract();
		torZhen1 = 100 + rand() % 70;
	}
	/*if (tortoiseExise){
		tortoiseX -= bgXSpeed[2];
		if (tortoiseX < -imgTortoise[0].getwidth()) {
			tortoiseExise = false;
		}
	}*/
	//更新障碍物的坐标
	for (int i = 0; i < OBSTRACT_NUM; i++){
		if (obstracts[i].exist) {
			obstracts[i].x -= obstracts[i].speed + bgXSpeed[2];
			if (obstracts[i].x < -ObstractIMG[obstracts[i].type][0].getwidth()*2) {
				obstracts[i].exist = false;
			}
			int len = ObstractIMG[obstracts[i].type].size();
			obstracts[i].imgIndex = (obstracts[i].imgIndex + 1) % len;
		}
	}
}

//渲染背景
void updateBg() {
	putimagePNG2(bgX[0],  0,  &imgBgs[0]);
	putimagePNG2(bgX[1], 119, &imgBgs[1]);
	putimagePNG2(bgX[2], 330, &imgBgs[2]);
	
}
void updateHero() {
	if (!hero_down) {
		//实现玩家奔跑
		putimagePNG2(HERO_X, HERO_Y, &imgHeros[index]);
	}
	else {
		//实现玩家下蹲
		int y = 295 - imgHerosDown[index].getheight() * 0.5;
		putimagePNG2(HERO_X, 295, &imgHerosDown[index]);
	}
}
//渲染障碍物
void updateEmy() {
	//if (tortoiseExise){
	//	//实现小乌龟图片帧
	//	putimagePNG2(tortoiseX, tortoiseY,WIN_WIDTH, &imgTortoise[index1]);
	//}
	for (int  i = 0; i < OBSTRACT_NUM; i++){
		if (obstracts[i].exist) {
			putimagePNG2(obstracts[i].x, obstracts[i].y, WIN_WIDTH, 
				&ObstractIMG[obstracts[i].type][obstracts[i].imgIndex]);
		}
	}
	//人物与障碍物的碰撞检测
	checkHit();
}
void updateBlood() {
	drawBloodBar(10, 10, 200, 10, 2, BLUE, DARKGRAY, RED, heroBlood / 100.0);
}
//检查游戏是否结束
void checkOver() {
	if (heroBlood<=0){
		loadimage(0, "res/over.png");
		FlushBatchDraw();
		mciSendString("stop res/bg.mp3",0,0,0);
		system("pause");
		mciSendString("play res/bg.mp3 repeat", 0, 0, 0);
		heroBlood = 100;
		scores = 0;
	}
	
}
//计算分数
void checkScore() {
	for (int i = 0; i < OBSTRACT_NUM; i++){
		if (obstracts[i].exist && obstracts[i].pass==false
			&&obstracts[i].x+ObstractIMG[obstracts[i].type][0].getwidth()<HERO_X
			&&obstracts[i].hitH==false)
		{
			if (obstracts[i].type>=pillar1&&obstracts[i].type<=pillar4)
			{
				scores += 2;
			}
			scores++;
			cout << scores << endl;
			obstracts[i].pass = true;
		}
	}
}
//渲染分数
void updateScore() {
	char str[8];
	int x = 20;
	int y = 25;
	sprintf(str, "%d", scores);
	for (int i = 0; i < str[i]; i++){
		int sz = str[i] - '0';
		putimagePNG(x, y, &imgScores[sz]);
		x += imgScores[i].getwidth() + 5;
	}
	FlushBatchDraw();
}
//游戏审理
void checkWin() {
	if (scores>WIN_NUM){
		mciSendString("play res/win.mp3 repeat", 0, 0, 0);
		Sleep(1000);
		loadimage(0, "res/win.png");
		FlushBatchDraw();
		mciSendString("stop res/win.mp3", 0, 0, 0);
		system("pause");

		heroBlood = 100;
		scores = 0;
		mciSendString("play res/bg.mp3", 0, 0, 0);
	}
}
//处理按键事件
void keyEvent() {
	//键盘空格跳跃
	char c;
	if (_kbhit()) {
		c = _getch();
		if (c == ' '){
			jump();
		}
		else if (c == 'a') {
			down();
		}
	}
	//鼠标左键跳跃
	/*MOUSEMSG msg;
	msg = GetMouseMsg();
	if (msg.uMsg == WM_LBUTTONDOWN) {
		jump();
	}*/
}
int main(void) {

	init();
	loadimage(0, "res/over.png");
	FlushBatchDraw();
	system("pause");
	int timer = 0;
	while (1) {
		keyEvent();
		timer += getDelay();//距离上一次相差多久时间
		if (timer>30){
			timer = 0;
			update1 = true;
		}
		if (update1) {
			update1 = false;
			BeginBatchDraw();//设置双缓冲
			updateBg();//渲染图片
			updateBlood();//血条
			updateHero();
			updateEmy();
			checkOver();
			checkScore();//检查分数
			updateScore();//渲染分数
			checkWin();
			EndBatchDraw();
			fly();
			
		
			
		}
	}
	system("pause");
	return 0;
}

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

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

ros2+gazebo(ign)激光雷达+摄像头模拟

虽然ign不能模拟雷达&#xff0c;但是摄线头是可以模拟的。 好了现在都不用模拟了&#xff0c;ign摄线头也模拟不了。 ros2ign gazebo无法全部模拟摄线头和雷达。 只能有这样2个解决方法&#xff1a; 方法1&#xff1a;使用ros2 gazebo11 方案2&#xff1a;使用ros2买一个实…

【QT】QMessageBox 弹出消息框,对话确认框(确定/取消)

1.无互动 QMessageBox::information(nullptr,"信息","登陆成功");2.互动&#xff1a;确定、取消 QMessageBox::StandardButton box; box QMessageBox::question(this, "提示", "确定要添加吗?", QMessageBox::Yes|QMessageBox::…

多种格式图片的制作方法,二维码生成器在线使用教学

图片现在通过二维码展示的场景有很多&#xff0c;比如常见的宣传海报、人员资料、信息展示、自拍等类型的图片都可以做成二维码图片查看。那么如果想要制作图片二维码的小伙伴&#xff0c;使用图片二维码生成器来制作会比较的简单快捷&#xff0c;下面就来给大家介绍一下其具体…

uniapp中uview组件库丰富的CountTo 数字滚动使用方法

目录 #平台差异说明 #基本使用 #设置滚动相关参数 #是否显示小数位 #千分位分隔符 #滚动执行的时机 #API #Props #Methods #Event 该组件一般用于需要滚动数字到某一个值的场景&#xff0c;目标要求是一个递增的值。 注意 如果给组件的父元素设置text-align: cente…

NUS CS1101S:SICP JavaScript 描述:前言、序言和致谢

前言 原文&#xff1a;Foreword 译者&#xff1a;飞龙 协议&#xff1a;CC BY-NC-SA 4.0 我有幸在我还是学生的时候见到了了不起的 Alan Perlis&#xff0c;并和他交谈了几次。他和我共同深爱和尊重两种非常不同的编程语言&#xff1a;Lisp 和 APL。跟随他的脚步是一项艰巨的任…

想成为一名C++开发工程师,需要具备哪些条件?

C语言是一门面向过程的、抽象化的通用程序设计语言&#xff0c;广泛应用于底层开发。C语言能以简易的方式编译、处理低级存储器。C语言是仅产生少量的机器语言以及不需要任何运行环境支持便能运行的高效率程序设计语言。尽管C语言提供了许多低级处理的功能&#xff0c;但仍然保…

JVM知识总结(持续更新)

这里写目录标题 java内存区域程序计数器虚拟机栈本地方法栈堆方法区 java内存区域 Java 虚拟机在执行 Java 程序的过程中会把它管理的内存划分成若干个不同的数据区域&#xff1a; 程序计数器虚拟机栈本地方法栈堆方法区 程序计数器 记录下一条需要执行的虚拟机字节码指令…

图像异或加密及唯密文攻击

异或加密 第一种加密方式为异或加密&#xff0c;异或加密的原理是利用异或的可逆性质&#xff0c;原始图像的像素八位bit分别与伪随机二进制序列异或&#xff0c;得到的图像就为加密图像。如下图对lena图像进行加密。 伪随机序列为一系列二进制代码&#xff0c;它受加密秘钥控…

uniapp中uview组件库的AlertTips 警告提示使用方法

目录 #使用场景 #平台差异说明 #基本使用 #图标 #可关闭的警告提示 #API #Props #Events 警告提示&#xff0c;展现需要关注的信息。 #使用场景 当某个页面需要向用户显示警告的信息时。非浮层的静态展现形式&#xff0c;始终展现&#xff0c;不会自动消失&#xff0…

【Kafka-3.x-教程】-【七】Kafka 生产调优、Kafka 压力测试

【Kafka-3.x-教程】专栏&#xff1a; 【Kafka-3.x-教程】-【一】Kafka 概述、Kafka 快速入门 【Kafka-3.x-教程】-【二】Kafka-生产者-Producer 【Kafka-3.x-教程】-【三】Kafka-Broker、Kafka-Kraft 【Kafka-3.x-教程】-【四】Kafka-消费者-Consumer 【Kafka-3.x-教程】-【五…

【深度学习每日小知识】Training Data 训练数据

训练数据是机器学习的基本组成部分&#xff0c;在模型的开发和性能中起着至关重要的作用。它是指用于训练机器学习算法的标记或注释数据集。以下是与训练数据相关的一些关键方面和注意事项。 Quantity 数量 训练数据的数量很重要&#xff0c;因为它会影响模型的泛化能力。通常…

软件测试|教你使用Python绘制正多边形

简介 绘制正多边形是Python图形编程的基本任务之一。在本文中&#xff0c;我将为你提供一个使用Python绘制正多边形的详细教程&#xff0c;并提供一个示例代码。我们将使用Python的Turtle库来进行绘制。 步骤1&#xff1a;导入Turtle库 我们需要先安装好Python环境&#xff…

教育观察期刊投稿邮箱、投稿要求

《教育观察》创刊于2012年&#xff0c;是国家新闻出版总署批准的正规教育类学术期刊&#xff0c;本刊致力于在教育实践中以“观察”为方法&#xff0c;以“观察者”为主体&#xff0c;以“新观察”为旨趣&#xff0c;打造从教育实践中洞察教育未来的教育研究与交流的平台。主要…

接雨水的四种姿势——一篇文章彻底弄懂接雨水问题

前言 leetcode 42. 接雨水是一道业内著名的hard题&#xff0c;多次出现在面试场上&#xff0c;经久不衰&#xff0c;难住了一届又一届的候选人。 作为leetcode上热度最高的题目之一&#xff0c;题目评论区也是好一番热闹景象。有人表示看了三天做不出来&#xff0c;有人在评论…

每日算法打卡:蚂蚁感冒 day 13

文章目录 原题链接题目描述输入格式输出格式数据范围输入样例1&#xff1a;输出样例1&#xff1a;输入样例2&#xff1a;输出样例2&#xff1a; 题目分析示例代码 原题链接 1211. 蚂蚁感冒 题目难度&#xff1a;简单 题目来源&#xff1a;第五届蓝桥杯省赛C A/B组 题目描述…

纯 JavaScript 生成UUID和随机MD5值

在开发中&#xff0c;我们经常需要生成唯一的标识符或随机的哈希值。在这篇博客中&#xff0c;我将介绍如何使用纯 JavaScript 生成 UUID&#xff08;通用唯一标识符&#xff09;和随机 MD5 值的方法。这些方法适用于前端和后端开发&#xff0c;让我们一起深入浅出地了解吧。 前…

this.setState的注意事项

目录 1、this.setState的注意事项 2、是什么造成了this.setState()的不同步&#xff1f; 3、 那this.setState()什么时候同步&#xff0c;什么时候不同步&#xff1f; 3.1 经过React包装的onClick点击事件&#xff08;&#xff09; 3.2 没经过React包装的 原生点击事件 …

浅析Linux进程管理:current宏实现

本文基于Linux 5.10.186版本内核源码进行分析。 文章目录 current概述早期内核版本实现最新版本内核实现x86体系下的current宏实现ARMv8体系下的current实现 相关参考 current概述 Linux内核在运行时经常需要访问当前运行进程的task_struct指针&#xff0c;于是&#xff0c;系…

ptaR7-6/zzuli2106 有去有回

题目 输入n个整数&#xff0c;第一趟按从左到右间隔k个数取数据&#xff0c;然后第二趟再从右到左间隔k-1个数取余下的数&#xff0c;如果数据没有取完&#xff0c;下一趟再间隔k-2个从左到右取数据&#xff0c;如此反复&#xff0c;直到所有的数据取完为止。注意&#xff1a;…

【2023年度回顾】让我们在新的一年继续努力前行

每当我们在努力的时候都会想&#xff1a;为什么我要努力&#xff1f;躺着不舒服吗&#xff1f; 大家好&#xff01;我是命运之光&#xff0c;一名普普通通的计算机科学与技术专业的大三学生。 &#x1f4d5;回顾一下整个2023年 因为我有每天发朋友圈的习惯&#xff0c;所以这一…