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 color;
};
 
class Board* createBoard(int x, int y, int w, int h, COLORREF color)
{
    Board* board = new Board;
    assert(board);
    board->x = x;
    board->y = y;
    board->w = w;
    board->h = h;
    board->color = color;
    return board;
}
 
class Ball
{
public:
    int x;
    int y;
    int r;
    int dx;
    int dy;
    unsigned long color;
};
 
class Ball* createBall(int x, int y, int r, int dx, int dy, unsigned long color)
{
    Ball* pBall = new Ball;
    assert(pBall);
    pBall->x = x;
    pBall->y = y;
    pBall->r = r;
    pBall->dx = dx;
    pBall->dy = dy;
    pBall->color = color;
    return pBall;
}
 
class Map
{
public:
    Map() {}
    
    //初始化地图
    void initMap(int map[][8], int row, int cols);
    //绘制地图
    void drawMap(int map[][8], int row, int cols);
    //绘制木板
    void drawBoard(Board* pBoard);
    //绘制球
    void drawBall(Ball* pBall);
};
 
 
 
class Move
{
public:
    
    //移动球
    void moveBall(Ball* pBall, Board* pBaord, int map[][8], int row, int cols);
    //球击中木板后
    int hitBoard(Ball* pBall, Board* pBoard);
    //球击中墙后
    int hitBricks(Ball* pBall, int map[][8], int row, int cols);
};
 
 
class System
{
public:
    //按键操作,控制木板左右移
    void keyDown(Board* pBoard);
 
    //计时器
    int Timer(int duration, int id);
 
    //游戏结束
    int gameOver(Ball* pBall, Board* pBoard);
 
    //游戏结束的文字显示
    void outtextxyInfo(int x, int y, const char* info);
 
    //游戏胜利
    int windGame(int map[][8], int row, int cols);
 
};
 
void Map::drawBoard(Board* pBoard)
{
    setfillcolor(pBoard->color);
    //木板的x , y 坐标 , 木板的坐标加上 宽度 和高度 
    solidrectangle(pBoard->x, pBoard->y, pBoard->x + pBoard->w, pBoard->y + pBoard->h);
}
 
void Map::initMap(int map[][8], int row, int cols)
{
    for (int i = 0; i < row; i++) 
 
    {
        for (int j = 0; j < cols; j++)
        {
            map[i][j] = rand() % 3 + 1; //[1,3]
        }
    }
}
 
void Map::drawMap(int map[][8], int row, int cols)
{
    setlinecolor(BLACK);
    for (int i = 0; i < row; i++)
    {
        for (int j = 0; j < cols; j++)
        {
            int x = 100 * j;
            int y = 25 * i;
            switch (map[i][j])
            {
            case 0:
                break;
            case 1:
                setfillcolor(RGB(255, 255, 85));
                fillrectangle(x, y, x + 100, y + 25);
                break;
            case 2:
                setfillcolor(RGB(85, 255, 85));
                fillrectangle(x, y, x + 100, y + 25);
                break;
            case 3:
                setfillcolor(RGB(85, 85, 255));
                fillrectangle(x, y, x + 100, y + 25);
                break;
            }
        }
    }
}
 
void System::keyDown(Board* pBoard) 
{
    //修改木板的坐标
    //_getch()
    //使用异步处理函数 , 按键控制
    if((GetAsyncKeyState('A') || GetAsyncKeyState(VK_LEFT)) && pBoard->x > 0) 
    {
        pBoard->x -= 1;
    }
    if((GetAsyncKeyState('D') || GetAsyncKeyState(VK_RIGHT))&& pBoard->x + pBoard->w < 800) 
    {
        pBoard->x += 1;
    }
}
 
void Map::drawBall(Ball* pBall) 
{
    //setfillcolor(pBall->color);
    setfillcolor(RGB(rand() % 255, rand() % 255 , rand() % 255)); //随机颜色
    solidcircle(pBall->x, pBall->y, pBall->r);
}
 
