贪吃蛇代码(C语言)(2)

时间:2026-01-24

(&msg);
DispatchMessage(&msg);
}
return 0;
}

LRESULT CALLBACK Win_tetris_Proc(
HWND hwnd, // handle to window
UINT uMsg, // message identifier
WPARAM wParam, // first message parameter
LPARAM lParam // second message parameter
)
{

char szChar[20] = "score:";
unsigned char xx,yy;

switch(uMsg)
{
case WM_KEYDOWN:
{
if(32 == wParam)
{
if(1 == snk_1.snake_state)
{
snk_1.snake_state = 0;
}
else
{
snk_1.snake_state = 1;
}
}

if(1 == snk_1.snake_state)
{
if((wParam > 36)&&(wParam < 41))
{
if(38 == wParam)
{
if((s_count[snk_1.h_index].direction == GO_RIGHT)||(s_count[snk_1.h_index].direction == GO_LEFT))
{
snk_1.h_index = (snk_1.h_index+1)%SNAKE_NUMBER ;
s_count[snk_1.h_index].direction = GO_UP;
s_count[snk_1.h_index].cnt = 1;
}
}
else if(40 == wParam)
{
if((s_count[snk_1.h_index].direction == GO_RIGHT)||(s_count[snk_1.h_index].direction == GO_LEFT))
{
snk_1.h_index = (snk_1.h_index+1)%SNAKE_NUMBER ;
s_count[snk_1.h_index].direction = GO_DOWN;
s_count[snk_1.h_index].cnt = 1;
}
}
else if(39 == wParam)
{
if((s_count[snk_1.h_index].direction == GO_DOWN)||(s_count[snk_1.h_index].direction == GO_UP))
{
snk_1.h_index = (snk_1.h_index+1)%SNAKE_NUMBER ;
s_count[snk_1.h_index].direction = GO_RIGHT;
s_count[snk_1.h_index].cnt = 1;
}
}
else if(37 == wParam)
{
if((s_count[snk_1.h_index].direction == GO_DOWN)||(s_count[snk_1.h_index].direction == GO_UP))
{
snk_1.h_index = (snk_1.h_index+1)%SNAKE_NUMBER ;
s_count[snk_1.h_index].direction = GO_LEFT;
s_count[snk_1.h_index].cnt = 1;
}
}

}
}
break;
}


case WM_TIMER:
//case WM_PAINT:
time_t t;
HDC hdc;
hdc=GetDC(hwnd);
HBRUSH hbr;
RECT rect;

if(1 == snk_1.snake_state)
{
//head
CHECK:
switch(s_count[snk_1.h_index].direction)
{
case GO_RIGHT:
{
if(snk_1.Head_X < 63)snk_1.Head_X++;
else snk_1.Head_X = 0;
break;
}
case GO_LEFT:
{
if(snk_1.Head_
X >0 )snk_1.Head_X--;
else snk_1.Head_X = 63;
break;
}
case GO_DOWN :
{
if(snk_1.Head_Y < 63)snk_1.Head_Y++;
else

贪吃蛇代码(C语言)(2).doc 将本文的Word文档下载到电脑

精彩图片

热门精选

大家正在看

× 游客快捷下载通道(下载后可以自由复制和排版)

限时特价:4.9 元/份 原价:20元

支付方式:

开通VIP包月会员 特价:19元/月

注:下载文档有可能“只有目录或者内容不全”等情况,请下载之前注意辨别,如果您已付费且无法下载或内容有问题,请联系我们协助你处理。
微信:fanwen365 QQ:370150219