c++编写天天酷跑游戏

天天酷跑2.0版本:2.0

游戏背景设置




  1. Start importing material (background picture)
#include <graphics.h>

Create a graph window and define macros for the window

 #define WIN_WINDTH 1012#define WIN_HEIGHT 396initgraph(WIN_WINDTH, WIN_HEIGHT);
  1. Import game background (scroll cycle)

    #include <graphics.h>//global variableIMAGE imgsBgs[3];//define imgae variablevoid init()
    {initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0;i < 3;i++){sprintf(name,"res/bg%03d.png",i+1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgBgs[i],name);}}
     ```c++int main(){init ();updataBg();return 0;}```
    
  2. Local modularization
    Game background coordinates

    void updataBg()
    {putimage(0,0,&imgBgs[0]);putimage(0,119,&imgBgs[1]);putimage(0,330,&imgBgs[2]);}
    

The picture is the Y coordinate of motion, and the definition amount is constantly changed to keep the last y coordinate

int bgX[3];//X coordinate global variable of background picture

change initialization

#include <graphics.h>void init()
{initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0;i < 3;i++){sprintf(name,"res/bg%03d.png",i+1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgBgs[i],name);bgX[i] = 0;}}void updataBg(){putimage(bgX[0],0,&imgBgs[0]);putimage(bgX[1],119,&imgBgs[1]);putimage(bgX[2],330,&imgBgs[2]);          }

背景变黑了




Call tool H transparent map
Easy background black

add tools file

#include "tools.h"

**Change the put image code **

**putimagePNG is Internet GPl code **

 void updataBg(){putimagePNG(bgX[0],0,&imgBgs[0]);putimagePNG(bgX[1],110,&imgBgs[1]);putimagePNG(bgX[2],330,&imgBgs[2]);          }

添加带有一些lib和Header文件的“tool.h”文件

#include <mmsystem.h>
#pragma comment(lib,"winmm.lib")

实现循环滚动的效果

int main()
{init ();while(1){updataBg();}return 0;
}

更改坐标

