c++我的世界

废话少说,上源码

#include <iostream>
#include <conio.h>
#include <string>
#include <map>
#include <cmath>
#include <windows.h>
#include <time.h> 
#define KEY_DOWN(VK_NONAME) ((GetAsyncKeyState(VK_NONAME) & 0x8000) ? 1:0)
using namespace std;
int fallspeed;
int jumpspeed = -3;
int gravity = 1;
int y = 400, x = 500;
int restartposy, restartposx, face, health = 1000, lasthealth = 1000, breath = 100, hungry = 1000, dienum;
bool attack, defense, hurt, mode;
struct TNT
{
    int y;
    int x;
    int time;
    bool issave;
};
struct BLOCK
{
    int color;
    string ch;
    string type;
};
struct MOB
{
    int fallspeed;
    int health;
    bool hurt;
    int y;
    int x;
    int attack;
    string shap;
    bool isenemy;
    int color;
    string name;
};
struct ARROW
{
    string shap;
    double y;
    double x;
    double fallspeed;
    double plusx;
};
TNT tnt[20];
string die;
ARROW arrow[100];
MOB mobs[50] = {
    {0,1000,0,0,0,100,"危",true,7,"危"},
    {0,10,0,0,0,10,"  ",true,7,"  "},
    {0,1000,0,0,0,100,"MM",false,7,"MM"},
    {0,100000,0,90,70,-100,"AC",true,7,"Accept"},
    {0,10000,0,90,70,500,"BO",true,7,"BOSS"},
    {0,100000,0,90,70,-1000,"AK",true,7,"AK"},
};
MOB mob[100] = {
    {0,1000,0,92,4,100,"WA",true,7,"Wrong Anwser"},
    {0,1000,0,92,4,100,"TL",true,7,"Time Limit Error"},
    {0,2000,0,92,4,300,"CE",true,7,"Compile Error"},
    {0,1000,0,45,9,100,"WA",true,7,"Wrong Anwser"},
    {0,100000,0,90,70,-100,"AC",true,7,"Accept"},
    {0,100000,0,90,70,-1000,"AK",true,7,"AK"},
    {0,10000,0,90,70,500,"UK",true,7,"Unknown Error"},
    {0,1000,0,92,3,0,"MM",false,7,"MM"},
    {0,1000,0,92,3,0,"MM",false,7,"MM"},
    {0,1000,0,90,15,0,"MM",false,7,"MM"},
    {0,1000,0,90,80,0,"MM",false,7,"MM"},
};
BLOCK block[32] = {
    {0,"  ","air"},//空气
    {6,"██","block"},//土块
    {8,"██","block"},//石头
    {2,"██","block"},//草方块
    {15,"██","block"},//雪块 
    {4,"██","block"},//岩浆块
    {14,"▓▓","fallblock"},//沙块 
    {8,"II","fallblock"},//铁砧
    {9,"██","water"},//水
    {9,"▇▇","water"},//水
    {9,"▆▆","water"},//水
    {9,"▅▅","water"},//水
    {9,"▄▄","water"},//水
    {9,"▃▃","water"},//水
    {9,"▂▂","water"},//水
    {9,"▁▁","water"},//水
    {12,"██","lava"},//岩浆
    {12,"▇▇","lava"},//岩浆
    {12,"▆▆","lava"},//岩浆
    {12,"▅▅","lava"},//岩浆
    {12,"▄▄","lava"},//岩浆
    {12,"▃▃","lava"},//岩浆
    {12,"▂▂","lava"},//岩浆
    {12,"▁▁","lava"},//岩浆  
    {12,"危","background"},//危
    {6,"██","background"},//木头
    {10,"▓▓","background"},//树叶 
    {15,"▓▓","background"},//带雪树叶
    {15,"▅▅","bomb"},//TNT爆炸 
    {12,"Ⅲ","TNT"},//TNT
    {7,"Ⅲ","TNT"},//TNT2
    {6,"∷","ladder"},//梯子
};
int board[1005][1005];
int setboard[1005][1005];
int bag[100], EOF;
int clear_buffer()
{
    while(kbhit())
    {
        if(getch() != EOF); 
        for(int i = 1; i <= 256; i++)
        {
            if(GetAsyncKeyState(i));
        }
    }
    return 0;
}
void color(int a)
{
    SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),a);
