• 大小: 5.59KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-04-13
  • 语言: C/C++
  • 标签: c++  贪吃蛇  

资源简介

贪吃蛇

资源截图

代码片段和文件信息

/************************贪吃蛇***********************/
/**********************2012-11-20*********************/
 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
using namespace std;
 
/*** 光标定位 ***/
HANDLE hout=GetStdHandle(STD_OUTPUT_HANDLE);
COORD coord;
 
void locate(int xint y)
{
    coord.X=y;
    coord.Y=x;
    SetConsoleCursorPosition(houtcoord);
};
 
/*** 隐藏光标 ***/
void hide()
{
    CONSOLE_CURSOR_INFO cursor_info={10};
    SetConsoleCursorInfo(hout &cursor_info);
}
 
/*** 生成随机数 ***/
double random(double start double end)
{
    return start+(end-start)*rand()/(RAND_MAX + 1.0);
}
 
/*** 定义地图的长宽,蛇的坐标,长度,方向,食物的位置 ***/
int mn;
 
struct node
{
    int xy;
}snake[1000];
 
int snake_lengthdir;
node food;
int direct[4][2]={{-10}{10}{0-1}{01}};
 
/*** 输出墙 ***/
void print_wall()
{
    cout << “ “;
    for (int i=1;i<=n;i++)
        cout << “-“;
    cout << endl;
    for (int j=0;j<=m-1;j++)
    {
        cout << “|“;
        for (int i=1;i<=n;i++) cout << “ “;
        cout << “|“ << endl;
    }
    cout << “ “;
    for (int i=1;i<=n;i++)
        cout << “-“;
}
 
/*** 首次输出蛇,其中snake[0]代表头 ***/
void print_snake()
{
    locate(snake[0].xsnake[0].y);
    cout << “@“;
    for (int i=1;i<=snake_length-1;i++)
    {
        locate(snake[i].xsnake[i].y);
        cout << “*“;
    }
}
 
/*** 判断是否撞墙或者自撞 ***/
bool is_correct()
{
    if (snake[0].x==0 || snake[0].y==0 || snake[0].x==m+1 || snake[0].y==n+1) return false;
    for (int i=1;i<=snake_length-1;i++)
    {
        if (snake[0].x==snake[i].x && snake[0].y==snake[i].y) return false;
    }
    return true;
}
 
/*** 随机生成并输出食物位置 ***/
bool print_food()
{
    srand((unsigned)time(0));
    bool e;
    while (1)
    {
        e=true;
        int i=(int) random(0m)+1j=(int) random(0n)+1;
        food.x=i;food.y=j;
        for (int k=0;k<=snake_length-1;k++)
        {
            if (snake[k].x==food.x && snake[k].y==food.y)
            {
                e=false;break;
            }
        }
        if (e) break;
    }
    locate(food.xfood.y);
    cout << “$“;
    return true;
}
 
/*** 蛇的前进 ***/
bool go_ahead()
{
    node temp;
    bool e=false;
    temp=snake[snake_length-1];
    for (int i=snake_length-1;i>=1;i--)
        snake[i]=snake[i-1];
    snake[0].x+=direct[dir][0];
    snake[0].y+=direct[dir][1];
    locate(snake[1].xsnake[1].y);
    cout << “*“;
    /*** 吃到了食物 ***/
    if (snake[0].x==food.x && snake[0].y==food.y)
    {
        snake_length++;
        e=true;
        snake[snake_length-1]=temp;
    }
    

评论

共有 条评论