C语言实现反弹球游戏

C语言小游戏——反弹球(简单的图形化界面),供大家参考,具体内容如下

1.环境准备和安装

  • 安装Visual C++ 6.0。
  • 去Easy X官网下载Easy X安装包。

2.Eaxy X功能的简单介绍

  • Easy X类似于一个库函数,其中带有许多很有用的函数。
  • Easy x首先创建一个新的窗口进行绘图。
  • 可以画常见点 线 多边形 可以调节颜色。
  • 可以插入图片,音乐。
  • 可以获取鼠标信息。
  • 其中函数的具体使用可以看安装包中带有的帮助文件

3.反弹球游戏主函数框架

int main (void)
{
 starup();//数据初始化
 while(1)
 {
  show();//画面初始化
  updateWithoutInput();//与用户输入无关的更新
  updateWithInput();//与用户输入有关的更新
 } 

}
  • 与上篇贪吃蛇的框架类似
  • starup();对全局变量初始化
  • show();画具体的图像(球 目标 木板)
  • updateWithoutInput(); 碰壁反弹 碰到木板反弹
  • updateWithInput();控制长方形的移动

4.头文件的加载和全局变量的设定

#include <graphics.h>
#include <conio.h>
#include <stdlib.h>
#include <time.h>

//全局变量
int high,width;//游戏尺寸
int ball_x,ball_y,ball_r;//球
int board_x,board_y,board_long,board_bottom;//木板
int gaol_x,gaol_y,gaol_long;//目标
int velocity_x,velocity_y;//速度

5.第一个函数starup() 全局变量的初始化

void startup()
{
 high=540;width=480;//游戏尺寸
 ball_y=30;ball_x=width/3;ball_r=15;//球的坐标

 board_y=high/2;board_x=width/2;//木板
 board_long=150;board_bottom=10;

 gaol_y=2;
 gaol_x=width/2;
 gaol_long=20; //目标第一个点的坐标 

 velocity_x=1,velocity_y=1;//速度

 initgraph(width,high);
}
  • 所有图像都是以像素为单位,所以设定的很大
  • 木板为长方形 目标为正方形
  • initgraph(width,high);建立一个宽为width,高为high的窗口

6.第二个函数show() 打印画面

void show()
{
 setbkcolor(RGB(255,255,255));
 cleardevice();//清屏

 setfillcolor(RGB(0,0,255));
 fillcircle(ball_x,ball_y,ball_r);

 setfillcolor(RGB(0,0,0));
 fillrectangle(board_x,board_y,board_x+board_long,board_y+board_bottom);

 setfillcolor(RGB(255,0,0));
 fillrectangle(gaol_x,gaol_y,gaol_x+gaol_long,gaol_y+gaol_long);

}
  • setbkcolor(RGB(255,255,255));设置当前绘图背景色(白)
  • cleardevice();清屏(使用当前背景色覆盖)
  • setfillcolor(RGB(0,0,255));设置当前的填充颜色(蓝)
  • fillcircle(x,y,r);画一个圆心为(x,y)半径为r有颜色填充的圆
  • fillrectangle(x1,y1,x2,y2);画一个左上座标为(x1,y1)右下为(x2,y2)有颜色填充的矩形

7.第三个函数updateWithoutInput();与输入无关的更新

void updateWithoutInpurt()
{
 ball_x+=velocity_x;
 ball_y+=velocity_y;

 if(ball_x==1||ball_x==width-2)//碰壁反弹
  velocity_x=-velocity_x;
 if(ball_y==1||ball_y==high-2)
  velocity_y=-velocity_y;

 if(ball_y==board_y&&(ball_x>=board_x&&ball_x<board_x+board_long))//碰木板反弹
  velocity_y=-velocity_y;
 if(ball_y==board_y+board_bottom&&(ball_x>=board_x&&ball_x<board_x+board_long))//碰木板反弹
  velocity_y=-velocity_y;

 if((ball_x>gaol_x&&ball_x<gaol_x+gaol_long)&&(ball_y>gaol_y&&ball_y<gaol_y+gaol_long))//如果球击中目标
 {
  srand((unsigned)time(NULL));/*做随机数产生种子*/
  gaol_y=rand()%(high/2-gaol_long)+1;
  gaol_x=rand()%(width/2-gaol_long)+1;
 }

}

功能:

* 碰壁反弹
* 碰木板反弹
* 如果球碰到目标,目标重新刷新

8.第四个函数 updateWithInput();与用户输入有关的更新

void updateWithInpurt()
{
  char input;
 if(kbhit())
 {
  input=getch();
  if(input=='w'&&board_y>1)
   board_y-=10;
  if(input=='s'&&board_y+board_bottom<high-2)
   board_y+=10;
  if(input=='a'&&board_x>1)
   board_x-=10;
  if(input=='d'&&board_x+board_long<width-2)
   board_x+=10;
 }
}

