大部分同学学习C语言编程以后不知道能通过什么样的项目才可以锻炼自己的思维功力,2048相信大家都应该熟悉,不管是手机上还是网页版的相信大家都玩过,这个简单的控制台版本的游戏是我曾经在伟易达上班时一个嵌入式应用游戏部门的大佬设计的,适合于喜欢用C语言写一些简易的游戏的朋友,逻辑性很强。
C/C++的学习裙【七一二 二八四 七零五 】,无论你是小白还是进阶者,是想转行还是想入行都可以来了解一起进步一起学习!裙内有开发工具,很多干货和技术资料分享!(点击蓝字进入)
一、2048游戏原理
在最初的游戏, 它始于一个空4 x 4游戏板。
1)在空位置的游戏板上,每一轮游戏产生一个“2”或“4”随机的数字。
2)接下来,玩家输入的上移,下移,左移或右移命令移动块。两个相邻块相同的号码,若是Q,可以组合成一个块数量2Q。
3)如果没有空间产生一个新的数字块,玩家则game over。
4)想赢得游戏,玩家需要产生一块2048数字块。
二、2048游戏文档
当然,这些游戏的逻辑不是大家闷着脑子就能空想出来的,它一定有很规范的说明文档,由专业的人来书写,最后软件工程师参考对应的文档编写自己的代码
原版本如下:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <conio.h>
//num
#define FALSE 0
#define TRUE 1
#define EMPTY_CELL 0
#define GMAE_ROW 4
#define GMAE_COL 4
//GameState
#define STATE_SELECT 0
#define STATE_PREPARE 1
#define STATE_PALYING 2
#define STATE_EXIT 3
//GameMode
#define MODE_NONE 0
#define MODE_NORMAL 1
#define MODE_DEBUG 2
//Select Index
#define INDEX_MAXNUM 3
#define INDEX_NORMAL 0
#define INDEX_DEBUG 1
#define INDEX_EXIT 2
//Command
#define COM_LEFT 'a'
#define COM_RIGHT 'd'
#define COM_UP 'w'
#define COM_DOWN 's'
#define COM_QUIT 'q'
//direction
#define DIR_HEAD 0xe0
#define KEY_UP 0xe048
#define KEY_DOWN 0xe050
#define KEY_LEFT 0xe04b
#define KEY_RIGHT 0xe04d
#define ESC 0x1B
#define ENTER 0x0D
//type
typedef unsigned int Uint;
typedef unsigned short Ushort;
typedef unsigned char Uchar;
//declaration
static void GM_Init(void);
static void GM_End(void);
static Uint GM_SelectInit(void);
static Uint GM_SelectHandle(void);
static Uint GM_SelectEnd(void);
static Uint GM_PrepareInit(void);
static Uint GM_PrepareHandle(void);
static Uint GM_PrepareEnd(void);
static Uint GM_PlayingInit(void);
static Uint GM_PlayingHandle(void);
static Uint GM_PlayingEnd(void);
static Uint GM_SelectHandleEnter(void);
static Uint GM_SelectHandleEsc(void);
static void GM_PrintSelectMode(void);
static void GM_RandAddOneNum(void);
static Uchar GM_FromFileAddNum(void);
static Uchar GM_InputAddOneNum(void);
static Uchar GM_NotMoreMove(void);
static void GM_PrintBoard(void);
stati