C++使用easyx实现打砖块游戏

本文实例为大家分享了C++使用easyx实现打砖块游戏的具体代码,供大家参考,具体内容如下

代码:

#include<graphics.h>
#include<conio.h>
#include<cstdio>
#include<time.h>
#include<cmath>
#include<stdio.h>
#include <string>

#define HEIGHT 700
#define WIDTH 400
int ball_x, ball_y;
int ball_vx, ball_vy;
int radius;
int left, right, top, bottom;
int baffle_x, baffle_y;
int baffle_size;
int baffle_move;
int brick_x, brick_y;
int brick_r;
int score;
int sleep_time;

bool isExit;
bool isLose;

void initBall() {
    left = 0;
    top = 0;
    right = WIDTH;
    bottom = HEIGHT;
    ball_x = (right - left) / 2;
    ball_y = (bottom - top) / 2;
    ball_vx = 1;
    ball_vy = 1;
    radius = 15;
    brick_x = 30;
    brick_y = 30;
    brick_r = 20;
    score = 0;
    sleep_time = 5;
    baffle_move = 8;
    isExit = false;
    isLose = false;
}
void initBaffle() {
    baffle_x = (right - left) / 2;
    baffle_y = bottom - HEIGHT/8;
    baffle_size = WIDTH/2;
}
void drawBall() {

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

}

void drawBrick() {
    if (isExit == true) {
        
        setfillcolor(RGB(255, 255, 0));
        fillcircle(brick_x, brick_y, brick_r);
    }

    if (isExit == false) {
        isExit = 1;
        brick_x = rand() % WIDTH;
        brick_y = rand() % HEIGHT / 2;

    }
    
    printf("score :%d", score);

}
void drawBaffle() {
    setfillcolor(RGB(255,0, 0));
    line(baffle_x, baffle_y, baffle_x + baffle_size, baffle_y);

}
void updataWithInput() {
    //交互
    char input;
    //根据键盘输入判断平台的移动
    if (_kbhit()) {
        input = _getch();
        switch (input)
        {
        case 'a':
            if (baffle_x > 0)
                baffle_x -= baffle_move;
            break;
        /*case 'w':
            if (baffle_y > 0)
                baffle_y -= baffle_move;
            break;
        case 's':
            if (baffle_y < bottom - 1)
                baffle_y += baffle_move;
            break;*/
        case 'd':
            if (baffle_x < right - baffle_size)
                baffle_x += baffle_move;
            break;
        default:
            break;
        }
    }
}
void updateBall() {
    static int count = 0;
    count++;
    if (count == 5) {
        count = 0;
        ball_x += ball_vx;
        ball_y += ball_vy;
    }
    
    if (ball_x <= left + radius || ball_x >= right - radius) {
        ball_vx = -ball_vx;
    }
    if (ball_y <= top + radius) {
        ball_vy = -ball_vy;
    }
    if (ball_y >= bottom - radius) {
        isLose = true;
    }
    if (ball_y == baffle_y - radius && ball_x >= baffle_x && ball_x <= baffle_x + baffle_size) {
        ball_vy = -ball_vy;
    }
    
    if (pow((ball_x - brick_x), 2) + pow((ball_y - brick_y), 2) <= pow((brick_r + radius), 2)) {
        ball_vx = -ball_vx;
        ball_vy = -ball_vy;
        isExit = 0;
        score++;
    }
}
//void print_score() {
//    
//    char a[20] = "score";
//    int t = 1;
//    int tmp = score;
//    while (score > 0) {
//        t*=10;
//        tmp /= 10;
//    }
//    for (int i = 5; i < 15 && t!=0; i++, t /= 10) {
//        a[i] = score%t;
//        t %= 10;
//    }
//    sprintf_s(a, "%d",score);
//    TCHAR s[] = _T("score:");
//    
//    settextcolor(GREEN);
//    const char* ca = a;
//    outtextxy(WIDTH/2,HEIGHT/2,ca);
//    outtextxy(WIDTH / 2, HEIGHT / 2,score);
//}
int main() {
    initgraph(WIDTH, HEIGHT);
    BeginBatchDraw();

    initBall();
    initBaffle();
    while (1)
    {
        if (isLose == true) {
            cleardevice();
            TCHAR s[] = _T("LOSE");
            outtextxy(WIDTH/2,HEIGHT/2, s);
        }
        FlushBatchDraw();
        cleardevice();
        drawBall();
        drawBrick();
        drawBaffle();
        updataWithInput();
        updateBall();
        //print_score();
        //Sleep(sleep_time);
    }
    EndBatchDraw();
    closegraph();
    return 0;
}

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

