码迷,mamicode.com
首页 > 编程语言 > 详细

C语言程序的基本语句能完成功能的体会

时间:2016-05-23 01:18:53      阅读:578      评论:0      收藏:0      [点我收藏+]

标签:编写程序   程序设计   include   小游戏   贪吃蛇   

一、设计目标

通过设计培养学生对电脑的动手能力,使学生巩固C语言程序设计课程学习的内容,掌握编写程序的基本方法。

二、设计内容和要求

  1. 设计内容

    编写贪吃蛇小游戏,使可以成功运行并操作玩耍。

  2. 设计要求

    有适当的注解,使程序便于阅读并有运行结果作依据。

三、编写流程

  1. 运行结果截图

运行界面

技术分享

游戏规则

技术分享

进入游戏

技术分享

游戏结束

技术分享

2.C语言编辑程序


#include<stdio.h>

#include<time.h>

#include<windows.h>

#include<stdlib.h>

 

#define U 1

#define D 2

#define L 3

#define R 4       //蛇的状态,U:上 ;D:下;L:R:右

 

typedef struct SNAKE //蛇身的一个节点

{

    int x;

    int y;

    struct SNAKE *next;

}snake;

 

//全局变量//

int score=0,add=10;//总得分与每次吃食物得分。

int status,sleeptime=200;//每次运行的时间间隔

snake *head, *food;//蛇头指针,食物指针

snake *q;//遍历蛇的时候用到的指针

int endgamestatus=0; //游戏结束的情况,1:撞到墙;2:咬到自己;3:主动退出游戏。

 

//声明全部函数//

void Pos();

void creatMap();

void initsnake();

int biteself();

void createfood();

void cantcrosswall();

void snakemove();

void pause();

void gamecircle();

void welcometogame();

void endgame();

void gamestart();

 

void Pos(int x,int y)//设置光标位置

{

    COORD pos;

HANDLE hOutput;

    pos.X=x;

    pos.Y=y;

    hOutput=GetStdHandle(STD_OUTPUT_HANDLE);

    SetConsoleCursorPosition(hOutput,pos);

}

 

void creatMap()//创建地图

{

    int i;

    for(i=0;i<58;i+=2)//打印上下边框

    {

        Pos(i,0);

        printf("■");

        Pos(i,26);

        printf("■");

    }

    for(i=1;i<26;i++)//打印左右边框

    {

        Pos(0,i);

        printf("■");                        

        Pos(56,i);

        printf("■");        

    }

}

 

void initsnake()//初始化蛇身

{

    snake *tail;

    int i;

    tail=(snake*)malloc(sizeof(snake));//从蛇尾开始,头插法,以x,y设定开始的位置//

    tail->x=24;

    tail->y=5;

    tail->next=NULL;

    for(i=1;i<=4;i++)

    {

        head=(snake*)malloc(sizeof(snake));

        head->next=tail;

        head->x=24+2*i;

        head->y=5;

        tail=head;

    }

    while(tail!=NULL)//从头到为,输出蛇身

    {

        Pos(tail->x,tail->y);

        printf("■");

        tail=tail->next;

    }

}

 

int biteself()//判断是否咬到了自己

{

    snake *self;

    self=head->next;

    while(self!=NULL)

    {

        if(self->x==head->x && self->y==head->y)

        {

            return 1;

        }

        self=self->next;

    }

    return 0;

}

 

void createfood()//随机出现食物

{

    snake *food_1;

    srand((unsigned)time(NULL));

    food_1=(snake*)malloc(sizeof(snake));

    while((food_1->x%2)!=0)    //保证其为偶数,使得食物能与蛇头对其

    {

        food_1->x=rand()%52+2;

    }

    food_1->y=rand()%24+1;

    q=head;

    while(q->next==NULL)

    {

        if(q->x==food_1->x && q->y==food_1->y) //判断蛇身是否与食物重合

        {

            free(food_1);

            createfood();

        }

        q=q->next;

    }

    Pos(food_1->x,food_1->y);

    food=food_1;

    printf("■");

}

 

void cantcrosswall()//不能穿墙