/*    1    深蓝色
    2    深绿色
    3    深青色 
    4    深红色
    5    深粉色
    i    黄色
    7    深白色
    8    灰色
    9    浅蓝色
    10    浅绿色 
    11    浅青色 
    12    浅红色 
    13    浅粉色 
    14    浅黄色 
    15    浅白色 
    背景
    1~15        黑色 
    16~31        深蓝色 
    32~47        深绿色
    48~63        深青色
    64~79        深红色
    'S'~95        深粉色
    96~111        深黄色
    112~127     深白色
    128~143     灰色
    144~159     浅蓝色
    160~1'A'     浅绿色
    176~191     浅青色
    192~207     浅红色
    208~223     浅粉色
    224~239     浅黄色
    240~255     浅白色
*/
}
int init()//听说有人要我增加地图生成的注释,所以我就写了。 
{
    for(int j = 0; j < 100; j++)
    {
        bag[j] = 0;//这个...初始化背包 
    }
    for(int i = 0; i < 1000; i++)
    {
        for(int j = 0; j < 1000; j++)
        {
            board[i][j] = 0;//初始化地图 (我们的y是倒着来的) 
        }
    } 
    double lasty = rand() % 101 + 400;//lasty代表上一个我们选择的点的高度。 
    for(int i = 5; i < 1000; i += 5)//i每次加5,每隔5个点连一条线 
    {
        double y = rand() % 21 - 10 + lasty;//y代表这个点我们选择的高度,为了不出现太陡峭的山,我们只允许这个高度在刚才的点的高低10格内。 
        y = min(450.0, y);//这是最小高度,防止整个地图都在水里。 
        double high = lasty;//这个high是用来统计当前高度的,用double可以更加精确。
        int dirt = rand() % 5 + 2;//dirt代表这一列上泥土高度。 
        for(int j = i - 5; j < i; j++)
        {
            high += (y - lasty) / 5;//high每次增加差距的1/5。 
            for(int k = 999; k >= (int)high; k--)
            {
                if(k == (int)high)//如果是最高点 
                {
                    setboard[k][j] = 3;//就用草地 
                    if(high <= 350)//如果high比较高 
                    {
                        setboard[k][j] = 4;//就用雪地 
                    }
                }
                else if(k - dirt <= (int)high)//泥土 
                {
                    setboard[k][j] = 1;
                }
                else 
                {
                    setboard[k][j] = 2;//石头 
                }
            }
        }
        lasty = y;//赋值 
    }
    //再来一边,填满最后几格 
    int dirt = rand() % 5 + 2;
    double high = lasty;
    for(int j = 995; j < 999; j++)
    {
        for(int k = 999; k >= (int)high; k--)
        {
            if(k == (int)high)
            {
                setboard[k][j] = 3;
                if(high <= 350)
                {
                    setboard[k][j] = 4;
                }
            }
            else if(k - dirt <= (int)high)
            {
                setboard[k][j] = 1;
            }
            else 
            {
                setboard[k][j] = 2;
            }
        }
    }
    //填满水,这里默认把海平面高度设为410。 
    for(int i = 0; i < 1000; i++)
    {
        for(int j = 600; j >= 410; j--)
        {
            if(setboard[j][i] == 0)
            {
                setboard[j][i] = 8;
            }
        }
    }
    //沙子 
    for(int i = 0; i < 1000; i++)
    {
        bool a = 0;
        for(int j = 999; j >= 0; j--)
        {
            if(a && setboard[j][i] != 0  && setboard[j][i] != 8)
            {
                setboard[j][i] = 6;
                continue;
            }
            if(setboard[j][i] == 8)
            {
                continue;
            }
            if(setboard[j][i + 3] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
            if(setboard[j][i + 2] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
            if(setboard[j][i + 1] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
            if(setboard[j][i - 1] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
            if(setboard[j][i - 2] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
            if(setboard[j][i - 3] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
            if(setboard[j - 2][i] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
            if(setboard[j - 1][i] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
            if(setboard[j - 3][i] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
            if(setboard[j - 4][i] == 8)
            {
                a = true;
                setboard[j][i] = 6;
            }
        }
    }
    //树 
    for(int i = 0; i < 1000; i++)
    {
        for(int j = 0; j < 1000; j++)
        {
            if(setboard[j][i] == 0 && block[setboard[j + 1][i]].type &

  • 15
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你提到的关于"C"和"OpenGL"的文章是关于开发一个新版本的Minecraft游戏。这个版本与之前的版本相比有一些较大的改进, 包括无限大小且更为复杂的地形, 更好的渲染和处理速度等方面。程序的开发基于"C"和OpenGL这两个技术,开发周期大约为3天。文章的前半部分介绍了实现效果,后半部分则对部分开发细节进行了说明。 在开发过程中,使用了gluLookAt函数来定义一个视图矩阵,它可以用来设置相机在世界坐标中的位置、相机镜头对准的物体的位置以及相机向上方向的方向。通过调整相应的参数,可以实现桌子的平移操作。 为了实现无限大小地形的实时渲染,文章采用了分块渲染和存储的策略。每个块被视为一个独立的渲染单位,每个块包含16*16*256个方块(cube)。为了提高渲染效率,可以采用OpenGL的Instancing技术来实现快速渲染。在存储方面,每个块被存储为一个单独的文件,并按照方块的坐标顺序存储每个方块的类型。 总的来说,这篇文章探讨了使用C和OpenGL开发一个新版本Minecraft的过程,介绍了一些实现效果和开发细节。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *3* [[OpenGL]使用C++开发无限地形的Minecraft(我的世界 第二版)](https://blog.csdn.net/Mahabharata_/article/details/88079736)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] - *2* [基于C++OpenGL实现的小桌茶壶图形绘制](https://blog.csdn.net/sheziqiong/article/details/125257824)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v92^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值