(0)

相关推荐

  • C++实现简易的弹球小游戏

    本文实例为大家分享了C++实现弹球小游戏的具体代码,供大家参考,具体内容如下 操作说明:键盘A和D键控制左右移动,让球不要落下. #include <graphics.h> #include <conio.h> #include <time.h> int i; int xx=0; int yy = 0; class Ball { public: int x, y; clock_t b; void draw() { setfillcolor(RGB(200, 399, 1

  • C++使用easyx实现打砖块游戏

    本文实例为大家分享了C++使用easyx实现打砖块游戏的具体代码,供大家参考,具体内容如下 代码: #include<graphics.h> #include<conio.h> #include<cstdio> #include<time.h> #include<cmath> #include<stdio.h> #include <string> #define HEIGHT 700 #define WIDTH 400 i

  • C++基于easyx图形库实现打砖块游戏

    本文实例为大家分享了C++基于easyx实现打砖块的具体代码,供大家参考,具体内容如下 代码: #include <graphics.h> #include <ctime> #include <iostream> #include <cassert> using namespace std;   class Board { public:     int x;     int y;     int w;     int h;     COLORREF col

  • C语言实现图形化打砖块游戏

    本文实例为大家分享了C语言实现图形化打砖块游戏的具体代码,供大家参考,具体内容如下 #include<stdio.h>  #include<conio.h> #include<easyx.h> #include<Windows.h> #define WINDOW_Width  768 #define WINDOW_Height 1073  #define BrickWidth 81 #define BrickHeight 27 #define ROWS 5

  • C语言借助EasyX实现的生命游戏源码

    本文讲述C语言借助EasyX实现的生命游戏,具体操作流程如下: 1.生命游戏内容: 该游戏包括一个二维矩形世界,这个世界中的每个方格居住着一个活着的或死了的细胞.一个细胞在下一个时刻生死取决于相邻八个方格中活着的细胞的数量.如果一个细胞周围的活细胞数量多于 3 个,这个细胞会因为资源匮乏而在下一个时刻死去:如果一个位置周围有 3 个活细胞,则该位置在下一个时刻将诞生一个新的细胞:如果一个位置周围有 2 个活细胞,则该位置的细胞生死状态保持不变:如果一个细胞周围的活细胞少于 2 个,那么这个细胞会

  • C语言+EasyX实现数字雨效果

    本文实例为大家分享了C语言 EasyX实现数字雨的具体代码,供大家参考,具体内容如下 ///////////////////////////////////////////////////////////////////// // 程序名称:数字雨 // 编译环境:VC6.0 EasyX // 作 者:flx413 // 时 间:2016-5-2 ///////////////////////////////////////////////////////////////////// #incl

  • 用JS实现一个简单的打砖块游戏

    话不多说,先看看效果: HTML架构部分 <!-- HTML结构 --> <div class="content"> <div class="game"></div> <div class="container"> <h2>打砖块小游戏</h2> <hr /> <center> <button id="start"

  • 利用c++和easyx图形库做一个低配版扫雷游戏

    游戏界面 由于这个游戏是我抱着玩一玩的心态做出来的,所以没有过多的去设计界面,也没有去找游戏的资源(图片.游戏音效等).仅使用了不同颜色的方块来表示游戏中方块的状态和种类.(绿色为初始状态(未翻转的状态),黄色为翻转后的背景颜色,蓝色表示已插旗的方块,红色代表地雷) 图1 游戏主菜单界面 图二 模式一的游戏界面(20*20 40个雷) 图三 模式二的游戏界面(10*10 20个雷) 图四 游戏成功界面 图五 游戏失败界面 2.全部代码 #include<graphics.h> #include

  • JS实现打砖块游戏

    本文实例为大家分享了JS实现打砖块游戏的具体代码,供大家参考,具体内容如下 面向对象思想 <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> #show{ width: 200px; height: 600px; position: absolute;

  • JavaScript实现打砖块游戏

    本文实例为大家分享了JavaScript实现打砖块游戏的具体代码,供大家参考,具体内容如下 html+css部分 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>打砖块</title> <link rel="stylesheet" type="text/css" href="css/bre

  • python实现打砖块游戏

    本文实例为大家分享了Python实现打砖块游戏的具体代码,供大家参考,具体内容如下 #导入模块 import pygame from pygame.locals import * import sys,random,time,math class GameWindow(object): '''创建游戏窗口类''' def __init__(self,*args,**kw): self.window_length = 600 self.window_wide = 500 #绘制游戏窗口,设置窗口尺

随机推荐