因为是以像素为单位绘画,所以每次移动10个单位

完整代码

#include <graphics.h>
#include <conio.h>
#include <stdlib.h>
#include <time.h>

//全局变量
int high,width;//游戏尺寸
int ball_x,ball_y,ball_r;//球
int board_x,board_y,board_long,board_bottom;//木板
int gaol_x,gaol_y,gaol_long;//目标
int velocity_x,velocity_y;//速度

void startup()
{
 high=540;width=480;//游戏尺寸
 ball_y=30;ball_x=width/3;ball_r=15;//球的坐标

 board_y=high/2;board_x=width/2;//木板
 board_long=150;board_bottom=10;

 gaol_y=2;
 gaol_x=width/2;
 gaol_long=20; //目标第一个点的坐标 

 velocity_x=1,velocity_y=1;//速度

 initgraph(width,high);

} 

void show()
{
 setbkcolor(RGB(255,255,255));
 cleardevice();//清屏

 setfillcolor(RGB(0,0,255));
 fillcircle(ball_x,ball_y,ball_r);

 setfillcolor(RGB(0,0,0));
 fillrectangle(board_x,board_y,board_x+board_long,board_y+board_bottom);

 setfillcolor(RGB(255,0,0));
 fillrectangle(gaol_x,gaol_y,gaol_x+gaol_long,gaol_y+gaol_long);

}

void updateWithoutInpurt()
{
 ball_x+=velocity_x;
 ball_y+=velocity_y;

 if(ball_x==1||ball_x==width-2)//碰壁反弹
  velocity_x=-velocity_x;
 if(ball_y==1||ball_y==high-2)
  velocity_y=-velocity_y;

 if(ball_y>board_y&&(ball_x>=board_x&&ball_x<board_x+board_long))//碰木板反弹
  velocity_y=-velocity_y;
 if(ball_y==board_y+board_bottom&&(ball_x>=board_x&&ball_x<board_x+board_long))//碰木板反弹
  velocity_y=-velocity_y;

 if((ball_x>gaol_x&&ball_x<gaol_x+gaol_long)&&(ball_y>gaol_y&&ball_y<gaol_y+gaol_long))//如果球击中目标
 {
  srand((unsigned)time(NULL));/*做随机数产生种子*/
  gaol_y=rand()%(high/2-gaol_long)+1;
  gaol_x=rand()%(width/2-gaol_long)+1;
 }

}

void updateWithInpurt()
{
  char input;
 if(kbhit())
 {
  input=getch();
  if(input=='w'&&board_y>1)
   board_y-=10;
  if(input=='s'&&board_y+board_bottom<high-2)
   board_y+=10;
  if(input=='a'&&board_x>1)
   board_x-=10;
  if(input=='d'&&board_x+board_long<width-2)
   board_x+=10;
 }
}

