C语言—用EasyX实现反弹球消砖块游戏

代码效果如下

#undef UNICODE
#undef _UNICODE
#include<graphics.h>
#include<conio.h>
#include<time.h>
#include<stdio.h>#define width 640
#define high 480
#define brick_num 10int ball_x, ball_y;
int ball_vx, ball_vy;
int radius;
int bar_x, bar_y;
int bar_high, bar_width;
int bar_left, bar_right, bar_top, bar_bottom;int isbrickexisted[brick_num];
int brick_high, brick_width;int score;void startup()
{srand(time(NULL));ball_x = rand()%(width/3)+width/3;ball_y = rand()%(high/4)+high/6;ball_vx = 2;ball_vy = 1;radius = 20;bar_high = high / 20;bar_width = width / 5;bar_x = width / 2;bar_y = high - bar_high / 2;bar_left = bar_x - bar_width / 2;bar_right = bar_x + bar_width / 2;bar_top = bar_y - bar_high / 2;bar_bottom = bar_y + bar_high / 2;brick_width = width / brick_num;brick_high = high / brick_num;int i;for (i = 0; i < brick_num; i++)isbrickexisted[i] = 1;initgraph(width, high, SHOWCONSOLE);BeginBatchDraw();score = 0;
}void clean()
{setcolor(BLACK);setfillcolor(BLACK);fillcircle(ball_x, ball_y, radius);bar(bar_left, bar_top, bar_right, bar_bottom);int i, brick_left, brick_right, brick_top, brick_bottom;for (i = 0; i < brick_num; i++){brick_left = i * brick_width;brick_right = brick_left + brick_width;brick_top = 0;brick_bottom = brick_high;if (!isbrickexisted[i])fillrectangle(brick_left, brick_top, brick_right, brick_bottom);}
}void show()
{setbkcolor(RGB(0, 200, 200));cleardevice();setcolor(YELLOW);setfillcolor(GREEN);fillcircle(ball_x, ball_y, radius);bar(bar_left, bar_top, bar_right, bar_bottom);int i, brick_left, brick_right, brick_top, brick_bottom;for (i = 0; i < brick_num; i++){brick_left = i * brick_width;brick_right = (i + 1) * brick_width;brick_top = 0;brick_bottom = brick_high;if (isbrickexisted[i]){setcolor(GREEN);setfillcolor(YELLOW);fillrectangle(brick_left, brick_top, brick_right, brick_bottom);}}char s[5];sprintf_s(s, "%d", score);settextcolor(YELLOW);settextstyle(30, 0, s);outtextxy(0, high-high/6, "消的砖块数:");outtextxy(30*6, high-high/6, s);FlushBatchDraw();Sleep(1);
}void updatewithoutinput()
{if (ball_y + radius >= bar_top && ball_x >= bar_left && ball_x <= bar_right){ball_vy = 4;ball_vy = -ball_vy;int sign = 1;if (ball_vx < 0)sign = -1;ball_vx = (rand() % 3 + 2) * sign;}ball_x += ball_vx;ball_y += ball_vy;float distant_right,distant_left;distant_right = (ball_x - bar_right) * (ball_x - bar_right) + (ball_y - bar_top) * (ball_y - bar_top);distant_left= (ball_x - bar_left) * (ball_x - bar_left) + (ball_y - bar_top) * (ball_y - bar_top);if (distant_right <= radius * radius + 1 || distant_left <= radius * radius + 1){ball_vx = -ball_vx;ball_vy = -ball_vy;}if (ball_x - radius <= 0 || ball_x + radius >= width)ball_vx = -ball_vx;if (ball_y - radius <= 0)ball_vy = -ball_vy;if (ball_y + radius >= high){printf("\n游戏失败!\n");Sleep(1000);EndBatchDraw();closegraph();exit(0);}int i, brick_left, brick_right, brick_top, brick_bottom;for (i = 0; i < brick_num; i++){if (isbrickexisted[i]){brick_left = brick_width * i;brick_right = brick_width * (i + 1);brick_top = 0;brick_bottom = brick_high;if (ball_y - radius <= brick_bottom && ball_x >= brick_left && ball_x <= brick_right){score++;printf("\a");isbrickexisted[i] = 0;ball_vy = -ball_vy;}}}int flag = 0;for (i = 0; i < brick_num; i++){if (isbrickexisted[i] == 1)flag = 1;}if (flag == 0){for (i = 0; i < brick_num; i++){isbrickexisted[i] = 1;}}}void updatewithinput()
{char input;if (_kbhit()){input = _getch();if (input == 'a'&&bar_left>0){bar_x = bar_x - 15;bar_left = bar_x - bar_width/2;bar_right = bar_x + bar_width/2;}if (input == 'd'&&bar_right<width){bar_x += 15;bar_left = bar_x - bar_width/2;bar_right = bar_x + bar_width/2;}}
}void gameover()
{EndBatchDraw();closegraph();
}int main()
{system("pause");startup();while (1){clean();updatewithoutinput();updatewithinput();show();}gameover();return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/793072.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用 Clickhouse 集成的表引擎同步数据方式详解

Clickhouse作为一个列式存储分析型数据库&#xff0c;提供了很多集成其他组件的表引擎数据同步方案。 官网介绍 一 Kafka 表引擎 使用Clickhouse集成的Kafka表引擎消费Kafka写入Clickhouse表中。 1.1 流程图 1.2 建表 根据上面的流程图需要建立三张表&#xff0c;分别Click…

Vue 组合式 API

Vue 组合式 API 生命周期钩子 在 Vue2 中&#xff0c;我们通过以下方式实现生命周期钩子函数&#xff1a; export default {beforeMount() {console.log(V2 beforeMount!)},mounted() {console.log(V2 mounted!)} }; 在 Vue3 组合 API 中实现生命周期钩子函数可以在 setup()…

鸿蒙组件学习_Image组件

说明 该组件从API Version 7 开始支持 使用网络图片时,需要申请ohos.permission.INTERNET 参数 必填 src 图片的数据源,支持本地图片和网络图片 不支持跨包跨模块调用该Image组件,建议使用$r方式来管理需全局使用的图片资源。属性 alt 加载时显示的占位图&#xf…

Linux云计算之网络基础8——IPV6和常用网络服务

目录 一、IPV6基础 IPV6详解 IPv6数据报的基本首部 IPv6数据报的扩展首部 IPv6地址的表示方法 IPv6地址分类 网际控制报文协议ICMPv6 二、cisco基于IPV6的配置 cisco基于IPV6的配置步骤 模拟配置 三、HTML基础介绍 文档的结构 动手操作一下 四、常用网络服务介绍…

【架构一】CS架构和BS架构

最近在做架构的设计工作&#xff0c;做技术选型难免要区分好CS架构和BS架构。下面就来谈谈两者的区别。 首先CS架构分两层C/S和三层C/S架构。最开始人们都是用的两层CS架构&#xff0c;但它的缺点也孕育而生。 两层CS架构的缺点&#xff1f; &#xff08;1&#xff09;服务器…

B2029 大象喝水

题目描述 一只大象口渴了&#xff0c;要喝 20 升水才能解渴&#xff0c;但现在只有一个深 ℎh 厘米&#xff0c;底面半径为 r 厘米的小圆桶 &#xff08;h 和 r 都是整数&#xff09;。问大象至少要喝多少桶水才会解渴。 Update&#xff1a;数据更新&#xff0c;这里我们近似地…

网络编程(TCP、UDP)

文章目录 一、概念1.1 什么是网络编程1.2 网络编程中的基本知识 二、Socket套接字2.1 概念及分类2.2 TCP VS UDP2.3 通信模型2.4 接口方法UDP数据报套接字编程TCP流套接字编程 三、代码示例3.1 注意点3.2 回显服务器基于UDP基于TCP 一、概念 首先介绍了什么是网络编程&#xff…

Emacs之实现复制当前已打开文件buffer(一百三十五)

简介&#xff1a; CSDN博客专家&#xff0c;专注Android/Linux系统&#xff0c;分享多mic语音方案、音视频、编解码等技术&#xff0c;与大家一起成长&#xff01; 优质专栏&#xff1a;Audio工程师进阶系列【原创干货持续更新中……】&#x1f680; 优质专栏&#xff1a;多媒…

ruoyi-nbcio-plus基于vue3的flowable流程元素选择区面板的升级修改

更多ruoyi-nbcio功能请看演示系统 gitee源代码地址 前后端代码&#xff1a; https://gitee.com/nbacheng/ruoyi-nbcio 演示地址&#xff1a;RuoYi-Nbcio后台管理系统 http://122.227.135.243:9666/ 更多nbcio-boot功能请看演示系统 gitee源代码地址 后端代码&#xff1a…

51单片机实验01-点亮LED小灯

目录 一&#xff0c;软件下载 二&#xff0c;单片机概述 1&#xff0c;单片机内部资源 1&#xff09;flash 2&#xff09;ram 3&#xff09;sfr 2&#xff0c;51单片机 3&#xff0c;单片机最小系统 三&#xff0c;点亮最右边的小灯 1&#xff0c;指出满足小灯点亮的有…

适用于车载设备无钥匙进入系统汽车用晶振FA-238A

汽车用晶振FA-238A是一款适用于车载设备无钥匙进入系统的耐高温晶振。汽车用晶振FA-238A是爱普生推出一的款MHz表贴式晶体单元&#xff0c;具有很好的预率性能&#xff0c;符合AEC-0200标准&#xff0c;其封装尺寸仅为3.2x2.5x0.7mm&#xff0c;工作温度范围在-40℃~125℃之间&…

【计算机考研】408到底有多难?值得冲吗?

考408就必须要面对的现实&#xff01;拒绝眼高手低&#xff01;&#xff01; 408其实想达到110并不难&#xff0c;但是想上130是比较困难的。 几个必须要面对的现实&#xff1a; 1.如果备考的是11408&#xff0c;除非基础特别好或者学习能力特别强&#xff0c;否则一定要尽早…

非关系型数据库-----------探索Redis支持五种数据类型

目录 一、Redis支持五种数据类型 1.String&#xff08;字符串&#xff09; 2.Hash&#xff08;哈希&#xff09; 3.List&#xff08;列表&#xff09; 4.Set&#xff08;集合&#xff09; 5.sorted set(有序集合) 二、Redis的字符串类型string 1、 SET/GET/APPEND/STRL…

代码随想录第十六天: 二叉树part03

力扣222 完全二叉树的节点个数 class Solution {public int countNodes(TreeNode root) {if(root null) return 0;TreeNode leftnode root.left;int leftdepth 0;TreeNode rightnode root.right;int rightdepth 0;while(leftnode ! null) {leftnode leftnode.left;leftd…

MySQL面试题系列-7

MySQL是一个关系型数据库管理系统&#xff0c;由瑞典 MySQL AB 公司开发&#xff0c;属于 Oracle 旗下产品。MySQL是最流行的关系型数据库管理系统之一&#xff0c;在 WEB 应用方面&#xff0c;MySQL是最好的RDBMS (Relational Database Management System&#xff0c;关系数据…

LeetCode 973 最接近原点的K个点

题目信息 LeetoCode地址: . - 力扣&#xff08;LeetCode&#xff09; 题目理解 题意简单且直观&#xff0c;而且是很经典的考验快速排序以及堆排序的算法题&#xff0c;很考验基本功。 堆排序写法 对points数组原地建立小顶堆 并依次弹出第1个元素&#xff0c;重新调整堆…

Vue关键知识点

watch侦听器 Vue.js 中的侦听器&#xff08;Watcher&#xff09;是 Vue提供的一种响应式系统的核心机制之一。 监听数据的变化&#xff0c;并在数据发生变化时执行相应的回调函数。 目的:数据变化能够自动更新到视图中 原理&#xff1a; Vue 的侦听器通过观察对象的属性&#…

Red Hat Enterprise Linux release 8.4安装Jenkins

1. 查看安装 1.1 显示 Linux 系统的详细信息&#xff0c;包括内核版本、操作系统版本和其他相关信息 uname -a1.2 查看 Red Hat Linux 系统的版本 cat /etc/redhat-release # 或者 cat /etc/os-release1.3 查看 JDK 是否安装 java -version #查看安装路径 echo $JAVA_HOME1…

【保姆级介绍Oracle】

&#x1f3a5;博主&#xff1a;程序员不想YY啊 &#x1f4ab;CSDN优质创作者&#xff0c;CSDN实力新星&#xff0c;CSDN博客专家 &#x1f917;点赞&#x1f388;收藏⭐再看&#x1f4ab;养成习惯 ✨希望本文对您有所裨益&#xff0c;如有不足之处&#xff0c;欢迎在评论区提出…

Linux云计算之Linux基础2——Linux发行版本的安装

目录 一、彻底删除VMware 二、VMware-17虚拟机安装 三、MobaXterm 安装 四、Centos 发行版 7.9的安装 五、rockys 9.1的安装 六、ubuntu2204的安装 一、彻底删除VMware 在卸载VMware虚拟机之前&#xff0c;要先把与VMware相关的服务和进程终止 1. 在windows中按下【Windo…