C语言用函数实现反弹球消砖块

本文实例为大家分享了C语言用函数实现反弹球消砖块的具体代码,供大家参考,具体内容如下

一、项目描述和最终的成果展示

这是在上一次弹跳小项目上进行了一系列的优化和封装。项目: 弹跳的小球
上次没有用函数进行的封装。这次在上次的基础上进行封装和一些功能的优化。

最终效果图如下:

二、封装后的弹跳小球

代码如下:

#include<stdio.h>
#include<string.h>
#include<conio.h>
#include<windows.h>

//全局变量
int high,width; //游戏画面大小
int ball_x,ball_y;//小球的坐标
int ball_vx,ball_vy;//小球的速度

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 startup()//数据的初始化
{
    high =  15;
    width = 20;
    ball_x = 0;
    ball_y = width/2;
    ball_vx = 1;
    ball_vy = 1;
}

void show()//显示画面
{
    gotoxy(0,0);//光标移动到原点位置,以下重画清屏
    int i,j;
    for(i=0;i<=high;i++)
    {
        for(j=0;j<=width;j++)
        {
            if( ( i == ball_x) && ( j == ball_y ) )
                printf("O");//输出小球
            else if( j == width)
                printf("+");//输出右边框
            else if( i == high)
                printf("-");//输出下边框
            else
                printf(" ");//输出空格
        }
        printf("\n");
    }
}

void updateWithoutInput()//与用户输入无关的更新
{
    ball_x = ball_x + ball_vx;
    ball_y = ball_y + ball_vy;

    if( (ball_x == 0 ) || (ball_x == high-1 ))
        ball_vx = -ball_vx;
    if( (ball_y == 0 ) || (ball_y == width-1 ))
        ball_vy = -ball_vy;

    Sleep(50);
}

