当前位置:   article > 正文

C语言实现贪吃蛇100行左右,代码简单易懂_100行左右的c语言项目

100行左右的c语言项目

废话不多说,直接上代码

#include<stdio.h>
#include<stdlib.h>
#include<conio.h>
#include<windows.h>
#define high 20
#define width 30
 
int a[high][width]={0};
int move;
int food_x,food_y;
void gotoxy(int x,int y)
{
	HANDLE handle=GetStdHandle(STD_OUTPUT_HANDLE);
	COORD pos;
	pos.X=x;
	pos.Y=y;
	SetConsoleCursorPosition(handle,pos);
}

void moveSnakeByDirection()
{
	int i,j,sum=0;
	for(i=1;i<high-1;i++)
	{
	for(j=1;j<width-1;j++)
	{
		if(a[i][j]>0)
			a[i][j]++;
	}
	}
	int oldtail_i,oldtail_j,oldhead_i,oldhead_j;
	int max=0;
	for(i=1;i<high-1;i++)
	{
	for(j=1;j<width-1;j++)
	{
		if(a[i][j]>0)
		{
			if(max<a[i][j])
			{
				max=a[i][j];
				oldtail_i=i;
				oldtail_j=j;
			}
			if(a[i][j]==2)
			{
				oldhead_i=i;
				oldhead_j=j;
			}
		}
	}
	}
			 
			
			 int newhead_i,newhead_j;
			 if(move==1)
			 {
				 newhead_i=oldhead_i-1;
				 newhead_j=oldhead_j;
			 }
			  if(move==2)
				{
				 newhead_i=oldhead_i+1;
				 newhead_j=oldhead_j;
			 }
			  if(move==3)
				{
				 newhead_i=oldhead_i;
				 newhead_j=oldhead_j-1;
			 }
				  
			  if(move==4)
				  {
				 newhead_i=oldhead_i;
				 newhead_j=oldhead_j+1;
			 }
			  if(a[newhead_i][newhead_j]==-2)
			  {
				  a[food_x][food_y]=0;
				  food_x=rand()%(high-5)+2;
				  food_y=rand()%(width-5)+2;
				  a[food_x][food_y]=-2;
				  sum+=1;
			  }
			  else
			  {
				  a[oldtail_i][oldtail_j]=0;
			  }
		if(a[newhead_i][newhead_j]>0|a[newhead_i][newhead_j]==-1)
		{
			printf("游戏失败\n");
			printf("您的得分为%d",sum);
		exit(0);
		}
		else{
			a[newhead_i][newhead_j]=1;
		}
}
	
	



void startup()
{
	int i ,j;
	for(i=0;i<high;i++)
	{
		a[i][0]=-1;
		a[i][width-1]=-1;
	}
	for(j=0;j<width;j++)
	{
		a[0][j]=-1;
		a[high-1][j]=-1;
	}
	a[high/2][width/2]=1;
	for(i=1;i<=4;i++)
	{
		a[high/2][width/2-i]=i+1;
	}
	move=4;
	 food_x=rand()%(high-5)+2;
				  food_y=rand()%(width-5)+2;
				  a[food_x][food_y]=-2;
}

void show()
{
	gotoxy(0,0);
	int i,j;
	for(i=0;i<high;i++)
	{
	for(j=0;j<width;j++)
	{
		if(a[i][j]==0)
			printf(" ");
		else if(a[i][j]==-1)	
		      printf("#");
		else if(a[i][j]==1)
			printf("@");
		else if(a[i][j]>1)
			printf("*");
		else if(a[i][j]==-2)
			printf("o");
	}
	printf("\n");
	}
	Sleep(150);
}
void updateWithoutInput()
{
	 moveSnakeByDirection();
}
void updateWithIput()
{char input;
	if(kbhit())
	{
		input=getch();
		if(input=='a')
		{
			move=3;
            moveSnakeByDirection();
        }
		else if(input=='d')
		{
			move=4;
            moveSnakeByDirection();
        }
		else if(input=='w')
		{
			move=1;
            moveSnakeByDirection();
        }
		else if(input=='s')
		{
			move=2;
            moveSnakeByDirection();
        }
	}

}

int main()
{
	int i,j;
	startup();
	
	while(1)
	{
		show();
		updateWithoutInput();
		updateWithIput();
	}
	return 0;
}

	


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99
  • 100
  • 101
  • 102
  • 103
  • 104
  • 105
  • 106
  • 107
  • 108
  • 109
  • 110
  • 111
  • 112
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/372572
推荐阅读
相关标签
  

闽ICP备14008679号