贪吃蛇(八)任意方向游走

上节我们实现了方向和屏幕刷新,本节来实现贪吃蛇的任意方向游走控制。

实现思路

在增加新节点的时候,原先我们是直接在尾节点增加一个节点,将列加1,现在我们需要根据用户输入判断方向,从而改变新节点的坐标。

#include"curses.h"
#include "stdlib.h"
#include "pthread.h"

#define UP    1
#define DOWN  2
#define LEFT  3
#define RIGHT 4

struct SnakeNode
{
  int row;
  int col;
  struct SnakeNode* next; 
};


int key;  // user input
int dir;
struct SnakeNode* head = NULL;
struct SnakeNode* tail = NULL;

void addNode();
void mapinit();


void cursesinit()
{
   
  initscr();
  keypad(stdscr,1);
}


void snakeinit()
{
  // dir init
  dir = RIGHT;

  // free 
  struct SnakeNode* p;
  while(head != NULL)
  {
    p = head;
    head = head->next;
    free(p);
  }
  // create node
  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->next = NULL;
  
  switch(dir)
  {
	case RIGHT:
	  node->row = tail->row;
          node->col = tail->col + 1;
	  break;
	case LEFT:
	  node->row = tail->row;
          node->col = tail->col - 1;
	  break;
	case DOWN:
	  node->row = tail->row + 1;
          node->col = tail->col;
	  break;
	case UP:
	  node->row = tail->row - 1;
          node->col = tail->col;
	  break;
  }
  
  tail->next = node;
  tail = node;
}

void deleteNode()
{
  struct SnakeNode* p;
  p = head;
  head = head->next;
  free(p);
}

void moveSnake()
{
  addNode();
  deleteNode();
  // if snake is over.
  if(tail->row == 0 || tail->col == 0 || tail->row >= 20 || tail->col >= 19)
  {
    snakeinit();
  }
}


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");
  }

  printw("By hongzhe\n");
}


void refreshScreen()
{
  while(1)
  {
	moveSnake(); // snake forward 
	mapinit();   // fresh map
	refresh();   // fresh screen
	usleep(100000);	// sleep(0.5)
  }
  return;
}


void changeDir()
{
  
  while(1)
  {
    key = getch();
    switch(key)
    {
      case KEY_DOWN:
	printw("\rDOWN\t");
	dir = DOWN;
	break;
      case KEY_RIGHT:
	printw("\rRIGHT\t");
	dir = RIGHT;
	break;
      case KEY_LEFT:
	printw("\rLEFT\t");
	dir = LEFT;
	break;
      case KEY_UP:
	printw("\rUP\t");
	dir = UP;
	break;

    }
  }
  return;
}

int main()
{
  pthread_t t1;
  pthread_t t2;
 
  cursesinit();  
  snakeinit();
  mapinit();
  

  pthread_create(&t1,NULL,refreshScreen,NULL);
  pthread_create(&t2,NULL,changeDir,NULL);

  while(1);  // zu se main thread

  getch();  
  endwin();
  return 0;
}


学习打卡

贪吃蛇(八)任意方向游走_第1张图片

你可能感兴趣的:(算法,c语言,数据结构,linux)