int main(void)
{
 startup();
 while(1)
 {
  show();
  updateWithoutInpurt();
  updateWithInpurt();
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • C语言实现简单弹球游戏

    电视机待机的屏幕上的弹球,怎么实现? 今天文章就跟大家分享下C语言实现简单弹球游戏的具体代码,供大家参考,具体内容如下 #include <iostream> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <math.h> #include <windows.h> //#include <sy

  • C语言实现弹跳小球

    这是一个简单的c语言源代码,C语言实现弹跳小球,设置了小球的分数及过关的难度. #include "graphics.h" #include "math.h" #define LEFT 0x4b00 #define RIGHT 0x4d00 #define ESC 0x011b int x,y,x1,y1,key,t1,t2,keyx,keylong,keymove,over=0,i,tt=0,fast; int ballx[9]={53,103,263,120,2

  • C语言实现简单弹跳球游戏

    本文实例为大家分享了C语言实现弹跳球游戏的具体代码,供大家参考,具体内容如下 #include <stdio.h> #include <stdlib.h> int main() { // 球的坐标 int pos_x,pos_y; //球坐标的变化 int x =0; int y = 5; // 定义一个球的速度 int velocity_x=1; int velocity_y=1; //定义一个球运动的范围 int top=0; int botton=20; int lift=0

  • C语言实现反弹球小游戏

    本文为大家分享了C语言反弹球游戏的具体代码,供大家参考,具体内容如下 这是利用函数写的C语言小游戏,用来检验自己的学习成果 反弹球的实现主要有几个子函数组成 问题也在于如何实现小球的下落,以及碰撞得分等情况 #include<stdio.h> #include<windows.h> #include<conio.h> //定义全局变量 int high,width; //游戏边界 int ball_x,ball_y; //小球位置 int ball_vx,ball_vy

  • C语言实现反弹球游戏

    C语言小游戏--反弹球(简单的图形化界面),供大家参考,具体内容如下 1.环境准备和安装 安装Visual C++ 6.0. 去Easy X官网下载Easy X安装包. 2.Eaxy X功能的简单介绍 Easy X类似于一个库函数,其中带有许多很有用的函数. Easy x首先创建一个新的窗口进行绘图. 可以画常见点 线 多边形 可以调节颜色. 可以插入图片,音乐. 可以获取鼠标信息. 其中函数的具体使用可以看安装包中带有的帮助文件 3.反弹球游戏主函数框架 int main (void) { s

  • C语言实现反弹球消砖块游戏

    本文实例为大家分享了C语言实现反弹球消砖块游戏的具体代码,供大家参考,具体内容如下 1.目标要求: 1.击中上方方块’H’,分数加12.下方控制线没有接到小球时,游戏结束 2.C语言代码: #include<stdio.h> #include<stdlib.h> #include<windows.h> #include<conio.h> /*         <反弹球消砖块>    by:你最珍贵                       --

  • C语言实现双人反弹球游戏

    本文项目为大家分享C语言实现双人反弹球游戏的具体代码,供大家参考,具体内容如下 一.最终项目描述和效果 项目描述:   实现双人玩的弹跳球游戏 最终效果图如下: 二.基本框架实现 代码如下: #include<conio.h> #include<graphics.h> #define High 480//游戏画面尺寸 #define Width 640 //全局变量 int ball1_x,ball1_y;//小球1的坐标 int ball2_x,ball2_y;//小球2的坐标

  • C语言实现飞机游戏(豪华版)的示例代码

    目录 前言 一.飞机显示与控制 二.发射子弹 三.击中敌机 四.多台敌机 五.发射散弹 前言 这是飞机游戏的第三版,我们已经实现了基础版和进阶版的飞机游戏  ,但是存在的问题很明显:已经发射出去的子弹会随着飞机位置的实时改变而改变,并且不能实现连发.如果第一次看此文章,可能有部分代码(例如基本游戏框架,清屏功能,键盘控制,数据处理)不了解其功能,建议看看之前写的博客用c实现最简单的飞机游戏和用c实现进阶版飞机游戏 应用数组,可以更方便地记录复杂的数据,实现更复杂的显示.逻辑判断与控制.本篇文章利

  • 基于C语言实现五子棋游戏完整实例代码

    本文实例讲述了基于C语言实现五子棋游戏的方法,代码备有比较完整的注释,可以帮助读者更好的加以理解. 五子棋游戏代码如下: /* * 使用键盘的上下左右键移动棋盘,空格键表示下棋,ESC键退出程序 */ #include <stdio.h> #include <stdlib.h> #include <bios.h> #include <graphics.h> #include<malloc.h> /* * 对应键盘键的十六进制数字 */ #defi

  • C语言对对碰游戏源码分享

    本文实例为大家分享了C语言对对碰游戏的具体代码,供大家参考,具体内容如下 //////////////////////////////////////// //画素材的x和y都是反的,因为x表示行,但是画出来x表示列,y同 //////////////////////////////////////// #include <graphics.h> #include <fstream> #include <strstream> #include <iomanip&g

  • C语言实现小猫钓鱼游戏

    本文实例为大家分享了C语言实现小猫钓鱼游戏的具体代码,供大家参考,具体内容如下 #include<stdio.h> #include<time.h> #include<string.h> #include<stdlib.h> #include<windows.h> typedef struct { int data[3600]; int col[3600]; int top; } stack; typedef struct { int data[

  • C语言实现扫雷游戏及其优化

    本文实例为大家分享了C语言实现扫雷游戏及其优化的具体代码,供大家参考,具体内容如下 关于扫雷优化 1.核心思想:使用两个二维数组进行设计,一个用于显示,一个用于后台雷的布置. 2.使用宏常量,后期可以任意修改游戏难度. 3.关于扫雷拓展模块,目前使用的方法比较low,若周围均没有,则全部显示. 4.剩余位置数使用全局变量count,必须考虑拓展之后count变化. 有待改进之处 1.需设计标记雷的步骤,增加用户体验. 2.拓展方式有待改进. 3.界面布局仍需要进行优化. 扫雷游戏代码 #incl

  • C语言自定义军旗游戏源码

    本文实例为大家分享了C语言自定义军旗游戏的具体代码,供大家参考,具体内容如下 #include <graphics.h> #include <time.h> #define CHESIZE 40 // 棋盘尺寸,不能随意调整 #define RESETX 170 #define RESETY 350 // 重置原点 typedef enum // 要用到的棋子ID { si, jun, shi, lv, tuan, ying, lian, pai, ban, gong, fei,

随机推荐