欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C++ 风靡一时的连连看游戏的实现流程详解

程序员文章站 2022-03-15 19:44:45
随着flash应用的流行,网上出现了多种在线flash版本“连连看”。如“水晶连连看”、“果蔬连连看”等,流行的“水晶连连看”以华丽界面吸引了一大批的女性玩家。 2008年,随着社交网络的普及和开放平...

C++ 风靡一时的连连看游戏的实现流程详解

随着flash应用的流行,网上出现了多种在线flash版本“连连看”。如“水晶连连看”、“果蔬连连看”等,流行的“水晶连连看”以华丽界面吸引了一大批的女性玩家。 2008年,随着社交网络的普及和开放平台的兴起,“连连看”被引入了社交网络。“连连看”与个人空间相结合,被快速的传播,成为一款热门的社交游戏,其中以开发者jonevey在manyou开放平台上推出的“宠物连连看”最为流行。 网络小游戏、网页游戏越来越受网民欢迎,除了玩的方法简单外(不像其他游戏还需要注册下载繁琐过程),很多游戏不乏经典。连连看游戏就是典型。 不管走到哪个网页游戏网站,连连看游戏总是排在受玩家欢迎排名的前5位,休闲、趣味、益智是连连看玩不厌的精华,且不分男女老少、工薪白领,是一款适合大众的经典网络、单机休闲小游戏。 我们今天就来看看我们自己能不能写出这样一个游戏呢?

来,话不多说,直接开始,gogogo!!!

今天的代码不是很多,好好看好好学

首先是我们的老朋友,构造结构体以及一切准备工作

struct gridinfor        //记入击中图片信息
{
	int idx,idy;        //图纸坐标
	int leftx,lefty;	//屏幕坐标
	int gridid;         //图片类型
}pre,cur,dur;
 
struct                  //记录连线点
{
	int x;
	int y;
}point[4]; 
static int pn;          //记录连线点个数
 
void initface ();													//初始化界面
void shuffle  ();													//随即打乱图片
void showgrid ();													//显示图片
void randgrid ();													//绘制地图
void link     ();                                                   //连接两图
void des_direct ();                                                 //直接相消
void des_one_corner();                                              //一折相消
void des_two_corner();                                              //两折相消
void load_picture ();												//加载图片
void init_grid (gridinfor& pre);									//初始化格子信息
void leftbottondown (mousemsg mouse);								//实现鼠标左击效果
void draw_frame (int leftx,int lefty);								//绘制边框
void mousemove (int leftx,int lefty);								//实现鼠标移动效果
bool judg_val (int leftx,int lefty);								//判断鼠标是否在游戏区
void selereact (int leftx,int lefty);								//显示选中效果
void transtophycoor (int* idx,int* idy);							//图纸坐标转变为屏幕坐标
void gridphy_coor (int& leftx,int& lefty);							//规范物理坐标
void ipaint (long x1,long y1,long x2,long y2);                      //将直线销毁
void drawline (int x1,int y1,int x2,int y2) ;                       //用直线连接两图
bool desgrid (gridinfor pre,gridinfor cur);							//判断两者是否能相消
bool match_direct (point ppre,point pcur);							//判断两者是否能够直接相消
bool match_one_corner (point ppre,point pcur);						//判断两者是否能一折相消
bool match_two_corner (point ppre,point pcur);						//判断两者是否能两折相消
void exchaval (gridinfor& pre,gridinfor& cur);						//交换图片信息
bool single_click_judge (int mousex,int mousey);                    //判断单击是否有效	
void recordinfor (int leftx,int lefty,gridinfor &grid);				//记录选中的信息
void transtodracoor (int mousex,int mousey,int *idx,int *idy);		//鼠标坐标转化为图纸坐标
void explot (point point,int *left,int *right,int *top,int *bottel);//探索point点附近的空位置

接下来是我们随机产生图片的逻辑函数,这个要好好理解

void randgrid()										//产生图片的标记
{
	for(int icount = 0, x = 1; x <= row; ++x )
	{
		for( int y = 1; y <= col; ++y )
		{
			gridid[x][y] =  icount++ % gridnum + 1;
}	}   }
 
void shuffle(  )									//打乱棋盘
{
	int ix, iy, jx, jy, grid;
	for( int k = 0; k < 84; ++k )
	{
		ix = rand() % row + 1;	// 产生 1 - col 的随机数
		iy = rand() % col + 1;	// 产生 1 - row 的随机数
		jx = rand() % row + 1;  // 产生 1 - col 的随机数
		jy = rand() % col + 1;	// 产生 1 - row 的随机数
		if( gridid[ix][iy] != gridid[jx][jy] )  //如果不相等就交换数据
		{
			grid = gridid[ix][iy];
			gridid[ix][iy] = gridid[jx][jy];
			gridid[jx][jy] = grid;
}	}	}

