A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Excalibur 中级黑马   /  2015-7-15 11:21  /  1394 人查看  /  14 人回复  /   1 人收藏 转载请遵从CC协议 禁止商业使用本文

以前学C时找到的资料和大家分享一下,附带代码和程序运行截图
/*这是一个贪吃蛇代码,运行环境VC++6.0(亲测完美运行)*/
/*该程序在dos系统下运行,不需要graphics.h头文件*/
/*该程序由C语言小方贡献,谢谢您的支持*/

#include <windows.h>
#include <stdlib.h>  //实用函数
#include <time.h>    //日期和时间函数
#include <stdio.h>   //输入输出
#include <string.h>  //字符串
#include <conio.h>   //控制台和端口的声明
#define N 21

int apple[3];
char score[2];      //score[0]当前分数,score[1]历史最高分
char tail[3];       //定义尾巴

void gotoxy(int x, int y)    //输出坐标函数
{
        COORD pos;          //COORD函数表示一个字符在控制屏上的位置,需包含windows.h头文件,pos结构体变量,X,Y是他的成员
        pos.X = x;
        pos.Y = y;
        SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos); //设置控制台光标坐标,(xx,pos)xx相当于参数坐标
}                                            //GetStdHandle()函数获得标准输入输出的句柄,参数STD_OUTPUT_HANDLE是个宏,代表标准输出

void color(int b)         //颜色函数
{
    HANDLE hConsole = GetStdHandle((STD_OUTPUT_HANDLE)) ;
    SetConsoleTextAttribute(hConsole,b) ;
}

int Block(char head[2])   //判断出界
{
        if ((head[0] < 1) || (head[0] > N) || (head[1] < 1) || (head[1] > N))
                return 1;
        return 0;
}

int Eat(char snake[2])   //吃了苹果
{
        if ((snake[0] == apple[0]) && (snake[1] == apple[1]))
       {
                apple[0] = apple[1] = apple[2] = 0;
                gotoxy(N+44,10);
                color(13);
                printf("%d",score[0]*10);
                color(11);
                return 1;
        }
        return 0;
}

void Draw(char **snake, int len)    //蛇移动
{
        if (apple[2])
                {
                gotoxy(apple[1] * 2, apple[0]);
                color(12);
                printf("●");
                color(11);
        }
        gotoxy(tail[1] * 2, tail[0]);
        if (tail[2])
         {  color(14);
                printf("★");
                color(11);
         }
    else
        printf("■");
        gotoxy(snake[0][1] * 2, snake[0][0]);
        color(14);
        printf("★");
        color(11);
        putchar('\n');
}

char** Move(char **snake, char dirx, int *len)   //控制方向
{
        int i, full = Eat(snake[0]);
        memcpy(tail, snake[(*len)-1], 2);
        for (i = (*len) - 1; i > 0; --i)
                memcpy(snake[i], snake[i-1], 2);
        switch (dirx)
          {
           case 'w': case 'W': --snake[0][0]; break;
           case 's': case 'S': ++snake[0][0]; break;
           case 'a': case 'A': --snake[0][1]; break;
           case 'd': case 'D': ++snake[0][1]; break;
           default: ;
         }  
        if (full)   
           {
                snake = (char **)realloc(snake, sizeof(char *) * ((*len) + 1));
                snake[(*len)] = (char *)malloc(sizeof(char) * 2);
                memcpy(snake[(*len)], tail, 2);
                ++(*len);
                ++score[0];
                if(score[3] < 16)
                ++score[3];
                tail[2] = 1;
           }
           else
                tail[2] = 0;
                return snake;
}

void init(char plate[N+2][N+2], char ***snake_x, int *len)  //初始化
{
        int i, j;
        char **snake = NULL;

        *len = 3;
        score[0] = score[3] =3;
        snake = (char **)realloc(snake, sizeof(char *) * (*len)); //为snake动态分配一个二维的字符数组
        for (i = 0; i < *len; ++i)
                snake[i] = (char *)malloc(sizeof(char) * 2); //为snake[]进行动态内存分配

        for (i = 0; i < 3; ++i)
                {
                snake[i][0] = N/2 + 1;   // 开始时中间那个点
                snake[i][1] = N/2 + 1 + i;
             }

        for (i = 1; i <= N; ++i)
                for (j = 1; j <= N; ++j)
                        plate[i][j] = 1;

        apple[0] = rand()%N + 1; apple[1] = rand()%N + 1;
        apple[2] = 1;

        for (i = 0; i < N + 2; ++i)
                {
                gotoxy(0, i);
                for (j = 0; j < N + 2; ++j)
                        {
                        switch (plate[i][j]) //□□■■
                                {
                             case 0:
                                 color(12);printf("□");color(11); continue;   //color()11淡青,12淡红
                        case 1: printf("■"); continue;
                             default: ;
                             }
                    }
                   putchar('\n');
            }
        for (i = 0; i < (*len); ++i)
       {
                gotoxy(snake[i][1] * 2, snake[i][0]);
                printf("★");
            }
        putchar('\n');
        *snake_x = snake;
}