{  

    if(head->x==0 || head->x==56 ||head->y==0 || head->y==26)

    {

        endgamestatus=1;

        endgame();

    }

}

 

void snakemove()//蛇前进,U,D,L,R

{

snake * nexthead;

    cantcrosswall();

    

    nexthead=(snake*)malloc(sizeof(snake));

    if(status==U)

    {

        nexthead->x=head->x;

        nexthead->y=head->y-1;

        if(nexthead->x==food->x && nexthead->y==food->y)//如果下一个有食物//

        {

            nexthead->next=head;

            head=nexthead;

            q=head;

            while(q!=NULL)

            {

                Pos(q->x,q->y);

                printf("■");

                q=q->next;

            }

            score=score+add;

            createfood();

        }

        else                                               //如果没有食物//

        {

            nexthead->next=head;

            head=nexthead;

            q=head;

            while(q->next->next!=NULL)

            {

                Pos(q->x,q->y);

                printf("■");

                q=q->next;        

            }

            Pos(q->next->x,q->next->y);

            printf("  ");

            free(q->next);

            q->next=NULL;

        }

    }

    if(status==D)

    {

        nexthead->x=head->x;

        nexthead->y=head->y+1;

        if(nexthead->x==food->x && nexthead->y==food->y)  //有食物

        {

            nexthead->next=head;

            head=nexthead;

            q=head;

            while(q!=NULL)

            {

                Pos(q->x,q->y);

                printf("■");

                q=q->next;

            }

            score=score+add;

            createfood();

        }

        else                               //没有食物

        {

            nexthead->next=head;

            head=nexthead;

            q=head;

            while(q->next->next!=NULL)

            {

                Pos(q->x,q->y);

                printf("■");

                q=q->next;        

            }

            Pos(q->next->x,q->next->y);

            printf("  ");

            free(q->next);

            q->next=NULL;

        }

    }

    if(status==L)

    {

        nexthead->x=head->x-2;

        nexthead->y=head->y;

        if(nexthead->x==food->x && nexthead->y==food->y)//有食物

        {

            nexthead->next=head;

            head=nexthead;

            q=head;

            while(q!=NULL)

            {

                Pos(q->x,q->y);

                printf("■");

                q=q->next;

            }

            score=score+add;

            createfood();

        }

        else                                //没有食物

        {

            nexthead->next=head;

            head=nexthead;

            q=head;

            while(q->next->next!=NULL)

            {

                Pos(q->x,q->y);

                printf("■");

                q=q->next;        

            }

            Pos(q->next->x,q->next->y);

            printf("  ");

            free(q->next);

            q->next=NULL;

        }

    }

    if(status==R)

    {

        nexthead->x=head->x+2;

        nexthead->y=head->y;

        if(nexthead->x==food->x && nexthead->y==food->y)//有食物

        {

            nexthead->next=head;

            head=nexthead;

            q=head;

            while(q!=NULL)

            {

                Pos(q->x,q->y);

                printf("■");

                q=q->next;

            }

            score=score+add;

            createfood();

        }

        else                                         //没有食物

        {

            nexthead->next=head;

            head=nexthead;

            q=head;

            while(q->next->next!=NULL)

            {

                Pos(q->x,q->y);

                printf("■");

                q=q->next;        

            }

            Pos(q->next->x,q->next->y);

            printf("  ");

            free(q->next);

            q->next=NULL;

        }

    }

    if(biteself()==1)       //判断是否会咬到自己

    {

        endgamestatus=2;

        endgame();

    }

}

void pause()//暂停

{

    while(1)

    {

        Sleep(300);

        if(GetAsyncKeyState(VK_SPACE))

        {

            break;

        }

         

    }

}

 

void gamecircle()//控制游戏        