下面是我们的重点操作,鼠标控制函数,好好看好好学,写的时候一定要有耐心,别被bug击破了内心

void mousemove (int leftx,int lefty)					//鼠标移动时的变化
{
 	static int prex,prey,preidx,preidy,  curidx,curidy;
	if(judg_val(leftx,lefty))
	{	
		transtodracoor(leftx,lefty,&curidx,&curidy);  //转化为图纸坐标
		if(gridid[curidy][curidx] != 0)
		{	
			gridphy_coor(leftx,lefty);
			if(pre.idx == preidx && pre.idy == preidy)
				putimage(prex,prey,&image[gridid[preidy][preidx]][1]);
			else
				putimage(prex,prey,&image[gridid[preidy][preidx]][0]);
			prex = leftx,  		prey = lefty;
			preidx = curidx,    preidy = curidy;
            draw_frame(leftx,lefty);					//绘制边框	
}	}  }	
 
void leftbottondown (mousemsg mouse)					//左击时的变化
{
	static int click = 0,  idx,idy;
	click++;
	selereact (mouse.x,mouse.y);						//显示选中效果 
	if(click == 1)		recordinfor(mouse.x,mouse.y,pre);
	if(click == 2) 
	{	
		transtodracoor (mouse.x,mouse.y,&idx,&idy);
		if(idx != pre.idx || idy != pre.idy)
		{
			recordinfor (mouse.x,mouse.y,cur);
			if(pre.gridid == cur.gridid && 	desgrid(pre,cur))
			{
				gridid[pre.idy][pre.idx] = gridid[cur.idy][cur.idx] =0;
				link ();    pn = 0;
				putimage(pre.leftx,pre.lefty,&image2);
				putimage(cur.leftx,cur.lefty,&image2);
				init_grid(pre);   init_grid(cur);    click = 0;
			}
			else
			{
				exchaval(dur,pre);  	exchaval(pre,cur);   
				init_grid(cur);			click = 1;
				putimage(dur.leftx,dur.lefty,&image[gridid[dur.idy][dur.idx]][0]);
		}	}
		else  click = 1;	
}		}
 
void selereact (int leftx,int lefty)							//选中时效果
{	
	if(judg_val(leftx,lefty))
	{
		int idx,idy;
		transtodracoor (leftx,lefty,&idx,&idy);
		gridphy_coor (leftx,lefty);
		putimage(leftx,lefty,&image[gridid[idy][idx]][1]);
}	}
 
bool judg_val(int leftx,int lefty)					           //判断鼠标是否在游戏区
{	
	return leftx > leftedge && leftx < leftedge + gridw * col && 
	       lefty > topedge  &&  lefty < topedge + gridh * row;
}
 
void transtodracoor (int mousex,int mousey ,int *idx,int *idy) //鼠标坐标转化为图纸坐标
{
	if(judg_val(mousex,mousey))
	{	
		*idx = (mousex - leftedge) / 42 + 1;
		*idy = (mousey - topedge) / 48 + 1 ;
}	}
 
void recordinfor(int leftx,int lefty,gridinfor &grid)			//记录选中的信息
{
	transtodracoor(leftx,lefty,&grid.idx,&grid.idy);
	grid.leftx = (grid.idx - 1) * 42 + leftedge;
	grid.lefty = (grid.idy - 1) * 48 + topedge;
	grid.gridid = gridid[grid.idy][grid.idx];
}
 
bool single_click_judge (int mousex,int mousey)			//判断单击是否有效
{
	int idx,idy;
	transtodracoor (mousex,mousey,&idx,&idy);			//转化为图纸坐标
	if(judg_val(mouse.x,mouse.y) && gridid[idy][idx] != 0)
		return true;
	return false;
}
 
void draw_frame(int leftx,int lefty)				//绘制方框
{
	setcolor(rgb(126,91,68));
	setlinestyle(ps_solid,null,1);
	rectangle(leftx,lefty,leftx+41,lefty+47);
	rectangle(leftx + 2,lefty + 2,leftx+39,lefty+45);
	setcolor(rgb(250,230,169));
	rectangle(leftx + 1,lefty + 1,leftx+40,lefty+46);	
}

另外一个重点就是我们判断函数了,第一次使用鼠标点击棋盘中的棋子,该棋子此时为“被选中”,以特殊方式显示;再次以鼠标点击其他棋子,若该棋子与被选中的棋子图案相同,且把第一个棋子到第二个棋子连起来,中间的直线不超过3根,则消掉这一对棋子,否则第一颗棋子恢复成未被选中状态,而第二颗棋子变成被选中状态。这个是重中之重,一定好好学,把其中的逻辑理解清楚,别只会ctrl+c和ctrl+v

