C语言实现植物大战僵尸(完整版)
实现这个游戏需要Easy_X
这个在我前面一篇C++之番外篇爱心代码有程序教你怎么下载,大家可自行查看
然后就是需要植物大战僵尸的素材和音乐,需要的可以在评论区
首先是main.cpp
//开发日志
//1导入素材
//2实现最开始的游戏场景
//3实现游戏顶部的工具栏
//4实现工具栏里面的游戏卡牌
#define WIN_WIDTH 900
#define WIN_HEIGHT 600
//定义植物类型
enum { WAN_DOU, XIANG_RI_KUI, ZHI_WU_COUNT };
#include<stdio.h>
#include<graphics.h>//easyx图形库的头文件
#include"tools.h"
#include"vector2.h"//向量引用
#include<time.h>
#include<math.h>
#include<mmsystem.h>//导入音乐收集阳光的时候
//导入一个库
#include<Windows.h>
#pragma comment(lib,"winmm.lib")
IMAGE imgBg;//全局变量表示背景图片
IMAGE imgBar;//工具栏
IMAGE imgCards[ZHI_WU_COUNT];
IMAGE* imgZhiwu[ZHI_WU_COUNT][20];
int curX, curY;//当前选中的植物,在拖动过程中的位置
int curZhiwu;//0没有选中。 1选中了第一种植物struct zhiwu
{int type;//植物种类 0:表示没有植物 1:第一种植物int frameIndex;//序列帧的序号bool catched;//是否被僵尸捕获int deadTime;//死亡倒计时int x, y;int timer;
};struct zhiwu map[3][9];
//定义一个阳光结构体enum { SUNSHINE_DOWN, SUNSHINE_GROUND, SUNSHINE_COLLECT, SUNSHINE_RPODUCT };struct sunshineBall
{int x, y;//阳光球飘落位置的坐标(x不变)int frameIndex;//当前图片显示帧的序号//阳光有一个落点设置int destY;//飘落位置的Y坐标bool used;//判断是否在使用//计时器int timer;float xoff;float yoff;float t;//贝塞尔曲线时间点0..1vector2 p1, p2, p3,p4;//分别对应起点终点控制点vector2 pCur;//当前时刻阳光球的位置float speed;int status;//阳光状态
};struct sunshineBall balls[10];//设置10个阳光池
IMAGE imgSunshineBall[29];//加载阳光图片,一共29放入数组中
int sunshine;struct zm
{int x, y;int row;int frameIndex;bool used;int speed;int blood;//僵尸血条bool dead;bool eating;//正在吃植物
};
struct zm zms[10];
IMAGE imgZM[22];
IMAGE imgZMDead[20];
IMAGE imgZMEat[21];//子弹的数据类型
struct bullet
{int x, y;int row;bool used;int speed;bool blast;//定义豌豆射出的子弹是否发生爆炸int frameIndex;//帧序号
};struct bullet bullets[30];
IMAGE imgBulletNormal;
IMAGE imgBallBlast[4];bool fileExist(const char* name)
{FILE* fp = fopen(name, "r");//r表示文件的读取if (fp == NULL){return false;}else{fclose(fp);return true;}
}void gameInit()
{//加载游戏背景图片//把字符集修改成多字符字符集loadimage(&imgBg,"res/bg.jpg");loadimage(&imgBar,"res/bar5.png");memset(imgZhiwu, 0, sizeof(imgZhiwu));//初始化植物卡牌memset(map, 0, sizeof(map));char name[64];for (int i = 0; i < ZHI_WU_COUNT; i++){//生成植物卡牌的文件名sprintf_s(name,sizeof(name),"res/Cards/card_%d.png",i+1);//加植物向枚举类型中加loadimage(&imgCards[i], name);for (int j = 0; j < 20; j++){sprintf_s(name, sizeof(name), "res/zhiwu/%d/%d.png", i ,j+1);//先判断这个文件是否存在//定义一个接口if (fileExist(name)){imgZhiwu[i][j] = new IMAGE;//.....加载loadimage(imgZhiwu[i][j],name);}else{break;}}}curZhiwu = 0;sunshine = 50;memset(balls, 0, sizeof(balls));for (int i = 0; i < 29; i++){sprintf_s(name, sizeof(name), "res/sunshine/%d.png",i+1);loadimage(&imgSunshineBall[i], name);}//配置随机种子,让阳光真正的随机srand((unsigned)time(NULL));//创建游戏的图形窗口initgraph(WIN_WIDTH, WIN_HEIGHT,1);//设置字体LOGFONT f;gettextstyle(&f);f.lfHeight = 30;f.lfWeight = 15;strcpy(f.lfFaceName, "Segoe UI Black");//抗锯齿f.lfQuality = ANTIALIASED_QUALITY;settextstyle(&f);setbkmode(TRANSPARENT);setcolor(BLACK);//初始化僵尸数据memset(zms, 0, sizeof(zms));int i = 0;for (i = 0; i < 22; i++){sprintf_s(name,sizeof(name),"res/zm/%d.png",i+1);loadimage(&imgZM[i],name);}loadimage(&imgBulletNormal,"res/bullets/bullet_normal.png");memset(bullets,0,sizeof(bullets));//初始化豌豆子弹的帧图片数组loadimage(&imgBallBlast[3],"res/bullets/bullet_blast.png");for (int i = 0; i < 3; i++){float k = (i + 1) * 0.2;loadimage(&imgBallBlast[i],"res/bullets/bullet_blast.png", imgBallBlast[3].getwidth()*k, imgBallBlast[3].getheight()*k,true);}for (int i = 0; i < 20; i++){sprintf_s(name,sizeof(name),"res/zm.dead/%d.png",i+1);loadimage(&imgZMDead[i],name);}for (int i = 0; i < 21; i++){sprintf_s(name,"res/zm_eat/%d.png",i+1);loadimage(&imgZMEat[i],name);}}void drawZM()
{int zmCount = sizeof(zms) / sizeof(zms[0]);for (int i = 0; i < zmCount; i++){if (zms[i].used){//IMAGE* img = &imgZM[zms[i].frameIndex];//IMAGE* img = (zms[i].dead) ? imgZMDead : imgZM;IMAGE* img = NULL;if (zms[i].dead) img = imgZMDead;else if (zms[i].dead) img = imgZMEat;else img = imgZM;img += zms[i].frameIndex;putimagePNG(zms[i].x,zms[i].y-img->getheight(),img);}}
}
void drawSunshines()
{int ballMax = sizeof(balls) / sizeof(balls[0]);for (int i = 0; i < ballMax; i++){if (balls[i].used || balls[i].xoff){IMAGE* img = &imgSunshineBall[balls[i].frameIndex];//putimagePNG(balls[i].x, balls[i].y, img);putimagePNG(balls[i].pCur.x, balls[i].pCur.y, img);}}
}void updateWindow()
{BeginBatchDraw();//开始缓冲putimage(0, 0, &imgBg);//putimage(250, 0, &imgBar);putimagePNG(250, 0, &imgBar);for (int i = 0; i < ZHI_WU_COUNT; i++){int x = 338 + i * 65;int y = 6;putimage(x, y, &imgCards[i]);}for (int i = 0; i < 3; i++){for (int j = 0; j < 9; j++){if (map[i][j].type > 0){//int x = 256 + j * 81;//int y = 179 + i*102+14;int Zhiwutype = map[i][j].type - 1;int index = map[i][j].frameIndex;//putimagePNG(x, y, imgZhiwu[Zhiwutype][index]);putimagePNG(map[i][j].x, map[i][j].y,imgZhiwu[Zhiwutype][index]);}}}//渲染拖动过程中的植物if (curZhiwu){IMAGE* img = imgZhiwu[curZhiwu - 1][0];putimagePNG(curX - img->getwidth()/2, curY - img->getheight()/2, img);}drawSunshines();//绘制阳光char scoreText[8];sprintf_s(scoreText, sizeof(scoreText),"%d",sunshine);outtextxy(276,67,scoreText);//输出阳光分数drawZM();//渲染僵尸//渲染阳光int bulletMax = sizeof(bullets) / sizeof(bullets[0]);for (int i = 0; i < bulletMax; i++){if (bullets[i].used){if (bullets[i].blast){IMAGE* img = &imgBallBlast[bullets[i].frameIndex];putimagePNG(bullets[i].x, bullets[i].y, img);}else{putimagePNG(bullets[i].x, bullets[i].y, &imgBulletNormal);}}}EndBatchDraw();//结束双缓冲
}void collectSunshine(ExMessage* msg)
{int count = sizeof(balls) / sizeof(balls[0]);int w = imgSunshineBall[0].getwidth();int h = imgSunshineBall[0].getheight();for (int i = 0; i < count; i++){if (balls[i].used){/*int x = balls[i].x;int y = balls[i].y;*/int x = balls[i].pCur.x;int y = balls[i].pCur.y;if (msg->x > x && msg->x<x + w && msg->y>y && msg->y < y + h){balls[i].used = false;balls[i].status = SUNSHINE_COLLECT;sunshine += 25;mciSendString("play res/sunshine.mp3",0,0,0);//加载音乐文件//设置阳光球的偏移量balls[i].p1 = balls[i].pCur;balls[i].p4 = vector2(262, 0);balls[i].t = 0;float distance = dis(balls[i].p1 - balls[i].p4);float off = 8.0;balls[i].speed = 1.0/(distance/off);}}}
}void userClick()
{ExMessage msg;//参数是消息类型static int status = 0;//如果消息有值则保存在peekmessage函数中,即为真if (peekmessage(&msg)){if (msg.message == WM_LBUTTONDOWN)//WM_LBUTTONDOWN左键按下去的意思{if (msg.x > 338 && msg.x < 338 + 65*ZHI_WU_COUNT && msg.y < 96)//定义坐标判断点击的是否为植物{int index = (msg.x - 338) / 65;status = 1;curZhiwu = index + 1;}else{collectSunshine(&msg);}}else if (msg.message == WM_MOUSEMOVE&&status==1)//WM_MOUSEMOVE鼠标移动{//记录当前位置curX = msg.x;curY = msg.y;}//鼠标抬动植物就种下去else if (msg.message == WM_LBUTTONUP){if (msg.x > 256 && msg.y > 179 && msg.y < 489){int row = (msg.y - 179) / 102;int col = (msg.x - 256) / 81;if (map[row][col].type == 0){map[row][col].type = curZhiwu;map[row][col].frameIndex = 0;//int x = 256 + j * 81;//int y = 179 + i*102+14;map[row][col].x = 256 + col * 81;map[row][col].y = 179 + row * 102+14;}}curZhiwu = 0;status = 0;}}
}void creatSunshine()
{static int count = 0;static int fre = 400;count++;if (count >= fre ){fre = 200 + rand() % 200;count = 0;//满了计数器清0//从阳光池中去一个可以使用的int ballMax = sizeof(balls) / sizeof(balls[0]);int i = 0;for (i = 0; i < ballMax && balls[i].used; i++);if (i >= ballMax) return;//阳光池满了balls[i].used = true;balls[i].frameIndex = 0;//balls[i].x = 260 + rand() % (900 - 260);//balls[i].y = 60;//balls[i].destY = 200 + (rand() % 4) * 90;balls[i].timer = 0;//balls[i].xoff = 0;//balls[i].yoff = 0;balls[i].status = SUNSHINE_DOWN;balls[i].p1 = vector2(260 + rand() % (900 - 260), 60);balls[i].p4 = vector2(balls[i].p1.x, 200 + (rand() % 4) * 90);int off = 2;float distance = balls[i].p4.y - balls[i].p1.y;balls[i].speed = 1.0 / (distance / off);}//向日葵生产阳光int ballMax = sizeof(balls) / sizeof(balls[0]);for (int i = 0; i < 3; i++){for (int j = 0; j < 9; j++){if (map[i][j].type == XIANG_RI_KUI + 1){map[i][j].timer++;}if (map[i][j].timer > 200){map[i][j].timer = 0;int k = 0;for (k = 0; k < ballMax && balls[k].used; k++);if (k >= ballMax) return;balls[k].used = true;balls[k].p1 = vector2(map[i][j].x, map[i][j].y);int w = (100 + rand() % 50) * (rand() % 2 ? 1 : -1);balls[k].p4 = vector2(map[i][j].x+w, map[i][j].y+imgZhiwu[XIANG_RI_KUI][0]->getheight()-imgSunshineBall[0].getheight());balls[k].p2 = vector2(balls[k].p1.x+w*0.3,balls[k].p1.y-100);balls[k].p3 = vector2(balls[k].p1.x + w * 0.7, balls[k].p1.y + 100);balls[k].status = SUNSHINE_RPODUCT;balls[k].speed = 0.05;balls[k].t = 0;}}}}void updateSunshine()//更新阳光
{int ballMax = sizeof(balls) / sizeof(balls[0]);for (int i = 0; i < ballMax; i++){if (balls[i].used){balls[i].frameIndex = (balls[i].frameIndex + 1) % 29;if (balls[i].status = SUNSHINE_DOWN){struct sunshineBall* sun = &balls[i];sun->status = SUNSHINE_GROUND;sun->timer = 0;}else if (balls[i].status == SUNSHINE_GROUND){balls[i].timer++;if (balls[i].timer > 100){balls[i].used = false;balls[i].timer = 0;}}else if (balls[i].status == SUNSHINE_COLLECT){struct sunshineBall* sun = &balls[i];sun->t+=sun->speed;sun->pCur = sun->p1 + sun->t * (sun->p4 - sun->p1);if (sun->t > 1){sun->used = false;sunshine += 25;}}else if (balls[i].status == SUNSHINE_RPODUCT){struct sunshineBall* sun = &balls[i];sun->t += sun->speed;sun->pCur = calcBezierPoint(sun->t, sun->p1, sun->p2, sun->p3, sun->p4);if (sun->t > 1){sun->status = SUNSHINE_GROUND;sun->timer = 0;}}balls[i].frameIndex=(balls[i].frameIndex+1)%29;if (balls[i].timer == 0){balls[i].y += 2;}if (balls[i].y >= balls[i].destY){//balls[i].used = false;balls[i].timer++;if (balls[i].timer > 100){balls[i].used = false;}}}}
}void creatZM()
{static int zmFre = 500;static int count = 0;count++;if (count > zmFre){count = 0;zmFre = rand() % 200 + 300;}int i=0;int zmMax=sizeof(zms)/sizeof(zms[0]);for (i = 0; i < zmMax && zms[i].used; i++);if (i < zmMax){memset(&zms[i],0,sizeof(zms[i]));zms[i].used = true;zms[i].x = WIN_WIDTH;zms[i].row = rand() % 3;zms[i].y = 172 + (1 + zms[i].row) * 100;zms[i].speed = 1;zms[i].blood = 100;zms[i].dead = false;}
}void updataZM()
{int zmMax = sizeof(zms) / sizeof(zms[0]);static int count = 0;count++;if (count > 2){count = 0;//更新僵尸的位置for (int i = 0; i < zmMax; i++){if (zms[i].used){zms[i].x -= zms[i].speed;if (zms[i].x < 170){printf("GAME OVER\n");MessageBox(NULL, "over", "over", 0);//待优化exit(0);}}}}static int count2 = 0;count2++;if (count2 > 4){count2 = 0;for (int i = 0; i < zmMax; i++){if (zms[i].used){if (zms[i].dead){zms[i].frameIndex++;if (zms[i].frameIndex >= 20){zms[i].used = false;}}else if (zms[i].eating){zms[i].frameIndex= (zms[i].frameIndex + 1) % 21;}else{zms[i].frameIndex = (zms[i].frameIndex + 1) % 22;}}}}
}void shoot()
{int lines[3] = { 0 };int zmCount = sizeof(zms) / sizeof(zms[0]);int bulletMax = sizeof(bullets) / sizeof(bullets[0]);int dangerX = WIN_WIDTH - imgZM[0].getwidth();for (int i = 0; i < zmCount; i++){if (zms[i].used && zms[i].x < dangerX){lines[zms[i].row] = 1;}}for (int i = 0; i < 3; i++){for (int j = 0; j < 9; j++){if (map[i][j].type == WAN_DOU + 1&&lines[i]){static int count = 0;count++;if (count > 20){count = 0;int k = 0;for (k = 0; k < bulletMax && bullets[k].used; k++);if (k < bulletMax){bullets[k].used = true;bullets[k].row = i;bullets[k].speed = 6;bullets[k].blast = false;bullets[k].frameIndex = 0;int zwX = 256 + j * 81;int zwY = 179 + i * 102 + 14;bullets[k].x = zwX + imgZhiwu[map[i][j].type - 1][0]->getwidth() - 10;bullets[k].y = zwY+5;}}}}}
}void updataBullets()
{int countMax = sizeof(bullets) / sizeof(bullets[0]);for (int i = 0; i < countMax; i++){if (bullets[i].used){bullets[i].x += bullets[i].speed;if (bullets[i].x > WIN_WIDTH){bullets[i].used = false;}//子弹的碰撞爆炸if (bullets[i].blast){bullets[i].frameIndex++;if (bullets[i].frameIndex >= 4){bullets[i].used = false;}}}}
}void checkBullet2Zm()
{int bCount = sizeof(bullets) / sizeof(bullets[0]);int zCount = sizeof(zms) / sizeof(zms[0]);for (int i = 0; i < bCount; i++){if (bullets[i].used == false || bullets[i].blast){continue;}for (int k = 0; k < zCount; k++){//if (zms[i].used == false) continue;if (zms[k].used == false) continue;int x1 = zms[k].x + 80;int x2 = zms[k].x + 110;int x = bullets[i].x;if (zms[k].dead == false && bullets[i].row == zms[k].row && x > x1 && x < x2){zms[k].blood -= 20;bullets[i].blast = true;bullets[i].speed = 0;if (zms[k].blood <= 0){zms[k].dead = true;zms[k].speed = 0;zms[k].frameIndex = 0;}break;}}}
}void checkZm2Zhiwu()
{int zCount = sizeof(zms) / sizeof(zms[0]);for (int i = 0; i < zCount; i++){if (zms[i].dead) continue;int row = zms[i].row;for (int k = 0; k < 9; k++){if (map[row][k].type == 0){continue;}int ZhiWuX = 256 + k * 81;int x1 = ZhiWuX + 10;int x2 = ZhiWuX + 60;int x3 = zms[i].x + 80;if (x3 > x1 && x3 < x2){if (map[row][k].catched){map[row][k].deadTime++;if (map[row][k].deadTime > 100){map[row][k].deadTime = 0; map[row][k].type = 0;zms[i].eating = false;zms[i].frameIndex = 0; zms[i].speed = 1;}}else{map[row][k].catched = true;map[row][k].deadTime = 0;zms[i].eating = true;zms[i].speed = 0;zms[i].frameIndex = 0;}}}}
}void collisionCheck()
{checkBullet2Zm();checkZm2Zhiwu();
}
void updateGame()
{for (int i = 0; i < 3; i++){for (int j = 0; j < 9; j++){if (map[i][j].type > 0){map[i][j].frameIndex++;int Zhiwutype = map[i][j].type - 1;int index = map[i][j].frameIndex;if (imgZhiwu[Zhiwutype][index] == NULL){map[i][j].frameIndex = 0;}}}}creatSunshine();//创建阳光updateSunshine();//更新阳光状态creatZM();//创建僵尸updataZM();//更新僵尸的状态shoot();//发射豌豆子弹updataBullets();//更新豌豆子弹collisionCheck();//实现豌豆子弹和僵尸的碰撞
}
void startUI()
{IMAGE imgBg,imgMenu1,imgMenu2;loadimage(&imgBg,"res/menu.png");loadimage(&imgMenu1, "res/menu1.png");loadimage(&imgMenu2, "res/menu2.png");int flag = 0;while (1){BeginBatchDraw();putimage(0,0,&imgBg);putimagePNG(474, 75, flag ? &imgMenu2 : &imgMenu1);//如果flag=0,那么加载第二个菜单,//就是鼠标点击冒险模式后冒险模式的图标会暗淡下来ExMessage msg;if (peekmessage(&msg))//如果有消息响应{if (msg.message == WM_LBUTTONDOWN&&msg.x>474&&msg.x<474+300&&msg.y>75&&msg.y<75+140)//按下鼠标//判断按下的位置对不对{flag = 1;//鼠标松开//EndBatchDraw();//渲染一下}else if (msg.message == WM_LBUTTONUP&&flag)//鼠标抬起{return;}}EndBatchDraw();}}
int main(void)
{gameInit();//进入游戏的程序函数startUI();//菜单函数int timer = 0;bool flag = true;while (1){userClick();timer += getDelay();if (timer > 20){flag = true;timer = 0;}if (flag){flag = false;updateWindow();updateGame();}}system("pause");return 0;
}
接着是tools.cpp文件
#include "tools.h"// 载入PNG图并去透明部分
void _putimagePNG(int picture_x, int picture_y, IMAGE* picture) //x为载入图片的X坐标,y为Y坐标
{DWORD* dst = GetImageBuffer(); // GetImageBuffer()函数,用于获取绘图设备的显存指针,EASYX自带DWORD* draw = GetImageBuffer();DWORD* src = GetImageBuffer(picture); //获取picture的显存指针int picture_width = picture->getwidth(); //获取picture的宽度,EASYX自带int picture_height = picture->getheight(); //获取picture的高度,EASYX自带int graphWidth = getwidth(); //获取绘图区的宽度,EASYX自带int graphHeight = getheight(); //获取绘图区的高度,EASYX自带int dstX = 0; //在显存里像素的角标// 实现透明贴图 公式: Cp=αp*FP+(1-αp)*BP , 贝叶斯定理来进行点颜色的概率计算for (int iy = 0; iy < picture_height; iy++){for (int ix = 0; ix < picture_width; ix++){int srcX = ix + iy * picture_width; //在显存里像素的角标int sa = ((src[srcX] & 0xff000000) >> 24); //0xAArrggbb;AA是透明度int sr = ((src[srcX] & 0xff0000) >> 16); //获取RGB里的Rint sg = ((src[srcX] & 0xff00) >> 8); //Gint sb = src[srcX] & 0xff; //Bif (ix >= 0 && ix <= graphWidth && iy >= 0 && iy <= graphHeight && dstX <= graphWidth * graphHeight){dstX = (ix + picture_x) + (iy + picture_y) * graphWidth; //在显存里像素的角标int dr = ((dst[dstX] & 0xff0000) >> 16);int dg = ((dst[dstX] & 0xff00) >> 8);int db = dst[dstX] & 0xff;draw[dstX] = ((sr * sa / 255 + dr * (255 - sa) / 255) << 16)| ((sg * sa / 255 + dg * (255 - sa) / 255) << 8)| (sb * sa / 255 + db * (255 - sa) / 255);}}}
}// 适用于 y <0 以及x<0的任何情况
void putimagePNG(int x, int y, IMAGE* picture) {IMAGE imgTmp, imgTmp2, imgTmp3;int winWidth = getwidth();int winHeight = getheight();if (y < 0) {SetWorkingImage(picture);getimage(&imgTmp, 0, -y,picture->getwidth(), picture->getheight() + y);SetWorkingImage();y = 0;picture = &imgTmp;}else if (y >= getheight() || x >= getwidth()) {return;}else if (y + picture->getheight() > winHeight) {SetWorkingImage(picture);getimage(&imgTmp, x, y, picture->getwidth(), winHeight - y);SetWorkingImage();picture = &imgTmp;}if (x < 0) {SetWorkingImage(picture);getimage(&imgTmp2, -x, 0, picture->getwidth() + x, picture->getheight());SetWorkingImage();x = 0;picture = &imgTmp2;}if (x > winWidth - picture->getwidth()) {SetWorkingImage(picture);getimage(&imgTmp3, 0, 0, winWidth - x, picture->getheight());SetWorkingImage();picture = &imgTmp3;}_putimagePNG(x, y, picture);
}int getDelay() {static unsigned long long lastTime = 0;unsigned long long currentTime = GetTickCount();if (lastTime == 0) {lastTime = currentTime;return 0;}else {int ret = currentTime - lastTime;lastTime = currentTime;return ret;}
}
然后最后就是头文件tools.h
// 载入PNG图并去透明部分
void _putimagePNG(int picture_x, int picture_y, IMAGE* picture) //x为载入图片的X坐标,y为Y坐标
{DWORD* dst = GetImageBuffer(); // GetImageBuffer()函数,用于获取绘图设备的显存指针,EASYX自带DWORD* draw = GetImageBuffer();DWORD* src = GetImageBuffer(picture); //获取picture的显存指针int picture_width = picture->getwidth(); //获取picture的宽度,EASYX自带int picture_height = picture->getheight(); //获取picture的高度,EASYX自带int graphWidth = getwidth(); //获取绘图区的宽度,EASYX自带int graphHeight = getheight(); //获取绘图区的高度,EASYX自带int dstX = 0; //在显存里像素的角标// 实现透明贴图 公式: Cp=αp*FP+(1-αp)*BP , 贝叶斯定理来进行点颜色的概率计算for (int iy = 0; iy < picture_height; iy++){for (int ix = 0; ix < picture_width; ix++){int srcX = ix + iy * picture_width; //在显存里像素的角标int sa = ((src[srcX] & 0xff000000) >> 24); //0xAArrggbb;AA是透明度int sr = ((src[srcX] & 0xff0000) >> 16); //获取RGB里的Rint sg = ((src[srcX] & 0xff00) >> 8); //Gint sb = src[srcX] & 0xff; //Bif (ix >= 0 && ix <= graphWidth && iy >= 0 && iy <= graphHeight && dstX <= graphWidth * graphHeight){dstX = (ix + picture_x) + (iy + picture_y) * graphWidth; //在显存里像素的角标int dr = ((dst[dstX] & 0xff0000) >> 16);int dg = ((dst[dstX] & 0xff00) >> 8);int db = dst[dstX] & 0xff;draw[dstX] = ((sr * sa / 255 + dr * (255 - sa) / 255) << 16)| ((sg * sa / 255 + dg * (255 - sa) / 255) << 8)| (sb * sa / 255 + db * (255 - sa) / 255);}}}
}// 适用于 y <0 以及x<0的任何情况
void putimagePNG(int x, int y, IMAGE* picture) {IMAGE imgTmp, imgTmp2, imgTmp3;int winWidth = getwidth();int winHeight = getheight();if (y < 0) {SetWorkingImage(picture);getimage(&imgTmp, 0, -y,picture->getwidth(), picture->getheight() + y);SetWorkingImage();y = 0;picture = &imgTmp;}else if (y >= getheight() || x >= getwidth()) {return;}else if (y + picture->getheight() > winHeight) {SetWorkingImage(picture);getimage(&imgTmp, x, y, picture->getwidth(), winHeight - y);SetWorkingImage();picture = &imgTmp;}if (x < 0) {SetWorkingImage(picture);getimage(&imgTmp2, -x, 0, picture->getwidth() + x, picture->getheight());SetWorkingImage();x = 0;picture = &imgTmp2;}if (x > winWidth - picture->getwidth()) {SetWorkingImage(picture);getimage(&imgTmp3, 0, 0, winWidth - x, picture->getheight());SetWorkingImage();picture = &imgTmp3;}_putimagePNG(x, y, picture);
}int getDelay() {static unsigned long long lastTime = 0;unsigned long long currentTime = GetTickCount();if (lastTime == 0) {lastTime = currentTime;return 0;}else {int ret = currentTime - lastTime;lastTime = currentTime;return ret;}
}
然后是vector2.cpp
//头文件要求
#include <cmath>struct vector2
{vector2(int _x = 0, int _y = 0) :x(x), y(y){}vector2(int* data):x(data[0]),y(data[1]){}long long x, y;
};//加法
vector2 operator +(vector2 x, vector2 y) { return vector2(x.x + y.x, x.y + y.y );
}//减法
vector2 operator -(vector2 x, vector2 y) {return vector2(x.x - y.x, x.y - y.y);
}// 乘法
vector2 operator *(vector2 x, vector2 y) {return vector2(x.x * y.x - x.y * y.y, x.y * y.x + x.x * y.y);
}// 乘法
vector2 operator *(vector2 y, float x) {return vector2(x*y.x, x*y.y);
}vector2 operator *(float x, vector2 y) {return vector2(x * y.x, x * y.y);
}//叉积
long long cross(vector2 x, vector2 y) { return x.y * y.x - x.x * y.y; }//数量积 点积
long long dot(vector2 x, vector2 y) { return x.x * y.x + x.y * y.y; }//四舍五入除法
long long dv(long long a, long long b) {//注意重名!!! return b < 0 ? dv(-a, -b): (a < 0 ? -dv(-a, b): (a + b / 2) / b);
}//模长平方
long long len(vector2 x) { return x.x * x.x + x.y * x.y; }//模长
long long dis(vector2 x) { return sqrt(x.x * x.x + x.y * x.y); }//向量除法
vector2 operator /(vector2 x, vector2 y) {long long l = len(y);return vector2(dv(dot(x, y), l), dv(cross(x, y), l));
}//向量膜
vector2 operator %(vector2 x, vector2 y) { return x - ((x / y) * y); }//向量GCD
vector2 gcd(vector2 x, vector2 y) { return len(y) ? gcd(y, x % y) : x; }vector2 calcBezierPoint(float t, vector2 p0, vector2 p1, vector2 p2, vector2 p3) {float u = 1 - t;float tt = t * t;float uu = u * u;float uuu = uu * u;float ttt = tt * t;vector2 p = uuu * p0;p = p + 3 * uu * t * p1;p = p + 3 * u * tt * p2;p = p + ttt * p3;return p;
}
最后头文件tools.h
#pragma once
#include <graphics.h>void putimagePNG(int picture_x, int picture_y, IMAGE* picture);
int getDelay();
vector2.h
#pragma once//头文件要求
#include <cmath>struct vector2 {vector2(int _x=0, int _y=0) :x(_x), y(_y) {}vector2(int* data) :x(data[0]), y(data[1]){}long long x, y;
};//加法
vector2 operator +(vector2 x, vector2 y);//减法
vector2 operator -(vector2 x, vector2 y);// 乘法
vector2 operator *(vector2 x, vector2 y);
vector2 operator *(vector2, float);
vector2 operator *(float, vector2);//叉积
long long cross(vector2 x, vector2 y);//数量积 点积
long long dot(vector2 x, vector2 y);//四舍五入除法
long long dv(long long a, long long b);//模长平方
long long len(vector2 x);//模长
long long dis(vector2 x);//向量除法
vector2 operator /(vector2 x, vector2 y);//向量膜
vector2 operator %(vector2 x, vector2 y);//向量GCD
vector2 gcd(vector2 x, vector2 y);vector2 calcBezierPoint(float t, vector2 p0, vector2 p1, vector2 p2, vector2 p3);
这里给大家演示一下画面
相关文章:

C语言实现植物大战僵尸(完整版)
实现这个游戏需要Easy_X 这个在我前面一篇C之番外篇爱心代码有程序教你怎么下载,大家可自行查看 然后就是需要植物大战僵尸的素材和音乐,需要的可以在评论区 首先是main.cpp //开发日志 //1导入素材 //2实现最开始的游戏场景 //3实现游戏顶部的工具栏…...

基于YOLOv8深度学习的火焰烟雾检测系统【python源码+Pyqt5界面+数据集+训练代码】目标检测、深度学习实战
《博主简介》 小伙伴们好,我是阿旭。专注于人工智能、AIGC、python、计算机视觉相关分享研究。 ✌更多学习资源,可关注公-仲-hao:【阿旭算法与机器学习】,共同学习交流~ 👍感谢小伙伴们点赞、关注! 《------往期经典推…...

【C++】手撕string思路梳理
目录 基本思路 代码实现 1.构建框架: 2.构建函数重载 3.迭代器: 4.遍历string 5.resetve 开空间,insert任意位置插入push_back,append,(按顺序依次实现) 6.erase删除,clear清除,resize缩容 7.流插入࿰…...

【数据结构和算法】确定两个字符串是否接近
其他系列文章导航 Java基础合集数据结构与算法合集 设计模式合集 多线程合集 分布式合集 ES合集 文章目录 其他系列文章导航 文章目录 前言 一、题目描述 二、题解 2.1操作 1 的本质:字符可以任意排列 2.2操作 2 的本质:出现次数是可以交换的 2.…...

[足式机器人]Part2 Dr. CAN学习笔记-Ch0-1矩阵的导数运算
本文仅供学习使用 本文参考: B站:DR_CAN Dr. CAN学习笔记-Ch0-1矩阵的导数运算 1. 标量向量方程对向量求导,分母布局,分子布局1.1 标量方程对向量的导数1.2 向量方程对向量的导数 2. 案例分析,线性回归3. 矩阵求导的链…...

如何让软文更具画面感,媒介盒子分享
写软文这种带有销售性质的文案时,总说要有画面感,要有想象空间。只有针对目标用户的感受的设计,要了解用户想的是什么,要用可视化的描述来影响用户的感受,今天媒介盒子就和大家分享:如何让软文更具画面感。…...

Hadoop学习笔记(HDP)-Part.19 安装Kafka
目录 Part.01 关于HDP Part.02 核心组件原理 Part.03 资源规划 Part.04 基础环境配置 Part.05 Yum源配置 Part.06 安装OracleJDK Part.07 安装MySQL Part.08 部署Ambari集群 Part.09 安装OpenLDAP Part.10 创建集群 Part.11 安装Kerberos Part.12 安装HDFS Part.13 安装Ranger …...

Arrays类练习 - Java
案例:自定义Book类,里面包含name和price,按price排序(从大到小)。要求使用两种方式排序,有一个 Book[] books 4本书对象。 使用前面学习过的传递实现Comparator接口匿名内部类,也称为定制排序。可以按照price (1)从大到…...

Java多线程:代码不只是在‘Hello World‘
Java线程好书推荐 概述01 多线程对于Java的意义02 为什么Java工程师必须掌握多线程03 Java多线程使用方式04 如何学好Java多线程写在末尾: 主页传送门:📀 传送 概述 摘要:互联网的每一个角落,无论是大型电商平台的秒杀…...

使用PCSS实现的实时阴影效果
PCSS的技术可以使得阴影呈现出近硬远软的效果,并且能够实时实现。 其核心理念是通过模拟光源的面积来产生更自然、更柔和的阴影边缘。 具体步骤: 1、生成shadowmap 2、在进行阴影的比较时候进行平均,并非之前的shadow map 或者之后完全的阴影…...

用于缓存一些固定名称的小组件
项目中,用于缓存姓名、地名、单位名称等一些较固定名称的id-name小组件。用于减少一些表的关连操作和冗余字段。优化代码结构。扩展也方便,写不同的枚举就行了。 具体用法: {NameCacheUser.USER.getName(userId);NameCacheUser.ACCOUNT.getN…...

Python 读取电子发票PDF 转成Excel
Python 读取电子发票PDF 转成Excel 目录 0.前提 1.python相关的处理PDF的库 2.实际好用的 3.实际代码 4.思考 0.前提 只识别普通电子发票PDF,提取其中某些关键内容到excel中。 1.python相关的处理PDF的库 如下4个库是经常更新维护的! pyP…...

我的项目问题
1.一点缩放和旋转就消失,需要再次平移才出现 解决方案:在显示当前图形时,显示已有图形。 2.每次点击平移,图形移动到上次点击的位置。 ho_RegionUnion.Dispose(); ho_RegionUnion ExpTmpOutVar_0;这两段代码放到显示之后的&am…...

【c】杨辉三角
下面介绍两种方法 1.利用上面性质的第五条,我们可以求各行各列的组合数 2.利用上面性质的第7条,我们可以用数组完成 下面附上代码 1. #include<stdio.h> void fact(int n ,int m )//求组合数 {long long int sum11;long long int sum21;int a…...

算法刷题之数组篇
题目一:两数之和 给出一个整型数组 numbers 和一个目标值 target,请在数组中找出两个加起来等于目标值的数的下标,返回的下标按升序排列。 (注:返回的数组下标从1开始算起,保证target一定可以由数组里面2…...

TR转发路由器测评—云企业网实现跨地域跨VPC的网络互通测评实战【阿里云产品测评】
文章目录 一.转发路由器 Transit Router 测评1.1 准备阶段1.2 本文测评收获1.3 什么是云企业网实例、转发路由器实例和云数据传输服务 二.使用云企业网实现跨地域跨VPC的网络互通2.2 **测试连通性**2.3 网络拓扑如下: 心得:总结: 声明&#x…...

1.1美术理论基础
一、光影 物体呈现在人们眼前的时候,不同的受光面其明暗变化以及物体的影子。 1.什么是黑白灰 在美术中黑白灰指亮面、灰面、暗面,属于素描的三大面,主要体验一个物体的整体寿光过程。普遍存在于各种艺术和设计领域。黑白灰作品的出现&#x…...

【Java 基础】21 多线程同步与锁
文章目录 1.存在的问题2.使用同步解决问题1) synchronized2) volatile3) 锁 总结 用多线程过程中,有可能出现 多个线程同时处理(获取或修改等)同一个数据,这个时候就 会发生数据不同步的问题, 因此出现了同步和锁来…...

Python语言基础知识(一)
文章目录 1、Python内置对象介绍2、标识符与变量3、数据类型—数字4、数据类型—字符串与字节串5、数据类型—列表、元组、字典、集合6、运算符和表达式7、运算符和表达式—算术运算符8、运算符和表达式—关系运算符9.1、运算符和表达式— 成员测试运算符in9.2、运算符和表达式…...

Xilinx FPGA平台DDR3设计详解(三):DDR3 介绍
本文介绍一下常用的存储芯片DDR3,包括DDR3的芯片型号识别、DDR3芯片命名、DDR3的基本结构等知识,为后续掌握FPGA DDR3的读写控制打下坚实基础。 一、DDR3芯片型号 电路板上的镁光DDR3芯片上没有具体的型号名。 如果想知道具体的DDR3芯片型号&#…...

字典的遍历
字典不是有序的集合,就不能通过index来遍历了,那如何遍历字典呢? 方法一:直接用字典 for key in a_dict: print a_dict[key] 通过这样的结构可以的。 d {"liming" : 98, "wangli":95, "mali":90, "liping&q…...

Linux环境下的MySQL安装
文章目录 前提说明1.卸载内置环境2.检查系统安装包3.卸载这些默认安装包4.获取MySQL官方yum源5.安装MySQLyum源,对比前后yum源6.查看yum源是否生效7.安装MySQL服务8.查看相对应的配置文件9.启动服务10.查看启动服务11.登录方法一12.登录方法二13.登录方法三14.设置开…...

梦想与魔法:编程之路的挑战与荣耀
在年少轻狂的岁月里,我们都有过一些不切实际的梦想,渴望成为某种神奇的存在。我的梦想是成为一名神奇的码农,用键盘编织魔法,创造出炫酷的虚拟世界。然而,现实是残酷的,当我刚入门计算机领域时,…...

qt 5.15.2 主窗体菜单工具栏树控件功能
qt 5.15.2 主窗体菜单工具栏树控件功能 显示主窗体效果: mainwindow.h文件内容: #ifndef MAINWINDOW_H #define MAINWINDOW_H#include <QMainWindow> #include <QFileDialog> #include <QString> #include <QMessageBox>#inc…...

Day15——File类与IO流
1.java.io.File类的使用 1.1 File类的理解 File 类及本章下的各种流,都定义在 java.io 包下。一个 File 对象代表硬盘或网络中可能存在的一个文件或者文件目录(俗称文件夹),与平台无关。(体会万事万物皆对象…...

【Qt】QLineEdit显示输入十六进制,位数不足时按照规则填充显示及每两个字符以空格填充
问题 在实际开发中,有时候需要对输入进行限制,一是更加合理,二是防止出现误操作。 比如: 使用Qt进行应用程序开发时,对单行编辑框QLineEdit控件,设置只可输入十六进制。 限制输入的方式常用且经典的是使用…...

GPT 中文提示词技巧:参照 OpenAI 官方教程
前言 搜了半天什么 prompt engineering 的课,最后会发现 gpt 官方其实是有 prompt 教程的。因此本文主要是学习这篇教程。 概述 - OpenAI API 部分案例是参考:根据吴恩达老师教程总结出中文版prompt教程_哔哩哔哩_bilibili up主的内容。 一、尽可能清…...

原生微信小程序将字符串生成二维码图片
weapp-qrcode.js再最后 inde.ts中的内容 // pages/qrCode/index.ts // 引入weapp-qrcode.js文件 var QRCode require(../../utils/weapp-qrcode) Page({/*** 页面的初始数据*/data: {orderNo:"",imagePath:},/*** 生命周期函数--监听页面加载*/onLoad(options:any)…...

深入理解HTTPS加密协议
在现代网络环境中,数据安全和隐私保护至关重要。HTTPS(全称为HyperText Transfer Protocol Secure)是一种用于保障互联网通信安全的加密协议,它通过在HTTP协议的基础上添加SSL/TLS层来实现对数据的加密传输。本文将详细介绍HTTPS的…...

路径规划之PRM算法
系列文章目录 路径规划之Dijkstra算法 路径规划之Best-First Search算法 路径规划之A *算法 路径规划之D *算法 路径规划之PRM算法 路径规划之PRM算法 系列文章目录前言一、前期准备1.栅格地图2.采样3.路标 二、PRM算法1.起源2.流程3. 优缺点4. 实际效果 前言 之前提到的几种…...