void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;
}}
int bgSpeed[3] = { 1,2,4};
void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= bgSpeed[1];
}}
int main()
{init ();while(1){updataBg();fly();// add Frame waitingSleep(20);}return 0;
}

导致记忆冲突??

使用优化版本

void updataBg()
{putimagePNG2(bgX[0],0, &imgBgs[0]);putimagePNG2(bgX[1],119, & imgBgs[1]);putimagePNG2(bgX[2],330, & imgBgs[2]);
}
void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;if(bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}}
 int main()
{init ();while(1){BeginBatchDraw();//double buffer mechanical startupdataBg();//FlushBatshDrawEndBatshDraw();//ouble buffer mechanical endfly();// add Frame waitingSleep(30);}return 0;
}

Hero appera

define goba l variable

IMAGE imgHeros[12];

加载玩家run图片hero


void init()
{initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0;i < 3;i++){sprintf(name,"res/bg%03d.png",i+1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgBgs[i],name);bgX[i] = 0;}//加载玩家奔跑帧数采for (int i = 0; i < 12;i++){//res/hero1.png ~ hero12.pngsprintf(name,"res/hero%d",i + 1);loadimage(&imgHeros[i],name);}}

让人物跑起来

 int main()
{init ();while(1){BeginBatchDraw();//double buffer mechanical startupdataBg();//打印奔跑的heroputimagePNG2(heroX,heroY,&imgHeros[heroIndex]);//    FlushBatchDraw();EndBatshDraw();//ouble buffer mechanical endfly();// add Frame waitingSleep(30);}return 0;
}

定义玩家的x坐标

int heroX,heroY;
void init()
{initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0;i < 3;i++){sprintf(name,"res/bg%03d.png",i+1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgBgs[i],name);bgX[i] = 0;}//加载玩家奔跑帧数采for (int i = 0; i < 12;i++){//res/hero1.png ~ hero12.pngsprintf(name,"res/hero%d.png",i + 1);loadimage(&imgHeros[1],name);}heroX = WIN_WIDTH * 0.5 - imgHeros[0].getwidth() *0.5;heroY = 345 - imgHeros[0].getheight();heroIndex = 0;}
int heroIndex;//玩家显示的是第几章frame
void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;if(bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}heroIndex = (heroIndex + 1)%12;  }

实现玩家跳跃

用户输入检测函数

#include <stdlib.h>
#include <stdio.h>
#include <conio.h>
void keyEvent()
{char ch;if(_kbhit())//如果有按键输入{ch = _getch();//_getch() 不需要按下回车 直接读取if(ch == ''){jump();}}}

跳跃函数

#include <stdio.h>
#include <conio.h>
#include <stdlib.h>void jump()
{heroJump = true;}

//跳跃开关

bool heroJump;//初始化 void init()
{//。。。heroJump = false;
}

开始跳跃 实现

void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;if(bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}heroIndex = (heroIndex + 1)%12;  //实现跳跃if(heroJump){if(heroY > JumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if(heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}}}

调用跳跃

int main()
{// test();init();while (1){keyEvent();BeginBatchDraw();//double buffer mechanical startupdataBg();putimagePNG2(heroX, heroY, &imgHeros[heroIndex]);FlushBatchDraw();//EndBatshDraw();//ouble buffer mechanical endfly();// add Frame waitingSleep(20);}return 0;
}

跳跃的最高度

全局变量

int jumpHeightMax;void init(){//...jumpHeightMax =  345 - imgHeros[0].getheight() - 120;}

定义跳跃偏移量

int heroJumpOff;
void init()
{
///....
heroJumpOff = -4;}

跳的时候腿不要动

void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;if(bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}//实现跳跃if(heroJump){if(heroY < JumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if(heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}          }else {//不跳跃的时候heroIndex = (heroIndex + 1)%12;  }}

优化帧等待

int main()
{// test();init();int timer;//调用时间while (1){keyEvent();timer += getDelay();if(timer > 30){timer = 0;BeginBatchDraw(); updataBg();putimagePNG2(heroX, heroY,                                            &imgHeros[heroIndex]);FlushBatchDraw();fly();}//Sleep(20);}return 0;
}

getDelay() function

int updata; //表示是否要刷新画面void init()
{//...
updata = true;}
int main()
{// test();init();int timer;//调用时间while (1){keyEvent();timer += getDelay();if(timer > 30){timer = 0;           updata = true;			}if(updata){BeginBatchDraw(); updataBg();putimagePNG2(heroX, heroY,                            &imgHeros[heroIndex]);FlushBatchDraw();fly();}//Sleep(20);}return 0;
}

更新jump

void jump()
{heroJump = true;updata = true;}
 if(updata){updata = false;//不能一直刷BeginBatchDraw(); updataBg();putimagePNG2(heroX, heroY,                           	 &imgHeros[heroIndex]);FlushBatchDraw();fly();}//Sleep(20);

new main

int main()
{// test();init();int timer;//调用时间while (1){keyEvent();timer += getDelay();if(timer > 30){timer = 0;           updata = true;			}if(updata){updata = false;//不能一直刷BeginBatchDraw(); updataBg();putimagePNG2(heroX, heroY,   &imgHeros[heroIndex]);FlushBatchDraw();fly();}//Sleep(20);}return 0;
}

实现障碍物的出现

定义图片

IMAGE imgTortoise;//小乌龟
int torToiseX,torToiseY;//小乌龟的水平坐标
bool torToiseExits;//当前窗口是否有小乌龟

初始化

void init()
{// ..loadimage(&imgTortoise,"res/t1.png");torTooiseExist = false;torToiseY = 345 - imgTortoise.getheight() +5;
}

显示小乌龟

void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;if(bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}//实现跳跃if(heroJump){if(heroY > JumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if(heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}          }else {//不跳跃的时候heroIndex = (heroIndex + 1)%12;  }//创建小乌龟static int frameCount = 0;frameCount++;if(frameCount > 100){frameCount = 0;if(!torToiseExist){torToiseExist = true;torToiseY = WIN_WIDTH;}}}
int main()
{// test();init();int timer;//调用时间while (1){keyEvent();timer += getDelay();if(timer > 30){timer = 0;           updata = true;			}if(updata){updata = false;//不能一直刷BeginBatchDraw(); updataBg();putimagePNG2(heroX, heroY,                            &imgHeros[heroIndex]);updataEnemy();FlushBatchDraw();fly();}//Sleep(20);}return 0;
}
void updataEnemy()
{//渲染小乌龟if(torTooiseExist){putimagePNG2(torToiseX,torToiseY,WIN_WIDTH,&imgTortoise);}}

更新小乌龟的位置

void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;if(bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}//实现跳跃if(heroJump){if(heroY<  JumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if(heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}          }else {//不跳跃的时候heroIndex = (heroIndex + 1)%12;  }//创建小乌龟static int frameCount = 0;frameCount++;if(frameCount > 100){frameCount = 0;if(!torToiseExist){torToiseExist = true;torToiseX = WIN_WIDTH;} }torTOiseX -+ bgSpeed[2];if(torToiseExist){if(torToiseX < - imgTortoise.getwidth()){torToiseExits = false;}}
}

使小乌龟出现为随机值

void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;if(bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}//实现跳跃if(heroJump){if(heroY > JumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if(heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}          }else {//不跳跃的时候heroIndex = (heroIndex + 1)%12;  }//创建小乌龟static int frameCount = 0;static int torToiseFre = 100;frameCount++;if(frameCount > torToiseFre ){frameCount = 0;if(!torToiseExist){torToiseExist = true;torToiseX = WIN_WIDTH;torToiseFre = 200 + rand()%300 ;} }torTOiseX -+ bgSpeed[2];if(torToiseExist){if(torToiseX < - imgTortoise.getwidth()){torToiseExits = false;}}
}

使用结构体封装障碍物

#include <vector>
using namespace std;
#define OBSTACLE_COUNT 10
typedef  enum {TORTOISE,//0LION,//1OBSTACLE_TYPE_COUNT//2}obstacle_type;//IMAGE obstacleImgs[3][12];
//二维
vector<vector<IMAGE>>  obstacleImgs;//存放所有障碍的图片typedef struct obstacle//障碍物
{
obstacle_type type;//障碍物的类型int x,y;	//障碍物的坐标int speed;int power;//受到的伤害 bool exist; int imgIndex;//显示当前图片的序号}obstacle_t;obstacle_t obstacles[ OBSTACLE_COUNT];//障碍物的个数

改用结构体后的代码

before init()

void init()
{initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0;i < 3;i++){sprintf(name,"res/bg%03d.png",i+1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgBgs[i],name);bgX[i] = 0;}//加载玩家奔跑帧数采for (int i = 0; i < 12;i++){//res/hero1.png ~ hero12.pngsprintf(name,"res/hero%d.png",i + 1);loadimage(&imgHeros[1],name);}heroX = WIN_WIDTH * 0.5 - imgHeros[0].getwidth() *0.5;heroY = 345 - imgHeros[0].getheight();heroIndex = 0;heroJump = false;jumpHeightMax =  345 - imgHeros[0].getheight() - 120;updata = true;loadimage(&imgTortoise,"res/t1.png");torTooiseExist = false;torToiseY = 345 - imgTortoise.getheight() +5;heroJumpOff = -4;}

after

void init()
{initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0;i < 3;i++){sprintf(name,"res/bg%03d.png",i+1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgBgs[i],name);bgX[i] = 0;}//加载玩家奔跑帧数采for (int i = 0; i < 12;i++){//res/hero1.png ~ hero12.pngsprintf(name,"res/hero%d.png",i + 1);loadimage(&imgHeros[1],name);}heroX = WIN_WIDTH * 0.5 - imgHeros[0].getwidth() *0.5;heroY = 345 - imgHeros[0].getheight();heroIndex = 0;heroJump = false;jumpHeightMax =  345 - imgHeros[0].getheight() - 120;updata = true;heroJumpOff = -4;IMAGE imgTort ;  loadimage(&imgTort,"res/t1.png");vector<IMAGE>imgTortArray;imgTortArray.push_back(imgTort);obstacleImgs.push_back(imgTortArray);//lionIMAGE imgLion;vector<IMAGE>imgLionArry;for (int i = 0 ; i < 6;i++){sprintf(name,"res/p%d.png",i+1);loadimage(&mgLion,name);imgLionArry.push_back(imgLion);}obstacleImgs.push_back(imgLionArray);//对障碍物池进行初始化for(int i = 0;i < OBSTALE_COUNT;i++){obstacles[i].exist = false;//都不允许出场}}

更爱渲染小乌龟

void updataEnemy()
{//渲染小乌龟for(int i = 0;i < OBSTACLE_COUNT;i++){if(obstacles[i].exist){putimagePNG2(obstacles[i].x,obstacles[i].y,WIN_WIDTH, &obstacleImgs[obstacles[i].type] [obstacles[i].imgIndex])}}}

修改fly

void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;if(bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}//实现跳跃if(heroJump){if(heroY < JumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if(heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}          }else {//不跳跃的时候heroIndex = (heroIndex + 1)%12;  }//创建障碍物static int frameCount = 0;static int enemyFre = 50;frameCount++;if(frameCount > enemyFre ){frameCount = 0;enemyFre = 50 + rand()%50 ;createObstacle();}}

创建障碍物

void createObstacle()
{int i;for( i = 0 ;i < OBSTACLE_COUNT:i++){if(obstacles[i].exist == false){break;}     }if(i  >= OBSTACLE_COUNT){return;}obstacles[i].exist = true;obstacles[i].imgIndex = 0;obstacles[i].type =        (obstacle_type)(rand()%OBSTACLE_TYPE_COUNT);obstacles[i].x = WIN_WIDTH;obstacles[i].y = 345 +5 - obstacleImgs[obstacles[i].type][0].getheirgt();if(obstacles[i].type == TORTOISE){obstacles[i].speed = 0;obstacles[i].power = 5;}else if(obstacles[i].type == LION){obstacles[i].speed = 4;obstacles[i].power = 20;}}

更新障碍物坐标

void fly()
{
for(int i = 0 ;i <3 ;i++)
{// same speedbgX[i] -= 2;if(bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}//实现跳跃if(heroJump){if(heroY > JumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if(heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}          }else {//不跳跃的时候heroIndex = (heroIndex + 1)%12;  }//创建障碍物static int frameCount = 0;static int enemyFre = 50;frameCount++;if(frameCount > enemyFre ){frameCount = 0;enemyFre = 50 + rand()%50 ;createObstacle();}//更新所有障碍物的坐标for(int i = 0;i < OBSTACLE_COUNT;i++){if(obstacles[i].exist){obstacles[i].x -= obstacles[i].speed + bgSpeed[2];if(obstacles[i].x < -obstaceImgs[obstacles[i].type][0].getwidth() *2)//跑出screen{obstacles[i].exist = false;    }int len = obstacleImgs[obstacles[i].type].size();obstacles[i].imgIndex = (obstacles[i].imgIndex+1) % len;}}
}
int main()
{// test();init();int timer   = 0;//调用时间while (1){keyEvent();timer += getDelay();if (timer > 30){timer = 0;updata = true;}if (updata){updata = false;//不能一直刷BeginBatchDraw();updataBg();putimagePNG2(heroX, heroY, &imgHeros[heroIndex]);updataEnemy();FlushBatchDraw();fly();}//Sleep(20);}return 0;
}

实现人物下蹲




下蹲图片

IMAGE imgHeroDown[12];

初始化

void init()
{initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0;i < 3;i++){sprintf(name,"res/bg%03d.png",i+1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgBgs[i],name);bgX[i] = 0;}//加载玩家奔跑帧数采for (int i = 0; i < 12;i++){//res/hero1.png ~ hero12.pngsprintf(name,"res/hero%d.png",i + 1);loadimage(&imgHeros[1],name);}heroX = WIN_WIDTH * 0.5 - imgHeros[0].getwidth() *0.5;heroY = 345 - imgHeros[0].getheight();heroIndex = 0;heroJump = false;jumpHeightMax =  345 - imgHeros[0].getheight() - 120;updata = true;heroJumpOff = -4;IMAGE imgTort ;  loadimage(&imgTort,"res/t1.png");vector<IMAGE>imgTortArray;imgTortArrat.push_back(imgTort);obstacleImgs.push_back(imgTortArray);//lionIMAGE imgLion;vector<IMAGE>imgLionArry;for (int i = 0 ; i < 6;i++){sprintf(name,"res/p%d.png",i+1);loadimage(imgLion,name);imgLionArry.push_back(imgLion);}obstacleImgs.push_back(imgLionArray);//对障碍物池进行初始化for(int i = 0;i < OBSTALE_COUNT;i++){obstacles[i].exist = false;//都不允许出场}//加载人物下蹲图for (int i = 0; i < 12; i++){// res/hero1.png ~ hero12.pngsprintf(name, "res/g%02d.png", i + 1);loadimage(&imgHeroDown[i], name);}
}

按键输入

void keyEvent()
{char ch;if (_kbhit())//如果有按键输入{ch = _getch();//_getch() 不需要按下回车 直接读取if (ch == ' '){jump();}else if (ch == 'a'){down();}}}
bool heroDown;

初始化

void init()
{initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0; i < 3; i++){sprintf(name, "res/bg%03d.png", i + 1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgsBgs[i], name);bgX[i] = 0;}for (int i = 0;i < 12;i++){// res/hero1.png ~ hero12.pngsprintf(name, "res/hero%d.png", i + 1);loadimage(&imgHeros[i], name);}heroX = WIN_WINDTH * 0.5 - imgHeros[0].getwidth() * 0.5;heroY = 345 - imgHeros[0].getheight();heroJump = false;jumpHeightMax = 345 - imgHeros[0].getheight() - 120;updata = true;heroJumpOff = -4;//IMAGE imgTort;//loadimage(&imgTort, "res/t1.png");//vector<IMAGE>imgTortArray;//imgTortArray.push_back(imgTort);//obstacleImgs.push_back(imgTortArray);//lionIMAGE imgLion;vector<IMAGE> imgLionArry;for (int i = 0; i < 6; i++){sprintf(name, "res/p%d.png", i + 1);loadimage(&imgLion, name);imgLionArry.push_back(imgLion);}obstacleImgs.push_back(imgLionArry);//对障碍物池进行初始化for (int i = 0; i < OBSTACLE_COUNT; i++){obstacles[i].exist = false;//都不允许出场}for (int i = 0; i < 12; i++){// res/hero1.png ~ hero12.pngsprintf(name, "res/g%02d.png", i + 1);loadimage(&imgHeroDown[i], name);}heroDown = false;
}
void down()
{updata = true;heroDown = true;heroIndex = 0;}

change main

int main()
{// test();init();int timer   = 0;//调用时间while (1){keyEvent();timer += getDelay();if (timer > 30){timer = 0;updata = true;}if (updata){updata = false;//不能一直刷BeginBatchDraw();updataBg();updataHero();updataEnemy();FlushBatchDraw();fly();}//Sleep(20);}return 0;
}
void fly()
{for (int i = 0; i < 3; i++){// same speedbgX[i] -= 2;if (bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}//实现跳跃if (heroJump){if (heroY < jumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if (heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}}else if (heroDown){heroIndex++;if (heroIndex >= 12){heroIndex = 0;heroDown = false;}//heroIndex = (heroIndex + 1) % 12;}else{//不跳跃的时候heroIndex = (heroIndex + 1) % 12;}//创建障碍物static int frameCount = 0;static int enemyFre = 50;frameCount++;if (frameCount > enemyFre) {frameCount = 0;enemyFre = 50 + rand() % 50;createObstacle();}//更新所有障碍物的坐标for (int i = 0; i < OBSTACLE_COUNT; i++){if (obstacles[i].exist){obstacles[i].x -= (obstacles[i].speed + bgSpeed[2]);if (obstacles[i].x < (- obstacleImgs[obstacles[i].type][0].getwidth() * 2) )//跑出screen{obstacles[i].exist = false;}int len = obstacleImgs[obstacles[i].type].size();obstacles[i].imgIndex = (obstacles[i].imgIndex + 1) % len;}}}

new fly

 void fly()
{for (int i = 0; i < 3; i++){// same speedbgX[i] -= 2;if (bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}//实现跳跃if (heroJump){if (heroY < jumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if (heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}}else if (heroDown){static int count = 0;count++;int delays[2] = { 4,10 };if (count >= delays[heroIndex]){count = 0;heroIndex++;if (heroIndex >= 2){heroIndex = 0;heroDown = false;}}}else{//不跳跃的时候heroIndex = (heroIndex + 1) % 12;}//创建障碍物static int frameCount = 0;static int enemyFre = 50;frameCount++;if (frameCount > enemyFre) {frameCount = 0;enemyFre = 50 + rand() % 50;createObstacle();}//更新所有障碍物的坐标for (int i = 0; i < OBSTACLE_COUNT; i++){if (obstacles[i].exist){obstacles[i].x -= (obstacles[i].speed + bgSpeed[2]);if (obstacles[i].x < (- obstacleImgs[obstacles[i].type][0].getwidth() * 2) )//跑出screen{obstacles[i].exist = false;}int len = obstacleImgs[obstacles[i].type].size();obstacles[i].imgIndex = (obstacles[i].imgIndex + 1) % len;}}}

实现柱子

typedef  enum {TORTOISE,//0LION,//1HOOK1,HOOK2,//柱子HOOK3,HOOK4,OBSTACLE_TYPE_COUNT//2}obstacle_type;
void init()
{initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0; i < 3; i++){sprintf(name, "res/bg%03d.png", i + 1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgsBgs[i], name);bgX[i] = 0;}for (int i = 0;i < 12;i++){// res/hero1.png ~ hero12.pngsprintf(name, "res/hero%d.png", i + 1);loadimage(&imgHeros[i], name);}heroX = WIN_WINDTH * 0.5 - imgHeros[0].getwidth() * 0.5;heroY = 345 - imgHeros[0].getheight();heroJump = false;jumpHeightMax = 345 - imgHeros[0].getheight() - 120;updata = true;heroJumpOff = -4;IMAGE imgTort;loadimage(&imgTort, "res/t1.png");vector<IMAGE>imgTortArray;imgTortArray.push_back(imgTort);obstacleImgs.push_back(imgTortArray);//lionIMAGE imgLion;for (int i = 0; i < 6; i++){ vector<IMAGE> imgLionArry;sprintf(name, "res/p%d.png", i + 1);loadimage(&imgLion, name);imgLionArry.push_back(imgLion);obstacleImgs.push_back(imgLionArry);}//对障碍物池进行初始化for (int i = 0; i < OBSTACLE_COUNT; i++){obstacles[i].exist = false;//都不允许出场}loadimage(&imgHeroDown[0], "res/d1.png");loadimage(&imgHeroDown[1], "res/d2.png");//for (int i = 0; i < 12; i++)//{//    // res/hero1.png ~ hero12.png//    sprintf(name, "res/g%02d.png", i + 1);//    loadimage(&imgHeroDown[i], name);//}heroDown = false;IMAGE imgH;for (int i = 0; i < 4; i++){vector<IMAGE> imgHookArray;sprintf_s(name, sizeof(name), "res/h%d.png", i + 1);loadimage(&imgH, name,63,260,true);imgHookArray.push_back(imgH);obstacleImgs.push_back(imgHookArray);}
}
void createObstacle()
{  srand((unsigned)time(NULL));int i;for( i = 0; i < OBSTACLE_COUNT;i++){if (obstacles[i].exist == false) {break;}}if (i >= OBSTACLE_COUNT) {return;}obstacles[i].exist = true;obstacles[i].imgIndex = 0;//obstacles[i].type = (obstacle_type)(rand() % OBSTACLE_TYPE_COUNT);obstacles[i].type = (obstacle_type)(rand() % 3);obstacles[i].y =  345 + 5 -  obstacleImgs[obstacles[i].type][0].getheight();obstacles[i].x = WIN_WINDTH; if (obstacles[i].type == HOOK1){obstacles[i].type = (obstacle_type)((int)(obstacles[i].type) + rand() % 4);}if (obstacles[i].type == TORTOISE){obstacles[i].speed = 0;obstacles[i].power = 5;}else if (obstacles[i].type == LION){obstacles[i].speed = 4;obstacles[i].power = 20;}//&&而且else if (obstacles[i].type >= HOOK1&&obstacles[i].type <= HOOK4){obstacles[i].power = 20;obstacles[i].speed = 0;obstacles[i].y = 0;}}
#include <graphics.h>
#include <stdlib.h>
#include <easyx.h>
#include <conio.h>
#include <stdio.h>
#include "tools.h"
#include <vector>
#include <time.h>#define OBSTACLE_COUNT 5
#define WIN_WINDTH 1012
#define WIN_HEIGHT 396using namespace std;typedef  enum {TORTOISE,//0LION,HOOK1,HOOK2,HOOK3,HOOK4,OBSTACLE_TYPE_COUNT}obstacle_type;//IMAGE obstacleImgs[3][12];
//二维vector<vector<IMAGE>>  obstacleImgs;//存放所有障碍的图片Button btnStart;
typedef struct obstacle//障碍物
{obstacle_type type;//障碍物的类型int x, y;	//障碍物的坐标int speed;int power;//受到的伤害 bool exist;int imgIndex;//显示当前图片的序号bool hited;//表示是否已经发生碰撞bool passed;//表示障碍物是否被通过
}obstacle_t;obstacle_t obstacles[OBSTACLE_COUNT];//障碍物的个数//global variable
IMAGE imgsBgs[3];int bgX[3];int updata; //表示是否要刷新画面int bgSpeed[3] = { 1,2,4 };int jumpHeightMax;IMAGE imgHeros[12];IMAGE imgBackground;int heroBlood;int heroIndex;int heroX, heroY;bool heroJump;bool heroJump2;//二段跳bool heroGun;bool heroDown;IMAGE imgHeroDown[2];IMAGE imgHeroGun[12];int heroJumpOff;int lastObsIndex;int score;IMAGE imgSZ[10];void daoJiShi() 
{IMAGE img[6];char name[64];for (int i = 0; i < 6; i++) {sprintf(name, "res/%d.png", i);loadimage(&img[i], name,300,250);}for (int i = 5; i >= 0; i--) {BeginBatchDraw();cleardevice();putimage(355,85, &img[i]);EndBatchDraw();mciSendString("play res/hit.mp3", 0, 0, 0);Sleep(1000);}cleardevice();mciSendString("stop res/hit.mp3", 0, 0, 0);
}void createObstacle()
{  srand((unsigned)time(NULL));int i;for( i = 0; i < OBSTACLE_COUNT;i++){if (obstacles[i].exist == false) {break;}}if (i >= OBSTACLE_COUNT) {return;}obstacles[i].hited = false;obstacles[i].exist = true;obstacles[i].imgIndex = 0;//obstacles[i].type = (obstacle_type)(rand() % OBSTACLE_TYPE_COUNT);obstacles[i].type = (obstacle_type)(rand() % 3);obstacles[i].y =  345 + 5 -  obstacleImgs[obstacles[i].type][0].getheight();obstacles[i].x = WIN_WINDTH; obstacles[i].passed = false;if (   lastObsIndex >= 0 &&obstacles[lastObsIndex].type >= HOOK1 && obstacles[lastObsIndex ].type<= HOOK4&&obstacles[i].type == LION&&obstacles[lastObsIndex].x>(WIN_WINDTH-500)){obstacles[i].type == TORTOISE;}lastObsIndex = i;//更新if (obstacles[i].type == HOOK1){obstacles[i].type = (obstacle_type)((int)(obstacles[i].type) + rand() % 4);}if (obstacles[i].type == TORTOISE){obstacles[i].speed = 0;obstacles[i].power = 5;}else if (obstacles[i].type == LION){obstacles[i].speed = 4;obstacles[i].power = 20;}//&&而且else if (obstacles[i].type >= HOOK1&&obstacles[i].type <= HOOK4){obstacles[i].power = 20;obstacles[i].speed = 0;obstacles[i].y = 0;}}void updataEnemy()
{for (int i = 0; i <  OBSTACLE_COUNT; i++){if (obstacles[i].exist) {putimagePNG2(obstacles[i].x, obstacles[i].y, WIN_WINDTH, &obstacleImgs[obstacles[i].type] [obstacles[i].imgIndex]);}}}void init()
{initgraph(WIN_WINDTH, WIN_HEIGHT, EW_SHOWCONSOLE);  char name[64];//载入背景图片for (int i = 0; i < 3; i++){sprintf(name, "res/bg%03d.png", i + 1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgsBgs[i], name);bgX[i] = 0;}//载入人物1for (int i = 0;i < 12;i++){// res/hero1.png ~ hero12.pngsprintf(name, "res/hero%d.png", i + 1);loadimage(&imgHeros[i], name);}heroX = WIN_WINDTH * 0.5 - imgHeros[0].getwidth() * 0.5;heroY = 345 - imgHeros[0].getheight();heroJump = false;heroGun = false;jumpHeightMax = 345 - imgHeros[0].getheight() - 150;updata = true;heroJumpOff = -4;//乌龟IMAGE imgTort;loadimage(&imgTort, "res/t1.png");vector<IMAGE>imgTortArray;imgTortArray.push_back(imgTort);obstacleImgs.push_back(imgTortArray);//狮子IMAGE imgLion;vector<IMAGE> imgLionArry;for (int i = 0; i < 6; i++){   sprintf(name, "res/p%d.png", i + 1);loadimage(&imgLion, name);imgLionArry.push_back(imgLion);} obstacleImgs.push_back(imgLionArry);//对障碍物池进行初始化for (int i = 0; i < OBSTACLE_COUNT; i++){obstacles[i].exist = false;//都不允许出场}loadimage(&imgHeroDown[0], "res/d1.png");loadimage(&imgHeroDown[1], "res/d2.png");for (int i = 0; i < 12; i++){// res/hero1.png ~ hero12.pngsprintf(name, "res/g%02d.png", i + 1);loadimage(&imgHeroGun[i], name);}heroDown = false;IMAGE imgH;for (int i = 0; i < 4; i++){vector<IMAGE> imgHookArray;sprintf_s(name, sizeof(name), "res/h%d.png", i + 1);loadimage(&imgH, name,63,260,true);imgHookArray.push_back(imgH);obstacleImgs.push_back(imgHookArray);}initButton(&btnStart, "res/btn-normal.jpg", "res/btn-press.jpg" ,131, 58, 0);btnStart.x = 436;btnStart.y = 259;loadimage(&imgBackground, "res/over.png");heroBlood = 100;//预加载音效preLoadSound("res/hit.mp3");//mciSendString(" play res/bg.mp3 repeat", 0, 0, 0);lastObsIndex = -1;score = 0; for (int i = 0; i < 10; i++){sprintf(name, "res/sz/%d.png", i);loadimage(&imgSZ[i], name);}
}void checkHit()
{ for (int i = 0; i < OBSTACLE_COUNT; i++){if (obstacles[i].exist&& obstacles[i].hited == false){int a1x, a1y, a2x, a2y;int off = 20;if (!heroDown)//非下蹲 奔跑 跳跃{a1x = heroX + off ;a1y = heroY + off;a2x = heroX + imgHeros[heroIndex].getwidth() -  off;a2y = heroY + imgHeros[heroIndex].getheight();}else { //下蹲状态a1x = heroX + off;a1y = 345  - imgHeroDown[heroIndex].getheight();a2x = heroX + imgHeroDown[heroIndex].getwidth() - off ;a2y =345;}IMAGE img = obstacleImgs[obstacles[i].type][obstacles[i].imgIndex];int b1x = obstacles[i].x + off;int b1y = obstacles[i].y + off;int b2x = obstacles[i].x + img.getwidth() - off;  int b2y = obstacles[i].y + img.getheight() - 10;if (rectIntersect(a1x, a1y, a2x, a2y, b1x, b1y, b2x, b2y)){//mciSendString("play res/hit.mp3", 0, 0, 0);heroBlood -= obstacles[i].power;printf("血量剩余 %d\n",heroBlood);playSound("res/hit.mp3");obstacles[i].hited = true;}}}}void fly()
{srand((unsigned)time(NULL));for (int i = 0; i < 3; i++){// same speedbgX[i] -= 2;if (bgX[i] < -WIN_WINDTH){bgX[i] = 0;}}//实现跳跃if (heroJump){if (heroY < jumpHeightMax){//上升heroJumpOff = 4;}heroY += heroJumpOff;if (heroY > 345 - imgHeros[0].getheight()){heroJump = false;heroJumpOff = -4;}}else if (heroDown){static int count = 0;count++; int delays[2] = { 8,30 };if (count >= delays[heroIndex]){count = 0;heroIndex++;if (heroIndex >= 2){heroIndex = 0;heroDown = false;}}}else if (heroGun){heroIndex++;Sleep(5);if (heroIndex >= 12) {heroGun = false;}}else{//不跳跃的时候heroIndex = (heroIndex + 1) % 12;}//创建障碍物static int frameCount = 0;static int enemyFre = 50;frameCount++;if (frameCount > enemyFre) {frameCount = 0;enemyFre = 50 + rand() % 50;createObstacle();}//更新所有障碍物的坐标for (int i = 0; i < OBSTACLE_COUNT; i++){if (obstacles[i].exist){obstacles[i].x -= (obstacles[i].speed + bgSpeed[2]);if (obstacles[i].x < (-(obstacleImgs[obstacles[i].type][0].getwidth() * 2) ) )//跑出screen{obstacles[i].exist = false;}int len = obstacleImgs[obstacles[i].type].size();obstacles[i].imgIndex = (obstacles[i].imgIndex + 1) % len;}//碰撞检测checkHit();}      }void updataBg()
{putimagePNG2(bgX[0], 0, &imgsBgs[0]);putimagePNG2(bgX[1], 119, &imgsBgs[1]);putimagePNG2(bgX[2], 330, &imgsBgs[2]);
}void down()
{updata = true;heroDown = true;heroIndex = 0;
}void jump()
{heroJump = true;updata = true;}void gun()
{heroGun = true;updata = true;
}void keyEvent()
{char ch;if (_kbhit())//如果有按键输入{ch = _getch();//_getch() 不需要按下回车 直接读取if (ch == 'w'){jump();}else if (ch == 's'){down();}else if (ch == 'd'){gun();//滚}}}void updataHero()
{if (!heroDown && !heroGun){putimagePNG2(heroX, heroY,&imgHeros[heroIndex]);}else if(heroDown) {int y = 345 - (imgHeroDown[heroIndex].getheight());putimagePNG2(heroX, y, &imgHeroDown[heroIndex]);}else if (heroGun) {int y = 345 - (imgHeroGun[heroIndex].getheight());putimagePNG2(heroX, y, &imgHeroGun[heroIndex]);}
}void welcome()
{mciSendString("play res/bg.mp3", 0, 0, 0);for (;;){MOUSEMSG m = GetMouseMsg();FlushMouseMsgBuffer(); //不能少,后缀快速拖动顶部的标题按钮,讲导致鼠标消息太多switch (m.uMsg){case WM_MOUSEMOVE:if (checkButtonSelect(&btnStart, &m)) {btnStart.pressed = true;drawButton(&btnStart);}else {btnStart.pressed = false;drawButton(&btnStart);}break;case WM_LBUTTONDOWN:if (checkButtonSelect(&btnStart, &m)){btnStart.pressed = true;drawButton(&btnStart);break;                     }case WM_LBUTTONUP:if ( checkButtonSelect(&btnStart, &m) ){if (btnStart.pressed){mciSendString("stop res/bg.mp3", 0, 0, 0);// daoJiShi();return;}}break;}}}
void updataBloodBar()
{drawBloodBar(10, 10, 200, 10, 2, BLUE, DARKGRAY, RED,heroBlood/100.0);
}void   checkOver()
{if (heroBlood <= 0){// cleardevice();loadimage(0, "res/over.png");FlushBatchDraw();mciSendString("stop res/bg.mp3", 0, 0, 0);system("pause");heroBlood = 100;score = 0; mciSendString("play res/bg.mp3 repeat", 0, 0, 0);}  
}void checkScore()
{for (int i = 0; i < OBSTACLE_COUNT; i++){if (obstacles[i].exist &&obstacles[i].passed == false && obstacles[i].hited ==false && obstacles[i].x + obstacleImgs[obstacles[i].type][0].getwidth() < heroX)  {score++;//加分obstacles[i].passed = true;printf("score :%d \n", score);}}}void  updataScore()
{int x = 20, y = 25;char str[8];sprintf(str, "%d", score);for (int i = 0; str[i]; i++){int sz = str[i] - '0';putimagePNG(x,y, &imgSZ[sz]);x += imgSZ[sz].getwidth() + 5;}
}int main()
{// test();init();// putimage(0,0,&imgBackground);// drawButton(&btnStart);// welcome();int timer   = 0;//调用时间while (1){keyEvent();timer += getDelay();if (timer > 30){timer = 0;updata = true;}if (updata){updata = false;//不能一直刷BeginBatchDraw();updataBg();updataHero();updataEnemy();updataBloodBar();updataScore();FlushBatchDraw();checkOver();checkScore();fly();}}return 0;
}int test()
{IMAGE imgsBg[3];initgraph(WIN_WINDTH, WIN_HEIGHT);char name[64];//Load background resourcesfor (int i = 0; i < 3; i++){sprintf(name, "res/bg%03d.png", i + 1);//generate file name//loadimage(&imgBgs[i],"file name");loadimage(&imgsBgs[i], name);bgX[i] = 0;}putimagePNG2(0, 0, &imgsBgs[0]);putimagePNG2(0, 119, &imgsBgs[1]);putimagePNG2(0, 330, &imgsBgs[2]);Sleep(10000);return 0;
}

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

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

相关文章

Python 算法基础篇之 Python 语言回顾:变量、条件语句、循环语句、函数等

Python 算法基础篇之 Python 语言回顾&#xff1a;变量、条件语句、循环语句、函数等 引言 1. 变量2. 条件语句3. 循环语句 a ) for 循环 b ) while 循环 4. 函数总结 引言 Python 是一种流行的编程语言&#xff0c;具有简洁而易读的语法。在学习算法时&#xff0c;了解 Python…

B070-项目实战-用户模块--手机注册

目录 用户模块需求分析静态网站部署与调试两种前端项目的部署两种前端项目的调试(热部署)创建静态web项目 注册分析与设计分析需求设计 界面设计&#xff08;ui&#xff09;设计表&#xff08;后台&#xff09; 流程设计&#xff08;后台&#xff09;三范式表设计流程设计 相关…

Unity开发规范

代码 控制频繁调用GC 控制高频率的内存分配。控制大块的内存申请&#xff0c;可能会造成内存的碎片化&#xff0c;如果需要申请&#xff0c;尽可能在刚启动时申请。控制容易导致 GC alloc的函数调用[Mono]控制字符串拼接/ToString/ToArray[Mono]Boxing(拆装箱操作)/委托/匿名…

小白入门C#编写MVC登录小案例

一、C#编写MVC登录小案例 &#x1f680;1. 新建MVC项目。 &#x1f680;2. 在Models文件夹下创建一个User类&#xff0c;包含登录所需要的用户名和密码属性。 namespace MvcLogin.Models {public class User{public string UserName{get; set;}public string Password{get;se…

遥感目标检测(1)--R3Det

目录 一、概述 二、三个挑战 三、网络架构​ 1、旋转RetinaNet 2、精细化旋转RetinaNet 3、与RoIAlign&#xff08;感兴趣区域插值&#xff09;进行比较 4、消融实验与对比实验 一、概述 R3Det论文中提到一个端到端的精细化的单级旋转检测器&#xff0c;通过从粗到细的逐…

Maven —— 项目管理工具

前言 在这篇文章中&#xff0c;荔枝会介绍如何在项目工程中借助Maven的力量来开发&#xff0c;主要涉及Maven的下载安装、环境变量的配置、IDEA中的Maven的路径配置和信息修改以及通过Maven来快速构建项目。希望能对需要配置的小伙伴们有帮助哈哈哈哈~~~ 文章目录 前言 一、初…

Unity根据目标点的位置计算Input输入

当给一个目标点&#xff0c;如果目标直接去目标点我们可以直接让position指向目标点的position。 如果是转换输入呢&#xff1f; 举例&#xff1a;例如一个人物动画里有两个参数X和Y&#xff0c;X&#xff08;- 1 &#xff0c;1) 表示向左走和向右走&#xff0c;Y (-1 , 1) 向…

leetcode 101.对称二叉树

⭐️ 题目描述 &#x1f31f; leetcode链接&#xff1a;对称二叉树 思路&#xff1a; 这道题和 leetcode 100.相同的树 类似&#xff0c;是上一道的变形题。✨leetcode 100.相同的树 代码链接&#xff1a;【往期文章】leetcode 100.相同的树。这道题把根的左子树和右子树看作两…

mysql统计千分位的字符串

mysql中统计sum(amount )&#xff0c;而amount是千分位的字符串&#xff0c;如何解决&#xff1f; 如果amount是千分位的字符串&#xff0c;需要将其转换为数值类型才能进行求和运算。在MySQL中&#xff0c;可以使用以下方法解决&#xff1a; 使用REPLACE函数去除千分位逗号&a…

回归预测 | MATLAB实现基于BiGRU-AdaBoost双向门控循环单元结合AdaBoost多输入单输出回归预测

回归预测 | MATLAB实现基于BiGRU-AdaBoost双向门控循环单元结合AdaBoost多输入单输出回归预测 目录 回归预测 | MATLAB实现基于BiGRU-AdaBoost双向门控循环单元结合AdaBoost多输入单输出回归预测预测效果基本介绍模型描述程序设计参考资料 预测效果 基本介绍 1.MATLAB实现基于B…

java8的常用的新特性

Java 8引入了许多新的特性&#xff0c;下面列举了一些常用的新特性&#xff1a; Lambda表达式&#xff1a;Lambda表达式是Java 8中引入的一种函数式编程特性&#xff0c;提供了一种更简洁和灵活的方式来编写匿名函数。 方法引用&#xff1a;方法引用允许直接引用已经存在的方…

Vue列表排序

开始前先回顾一下sort排序用法&#xff1a; 定义一串数组arr&#xff0c;使用sort排序&#xff0c;会收到前后两个数据项设置两个参数a&#xff0c;b。 注意&#xff1a;a-b 是升序 b-a 是降序 a-b升序&#xff1a; <script>let arr [12,11,2,5,76,33]arr.sort((a,b…

园区能源控制管理系统

园区能源控制管理系统是一种能够实现对园区内能源消耗、供应和分配进行实时监控、管理和控制的系统。该系统通过对园区内各种能源设备的数据采集、处理和分析&#xff0c;为管理者提供实时的能源使用情况和数据分析&#xff0c;从而帮助管理者制定科学的能源管理策略和节能措施…

unity 手动解析libunity.so 堆栈

参考&#xff1a;Android so库开发——addr2line查看so异常信息&#xff08;四&#xff09;_addr2line so_c小旭的博客-CSDN博客 CPU&#xff1a; ARM64(arm64-v8a) D:\Ndk\19.2.5345600\toolchains\aarch64-linux-android-4.9\prebuilt\windows-x86_64\bin\aarch64-linux-and…

TMS FlexCel for VCL FMX Crack

TMS FlexCel for VCL & FMX Crack 强大、广泛和灵活的组件套件&#xff0c;用于VCL和FireMonkey的本地Excel报告、文件生成和操作。 FlexCel for VCL/FireMonkey是一套允许操作Excel文件的Delphi组件。它包括一个广泛的API&#xff0c;允许本地读/写Excel文件。如果您需要在…

开源库nlohmann json使用备忘

nlohmann/json是一个用于解析JSON的开源C库&#xff0c;口碑一流&#xff0c;无需额外安装其他第三方库&#xff0c;还支持单个头文件模式&#xff0c;使用起来非常方便直观。 1. 编译 从官网https://github.com/nlohmann/json的Release页面下载单个json.hpp即可直接使用&…

华为云CodeArts Check IDE插件体验之旅

1 开发者的思考 近年来&#xff0c;ChatGPT的来临像一场突然出现的风暴&#xff0c;程序员是否马上被取代的担忧出现在媒体上了&#xff0c;作为软件开发小白&#xff0c;前不久我也陷入了这样的深思之中&#xff0c;但认真的想了下&#xff0c;ChatGPT就如自动驾驶一样&#…

MySQL 判断 JSON 数组是否相等

文章目录 1.问题2.使用 JSON_CONTAINS 与 JSON_LENGTH参考文献 1.问题 JSON&#xff08;JavaScript Object Notation&#xff09;是流行的互联网应用服务之间的数据交换格式。 MySQL 从 5.7 版本开始支持 RFC 7159 定义的 JSON 规范&#xff0c;主要有 JSON 对象 和 JSON 数组…

NAS 问题处理记录

在解决自动配网的过程中&#xff0c;突然NAS不给力&#xff0c;偏偏这个时间找事情。上面这两个问题&#xff0c;说不复杂也不复杂&#xff0c;主要是自己在完全远程处理&#xff0c;很多不方便。当然少不了师弟的助攻&#xff0c;很感谢我的师弟帮忙&#xff0c;实验室的网络不…

ubuntu20.04系统安装使用labelme标注数据集

一、Anaconda的安装 请参考&#xff1a;MediapipeVSCodeAnaconda 实时检测手部关键点并保存视频_苦瓜汤补钙的博客-CSDN博客 二、Labelme的安装 1.打开终端创建虚拟环境 # 创建labelme的环境 conda create -n labelme python3.9 输入“y”&#xff0c;然后回车。 2.激活虚拟…