linux控制台下实现2048小游戏

废话少说,直接奉上代码:

main.c

代码如下:

#include"2048.h"
int main()
{
    start_game();
    return 0;
}

2048.h

代码如下:

#ifndef _2048_H_
#define _2048_H_
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<termios.h>
//#include<unstd.h>
//#include<time/sys.h>
#define LINE 21
#define ROW   22
#define ARR_L 4
#define ARR_R 4
#define NUM_COLOR 32
#define BACK 49
#define BOLD 31
static int line_location=0;
static int row_location=0;
static int arr[4][4]={0};
static char tmp[5]="\0";
static int end_flag=0;
static int score=0;
static int print_appear_flag=0;
static char start_back0[LINE][ROW]={
    "@@@@@@@@@@@@@@@@@@@@@",
    "@    @    @    @    @",
    "@    @    @    @    @",
    "@    @    @    @    @",
    "@@@@@@@@@@@@@@@@@@@@@",
    "@    @    @    @    @",
    "@    @    @    @    @",
    "@    @    @    @    @",
    "@@@@@@@@@@@@@@@@@@@@@",
    "@    @    @    @    @",
    "@    @    @    @    @",
    "@    @    @    @    @",
    "@@@@@@@@@@@@@@@@@@@@@",
    "@    @    @    @    @",
    "@    @    @    @    @",
    "@    @    @    @    @",
    "@@@@@@@@@@@@@@@@@@@@@",
    "@                   @",
    "@ score:            @",
    "@                   @",
    "@@@@@@@@@@@@@@@@@@@@@"
};
int print_start();
char * itoc_2048(int data);
int print_num();
int  mov_left();
int swap_if0l();
int swap();
int put_to(int line, int row);
#endif

2048.c

代码如下:

#include"2048.h"
int start_game()
{
    system("clear");
    printf("\33[?25l");
    print_start();
    ran_appear();
    print_num();
    print_score();
    print_getchar();
    printf("\33[?25h");
}
int print_getchar()
{
    struct termios old,new;
    int ch;
    tcgetattr(0,&old);
    tcgetattr(0,&new);
    new.c_lflag = new.c_lflag &~(ICANON |ECHO);
    new.c_cc[VTIME]=0;
    new.c_cc[VMIN]=1;
    tcsetattr(0,TCSANOW,&new);
    while(1)
    {
        if(end_flag==1)
            break;
        ch=getchar();
        if(ch=='\33')
        {
            ch=getchar();
            if(ch=='[')
            {
                ch=getchar();
                switch(ch)
                {
                    case 'A':
                        mov_up();
                        is_full();
                        break;
                    case 'B':
                        mov_down();
                        is_full();
                        break;
                    case 'C':
                        mov_right();
                        is_full();
                        break;
                    case 'D':
                        mov_left();
                        is_full();
                        break;
                    default:
                        break;
                }
            }
        }
        if(ch=='q')
            break;
        fflush(NULL);
    }
tcsetattr(0,TCSANOW,&old);
}
int print_start()
{  
    int i,j;
    for(i=0;i<LINE;i++)
    {
        for(j=0;j<ROW;j++)
        {
            if(start_back0[i][j]=='@')
            {
                printf("\33[%dm",BACK);
                printf("%c",start_back0[i][j]);
                printf("\33[0m");
            }
            else
                if(start_back0[i][j]!=' ')
                {
                    printf("\33[%dm",BOLD);
                    printf("%c",start_back0[i][j]);
                    printf("\33[0m");
                }
                else
                {  
                    printf("%c",start_back0[i][j]);
                }
        }
    printf("\n");
    }
}
char *itoc_2048(int data)
{
    int x=0;
    int i=4;
    while(i--)
    {
        tmp[i]=data%10+'0';
        data=data/10;
    }
    return tmp;
}
int is_full()
{
    int i,j;
    int count=0;
    for(i=0;i<ARR_L;i++)
        for(j=0;j<ARR_R;j++)
        {
            if(arr[i][j]==0)
                count++;
        }
    if(count==0)
    {
        for(i=0;i<ARR_L;i++)
            for(j=0;j<ARR_R-1;j++)
            {
            if(arr[i][j]==arr[i][j+1])
                return 0;
            if(arr[j][i]==arr[j+1][i])
                return 0;
            }
        end_flag=1;
    }
    return 1;
}
int put_to(int line, int row)
{
    int x,y;
    int i=0;
    char *p=NULL;
    p=itoc_2048(arr[line][row]);
    printf("\33[%d;%dH",3+line*4,2+row*5);
    printf("    ");
    printf("\33[%d;%dH",3+line*4,2+row*5);
    if(arr[line][row]!=0)
        for(i=0;i<4;i++)
        {
            if(p[i]=='0'&&i<1)
                printf(" ");
            else
            if(p[i]!='0')
            {
                printf("\33[%dm",NUM_COLOR);
                printf("%c",p[i]);
                printf("\33[0m");
            }
        }
    else
        if(arr[line][row]==0)
        printf("    ");
}
int print_num()
{
    int i,j;
    for(i=0;i<4;i++)
        for(j=0;j<4;j++)
    put_to(i,j);
}
print_score()
{
    int x,y;
    printf("\33[19;9H");
    printf("%d",score);
}
int ran_appear()
{
    int line,row;
    int i=0;
    int j=0;
    int x,y;
    int arr1[16][2]={0};
    if(print_appear_flag==1)
        return 0;
    for(x=0;x<4;x++)
        for(y=0;y<4;y++)
        {
            if(arr[x][y]==0)
            {
                arr1[i][0]=x;
                arr1[i][1]=y;
                i++;
            }
        }
    srand(time(NULL));
    j=rand()%i;
    if(rand()%2==0)
      {
        arr[arr1[j][0]][arr1[j][1]]=4;
        //arr[arr1[j][0]][arr1[j][1]]=2;
      }
    else
        arr[arr1[j][0]][arr1[j][1]]=2;
}
int mov_left()
{
    int count=0;
    count=mov_l()+count;
    count=sum_2048_l()+count;
    if(count==-2)
        print_appear_flag=1;
    mov_l();
    ran_appear();
    print_num();
    return 0;
}
int mov_right()
{
    int count=0;
    count=mov_r()+count;
    count=sum_2048_r()+count;
    if(count==-2)
        print_appear_flag=1;
    mov_r();
    ran_appear();
    print_num();
    return 0;
}
int mov_up()
{
    int count=0;
    count=mov_u()+count;
    count=sum_2048_u()+count;
    if(count==-2)
        print_appear_flag=1;
    mov_u();
    ran_appear();
    print_num();
    return 0;
}
int mov_down()
{
    int count=0;
    count=mov_d()+count;
    count=sum_2048_d()+count;
    if(count==-2)
        print_appear_flag=1;
    mov_d();
    ran_appear();
    print_num();
    return 0;
}
int swap(int *a,int *b)
{
    int tmp;
    tmp=*a;
    *a=*b;
    *b=tmp;
}
int mov_l()
{
    int line,row;
    int i=3;
    int count=0;
    while(i--)
    {
        for(line=0;line<4;line++)
         for(row=0;row<3;row++)
        {
            if(arr[line][row]==0&&arr[line][row+1]!=0)
            {  
                swap(&arr[line][row],&arr[line][row+1]);
                count++;
                print_appear_flag=0;
            }
        }
    }
    if(count==0)
        return -1;
    return 0;
}
int sum_2048_l()
{
    int line,row;
    int count=0;
    for(row=1;row<4;row++)
        for(line=0;line<4;line++)
        {
            if(arr[line][row]!=0&&arr[line][row-1]==arr[line][row])
            {
                arr[line][row-1]=arr[line][row]+arr[line][row-1];
                arr[line][row]=0;
                score=score+arr[line][row-1];
                print_score();
                count++;
                print_appear_flag=0;
            }
        }
    if(count==0)
        return -1;
return 0;
}
int mov_r()
{
    int line,row;
    int i=3;
    int count=0;
    while(i--)
    {
        for(line=0;line<4;line++)
         for(row=0;row<3;row++)
        {
            if(arr[line][row]!=0&&arr[line][row+1]==0)
            {  
                swap(&arr[line][row],&arr[line][row+1]);
                count++;
                print_appear_flag=0;
            }
        }
    }
    if(count==0)
        return -1;
    return 0;
}
int sum_2048_r()
{
    int line,row;
    int count=0;
    for(row=2;row>=0;row--)
        for(line=0;line<4;line++)
        {
            if(arr[line][row]!=0&&arr[line][row+1]==arr[line][row])
            {
                arr[line][row+1]=arr[line][row]+arr[line][row+1];
                arr[line][row]=0;
                score=score+arr[line][row+1];
                print_score();
                count++;
                print_appear_flag=0;
            }
        }
    if(count==0)
        return -1;
    return 0;
}
int mov_u()
{  
    int line,row;
    int i=3;
    int count=0;
    while(i--)
    {
        for(line=0;line<3;line++)
         for(row=0;row<4;row++)
        {
            if(arr[line][row]==0&&arr[line+1][row]!=0)
            {  
                swap(&arr[line][row],&arr[line+1][row]);
                count++;
                print_appear_flag=0;
            }
        }
    }
    if(count==0)
        return -1;
    return 0;
}
int sum_2048_u()
{
    int line,row;
    int count=0;
        for(line=1;line<4;line++)
        for(row=0;row<4;row++)
        {
            if(arr[line][row]!=0&&arr[line-1][row]==arr[line][row])
            {
                arr[line-1][row]=arr[line][row]+arr[line-1][row];
                arr[line][row]=0;
                score=score+arr[line-1][row];
                print_score();
                count++;
                print_appear_flag=0;
            }
        }
        if(count==0)
            return -1;
        return 0;
}
int mov_d()
{
    int line,row;
    int i=3;
    int count=0;
    while(i--)
    {
        for(line=0;line<3;line++)
         for(row=0;row<4;row++)
        {
            if(arr[line][row]!=0&&arr[line+1][row]==0)
            {  
                swap(&arr[line][row],&arr[line+1][row]);
                count++;
                print_appear_flag=0;
            }
        }
    }
    if(count==0)
        return -1;
    return 0;
}
int sum_2048_d()
{
    int line,row;
    int count=0;
        for(line=2;line>=0;line--)
        for(row=0;row<4;row++)
        {
            if(arr[line][row]!=0&&arr[line+1][row]==arr[line][row])
            {
                arr[line+1][row]=arr[line][row]+arr[line+1][row];
                arr[line][row]=0;
                score=score+arr[line+1][row];
                print_score();
                count++;
                print_appear_flag=0;
            }
        }
        if(count==0)
            return -1;
        return 0;
}