bool desgrid (gridinfor pre,gridinfor cur)						//判断两者是否能相消
{
	bool match = false; point ppre,pcur; 
	ppre.x = pre.idx; ppre.y = pre.idy;  
	pcur.x = cur.idx; pcur.y = cur.idy;
	if(match_direct(ppre,pcur)) match = true;   
	else if(match_one_corner(ppre,pcur)) match = true;
	else if(match_two_corner(ppre,pcur)) match =true;
	return match;
}
 
bool match_direct(point ppre,point pcur)						//判断两者是否能够直接相消
{
	int k,t;
	if(ppre.x == pcur.x)
	{	
		k = ppre.y > pcur.y ? ppre.y : pcur.y;
		t = ppre.y < pcur.y ? ppre.y : pcur.y;
		if(t + 1 == k)  goto find;
		for(int i = t + 1;i < k ;i++)
			if(gridid[i][ppre.x] != 0)    return false;
		if(i == k)      goto find;
	}
	else 
		if(ppre.y == pcur.y)
		{	
			k = ppre.x > pcur.x ? ppre.x : pcur.x;
			t = ppre.x < pcur.x ? ppre.x : pcur.x;
			if(t + 1 == k)  goto find;
			for(int i = t + 1;i < k ;i++)
				if(gridid[ppre.y][i] != 0) return false;
			if(i == k)      goto find;
		}
		return false;
find:	point[pn].x = pcur.x,  point[pn].y = pcur.y;    pn++;
		point[pn].x = ppre.x,  point[pn].y = ppre.y;	pn++; 
		return true;
}
 
bool match_one_corner(point ppre,point pcur)					//判断两者是否能一折相消
{
	int left,right,top,bottel,x = ppre.x,y = ppre.y;
	explot(ppre,&left,&right,&top,&bottel);
	ppre.y = top - 1;
researchx:	if(ppre.y < bottel)		ppre.y++;
			else goto back;
			if(match_direct(ppre,pcur)) goto find;
			else goto researchx;
back:		ppre.y = y; ppre.x = left - 1;
researchy:  if(ppre.x < right)     ppre.x++;
			else goto reback;
			if(match_direct(ppre,pcur)) goto find;
			else goto researchy;
reback:     pn = 0; return false;
find:       point[pn].x = x,point[pn].y = y,pn++;
			return true;
}
 
bool match_two_corner(point ppre,point pcur)					//判断两者是否能两折相消
{
	int left,right,top,bottel,x = ppre.x,y = ppre.y;
	explot(ppre,&left,&right,&top,&bottel);
	ppre.y = top - 1;
researchx:	if(ppre.y < bottel)		ppre.y++;
			else goto back;
			if(match_one_corner(ppre,pcur)) goto find;
			else goto researchx;
back:		ppre.y = y; ppre.x = left - 1;
researchy:  if(ppre.x < right)     ppre.x++;
			else goto reback;
			if(match_one_corner(ppre,pcur)) goto find;
			else goto researchy;
reback:     pn = 0;return false;
find:		point[pn].x = x,point[pn].y = y,pn++;
			return true;
}
 
void explot(point point,int *left,int *right,int *top,int *bottel)
{
	int x = point.x,y = point.y;	x++;
	while(x <= col + 1 &&  gridid[y][x] == 0)  x++;	  *right = x - 1;  x = point.x; x--;
	while(x >= 0	   &&  gridid[y][x] == 0)  x--;   *left	 = x + 1;  x = point.x; y++;
	while(y <= row + 1 &&  gridid[y][x] == 0)  y++;   *bottel= y - 1;  y = point.y; y--;
	while(y >= 0	   &&  gridid[y][x] == 0)  y--;   *top   = y + 1;  
}

最后用主函数调用,这样就可以啦

void main()
{
	initgraph(m,n);
	mcisendstring("play game_begin.mp3 repeat", null, 0, null); 
	initface();
	while(1)
	{	
		mouse = getmousemsg();	
		switch(mouse.umsg)
		{
		case wm_mousemove:
			mousemove(mouse.x,mouse.y);  break;
		case wm_lbuttondown:
			if(single_click_judge(mouse.x,mouse.y))
			{
				leftbottondown(mouse);
			}						  	 break;
		default:						 break;
		}
	}
	closegraph();
}

嗯,这个《连连看》游戏项目就解决啦,在写这个项目的时候,还是遇到一些困难的,重点就是逻辑,一定要想清楚,怎么去判断他们是可以消除的,好啦,希望可以让大家从中感受到编程的快乐,也希望大家可以给up主一个关注,非常感谢大家了!!!

点击下方链接观看详细视频讲解

c/c++游戏《连连看》详细教程
https://www.bilibili.com/video/bv1tv411m7p1/

到此这篇关于c++ 风靡一时的连连看游戏的实现流程详解的文章就介绍到这了,更多相关c++ 连连看内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!