void Move::moveBall(Ball* pBall, Board* pBoard, int map[][8], int row, int cols) 
{
    //碰撞反弹, 
    /*if(pBall->x - pBall->r <= 0 || pBall->x + pBall->r >= 800) 
    {
        pBall->dx = -pBall->dx;
    }
    if(pBall->y - pBall->r <= 0 || pBall->y + pBall->r >=600 ) 
    {
        pBall->dy = -pBall->dy;
    }*/
    
    if (pBall->x - pBall->r <= 0 || pBall->x + pBall->r >= 800)
    {
        pBall->dx = -pBall->dx;
    }
 
#if 0
    if (pBall->y - pBall->r <= 0 || hitBoard(pBall, pBoard))
    {
        cout << "发生碰撞" << endl;
        cout << "没有发生反射" << endl;
        pBall->dy = -pBall->dy;
    }
#else
    if(pBall->y - pBall->r <= 0 
    || pBall->y + pBall->r >= 600 
    || hitBoard(pBall,pBoard)
    || hitBricks(pBall,map,row,cols))
    {
        cout << "发生碰撞" << endl;
        pBall->dy = -pBall->dy;
    }
#endif
    pBall->x += pBall->dx;
    pBall->y += pBall->dy;
     
}
 
int System::Timer (int duration,int id) 
{
    static int startTime[10];    //静态变量自动初始化为零
    //用静态变量是因为要记录上一次的运行结果
 
    int endTime = clock();
    if(endTime - startTime[id] >= duration) 
    {
        //下一次开始的时间编程变成一次结束的时间
        startTime[id] = endTime;
        return 1;
    }
    return 0;
}
 
int Move::hitBoard(Ball* pBall, Board* pBoard)
{
 
#if 0
    if(pBall->y + pBall->r == pBoard->y) 
    {
        if(pBall->x > pBoard->x && pBall->x < pBoard->x + pBoard->w) 
        {
            cout << "发生碰撞" << endl;
            return 1;
        }
        else 
        {
            cout << "碰撞出错" << endl;
        }
    }
#else
    if (pBall->y + pBall->r == pBoard->y)
    {
        if (pBall->x > pBoard->x && pBall->x <= pBoard->x + pBoard->w)
        {
            cout << "发生碰撞" << endl;
            return 1;
        }
        else
        {
            cout << "碰撞出错" << endl;
        }
    }
#endif
 
    return 0;
}
 
int Move::hitBricks(Ball* pBall,int map[][8],int row,int cols)
{
    int j = pBall->x / 100;
    int i = (pBall->y - pBall->r) / 25;
    if(i < row && j < cols && map[i][j] != 0) 
    {
        map[i][j] = 0;
        return 1;
    }
    return 0;
}
 
int System::gameOver(Ball* pBall,Board* pBoard)
{
    if(pBall->y + pBall->r > pBoard->y) 
    {
        return 1;
    }
    return 0;
}
 
int System::windGame(int map[][8], int row, int cols)
{
    for(int i = 0; i < row; ++i) 
    {
        for(int j = 0; j < cols; ++j) 
        {
            if(map[i][j] !=0) 
            {
                return 0;
            }
        }
    }
    return 1;
}
 
void System::outtextxyInfo(int x, int y, const char* info)
{
    settextstyle(45, 0, "楷体");
    settextcolor(RED);
    outtextxy(x, y, info);
}
 
int main() 
{
    Map init;
    Move move;
    System psystem;
    System judge;
    srand((unsigned int)time(NULL));
    initgraph(800, 600);
    int map[5][8];
    Board* pBoard = createBoard(300, 600 - 25, 200, 25, BLUE);
    Ball* pBall = createBall(400, 300, 10, 15, -5, RED);
    init.initMap(map, 5, 8);
    BeginBatchDraw();
    while (true)
    { 
        cleardevice();    
        init.drawMap(map, 5, 8);
        init.drawBoard(pBoard);
        init.drawBall(pBall);
        if (judge.Timer(20, 0))
            move.moveBall(pBall, pBoard, map, 5, 8);
        judge.keyDown(pBoard);
        //Sleep(10);        
        if (judge.gameOver(pBall, pBoard)) 
        {
            psystem.outtextxyInfo(300, 350, "游戏失败");
            FlushBatchDraw();
            break;
        }
        if (judge.windGame(map, 5, 8)) 
        {
            psystem.outtextxyInfo(300, 350, "游戏胜利");
            FlushBatchDraw();
            break;
        }
        FlushBatchDraw();   
    }
    Sleep(5000);
    EndBatchDraw();         
    
    closegraph();
    return 0;
}

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