以上就是本文分享的全部代码了,希望对大家学习Linux控制台能够有所帮助。

(0)

相关推荐

  • mysql提示Changed limits: max_open_files: 2048 max_connections: 1910 table_cache: 64的解决

    在windows下安装Mysql系统日志出现max_open_files: 2048 max_connections: 510 table_cache: 764 类似错误是因为 max_connections 最大连接数和max_open_files.table_cache 不匹配.适当的降低max_connections 或调整其他两个数值 解决办法在 mysql bin > 中输入 mysql-nt --table_cache=764mysql-nt --innodb_open_files=

  • java使用OGEngine开发2048

    最近有一款2048的游戏非常火,本文将来介绍一下使用OGEngine游戏引擎开发游戏2048. OGEngine引擎是开源的,我们很容易找到,搭建起来也很方便,我们只需在Android工程下添加OGEngine的jar包或者直接引用源码就可以了. 源码下载:http://www.ogengine.com/download/resources.jsp private void initView() { // 游戏背景 AnimatedSprite game_bg = new AnimatedSpr

  • lua+love2d制作的2048游戏

    使用lua和love2d编写的pc版2048游戏,适用于linux和windows平台.依赖love2d游戏引擎,love2d需0.9及以上版本. core.lua 复制代码 代码如下: core = {} core.block = {} core.score = 0 core.best = 0 love.filesystem.setIdentity("2048") local function get_best()     if not love.filesystem.exists(

  • javascript制作2048游戏

    2048.html <!DOCTYPE> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>2048</title> <link rel="styleshe

  • C++ 实现2048游戏示例

    这游戏前一段时间传的很火,前几天早上实在太无聊了,就决定把这游戏自己也写一个. 前后写了一个多小时吧,大概300行左右,没什么复杂算法,不过实在懒得去优化了,但估计优化完能控制在200行以下,有兴趣的朋友可以自己优化一下. 说明:我一开始玩的是IOS APP版的TRHEES,后来才玩的2048,两者在滑动的规则上有些区别,本人这个版本是这两者的结合. 最后,祝试玩愉快! 界面丑陋,求不笑. 以下是源代码: 复制代码 代码如下: /*By Reason*/#include<iostream>#i

  • javascript实现2048游戏示例

    原生javascript代码写的2048游戏.建议在谷歌浏览器下跑. 2048.html 复制代码 代码如下: <!DOCTYPE><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>2048

  • lua实现的2048小游戏

    lua实现的2048小游戏,只要可以运行lua脚本的环境下都可以玩. 复制代码 代码如下: --[[============================================================================= #     FileName: 2048.lua #         Desc: lua console 2048 #       Author: hanxi #        Email: hanxi.info@gmail.com #    

  • python实现2048小游戏

    2048的python实现.修改自某网友的代码,解决了原网友版本的两个小bug: 1. 原版游戏每次只消除一次,而不是递归消除.如 [2 ,2 ,2 ,2] 左移动的话应该是 [4, 4, 0, 0] , 而不是[8 , 0 , 0 ,0] 2. 对游戏结束的侦测有bug,已经改正. 2048game.py # -*- coding: utf-8 -*- """ Created on Tue Jul 1 14:15:39 2014 @author: kelvin "

  • Python新手实现2048小游戏

    接触 Python 不久,看到很多人写2048,自己也捣鼓了一个,主要是熟悉Python语法. 程序使用Python3 写的,代码150行左右,基于控制台,方向键使用输入字符模拟. 演示图片 2048.py # -*- coding:UTF-8 -*- #! /usr/bin/python3 import random v = [[0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0], [0, 0, 0, 0]] def display(v, score): '''显示

  • Java完美实现2048小游戏

    完美地模仿了2048游戏,是根据网友的一个2048改的. Block.java import javax.swing.*; import java.awt.*; public class Block extends JLabel { private int value; public Block() { value = 0;//初始化值为0 setFont(new Font("font", Font.PLAIN, 40));//设定字体 setBackground(Color.gray

  • C语言控制台版2048小游戏

    效果不好,见谅,没事就写了一个!!! /** * @author Routh * @main.c * @date 2014, 4, 26 */ #include <stdio.h> #include <stdlib.h> #include <conio.h> #include <windows.h> // console width #define CONSOLE_WIDTH 80 #define BOX_WIDTH 10 int BOX[4][4] = {

  • 用VC++6.0的控制台实现2048小游戏的程序

    首先感谢这位大侠的无私分享,仔细学习这个程序以后收获很多,试着添加一些注释 源程序是从开源中国看到的,原作者是 刘地(sir?) 地址为http://www.oschina.net/code/snippet_593413_46040 geek_monkey于2015年3月5日为拜读该程序,受益匪浅 为了方便自己,以及更多初学者阅读,我试着写了写了注释供参考 我是C语言初学者,如有错误希望指正.轻喷 复制代码 代码如下: #include <stdlib.h> #include <stdi

  • 使用graphics.py实现2048小游戏

    1.过年的时候在手机上下载了2048玩了几天,心血来潮决定用py写一个,刚开始的时候想用QT实现,发现依赖有点大.正好看到graphics.py是基于tkinter做的封装就拿来练手,并借用了CSDN一位朋友封装的model.py(2048逻辑部分) 2.由于是练手的所以不免有写的不好的地方请大家喷的轻点. 先看看演示图片 附上源码: 2048主程 复制代码 代码如下: #-*-coding:utf-8-*- #python3.3.5 from graphics import* from tki

  • javascript版2048小游戏

    没有技术含量,只是用来练习代码逻辑的.为了代码结构清晰,我把逻辑控制部分写在全局变量里,用户界面操作封装在UI对象里,大概就这样了.仅供参考.工作时候,我的编码风格有人吐槽太乱了,所以我想试着写一个不是那么乱的东西出来.. 复制代码 代码如下: <HTML> <head> <title>2048 DEMO</title> <meta charset='utf-8' /> <!--  708616 javascript present  ht

  • Android游戏源码分享之2048

    引言 程序猿们,是否还在为你的老板辛辛苦苦的打工而拿着微薄的薪水呢,还是不知道如何用自己的应用或游戏来赚钱呢! 在这里IQuick将教您如何同过自己的应用来赚取自己的第一桶金! 你是说自己的应用还没有做出来? 不,在這里已经为你提供好了一个完整的游戏应用了,在文章的下面有源码的地址哦.你只要稍做修改就可以变成一个完全属于自己的应用了,比如将4*4换成5*5,甚至是其它的.如果你实在是慵懒至极的话,你只要将本应用的包名及广告换成自己的,就可以上传到市场上轻轻松松赚取自己的第一桶金了. 如果你觉得本

随机推荐