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

 更新时间:2022年05月12日 16:05:36   作者:辉小歌  
这篇文章主要为大家详细介绍了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的坐标
int radius;

void startup()//数据的初始化
{
    ball1_x=Width/3;
    ball1_y=High/3;
    ball2_x=Width*2/3;
    ball2_y=High*2/3;
    radius=20;
    initgraph(Width,High);
    BeginBatchDraw();
}

void clean()//消除画面
{
    setcolor(BLACK);
    setfillcolor(BLACK);
    fillcircle(ball1_x,ball1_y,radius);
    fillcircle(ball2_x,ball2_y,radius);
}

void show()//显示画面
{
    setcolor(GREEN);
    setfillcolor(GREEN);
    fillcircle(ball1_x,ball1_y,radius);//绘制绿圆
    setcolor(RED);
    setfillcolor(RED);
    fillcircle(ball2_x,ball2_y,radius);//绘制红圆
    FlushBatchDraw();
    Sleep(3);
}

void updateWithoutInput()//与用户输入无关的更新
{

}

void updateWithInput()//与用户输入有关的更新
{
    char input;
    if(kbhit())//判断是否有输入
    {
        input=getch();
        int step=10;
        if(input=='a')
            ball1_x-=step;
        if(input=='d')
            ball1_x+=step;
        if(input=='w')
            ball1_y-=step;
        if(input=='s')
            ball1_y+=step;

        if(input=='4')
            ball2_x-=step;
        if(input=='6')
            ball2_x+=step;
        if(input=='8')
            ball2_y-=step;
        if(input=='5')
            ball2_y+=step;
    }
}

void gameover()
{
    EndBatchDraw();
    closegraph();
}

int main(void)
{
    startup();//数据的初始化
    while(1)
    {
        clean();//把之前绘制的内容取消
        updateWithoutInput();//与用户输入无关的更新
        updateWithInput();//与用户输入有关的更新
        show();//显示新画面
    }
    gameover();//游戏结束,进行后续处理
    return 0;
}

你会发现这有一个弊端:  双方同一时刻只能有一个运行,不能同时运行。

三、异步操作的实现

代码如下:

#include<conio.h>
#include<graphics.h>
#define High 480//游戏画面尺寸
#define Width 640

//全局变量
int ball1_x,ball1_y;//小球1的坐标
int ball2_x,ball2_y;//小球2的坐标
int radius;

void startup()//数据的初始化
{
    ball1_x=Width/3;
    ball1_y=High/3;
    ball2_x=Width*2/3;
    ball2_y=High*2/3;
    radius=20;
    initgraph(Width,High);
    BeginBatchDraw();
}

void clean()//消除画面
{
    setcolor(BLACK);
    setfillcolor(BLACK);
    fillcircle(ball1_x,ball1_y,radius);
    fillcircle(ball2_x,ball2_y,radius);
}

void show()//显示画面
{
    setcolor(GREEN);
    setfillcolor(GREEN);
    fillcircle(ball1_x,ball1_y,radius);//绘制绿圆
    setcolor(RED);
    setfillcolor(RED);
    fillcircle(ball2_x,ball2_y,radius);//绘制红圆
    FlushBatchDraw();
    Sleep(3);
}

void updateWithoutInput()//与用户输入无关的更新
{

}

void updateWithInput()//与用户输入有关的更新
{
    int step=1;
    if((GetAsyncKeyState(0x41)&0x8000))//a
        ball1_x-=step;
    if((GetAsyncKeyState(0x44)&0x8000))//d
        ball1_x+=step;
    if((GetAsyncKeyState(0x57)&0x8000))//w
        ball1_y-=step;
    if((GetAsyncKeyState(0x53)&0x8000))//s
        ball1_y+=step;
    if((GetAsyncKeyState(VK_LEFT)&0x8000))//左方向键
        ball2_x-=step;
    if((GetAsyncKeyState(VK_RIGHT)&0x8000))//右方向键
        ball2_x+=step;
    if((GetAsyncKeyState(VK_UP)&0x8000))//上方向键
        ball2_y-=step;
    if((GetAsyncKeyState(VK_DOWN)&0x8000))//下方向键
        ball2_y+=step;
}

void gameover()
{
    EndBatchDraw();
    closegraph();
}

int main(void)
{
    startup();//数据的初始化
    while(1)
    {
        clean();//把之前绘制的内容取消
        updateWithoutInput();//与用户输入无关的更新
        updateWithInput();//与用户输入有关的更新
        show();//显示新画面
    }
    gameover();//游戏结束,进行后续处理
    return 0;
}

效果图如下:

四、双人反弹球

代码如下:

#include<conio.h>
#include<graphics.h>
#include<Windows.h>
#define High 480//游戏画面尺寸
#define Width 640

//全局变量
int ball_x,ball_y;//小球的坐标
int ball_vx,ball_vy;//小球2的速度
int bar1_left,bar1_right,bar1_top,bar1_bottom;//挡板1的上下左右位置坐标
int bar2_left,bar2_right,bar2_top,bar2_bottom;//挡板2的上下左右位置坐标
int bar_height,bar_width;//挡板的高度和宽度
int radius;

void startup()//数据的初始化
{
    ball_x=Width/2;
    ball_y=High/2;
    ball_vx=1;
    ball_vy=1;
    radius=20;

    bar_width=Width/30;
    bar_height=High/4;

    bar1_left=Width*1/20;//挡板1的数据初始化
    bar1_top=High/4;
    bar1_right=bar1_left+bar_width;
    bar1_bottom=bar1_top+bar_height;

    bar2_left=Width*18.5/20;//挡板2的数据初始化
    bar2_top=High/4;
    bar2_right=bar2_left+bar_width;
    bar2_bottom=bar2_top+bar_height;
    initgraph(Width,High);
    BeginBatchDraw();
}