void Manual()
{
        gotoxy(N+30,2);
        color(10);
        printf("按 W S A D 移动方向");
        gotoxy(N+30,4);
        printf("按 space 键暂停");
        gotoxy(N+30,8);
        color(11);
        printf("历史最高分为: ");
        color(12);
        gotoxy(N+44,8);
        printf("%d",score[1]*10);
        color(11);
        gotoxy(N+30,12);
        printf("你现在得分为: 0");         
}

int File_in()     //取记录的分数
{
   FILE *fp;
   if((fp = fopen("C:\\tcs.txt","a+")) == NULL)
   {
            gotoxy(N+18, N+2);
     printf("文件不能打开\n");
         exit(0);  //文件操作失败时,可以调用过程控制函数exit()关闭文件,终止执行操作
   }
   if((score[1] = fgetc(fp)) != EOF);
   else
   score[1] = 0;
   return 0;
}

int File_out()    //存数据
{

        FILE *fp;
        if(score[1] > score[0])
        {gotoxy(10,10);
        color(12);
        puts("闯关失败 加油耶");
        gotoxy(0,N+2);
        return 0;
        }
        if((fp = fopen("C:\\tcs.txt","w+")) == NULL)
        {
                printf("文件不能打开\n");
                exit(0);
        }
    if(fputc(--score[0],fp)==EOF)   //fputc(字符量,文件指针)
           printf("输出失败\n");
    gotoxy(10,10);
        color(12);
        puts("恭喜您打破记录");
        gotoxy(0,N+2);
        return 0;
}


void Free(char **snake, int len)    //释放空间
{
        int i;
        for (i = 0; i < len; ++i)
                free(snake[i]);
        free(snake);
}

int main(void)
{
        int len;
        char ch = 'g';
        char a[N+2][N+2] = {{0}};
        char **snake;
        srand((unsigned)time(NULL)); /*用系统定时/计数器的值作为随机种子void srand(unsigned seed);
参数seed是rand()的种子,用来初始化rand()的起始值*/
        color(11);                 //颜色函数
        File_in();                //取记录的分数
        init(a, &snake, &len);   //初始化函数
        Manual();                 //手册指南函数
        while (ch != 0x1B)     // 按 ESC 结束,ESC的ASCLL码27
         {
                Draw(snake, len);  //蛇移动
                if (!apple[2])
                                {
                                        apple[0]=rand()%N+1;
                    apple[1]=rand()%N+1;
                    apple[2]=1;
                }
                Sleep(200-score[3]*10);
                setbuf(stdin, NULL);
                if (kbhit()) //int kbhit(void)conio.h 检查当前是否有键盘输入,若有则返回一个非0值,否则返回0
                   {
                        gotoxy(0, N+2);
                        ch = getche();  //输入后立即从控制台取字符,不以回车为结束(带回显).int getche(void),头文件conio.h
                    }
                 snake = Move(snake, ch, &len); //Move()控制方向
                 if (Block(snake[0])==1)
                  {
                        gotoxy(N+2, N+2);
                        puts("你输了");
                        File_out(); //存数据
                        Free(snake, len);//释放空间
                        getche(); //输入后立即从控制台取字符,返回输入字符对应的ascll码,头文件conio.h
                        exit(0); //exit(),stdlib.h,功能:关闭所有文件,终止正在执行的程序exit(0)正常退出
                  }                       // exit(1)或其他表示x表示异常退出
        }
        Free(snake, len);//释放空间
        exit(0);
}

14 个回复

倒序浏览
程序运行截图C:\Users\zhoufeng\Desktop
回复 使用道具 举报
C:\Users\zhoufeng\Desktop\demo.png
回复 使用道具 举报
不会加图:L
回复 使用道具 举报
好厉害。。。。
回复 使用道具 举报
。。。。。。。
回复 使用道具 举报
好牛X呀!
回复 使用道具 举报
看不懂!!!!!
回复 使用道具 举报
Mal 中级黑马 2015-7-15 22:52:24
9#
牛叉啊,复制下来自己试试
回复 使用道具 举报
总结的很好,顶一个
回复 使用道具 举报
学习啦,加油
回复 使用道具 举报
不错啊  楼主辛苦了
回复 使用道具 举报
学习学习!
回复 使用道具 举报
不错,不错~~~
回复 使用道具 举报
很给力。。。。
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马