简易falppy bird

1.在Xfce终端安装ncurses库
sudo apt-get install libncurses5-dev
2.cd Code
touch my_flappy_bird.c
3.用*表示背景中的柱子,用0表示bird。代码如下:
#include <curses.h>
#include <stdlib.h>
#include <signal.h>
#include <sys/time.h>

#define CHAR_BIRD ‘0’
#define CHAR_STONE ‘*’
#define CHAR_BLANK ’ ’
typedef struct node{
int x,y;
struct node *next;
}node, *Node;
Node head,tail;
int bird_x,bird_y;
int ticker;
void init();
void init_bird();
void init_draw();
void init_head();
void init_wall();
void drop(int sig);
int set_ticker(int n_msec);
int set_ticker(int n_msec)
{
struct itimerval timeset;
long n_sec,n_usec;
n_sec = n_msec /1000;
n_usec = (n_msec % 1000) * 1000L;
timeset.it_interval.tv_sec = n_sec;
timeset.it_interval.tv_usec = n_usec;
timeset.it_value.tv_sec = n_sec;
timeset.it_value.tv_usec = n_usec;
return setitimer(ITIMER_REAL,&timeset,NULL);
}
void drop(int sig)
{
int j;
Node tmp,p;
move(bird_y,bird_x);
addch(CHAR_BLANK);
refresh();
bird_y++;
move(bird_y,bird_x);
addch(CHAR_BIRD);
refresh();
if((char)inch() == CHAR_STONE)
{
set_ticker(0);
sleep(1);
endwin();
exit(0);
}
p= head -> next;
if(p->x<0)
{
head ->next = p-> next;
free§;
tmp = (node *)malloc(sizeof(node));
tmp->x = 99;
tmp->y = rand() % 11 + 5;
tail -> next = tmp;
tmp-> next = NULL;
tail = tmp;
ticker -= 10;
set_ticker(ticker);
}
for(p = head->next;p->next!=NULL;p->x–,p=p->next)
{
for(j = 0;jy;j++)
{
move(j,p->x);
addch(CHAR_BLANK);
refresh();
}
for(j = p->y + 5;j <= 23;j++)
{
move(j,p->x);
addch(CHAR_BLANK);
refresh();
}

if(p->x-10 >= 0 && p->x <80)
{
for(j = 0;j < p->y;j++)
{
move(j,p->x -10);
addch(CHAR_STONE);
refresh();
}
for(j = p->y+5;j <= 23;j++)
{
move(j,p->x-10);
addch(CHAR_STONE);
refresh();
}}}
tail->x–;
}
int main()
{
char ch;

init();

while(1)
{
ch = getch();
if(ch==’ ’ || ch == ‘w’ ||ch == ‘W’)
{
move(bird_y,bird_x);
addch(CHAR_BLANK);
refresh();
bird_y–;
move(bird_y,bird_x);
addch(CHAR_BIRD);
refresh();
if((char)inch() == CHAR_STONE)
{
set_ticker(0);
sleep(1);
endwin();
exit(0);
}
}
else if(ch == ‘z’ || ch ==‘Z’)
{
set_ticker(0);
do{ch = getch();
}while(ch != ‘z’&& ch != ‘Z’);
set_ticker(ticker);}
else if(ch ==‘q’ || ch ==‘Q’)
{
sleep(1);
endwin();
exit0(0);
}}
return 0;
}

void init()
{
initscr();
cbreak();
noecho();
curs_set(0);
srand(time(0));
signal(SIGALRM,drop);

init_bire();
init_head();
init_wall();
init_draw();
sleep(1);
ticker;
set_ticker(ticker);
}

void init_bird()
{
bird_x = 5;
bird_y = 15;
move(bird_y,bird_x);
addch(CHAR_BIRD);
refresh();
sleep(1);
}
void init_head()
{
Node tmp;
tmp = (node
*)malloc(sizeof(node));
tmp->next = NULL;
head = tmp;
tail = head;
}

void init_wall()
{
int i;
Node tmp,p;
p = head;
for(i = 0;i < 5;i++)
{
tmp = (node
*)malloc(sizeof(node));
tmp->x = (i+1)*19;
tmp->y = rand()%11 + 5;
p->next = tmp;
tmp->next = NULL;
p= tmp;
}
tail = p;
}

void init_draw()
{
Node p;
int i,j;
for( p= head ->next;p ->next != NULL;p= p->next)
{
for(i = p->x;i > p->x-10;i–)
{
for(j = 0;j y;j++)
{
move(j,i);
aaddch(CHAR_STONE);}
for(j = p->y+5;j <=23; j++)
{
move(j,i);
addch(CHAR_STONE);
}
}
refresh();
ssleep(1);
}}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值