最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

c語(yǔ)言飛機(jī)游戲

2023-03-06 16:08 作者:李氵青水  | 我要投稿

#include <stdio.h>

#include <stdlib.h>

#include <conio.h>

#include <windows.h>


// 全局變量

int position_x,position_y; // 飛機(jī)位置

int bullet_x,bullet_y; // 子彈位置

int enemy_x,enemy_y; // 敵機(jī)位置

int high,width; //? 游戲畫(huà)面尺寸

int score; // 得分

int blood; //生命值


void gotoxy(int x,int y)? //光標(biāo)移動(dòng)到(x,y)位置

{

? ? HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);

? ? COORD pos;

? ? pos.X = x;

? ? pos.Y = y;

? ? SetConsoleCursorPosition(handle,pos);

}


void HideCursor() // 用于隱藏光標(biāo)

{

CONSOLE_CURSOR_INFO cursor_info = {1, 0};? // 第二個(gè)值為0表示隱藏光標(biāo)

SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info);

}



void startup() // 數(shù)據(jù)初始化

{

high = 20;

width = 30;

position_x = high/2;

position_y = width/2;

bullet_x = -2;

bullet_y = position_y;

enemy_x = 0;

enemy_y = position_y;

score = 0;

blood = 3;


HideCursor(); // 隱藏光標(biāo)

}


void show()? // 顯示畫(huà)面

{

gotoxy(0,0);? // 光標(biāo)移動(dòng)到原點(diǎn)位置,以下重畫(huà)清屏

int i,j;

for (i=0;i<high;i++)

{

for (j=0;j<width;j++)

{

if ((i==position_x) && (j==position_y))

printf("*");? //? ?輸出飛機(jī)*

else if ((i==enemy_x) && (j==enemy_y))

printf("@");? //? ?輸出敵機(jī)@

else if ((i==bullet_x) && (j==bullet_y))

printf("|");? //? ?輸出子彈|

else

printf(" ");? //? ?輸出空格

}

printf("\n");

}

printf("得分:%d\n",score);

printf("生命值:%d\n",blood);

}


void updateWithoutInput()? // 與用戶輸入無(wú)關(guān)的更新

{

if (bullet_x>-1)

bullet_x--;?

if ((bullet_x==enemy_x) && (bullet_y==enemy_y))? // 子彈擊中敵機(jī)

{

score++;? ? ? ? ? ? ? ? // 分?jǐn)?shù)加1

enemy_x = -1;? ? ? ? ? ?// 產(chǎn)生新的飛機(jī)

enemy_y = rand()%width;

bullet_x = -2;? ? ? ? ? // 子彈無(wú)效

}

if (enemy_x>high)? ?// 敵機(jī)跑出顯示屏幕

{

enemy_x = -1;? ? ? ? ? ?// 產(chǎn)生新的飛機(jī)

enemy_y = rand()%width;

}

// 用來(lái)控制敵機(jī)向下移動(dòng)的速度。每隔幾次循環(huán),才移動(dòng)一次敵機(jī)

// 這樣修改的話,用戶按鍵交互速度還是保持很快,但我們NPC的移動(dòng)顯示可以降速

static int speed = 0;??

if (speed<20)

speed++;

if (speed == 20)

{

enemy_x++;

if ((enemy_x==position_x) && (enemy_y==position_y))? // 敵機(jī)撞擊飛機(jī)

{

blood--;? ?// 生命值減1

if (blood<0)

exit(0);

}

speed = 0;

}

}


void updateWithInput()? // 與用戶輸入有關(guān)的更新

{

char input;

if(kbhit())? // 判斷是否有輸入

{

input = getch();? // 根據(jù)用戶的不同輸入來(lái)移動(dòng),不必輸入回車

if (input == 'a')? ?

position_y--;? // 位置左移

if (input == 'd')

position_y++;? // 位置右移

if (input == 'w')

position_x--;? // 位置上移

if (input == 's')

position_x++;? // 位置下移

if (input == ' ')? // 發(fā)射子彈

{

bullet_x = position_x-1;? // 發(fā)射子彈的初始位置在飛機(jī)的正上方

bullet_y = position_y;

}

}

}


int main()

{

startup();? // 數(shù)據(jù)初始化

while (1) //? 游戲循環(huán)執(zhí)行

{

show();? // 顯示畫(huà)面

updateWithoutInput();? // 與用戶輸入無(wú)關(guān)的更新

updateWithInput();? // 與用戶輸入有關(guān)的更新

}

return 0;

}


c語(yǔ)言飛機(jī)游戲的評(píng)論 (共 條)

分享到微博請(qǐng)遵守國(guó)家法律
九江县| 曲松县| 慈溪市| 斗六市| 灯塔市| 大新县| 锡林郭勒盟| 平乐县| 南宫市| 温泉县| 永仁县| 融水| 勐海县| 和平区| 庄浪县| 工布江达县| 芒康县| 阿合奇县| 乐至县| 新营市| 富阳市| 盐山县| 普定县| 石河子市| 古丈县| 雷州市| 沅陵县| 京山县| 南溪县| 云安县| 嘉禾县| 宜昌市| 偃师市| 杨浦区| 定日县| 阳山县| 开封县| 临邑县| 北安市| 宁明县| 涟水县|