C语言进阶版的反弹球消方块

2023-10-11 18:30
文章标签 语言 进阶 方块 反弹球

本文主要是介绍C语言进阶版的反弹球消方块,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

一 . 首先搭建好小球

要求小球半径为20 ,并且初速度为1 , 撞墙后能够进行反弹.

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <windows.h>
#include <graphics.h>#define high 480  // 游戏画面尺寸
#define width 640// 全局变量
int ball_x, ball_y; // 小球的坐标
int ball_vx, ball_vy; // 小球的速度
int ball_radius; //小球半径void gotoxy(int x, int y)  //光标移动到(x,y)位置
{HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);COORD pos;pos.X = x;pos.Y = y;SetConsoleCursorPosition(handle, pos);
}void HideCursor() // 用于隐藏光标
{CONSOLE_CURSOR_INFO cursor_info = { 1, 0 };  // 第二个值为0表示隐藏光标SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info);
}void startup()  // 数据初始化
{HideCursor(); // 隐藏光标// 小球属性 ball_x = width / 2;ball_y = high / 2;ball_vx = 1;ball_vy = 1;ball_radius = 20; //初始化画笔initgraph(width , high);BeginBatchDraw(); // 开始批量绘画
}void clear()
{//清除小球setcolor(BLACK);setfillcolor(BLACK);fillcircle(ball_x, ball_y, ball_radius);
}void show()  // 显示画面
{gotoxy(0, 0);    // 光标移动到原点位置,以下重画清屏//画球setcolor(GREEN); //绿线setfillcolor(YELLOW);//黄边fillcircle(ball_x, ball_y, ball_radius);// 执行未完成的绘制任务FlushBatchDraw();Sleep(5);}void updateWithoutInput()  // 更新小球和减少方块
{//更新小球的位置ball_x += ball_vx;ball_y += ball_vy;//撞墙调整球的方向if ((ball_x - ball_radius) < 0 || (ball_x + ball_radius) > width)ball_vx = -ball_vx;if ((ball_y - ball_radius) < 0 || (ball_y + ball_radius) > high)ball_vy = -ball_vy;
}void updateWithInput()  // 与用户输入有关的更新
{}void gameOver() // 游戏结束处理
{// 关闭群刷EndBatchDraw();// 关闭画笔closegraph();
}int main()
{startup();  // 数据初始化	while (1)  //  游戏循环执行{clear(); // 清屏updateWithoutInput();  // 与用户输入无关的更新updateWithInput();     // 与用户输入有关的更新show();  // 显示画面}gameOver(); //游戏结束处理return 0;
}

运行以上代码可以实现该功能.

 

二 . 绘制出挡板的效果 

1. 先绘制出挡板

2.给挡板添加移动功能

3.给挡板添加限制功能

4.给挡板添加反弹球功能

5.要求挡板接到球可以反弹 ,没接到则游戏停止.

以上功能可以边调试边实现功能

 

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <windows.h>
#include <graphics.h>#define high 480  // 游戏画面尺寸
#define width 640// 全局变量
int ball_x, ball_y; // 小球的坐标
int ball_vx, ball_vy; // 小球的速度
int ball_radius; //小球半径
int bar_x, bar_y; // 挡板的中心坐标
int bar_width, bar_high; // 挡板的高宽
int bar_top, bar_bottom, bar_left, bar_right; // 挡板的上下左右void gotoxy(int x, int y)  //光标移动到(x,y)位置
{HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);COORD pos;pos.X = x;pos.Y = y;SetConsoleCursorPosition(handle, pos);
}void HideCursor() // 用于隐藏光标
{CONSOLE_CURSOR_INFO cursor_info = { 1, 0 };  // 第二个值为0表示隐藏光标SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info);
}void startup()  // 数据初始化
{HideCursor(); // 隐藏光标// 小球属性 ball_x = width / 2;ball_y = high / 2;ball_vx = 1;ball_vy = 1;ball_radius = 20; //挡板的属性bar_width = width / 6; bar_high = high / 20;bar_x = width / 2;bar_y = high - bar_high;bar_top = bar_y - bar_high / 2;bar_bottom = bar_y + bar_high / 2;bar_left = bar_x - bar_width / 2;bar_right = bar_x + bar_width / 2;//初始化画笔initgraph(width , high);BeginBatchDraw(); // 开始批量绘画
}void clear()
{//清除小球setcolor(BLACK);setfillcolor(BLACK);fillcircle(ball_x, ball_y, ball_radius);//擦除挡板移动的痕迹setcolor(BLACK);setfillcolor(BLACK);fillrectangle(bar_left, bar_top, bar_right, bar_bottom);
}void show()  // 显示画面
{gotoxy(0, 0);    // 光标移动到原点位置,以下重画清屏//画球setcolor(GREEN); //绿线setfillcolor(YELLOW);//黄边fillcircle(ball_x, ball_y, ball_radius);// 画 挡板setcolor(BLUE); setfillcolor(RED);fillrectangle(bar_left, bar_top, bar_right, bar_bottom);// 执行未完成的绘制任务FlushBatchDraw();Sleep(5);}void updateWithoutInput()  // 更新小球和减少方块
{//更新小球的位置ball_x += ball_vx;ball_y += ball_vy;//挡板接球if ( ((ball_y + ball_radius) >= bar_top && ball_x >= bar_left && ball_x <= bar_right )  )ball_vy = -ball_vy;//撞墙调整球的方向if ((ball_x - ball_radius) < 0 || (ball_x + ball_radius) > width)ball_vx = -ball_vx;if ((ball_y - ball_radius) < 0 || (ball_y + ball_radius) > high)ball_vy = -ball_vy;
}void updateWithInput()  // 与用户输入有关的更新
{//获取键位输入char input;if (_kbhit()){input = _getch();if (input == 'a' && bar_left >= 0){bar_x -= 15;bar_left = bar_x - bar_width / 2;bar_right = bar_x + bar_width / 2;}if (input == 'w' && bar_top >= 0){bar_y -= 15;bar_top = bar_y - bar_high / 2;bar_bottom = bar_y + bar_high / 2;}if (input == 'd' && bar_right <= width){bar_x += 15;bar_left = bar_x - bar_width / 2;bar_right = bar_x + bar_width / 2;}if (input == 's' && bar_bottom <= high){bar_y += 15;bar_top = bar_y - bar_high / 2;bar_bottom = bar_y + bar_high / 2;}}
}void gameOver() // 游戏结束处理
{// 关闭群刷EndBatchDraw();// 关闭画笔closegraph();
}int main()
{startup();  // 数据初始化	while (1)  //  游戏循环执行{clear(); // 清屏updateWithoutInput();  // 与用户输入无关的更新updateWithInput();     // 与用户输入有关的更新show();  // 显示画面}gameOver(); //游戏结束处理return 0;
}

第三步:实现小方块功能

1. 现实小方块

2.撞击则消失

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <windows.h>
#include <graphics.h>#define high 480  // 游戏画面尺寸
#define width 640
#define block_num 16 //砖块数量16
// 全局变量
int ball_x, ball_y; // 小球的坐标
int ball_vx, ball_vy; // 小球的速度
int ball_radius; //小球半径
int bar_x, bar_y; // 挡板的中心坐标
int bar_width, bar_high; // 挡板的高宽
int bar_top, bar_bottom, bar_left, bar_right; // 挡板的上下左右
int block_width, block_high;  // 宽高
int isBlockExist[block_num]; // 判断砖块是否存在 , 1 为存在 , 0 为被撞击消失了void gotoxy(int x, int y)  //光标移动到(x,y)位置
{HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);COORD pos;pos.X = x;pos.Y = y;SetConsoleCursorPosition(handle, pos);
}void HideCursor() // 用于隐藏光标
{CONSOLE_CURSOR_INFO cursor_info = { 1, 0 };  // 第二个值为0表示隐藏光标SetConsoleCursorInfo(GetStdHandle(STD_OUTPUT_HANDLE), &cursor_info);
}void startup()  // 数据初始化
{HideCursor(); // 隐藏光标// 小球属性 ball_x = width / 2;ball_y = high / 2;ball_vx = 1;ball_vy = 1;ball_radius = 20; //挡板的属性bar_width = width / 6; bar_high = high / 20;bar_x = width / 2;bar_y = high - bar_high;bar_top = bar_y - bar_high / 2;bar_bottom = bar_y + bar_high / 2;bar_left = bar_x - bar_width / 2;bar_right = bar_x + bar_width / 2;//方块属性block_high = high / block_num;block_width = width / block_num;for (int i = 0; i <= block_num; i++){isBlockExist[i] = 1;}//初始化画笔initgraph(width , high);BeginBatchDraw(); // 开始批量绘画
}void show()  // 显示画面
{gotoxy(0, 0);    // 光标移动到原点位置,以下重画清屏//画球setcolor(GREEN); //绿线setfillcolor(YELLOW);//黄边fillcircle(ball_x, ball_y, ball_radius);// 画 挡板setcolor(BLUE); setfillcolor(RED);fillrectangle(bar_left, bar_top, bar_right, bar_bottom);// 方块int block_left, block_top, block_right, block_bottom;for (int i = 0; i < block_num; i++){block_left = i * block_width;block_right = block_left + block_width;block_top = 0;block_bottom = block_high;if (isBlockExist[i] ){setcolor(DARKGRAY);setfillcolor(LIGHTGREEN);fillrectangle(block_left, block_top, block_right, block_bottom);}}// 执行未完成的绘制任务FlushBatchDraw();Sleep(5);}void clear()
{//清除小球setcolor(BLACK);setfillcolor(BLACK);fillcircle(ball_x, ball_y, ball_radius);//擦除挡板移动的痕迹fillrectangle(bar_left, bar_top, bar_right, bar_bottom);// 擦除方块int block_left, block_top, block_right, block_bottom;for (int i = 0; i < block_num; i++){block_left = i * block_width;block_right = block_left + block_width;block_top = 0;block_bottom = block_high;if ( !isBlockExist[i])fillrectangle(block_left, block_top, block_right, block_bottom);}
}void updateWithoutInput()  // 更新小球和减少方块
{//更新小球的位置ball_x += ball_vx;ball_y += ball_vy;//撞墙调整球的方向if ((ball_x - ball_radius) < 0 || (ball_x + ball_radius) > width)ball_vx = -ball_vx;if ((ball_y - ball_radius) < 0 || (ball_y + ball_radius) > high)ball_vy = -ball_vy;//挡板接球if ( ((ball_y + ball_radius) >= bar_top && ball_x >= bar_left && ball_x <= bar_right )  )ball_vy = -ball_vy;// 方块int block_left, block_top, block_right, block_bottom;for (int i = 0; i < block_num; i++){if (isBlockExist[i] ){block_left = i * block_width;block_right = block_left + block_width;block_top = 0;block_bottom = block_high;if (((ball_y - ball_radius) == block_bottom && (ball_x >= block_left) && (ball_x <= block_right))){isBlockExist[i] = 0;ball_vy = -ball_vy;}}}
}void updateWithInput()  // 与用户输入有关的更新
{//获取键位输入char input;if (_kbhit()){input = _getch();if (input == 'a' && bar_left >= 0){bar_x -= 15;bar_left = bar_x - bar_width / 2;bar_right = bar_x + bar_width / 2;}if (input == 'w' && bar_top >= 0){bar_y -= 15;bar_top = bar_y - bar_high / 2;bar_bottom = bar_y + bar_high / 2;}if (input == 'd' && bar_right <= width){bar_x += 15;bar_left = bar_x - bar_width / 2;bar_right = bar_x + bar_width / 2;}if (input == 's' && bar_bottom <= high){bar_y += 15;bar_top = bar_y - bar_high / 2;bar_bottom = bar_y + bar_high / 2;}}
}void gameOver() // 游戏结束处理
{// 关闭群刷EndBatchDraw();// 关闭画笔closegraph();
}int main()
{startup();  // 数据初始化	while (1)  //  游戏循环执行{clear(); // 清屏updateWithoutInput();  // 与用户输入无关的更新updateWithInput();     // 与用户输入有关的更新show();  // 显示画面}gameOver(); //游戏结束处理return 0;
}

本效果到此!!!!代码全贴出 , 需要的可以学习

这篇关于C语言进阶版的反弹球消方块的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/190000

相关文章

C语言小项目实战之通讯录功能

《C语言小项目实战之通讯录功能》:本文主要介绍如何设计和实现一个简单的通讯录管理系统,包括联系人信息的存储、增加、删除、查找、修改和排序等功能,文中通过代码介绍的非常详细,需要的朋友可以参考下... 目录功能介绍:添加联系人模块显示联系人模块删除联系人模块查找联系人模块修改联系人模块排序联系人模块源代码如下

基于Go语言实现一个压测工具

《基于Go语言实现一个压测工具》这篇文章主要为大家详细介绍了基于Go语言实现一个简单的压测工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录整体架构通用数据处理模块Http请求响应数据处理Curl参数解析处理客户端模块Http客户端处理Grpc客户端处理Websocket客户端

Python进阶之Excel基本操作介绍

《Python进阶之Excel基本操作介绍》在现实中,很多工作都需要与数据打交道,Excel作为常用的数据处理工具,一直备受人们的青睐,本文主要为大家介绍了一些Python中Excel的基本操作,希望... 目录概述写入使用 xlwt使用 XlsxWriter读取修改概述在现实中,很多工作都需要与数据打交

使用SQL语言查询多个Excel表格的操作方法

《使用SQL语言查询多个Excel表格的操作方法》本文介绍了如何使用SQL语言查询多个Excel表格,通过将所有Excel表格放入一个.xlsx文件中,并使用pandas和pandasql库进行读取和... 目录如何用SQL语言查询多个Excel表格如何使用sql查询excel内容1. 简介2. 实现思路3

Go语言实现将中文转化为拼音功能

《Go语言实现将中文转化为拼音功能》这篇文章主要为大家详细介绍了Go语言中如何实现将中文转化为拼音功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 有这么一个需求:新用户入职 创建一系列账号比较麻烦,打算通过接口传入姓名进行初始化。想把姓名转化成拼音。因为有些账号即需要中文也需要英

Go语言使用Buffer实现高性能处理字节和字符

《Go语言使用Buffer实现高性能处理字节和字符》在Go中,bytes.Buffer是一个非常高效的类型,用于处理字节数据的读写操作,本文将详细介绍一下如何使用Buffer实现高性能处理字节和... 目录1. bytes.Buffer 的基本用法1.1. 创建和初始化 Buffer1.2. 使用 Writ

深入理解C语言的void*

《深入理解C语言的void*》本文主要介绍了C语言的void*,包括它的任意性、编译器对void*的类型检查以及需要显式类型转换的规则,具有一定的参考价值,感兴趣的可以了解一下... 目录一、void* 的类型任意性二、编译器对 void* 的类型检查三、需要显式类型转换占用的字节四、总结一、void* 的

C语言线程池的常见实现方式详解

《C语言线程池的常见实现方式详解》本文介绍了如何使用C语言实现一个基本的线程池,线程池的实现包括工作线程、任务队列、任务调度、线程池的初始化、任务添加、销毁等步骤,感兴趣的朋友跟随小编一起看看吧... 目录1. 线程池的基本结构2. 线程池的实现步骤3. 线程池的核心数据结构4. 线程池的详细实现4.1 初

Spring Security 从入门到进阶系列教程

Spring Security 入门系列 《保护 Web 应用的安全》 《Spring-Security-入门(一):登录与退出》 《Spring-Security-入门(二):基于数据库验证》 《Spring-Security-入门(三):密码加密》 《Spring-Security-入门(四):自定义-Filter》 《Spring-Security-入门(五):在 Sprin

Java进阶13讲__第12讲_1/2

多线程、线程池 1.  线程概念 1.1  什么是线程 1.2  线程的好处 2.   创建线程的三种方式 注意事项 2.1  继承Thread类 2.1.1 认识  2.1.2  编码实现  package cn.hdc.oop10.Thread;import org.slf4j.Logger;import org.slf4j.LoggerFactory