(0)

相关推荐

  • 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++基于EasyX图形库实现2048小游戏

    C++ 和 EasyX 图形库,实现2048小游戏,供大家参考,具体内容如下 MainGame2048.cpp /** Name: Game2048CoreClass*/ #include<iostream> #include<graphics.h> #include<stdio.h> #include<windows.h> #include<conio.h> #include<stdio.h> #include"Game2

  • C++基于easyx图形库实现推箱子游戏

    本文实例为大家分享了C++实现推箱子游戏的具体代码,供大家参考,具体内容如下 头文件: #include<stdio.h> #include<stdlib.h> //#include<Windows.h> #include<conio.h> #include<graphics.h> #include<stdbool.h> //播放音乐需要的头文件 #include <mmsystem.h> #pragma comment(

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

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

  • C++实现基于EASYX库扫描线算法

    本文实例为大家分享了C++实现基于EASYX库扫描线算法的具体代码,供大家参考,具体内容如下 扫描线算法的基本原理 * 作者在扫描线算法的基础上自己设计的更易于理解的地物填充绘制算法 流程图 代码 #include<graphics.h> //#include<conio.h> #include<iostream> using namespace std; //-----------------------------草图形-----------------------

  • 基于easyx的C++实现贪吃蛇

    本文实例为大家分享了基于easyx的C++实现贪吃蛇的具体代码,供大家参考,具体内容如下 本代码来自于easyx讨论群的分享 先上效果图,其实也只是画了简单的圈圈代表蛇和食物,背景就是黑色的. #include "stdafx.h" #include <iostream> #include <stdlib.h> #include <time.h> #include <conio.h> #include <graphics.h>

  • C++用easyx图形库实现障碍跑酷小游戏

    用easyx图形库做一个简单的c++小游戏-障碍跑酷 开发环境:visual c++6.0 库:easyx图形库 下载地址 EasyX(c++图形库) v20200806 官方安装免费版 当时我原本是想模仿做一个Flappy Bird的小游戏,在想如何写的时候突然有了新的想法,就有了这个障碍跑酷的小游戏.(这是我之前写的代码,没有很注重规范,看上去有点乱,但我很尽力的都标上了注释.) 游戏介绍: 1.操控小球,小球一开始只具有左a,右d与跳跃w的功能 2.可根据按1,2,3,4调节小球的跳跃高度

  • c++使用Easyx图形库实现飞机大战

    公共的头文件        common.h #pragma once #include <graphics.h> #include <iostream> #include <string> #include <map> #include <list> #include <thread> #include <vector> #include <ctime> #include <mmsystem.h>

  • C语言基于EasyX库实现有颜色弹跳小球

    本文实例为大家分享了基于EasyX库实现有颜色弹跳小球的具体代码,供大家参考,具体内容如下 1.目标要求 1.实现一个有颜色小球在窗口中弹跳2.遇到边界弹跳 2.C语言代码 #include<graphics.h>  #include<stdio.h> #include<stdlib.h> #include<windows.h> #include<conio.h> #define High 480 #define Width 640//画布尺寸

  • C语言基于EasyX库实现有图形界面钟表

    本文实例为大家分享了C语言基于EasyX库实现有图形界面钟表的具体代码,供大家参考,具体内容如下 1.目标要求: 实现一个显示图像的时钟 2.C语言代码: #include<graphics.h> //需要提前下载EasyX库哦 #include<stdio.h> #include<stdlib.h> #include<windows.h> #include<conio.h> #include<math.h> #define High

随机推荐