{

 

    Pos(64,15);

    printf("不能穿墙,不能咬到自己\n");

    Pos(64,16);

    printf("↑.↓.←.→分别控制蛇的移动.");

    Pos(64,17);

    printf("F1 为加速,F2 为减速\n");

    Pos(64,18);

    printf("ESC :退出游戏.space:暂停游戏.");

    Pos(64,20);

printf("C语言研究中心 www.clang.cc");

status=R;

    while(1)

    {

        Pos(64,10);

        printf("得分:%d  ",score);

        Pos(64,11);

        printf("每个食物得分:%d",add);

        if(GetAsyncKeyState(VK_UP) && status!=D)

        {

            status=U;

        }

        else if(GetAsyncKeyState(VK_DOWN) && status!=U)

        {

            status=D;

        }

        else if(GetAsyncKeyState(VK_LEFT)&& status!=R)

        {

            status=L;

        }

        else if(GetAsyncKeyState(VK_RIGHT)&& status!=L)

        {

            status=R;

        }

        else if(GetAsyncKeyState(VK_SPACE))

        {

            pause();

        }

        else if(GetAsyncKeyState(VK_ESCAPE))

        {

            endgamestatus=3;

            break;

        }

        else if(GetAsyncKeyState(VK_F1))

        {

            if(sleeptime>=50)

            {

                sleeptime=sleeptime-30;

                add=add+2;

                if(sleeptime==320)

                {

                    add=2;//防止减到1之后再加回来有错

                }

            }

        }

        else if(GetAsyncKeyState(VK_F2))

        {

            if(sleeptime<350)

            {

                sleeptime=sleeptime+30;

                add=add-2;

                if(sleeptime==350)

                {

                    add=1;  //保证最低分为1

                }

            }

        }

        Sleep(sleeptime);

        snakemove();

    }

}

 

void welcometogame()//开始界面

{

    Pos(40,12);

 

system("title C语言研究中心   www.clang.cc");

    printf("欢迎来到贪食蛇游戏!");

    Pos(40,25);

    printf("              C语言研究中心  www.clang.cc.\n");

    system("pause");

    system("cls");

    Pos(25,12);

    printf("↑.↓.←.→分别控制蛇的移动, F1 为加速,2 为减速\n");

    Pos(25,13);

    printf("加速将能得到更高的分数。\n");

    system("pause");

    system("cls");

}

 

void endgame()//结束游戏

{

     

    system("cls");

    Pos(24,12);

    if(endgamestatus==1)

    {

        printf("对不起,您撞到墙了。游戏结束.");

    }

    else if(endgamestatus==2)

    {

        printf("对不起,您咬到自己了。游戏结束.");

    }

    else if(endgamestatus==3)

    {

        printf("您的已经结束了游戏。");

    }

    Pos(24,13);

    printf("您的得分是%d\n",score);

    exit(0);

}

void gamestart()//游戏初始化

{

    system("mode con cols=100 lines=30");

    welcometogame();

    creatMap();

    initsnake();

    createfood();

}

 

int main()

{

    gamestart();

    gamecircle();

    endgame();

return 0;

}

三、游戏程序编辑感想

1.学习c语言不能停留在学习它的语法规则,而是利用学到的知识编写c语言程序,解决实际问题。即把c语言作为工具,描述解决实际问题的步骤,由计算机帮助我们解题。只有通过上机才能检验自己是否掌握c语言、自己编写的程序是否能够正确地解题。

2.一个c语言程序从编辑、编译、连接到运行,都要在一定的外部操作环境下才能进行。所谓"环境"就是所用的计算机系统硬件、软件条件,只有学会使用这些环境,才能进行程序开发工作。通过上机实验,熟练地掌握c语言开发环境,为以后真正编写计算机程序解决实际问题打下基矗同时,在今后遇到其它开发环境时就会触类旁通,很快掌握新系统的使用。

3.完成程序的编写,决不意味着万事大吉。你认为万无一失的程序,实际上机运行时可能不断出现麻烦。如编译程序检测出一大堆错误。有时程序本身不存在语法错误,也能够顺利运行,但是运行结果显然是错误的。开发环境所提供的编译系统无法发现这种程序逻辑错误,只能靠自己的上机经验分析判断错误所在。程序的调试是一个技巧性很强的工作,对于初学者来说,尽快掌握程序调试方法是非常重要的。有时候一个消耗你几个小时时间的小小错误,调试高手一眼就看出错误所在。




C语言程序的基本语句能完成功能的体会

标签:编写程序   程序设计   include   小游戏   贪吃蛇   

原文地址:http://11602939.blog.51cto.com/11592939/1775916

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!