贪吃蛇(四)向前移动蛇身
2023-12-22 10:04:52
实现思路
上节实现了蛇身的绘制,通过扫描的方式,这次我们要通过增加蛇身和删除蛇尾来实现移动蛇。
这里增加了几个函数,都是链表的基本操作
1.增加节点
2.删除节点
3.创建节点
#include"curses.h"
#include "stdlib.h"
struct SnakeNode
{
int row;
int col;
struct SnakeNode* next;
};
struct SnakeNode* head;
struct SnakeNode* tail;
void addNode();
void initSnake()
{
head = (struct SnakeNode*)malloc(sizeof(struct SnakeNode));
head->row = 2;
head->col = 2;
head->next = NULL;
tail = head;
addNode();
addNode();
}
void addNode()
{
struct SnakeNode* node = (struct SnakeNode*)malloc(sizeof(struct SnakeNode));
node->row = tail->row;
node->col = tail->col + 1;
node->next = NULL;
tail->next = node;
tail = node;
}
void deleteNode()
{
// struct SnakeNode* p;
// p = head;
head = head->next;
// free(p);
}
void moveSnake()
{
addNode();
deleteNode();
}
void cursesinit()
{
initscr();
keypad(stdscr,1);
}
int hasSnake(int row,int col)
{
struct SnakeNode* p = head;
while(p!=NULL)
{
if(row == p->row && col == p->col)
return 1;
p = p->next;
}
return 0;
}
void mapinit()
{
int row;
int col;
move(0,0);
for(row = 0;row < 20;row++)
{
// one
if(row == 0 || row == 19)
{
for(col = 0;col < 19;col++)
printw("--");
}
// two
else
{
for(col = 0;col < 20;col++)
{
if(col == 0 || col == 19 ) printw("|");
else if(hasSnake(row,col))
{
printw("[]");
}
else
{
printw(" ");
}
}
}
printw("\n");
}
}
int main()
{
int key;
cursesinit();
initSnake();
mapinit();
while(1)
{
key = getch();
if(key == KEY_RIGHT)
{
moveSnake();
mapinit(); // fresh map
}
}
getch();
endwin();
return 0;
}
学习打卡
文章来源:https://blog.csdn.net/qq_17802895/article/details/135144666
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!