void updateWithInput()//与用户输入有关的更新
{

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

效果图如下:

三、显示移动挡板

代码如下:

#include<stdio.h>
#include<string.h>
#include<conio.h>
#include<windows.h>

//全局变量
int high,width; //游戏画面大小
int ball_x,ball_y;//小球的坐标
int ball_vx,ball_vy;//小球的速度
int position_x,position_y;//挡板的中心坐标
int ridus;//挡板的半径大小
int left,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 startup()//数据的初始化
{
    high =  15;
    width = 20;
    ball_x = 0;
    ball_y = width/2;
    ball_vx = 1;
    ball_vy = 1;
    ridus = 5;
    position_x = high;
    position_y = width/2;
    left = position_y -ridus;
    right = position_y + ridus;
}

void show()//显示画面
{
    gotoxy(0,0);//光标移动到原点位置,以下重画清屏
    int i,j;
    for(i=0;i<=high+1;i++)
    {
        for(j=0;j<=width;j++)
        {
            if( ( i == ball_x) && ( j == ball_y ) )
                printf("O");//输出小球
            else if( j == width)
                printf("+");//输出右边框
            else if( i == high+1)
                printf("-");//输出下边框
            else if ( (i==high)&&(j>=left)&&(j<=right))
                printf("*");
            else
                printf(" ");//输出空格
        }
        printf("\n");
    }
}

void updateWithoutInput()//与用户输入无关的更新
{
    ball_x = ball_x + ball_vx;
    ball_y = ball_y + ball_vy;

    if( (ball_x == 0 ) || (ball_x == high-1 ))
        ball_vx = -ball_vx;
    if( (ball_y == 0 ) || (ball_y == width-1 ))
        ball_vy = -ball_vy;

    Sleep(50);
}

void updateWithInput()//与用户输入有关的更新
{
    char input;
    if(kbhit())
    {
        input = getch();
        if( input == 'a' || input == 'A' )
        {
            position_y--;//位置左移
            left = position_y-ridus;
            right = position_y+ridus;
        }
        if( input == 'd' || input == 'D' )
        {
            position_y++;
            left = position_y - ridus;
            right = position_y + ridus;
        }
    }
}
int main(void)
{
    startup();//数据的初始化
    while(1)
    {
        show();//显示画面
        updateWithoutInput();//与用户输入无关的更新
        updateWithInput();//与用户输入有关的更新
    }
    return 0;
}

效果图如下:

四、反弹小球

代码如下:

#include<stdio.h>
#include<string.h>
#include<conio.h>
#include<windows.h>

//全局变量
int high,width; //游戏画面大小
int ball_x,ball_y;//小球的坐标
int ball_vx,ball_vy;//小球的速度
int position_x,position_y;//挡板的中心坐标
int ridus;//挡板的半径大小
int left,right;//挡板的左右位置
int ball_number;//反弹小球的次数

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 startup()//数据的初始化
{
    high =  15;
    width = 20;
    ball_x = 0;
    ball_y = width/2;
    ball_vx = 1;
    ball_vy = 1;
    ridus = 5;
    position_x = high;
    position_y = width/2;
    left = position_y -ridus;
    right = position_y + ridus;
    ball_number=0;
}

void show()//显示画面
{
    gotoxy(0,0);//光标移动到原点位置,以下重画清屏
    int i,j;
    for(i=0;i<=high+1;i++)
    {
        for(j=0;j<=width;j++)
        {
            if( ( i == ball_x) && ( j == ball_y ) )
                printf("O");//输出小球
            else if( j == width)
                printf("+");//输出右边框
            else if( i == high+1)
                printf("-");//输出下边框
            else if ( (i==high)&&(j>=left)&&(j<=right))
                printf("*");
            else
                printf(" ");//输出空格
        }
        printf("\n");
    }
    printf("反弹小球数:%d\n",ball_number);
}

void updateWithoutInput()//与用户输入无关的更新
{
    if( ball_x == high -1)
    {
        if( (ball_y>=left) && (ball_y<=right) )
        {
            ball_number++;
            printf("\a");//响铃
        }
        else
        {
            printf("游戏失败\n");
            system("pause");
            exit(0);
        }
    }
    
    ball_x = ball_x + ball_vx;
    ball_y = ball_y + ball_vy;

    if( (ball_x == 0 ) || (ball_x == high-1 ))
        ball_vx = -ball_vx;
    if( (ball_y == 0 ) || (ball_y == width-1 ))
        ball_vy = -ball_vy;

    Sleep(50);
}

void updateWithInput()//与用户输入有关的更新
{
    char input;
    if(kbhit())
    {
        input = getch();
        if( input == 'a' || input == 'A' )
        {
            position_y--;//位置左移
            left = position_y-ridus;
            right = position_y+ridus;
        }
        if( input == 'd' || input == 'D' )
        {
            position_y++;
            left = position_y - ridus;
            right = position_y + ridus;
        }
    }
}
int main(void)
{
    startup();//数据的初始化
    while(1)
    {
        show();//显示画面
        updateWithoutInput();//与用户输入无关的更新
        updateWithInput();//与用户输入有关的更新
    }
    return 0;
}

效果图如下:

五、添加砖块并实现打砖块操作

代码如下:

#include<stdio.h>
#include<string.h>
#include<conio.h>
#include<windows.h>

//全局变量
int high,width; //游戏画面大小
int ball_x,ball_y;//小球的坐标
int ball_vx,ball_vy;//小球的速度
int position_x,position_y;//挡板的中心坐标
int ridus;//挡板的半径大小
int left,right;//挡板的左右位置
int ball_number;//反弹小球的次数
int block_x1,block_y1;//砖块1的位置
int block_x2,block_y2;//砖块2的位置
int block_x3,block_y3;//砖块3的位置
int score;//消掉砖块的个数

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 startup()//数据的初始化
{
    high =  15;
    width = 20;
    ball_x = 0;
    ball_y = width/2;
    ball_vx = 1;
    ball_vy = 1;
    ridus = 5;
    position_x = high;
    position_y = width/2;
    left = position_y -ridus;
    right = position_y + ridus;
    ball_number=0;
    block_x1 = 0;
    block_y1 = 1;
    block_x2 = 0;
    block_y2 = 2;
    block_x3 = 0;
    block_y3 = 3;
    score=0;
}

void show()//显示画面
{
    gotoxy(0,0);//光标移动到原点位置,以下重画清屏
    int i,j;
    for(i=0;i<=high+1;i++)
    {
        for(j=0;j<=width;j++)
        {
            if( ( i == ball_x) && ( j == ball_y ) )
                printf("O");//输出小球
            else if( j == width)
                printf("+");//输出右边框
            else if( i == high+1)
                printf("-");//输出下边框
            else if ( (i==high)&&(j>=left)&&(j<=right))
                printf("*");
            else if( (i==block_x1) && (j==block_y1) )
                printf("A");//输出砖块1
            else if( (i==block_x2) && (j==block_y2) )
                printf("B");//输出砖块2
            else if( (i==block_x3) && (j==block_y3) )
                printf("C");//输出砖块3
            else
                printf(" ");//输出空格
        }
        printf("\n");
    }
    printf("反弹小球数:%d\n",ball_number);
    printf("消掉的砖块数: %d\n",score);
}

void updateWithoutInput()//与用户输入无关的更新
{
    if( ball_x == high -1)
    {
        if( (ball_y>=left) && (ball_y<=right) )//被挡板挡住了
        {
            ball_number++;
            printf("\a");//响铃
        }
        else
        {
            printf("游戏失败\n");
            system("pause");
            exit(0);
        }
    }
    
    if( (ball_x == block_x1) && (ball_y ==block_y1) )//小球击中砖块1
    {
        score++;//分数加1
        block_y1=rand()%width;//产生新的砖块
        while((block_y1==block_y2) || ( block_y1==block_y3))
        //当新产生的砖块和其他砖块重合时
        {
            block_y1=rand()%width;//产生新的砖块
        }
    }

    if( (ball_x == block_x2) && (ball_y ==block_y2) )//小球击中砖块2
    {
        score++;//分数加1
        block_y2=rand()%width;//产生新的砖块
        while((block_y2==block_y1) || ( block_y2==block_y3))
        //当新产生的砖块和其他砖块重合时
        {
            block_y2=rand()%width;//产生新的砖块
        }
    }

    if( (ball_x == block_x3) && (ball_y ==block_y3) )//小球击中砖块3
    {
        score++;//分数加1
        block_y3=rand()%width;//产生新的砖块
        while((block_y3==block_y1) || ( block_y3==block_y2))
            //当新产生的砖块和其他砖块重合时
        {
            block_y3=rand()%width;//产生新的砖块
        }
    }

    ball_x = ball_x + ball_vx;
    ball_y = ball_y + ball_vy;

    if( (ball_x == 0 ) || (ball_x == high-1 ))
        ball_vx = -ball_vx;
    if( (ball_y == 0 ) || (ball_y == width-1 ))
        ball_vy = -ball_vy;

    Sleep(66);
}

void updateWithInput()//与用户输入有关的更新
{
    char input;
    if(kbhit())
    {
        input = getch();
        if( input == 'a' || input == 'A' )
        {
            position_y--;//位置左移
            left = position_y-ridus;
            right = position_y+ridus;
        }
        if( input == 'd' || input == 'D' )
        {
            position_y++;
            left = position_y - ridus;
            right = position_y + ridus;
        }
    }
}
int main(void)
{
    startup();//数据的初始化
    while(1)
    {
        show();//显示画面
        updateWithoutInput();//与用户输入无关的更新
        updateWithInput();//与用户输入有关的更新
    }
    return 0;
}

效果图如下:

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

(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语言实现简单弹球游戏的具体代码,供大家参考,具体内容如下 #include <iostream> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> #include <math.h> #include <windows.h> //#include <sy

  • C语言实现简单弹跳小球

    本文实例为大家分享了C语言实现简单弹跳小球的具体代码,供大家参考,具体内容如下 本节利用 printf 函数 实现一个在屏幕上弹跳的小球,内容简单容易入门,这也是以后我们在设计更多游戏中可能用到的东西. 绘制静止的小球 我们将以如图坐标系进行游戏,即以窗口左上角为原点. 我们希望在坐标(x , y)处显示静止的小球: #include <stdio.h> int main(){     int i,j; // 这两个量是循环中要使用的,一定先声明     int x = 5;     int

  • 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语言实现简单反弹球消砖块游戏

    反弹球消砖块,是一款很简单的打砖块游戏,控制你的挡板挡住弹球,打掉上面的砖块,本篇博客中,主要使用printf与scanf函数实现消砖块游戏 整体思路 主函数 int main() {     startup();//初始化     while (1)     {         show();//显示画面           updateWitoutIput();//与用户输入无关的更新  //更新数据         updateWithInput(); //与用户输入有关的更新  //输入

  • C语言实现弹跳小球项目

    目录 一.项目描述和最终项目展示 二.输出一个小球 三.下落的小球 四.来回弹跳的小球 五.最终项目实现 本文实例为大家分享了C语言实现弹跳小球项的具体代码,供大家参考,具体内容如下 一.项目描述和最终项目展示 项目描述:   使小球来回的跳动,跳动的路径是一个 "V "字型 效果展示图: 接下来让我们一步步的来实现上图效果. 二.输出一个小球 一开始就达到最终的目的是有点难度的,所以我们一步步的来先输出一个静态的小球 代码如下: #include<stdio.h> //静

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

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

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

  • C语言实现弹跳小球动画

    目录 一.项目描述和最终成果展示 二.实现一个移动的球 三.弹跳一个小球 四.弹跳一个小球(改进版) 五.多个球碰撞 六.多个球碰撞(升级版) 本文实例为大家分享了C语言实现弹跳小球动画的具体代码,供大家参考,具体内容如下 一.项目描述和最终成果展示 项目描述:  一个球来回的跳动 效果图如下: 二.实现一个移动的球 代码如下: #include<graphics.h> #include<conio.h> int main(void) {     int x;     initgr

随机推荐