void clean()//消除画面
{
    setcolor(BLACK);
    setfillcolor(BLACK);
    fillcircle(ball_x,ball_y,radius);
    fillcircle(ball_x,ball_y,radius);
    bar(bar1_left,bar1_top,bar1_right,bar1_bottom);//绘制挡板
    bar(bar2_left,bar2_top,bar2_right,bar2_bottom);
}

void show()//显示画面
{
    setcolor(GREEN);
    setfillcolor(GREEN);
    fillcircle(ball_x,ball_y,radius);//绘制绿圆
    setcolor(RED);
    setfillcolor(RED);
    bar(bar1_left,bar1_top,bar1_right,bar1_bottom);
    bar(bar2_left,bar2_top,bar2_right,bar2_bottom);
    FlushBatchDraw();
    Sleep(3);
}

void updateWithoutInput()//与用户输入无关的更新
{
    //挡板和小球碰撞,小球反弹
    if(ball_x+radius>=bar2_left&&ball_y+radius>=bar2_top&&ball_y+radius<bar2_bottom)
        ball_vx=-ball_vx;
    else if(ball_x-radius<=bar1_right&&ball_y+radius>=bar1_top&&ball_y+radius<bar1_bottom)
        ball_vx=-ball_vx;

    //更新小球的坐标
    ball_x=ball_x+ball_vx;
    ball_y=ball_y+ball_vy;

    if((ball_x<=radius)||(ball_x>+Width-radius))
        ball_vx=-ball_vx;
    if((ball_y<=radius)||(ball_y>+High-radius))
        ball_vy=-ball_vy;

}

void updateWithInput()//与用户输入有关的更新
{
    int step=1;
    if((GetAsyncKeyState(0x57)&0x8000))//w
        bar1_top-=step;
    if((GetAsyncKeyState(0x53)&0x8000))//s
        bar1_top+=step;
    if((GetAsyncKeyState(VK_UP)&0x8000))//上方向键
        bar2_top-=step;
    if((GetAsyncKeyState(VK_DOWN)&0x8000))//下方向键
        bar2_top+=step;

    if(bar1_top<0)//判断挡板是否超过屏幕
        bar1_top+=step;
    if(bar2_top<0)
        bar2_top+=step;
    if(bar1_top+bar_height>High)
        bar1_top-=step;
    if(bar2_top+bar_height>High)
        bar2_top-=step;

    bar1_bottom=bar1_top+bar_height;
    bar2_bottom=bar2_top+bar_height;
}

void gameover()
{
    EndBatchDraw();
    closegraph();
}

int main(void)
{
    startup();//数据的初始化
    while(1)
    {
        clean();//把之前绘制的内容取消
        updateWithoutInput();//与用户输入无关的更新
        updateWithInput();//与用户输入有关的更新
        show();//显示新画面
    }
    gameover();//游戏结束,进行后续处理
    return 0;
}

效果图如下:

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

相关文章

  • C++中的类扩展之继承和组合详解

    C++中的类扩展之继承和组合详解

    在C++中,类扩展可以通过继承、组合和装饰模式实现。继承可以实现对已有类的修改和扩展,组合可以增加新的功能,装饰模式则能够在不改变原类的情况下为其添加新的功能。这些技术在C++程序设计中应用广泛,提高了程序的可扩展性和可维护性
    2023-04-04
  • C++编程中的函数指针初步解析

    C++编程中的函数指针初步解析

    这篇文章主要介绍了C++编程中的函数指针初步解析,函数指针在C语言和C++学习中都是非常重要的知识,需要的朋友可以参考下
    2016-04-04
  • C++中约数定理的实例详解

    C++中约数定理的实例详解

    这篇文章主要介绍了C++中约数定理的实例详解的相关资料,需要的朋友可以参考下
    2017-07-07
  • 详解c++中的异常

    详解c++中的异常

    程序在运行过程中,有对也就有错,正确那么就不用说了,但是如果错误,那么我们如何快速的定位到错误的位置,以及知道发生了什么错误。当一个函数发现自己无法处理的异常,就会抛出一个异常,让函数调用者直接或者间接的处理这个错误。本文将详解介绍c++中的异常
    2021-06-06
  • C语言函数栈帧解析

    C语言函数栈帧解析

    下面小编就为大家带来一篇浅谈C语言函数调用参数压栈的相关问题。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
    2021-09-09
  • C++中Pimpl的惯用法详解

    C++中Pimpl的惯用法详解

    Pimpl(Pointer to Implementation)是一种常见的 C++ 设计模式,用于隐藏类的实现细节,本文将通过一个较为复杂的例子,展示如何使用智能指针来实现 Pimpl 惯用法,需要的可以参考下
    2023-09-09
  • 手把手教你实现漂亮的Qt 登录界面

    手把手教你实现漂亮的Qt 登录界面

    最近在使用Qt5,Qt Creator做一个管理系统类的项目,需要用到登录界面,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-11-11
  • 详解C语言中free()函数与getpagesize()函数的使用

    详解C语言中free()函数与getpagesize()函数的使用

    这篇文章主要介绍了详解C语言中free()函数与getpagesize()函数的使用,是C语言入门学习中的基础知识,需要的朋友可以参考下
    2015-08-08
  • C语言实现扫雷小游戏

    C语言实现扫雷小游戏

    这篇文章主要为大家详细介绍了C语言实现扫雷小游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-11-11
  • C语言实现电子邮件地址验证程序

    C语言实现电子邮件地址验证程序

    这篇文章主要介绍了C语言实现电子邮件地址验证程序,利用的是POSIX正则表达式,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2015-11-11

最新评论