Merge branch 'main' of https://github.com/MihailRis/VoxelEngine-Cpp
This commit is contained in:
@@ -0,0 +1,51 @@
|
|||||||
|
-- kit of standard functions
|
||||||
|
|
||||||
|
-- Check if given table is an array
|
||||||
|
function is_array(x)
|
||||||
|
if #t > 0 then
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
for k, v in pairs(x) do
|
||||||
|
return false
|
||||||
|
end
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
|
||||||
|
local __cached_scripts = {}
|
||||||
|
local __cached_results = {}
|
||||||
|
|
||||||
|
-- Get entry-point and filename from `entry-point:filename` path
|
||||||
|
function parse_path(path)
|
||||||
|
local index = string.find(path, ':')
|
||||||
|
if index == nil then
|
||||||
|
error("invalid path syntax (':' missing)")
|
||||||
|
end
|
||||||
|
return string.sub(path, 1, index-1), string.sub(path, index+1, -1)
|
||||||
|
end
|
||||||
|
|
||||||
|
-- Load script with caching
|
||||||
|
--
|
||||||
|
-- path - script path `contentpack:filename`.
|
||||||
|
-- Example `base:scripts/tests.lua`
|
||||||
|
--
|
||||||
|
-- nocache - ignore cached script, load anyway
|
||||||
|
function load_script(path, nocache)
|
||||||
|
local packname, filename = parse_path(path)
|
||||||
|
local packpath = pack.get_folder(packname)
|
||||||
|
local fullpath = packpath..filename
|
||||||
|
|
||||||
|
-- __cached_scripts used in condition because cached result may be nil
|
||||||
|
if not nocache and __cached_scripts[fullpath] ~= nil then
|
||||||
|
return __cached_results[fullpath]
|
||||||
|
end
|
||||||
|
local script = loadfile(fullpath)
|
||||||
|
if script == nil then
|
||||||
|
error("script '"..filename.."' not found in '"..packname.."'")
|
||||||
|
end
|
||||||
|
local result = script()
|
||||||
|
if not nocache then
|
||||||
|
__cached_scripts[fullpath] = script
|
||||||
|
__cached_results[fullpath] = result
|
||||||
|
end
|
||||||
|
return result
|
||||||
|
end
|
||||||
@@ -17,6 +17,8 @@ const int CHUNK_D = 16;
|
|||||||
const uint VOXEL_USER_BITS = 8;
|
const uint VOXEL_USER_BITS = 8;
|
||||||
constexpr uint VOXEL_USER_BITS_OFFSET = sizeof(blockstate_t)*8-VOXEL_USER_BITS;
|
constexpr uint VOXEL_USER_BITS_OFFSET = sizeof(blockstate_t)*8-VOXEL_USER_BITS;
|
||||||
|
|
||||||
|
const int ITEM_ICON_SIZE = 48;
|
||||||
|
|
||||||
/* Chunk volume (count of voxels per Chunk) */
|
/* Chunk volume (count of voxels per Chunk) */
|
||||||
constexpr int CHUNK_VOL = (CHUNK_W * CHUNK_H * CHUNK_D);
|
constexpr int CHUNK_VOL = (CHUNK_W * CHUNK_H * CHUNK_D);
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
#include "../coders/json.h"
|
#include "../coders/json.h"
|
||||||
#include "../constants.h"
|
#include "../constants.h"
|
||||||
#include "../items/ItemDef.h"
|
#include "../items/ItemDef.h"
|
||||||
|
#include "../items/Inventory.h"
|
||||||
|
|
||||||
#include "../data/dynamic.h"
|
#include "../data/dynamic.h"
|
||||||
|
|
||||||
@@ -488,12 +489,13 @@ void WorldFiles::writeWorldInfo(const World* world) {
|
|||||||
versionobj.put("major", ENGINE_VERSION_MAJOR);
|
versionobj.put("major", ENGINE_VERSION_MAJOR);
|
||||||
versionobj.put("minor", ENGINE_VERSION_MINOR);
|
versionobj.put("minor", ENGINE_VERSION_MINOR);
|
||||||
|
|
||||||
root.put("name", world->name);
|
root.put("name", world->getName());
|
||||||
root.put("seed", world->seed);
|
root.put("seed", world->getSeed());
|
||||||
|
|
||||||
auto& timeobj = root.putMap("time");
|
auto& timeobj = root.putMap("time");
|
||||||
timeobj.put("day-time", world->daytime);
|
timeobj.put("day-time", world->daytime);
|
||||||
timeobj.put("day-time-speed", world->daytimeSpeed);
|
timeobj.put("day-time-speed", world->daytimeSpeed);
|
||||||
|
timeobj.put("total-time", world->totalTime);
|
||||||
|
|
||||||
files::write_json(getWorldFile(), &root);
|
files::write_json(getWorldFile(), &root);
|
||||||
}
|
}
|
||||||
@@ -506,8 +508,9 @@ bool WorldFiles::readWorldInfo(World* world) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
auto root = files::read_json(file);
|
auto root = files::read_json(file);
|
||||||
root->str("name", world->name);
|
|
||||||
root->num("seed", world->seed);
|
world->setName(root->getStr("name", world->getName()));
|
||||||
|
world->setSeed(root->getInt("seed", world->getSeed()));
|
||||||
|
|
||||||
auto verobj = root->map("version");
|
auto verobj = root->map("version");
|
||||||
if (verobj) {
|
if (verobj) {
|
||||||
@@ -521,12 +524,13 @@ bool WorldFiles::readWorldInfo(World* world) {
|
|||||||
if (timeobj) {
|
if (timeobj) {
|
||||||
timeobj->num("day-time", world->daytime);
|
timeobj->num("day-time", world->daytime);
|
||||||
timeobj->num("day-time-speed", world->daytimeSpeed);
|
timeobj->num("day-time-speed", world->daytimeSpeed);
|
||||||
|
timeobj->num("total-time", world->totalTime);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void WorldFiles::writePlayer(Player* player){
|
void WorldFiles::writePlayer(Player* player) {
|
||||||
glm::vec3 position = player->hitbox->position;
|
glm::vec3 position = player->hitbox->position;
|
||||||
dynamic::Map root;
|
dynamic::Map root;
|
||||||
auto& posarr = root.putList("position");
|
auto& posarr = root.putList("position");
|
||||||
@@ -540,6 +544,8 @@ void WorldFiles::writePlayer(Player* player){
|
|||||||
|
|
||||||
root.put("flight", player->flight);
|
root.put("flight", player->flight);
|
||||||
root.put("noclip", player->noclip);
|
root.put("noclip", player->noclip);
|
||||||
|
root.put("chosen-slot", player->getChosenSlot());
|
||||||
|
root.put("inventory", player->getInventory()->write().release());
|
||||||
|
|
||||||
files::write_json(getPlayerFile(), &root);
|
files::write_json(getPlayerFile(), &root);
|
||||||
}
|
}
|
||||||
@@ -565,5 +571,11 @@ bool WorldFiles::readPlayer(Player* player) {
|
|||||||
|
|
||||||
root->flag("flight", player->flight);
|
root->flag("flight", player->flight);
|
||||||
root->flag("noclip", player->noclip);
|
root->flag("noclip", player->noclip);
|
||||||
|
player->setChosenSlot(root->getInt("chosen-slot", player->getChosenSlot()));
|
||||||
|
|
||||||
|
auto invmap = root->map("inventory");
|
||||||
|
if (invmap) {
|
||||||
|
player->getInventory()->read(invmap);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|||||||
+20
-23
@@ -6,6 +6,7 @@
|
|||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
#include "../coders/json.h"
|
#include "../coders/json.h"
|
||||||
|
#include "../coders/gzip.h"
|
||||||
#include "../util/stringutil.h"
|
#include "../util/stringutil.h"
|
||||||
#include "../data/dynamic.h"
|
#include "../data/dynamic.h"
|
||||||
|
|
||||||
@@ -32,21 +33,21 @@ void files::rafile::read(char* buffer, std::streamsize size) {
|
|||||||
file.read(buffer, size);
|
file.read(buffer, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool files::write_bytes(fs::path filename, const char* data, size_t size) {
|
bool files::write_bytes(fs::path filename, const ubyte* data, size_t size) {
|
||||||
std::ofstream output(filename, std::ios::binary);
|
std::ofstream output(filename, std::ios::binary);
|
||||||
if (!output.is_open())
|
if (!output.is_open())
|
||||||
return false;
|
return false;
|
||||||
output.write(data, size);
|
output.write((const char*)data, size);
|
||||||
output.close();
|
output.close();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
uint files::append_bytes(fs::path filename, const char* data, size_t size) {
|
uint files::append_bytes(fs::path filename, const ubyte* data, size_t size) {
|
||||||
std::ofstream output(filename, std::ios::binary | std::ios::app);
|
std::ofstream output(filename, std::ios::binary | std::ios::app);
|
||||||
if (!output.is_open())
|
if (!output.is_open())
|
||||||
return 0;
|
return 0;
|
||||||
uint position = output.tellp();
|
uint position = output.tellp();
|
||||||
output.write(data, size);
|
output.write((const char*)data, size);
|
||||||
output.close();
|
output.close();
|
||||||
return position;
|
return position;
|
||||||
}
|
}
|
||||||
@@ -60,7 +61,7 @@ bool files::read(fs::path filename, char* data, size_t size) {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
char* files::read_bytes(fs::path filename, size_t& length) {
|
ubyte* files::read_bytes(fs::path filename, size_t& length) {
|
||||||
std::ifstream input(filename, std::ios::binary);
|
std::ifstream input(filename, std::ios::binary);
|
||||||
if (!input.is_open())
|
if (!input.is_open())
|
||||||
return nullptr;
|
return nullptr;
|
||||||
@@ -71,17 +72,17 @@ char* files::read_bytes(fs::path filename, size_t& length) {
|
|||||||
std::unique_ptr<char> data(new char[length]);
|
std::unique_ptr<char> data(new char[length]);
|
||||||
input.read(data.get(), length);
|
input.read(data.get(), length);
|
||||||
input.close();
|
input.close();
|
||||||
return data.release();
|
return (ubyte*)data.release();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string files::read_string(fs::path filename) {
|
std::string files::read_string(fs::path filename) {
|
||||||
size_t size;
|
size_t size;
|
||||||
std::unique_ptr<char> chars (read_bytes(filename, size));
|
std::unique_ptr<ubyte[]> bytes (read_bytes(filename, size));
|
||||||
if (chars == nullptr) {
|
if (bytes == nullptr) {
|
||||||
throw std::runtime_error("could not to load file '"+
|
throw std::runtime_error("could not to load file '"+
|
||||||
filename.string()+"'");
|
filename.string()+"'");
|
||||||
}
|
}
|
||||||
return std::string(chars.get(), size);
|
return std::string((const char*)bytes.get(), size);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool files::write_string(fs::path filename, const std::string content) {
|
bool files::write_string(fs::path filename, const std::string content) {
|
||||||
@@ -94,27 +95,21 @@ bool files::write_string(fs::path filename, const std::string content) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool files::write_json(fs::path filename, const dynamic::Map* obj, bool nice) {
|
bool files::write_json(fs::path filename, const dynamic::Map* obj, bool nice) {
|
||||||
// -- binary json tests
|
|
||||||
//return write_binary_json(fs::path(filename.u8string()+".bin"), obj);
|
|
||||||
return files::write_string(filename, json::stringify(obj, nice, " "));
|
return files::write_string(filename, json::stringify(obj, nice, " "));
|
||||||
}
|
}
|
||||||
|
|
||||||
bool files::write_binary_json(fs::path filename, const dynamic::Map* obj) {
|
bool files::write_binary_json(fs::path filename, const dynamic::Map* obj, bool compression) {
|
||||||
std::vector<ubyte> bytes = json::to_binary(obj);
|
auto bytes = json::to_binary(obj);
|
||||||
return files::write_bytes(filename, (const char*)bytes.data(), bytes.size());
|
if (compression) {
|
||||||
|
bytes = gzip::compress(bytes.data(), bytes.size());
|
||||||
|
}
|
||||||
|
return files::write_bytes(filename, bytes.data(), bytes.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<dynamic::Map> files::read_json(fs::path filename) {
|
std::unique_ptr<dynamic::Map> files::read_json(fs::path filename) {
|
||||||
// binary json tests
|
|
||||||
// fs::path binfile = fs::path(filename.u8string()+".bin");
|
|
||||||
// if (fs::is_regular_file(binfile)){
|
|
||||||
// return read_binary_json(binfile);
|
|
||||||
// }
|
|
||||||
|
|
||||||
std::string text = files::read_string(filename);
|
std::string text = files::read_string(filename);
|
||||||
try {
|
try {
|
||||||
auto obj = json::parse(filename.string(), text);
|
auto obj = json::parse(filename.string(), text);
|
||||||
//write_binary_json(binfile, obj);
|
|
||||||
return obj;
|
return obj;
|
||||||
} catch (const parsing_error& error) {
|
} catch (const parsing_error& error) {
|
||||||
std::cerr << error.errorLog() << std::endl;
|
std::cerr << error.errorLog() << std::endl;
|
||||||
@@ -124,8 +119,10 @@ std::unique_ptr<dynamic::Map> files::read_json(fs::path filename) {
|
|||||||
|
|
||||||
std::unique_ptr<dynamic::Map> files::read_binary_json(fs::path file) {
|
std::unique_ptr<dynamic::Map> files::read_binary_json(fs::path file) {
|
||||||
size_t size;
|
size_t size;
|
||||||
std::unique_ptr<char[]> bytes (files::read_bytes(file, size));
|
std::unique_ptr<ubyte[]> bytes (files::read_bytes(file, size));
|
||||||
return std::unique_ptr<dynamic::Map>(json::from_binary((const ubyte*)bytes.get(), size));
|
return std::unique_ptr<dynamic::Map>(
|
||||||
|
json::from_binary(bytes.get(), size)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::string> files::read_list(fs::path filename) {
|
std::vector<std::string> files::read_list(fs::path filename) {
|
||||||
|
|||||||
+23
-5
@@ -27,15 +27,33 @@ namespace files {
|
|||||||
size_t length() const;
|
size_t length() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Write bytes array to the file without any extra data */
|
||||||
|
extern bool write_bytes(fs::path, const ubyte* data, size_t size);
|
||||||
|
|
||||||
extern bool write_bytes(fs::path, const char* data, size_t size);
|
/* Append bytes array to the file without any extra data */
|
||||||
extern uint append_bytes(fs::path, const char* data, size_t size);
|
extern uint append_bytes(fs::path, const ubyte* data, size_t size);
|
||||||
|
|
||||||
|
/* Write string to the file */
|
||||||
extern bool write_string(fs::path filename, const std::string content);
|
extern bool write_string(fs::path filename, const std::string content);
|
||||||
extern bool write_json(fs::path filename, const dynamic::Map* obj, bool nice=true);
|
|
||||||
extern bool write_binary_json(fs::path filename, const dynamic::Map* obj);
|
/* Write dynamic data to the JSON file
|
||||||
|
@param nice if true,
|
||||||
|
human readable format will be used, otherwise minimal */
|
||||||
|
extern bool write_json(
|
||||||
|
fs::path filename,
|
||||||
|
const dynamic::Map* obj,
|
||||||
|
bool nice=true);
|
||||||
|
|
||||||
|
/* Write dynamic data to the binary JSON file
|
||||||
|
(see src/coders/binary_json_spec.md)
|
||||||
|
@param compressed use gzip compression */
|
||||||
|
extern bool write_binary_json(
|
||||||
|
fs::path filename,
|
||||||
|
const dynamic::Map* obj,
|
||||||
|
bool compressed=false);
|
||||||
|
|
||||||
extern bool read(fs::path, char* data, size_t size);
|
extern bool read(fs::path, char* data, size_t size);
|
||||||
extern char* read_bytes(fs::path, size_t& length);
|
extern ubyte* read_bytes(fs::path, size_t& length);
|
||||||
extern std::string read_string(fs::path filename);
|
extern std::string read_string(fs::path filename);
|
||||||
extern std::unique_ptr<dynamic::Map> read_json(fs::path file);
|
extern std::unique_ptr<dynamic::Map> read_json(fs::path file);
|
||||||
extern std::unique_ptr<dynamic::Map> read_binary_json(fs::path file);
|
extern std::unique_ptr<dynamic::Map> read_binary_json(fs::path file);
|
||||||
|
|||||||
@@ -8,47 +8,23 @@
|
|||||||
#include "../graphics/Texture.h"
|
#include "../graphics/Texture.h"
|
||||||
#include "../graphics/Atlas.h"
|
#include "../graphics/Atlas.h"
|
||||||
#include "../graphics/Batch3D.h"
|
#include "../graphics/Batch3D.h"
|
||||||
|
#include "../graphics/Framebuffer.h"
|
||||||
|
#include "../graphics/GfxContext.h"
|
||||||
|
#include "../window/Window.h"
|
||||||
#include "../window/Camera.h"
|
#include "../window/Camera.h"
|
||||||
#include "../voxels/Block.h"
|
#include "../voxels/Block.h"
|
||||||
|
#include "../content/Content.h"
|
||||||
|
#include "../constants.h"
|
||||||
#include "ContentGfxCache.h"
|
#include "ContentGfxCache.h"
|
||||||
|
|
||||||
BlocksPreview::BlocksPreview(Assets* assets, const ContentGfxCache* cache)
|
ImageData* BlocksPreview::draw(
|
||||||
: shader(assets->getShader("ui3d")),
|
const ContentGfxCache* cache,
|
||||||
atlas(assets->getAtlas("blocks")),
|
Framebuffer* fbo,
|
||||||
cache(cache) {
|
Batch3D* batch,
|
||||||
batch = std::make_unique<Batch3D>(1024);
|
const Block* def,
|
||||||
}
|
int size
|
||||||
|
){
|
||||||
BlocksPreview::~BlocksPreview() {
|
Window::clear();
|
||||||
}
|
|
||||||
|
|
||||||
void BlocksPreview::begin(const Viewport* viewport) {
|
|
||||||
this->viewport = viewport;
|
|
||||||
shader->use();
|
|
||||||
shader->uniformMatrix("u_projview",
|
|
||||||
glm::ortho(0.0f, float(viewport->getWidth()),
|
|
||||||
0.0f, float(viewport->getHeight()),
|
|
||||||
-100.0f, 100.0f) *
|
|
||||||
glm::lookAt(glm::vec3(2, 2, 2), glm::vec3(0.0f), glm::vec3(0, 1, 0)));
|
|
||||||
atlas->getTexture()->bind();
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Draw one block preview at given screen position */
|
|
||||||
void BlocksPreview::draw(const Block* def, int x, int y, int size, glm::vec4 tint) {
|
|
||||||
uint width = viewport->getWidth();
|
|
||||||
uint height = viewport->getHeight();
|
|
||||||
|
|
||||||
y = height - y - 1 - 35 /* magic garbage */;
|
|
||||||
x += 2;
|
|
||||||
|
|
||||||
if (def->model == BlockModel::aabb) {
|
|
||||||
x += (1.0f - def->hitbox.size()).x * size * 0.5f;
|
|
||||||
y += (1.0f - def->hitbox.size()).y * size * 0.25f;
|
|
||||||
}
|
|
||||||
|
|
||||||
glm::vec3 offset (x/float(width) * 2, y/float(height) * 2, 0.0f);
|
|
||||||
shader->uniformMatrix("u_apply", glm::translate(glm::mat4(1.0f), offset));
|
|
||||||
|
|
||||||
blockid_t id = def->rt.id;
|
blockid_t id = def->rt.id;
|
||||||
const UVRegion texfaces[6]{cache->getRegion(id, 0), cache->getRegion(id, 1),
|
const UVRegion texfaces[6]{cache->getRegion(id, 0), cache->getRegion(id, 1),
|
||||||
cache->getRegion(id, 2), cache->getRegion(id, 3),
|
cache->getRegion(id, 2), cache->getRegion(id, 3),
|
||||||
@@ -59,11 +35,12 @@ void BlocksPreview::draw(const Block* def, int x, int y, int size, glm::vec4 tin
|
|||||||
// something went wrong...
|
// something went wrong...
|
||||||
break;
|
break;
|
||||||
case BlockModel::block:
|
case BlockModel::block:
|
||||||
batch->blockCube(glm::vec3(size * 0.63f), texfaces, tint, !def->rt.emissive);
|
batch->blockCube(glm::vec3(size * 0.63f), texfaces,
|
||||||
|
glm::vec4(1.0f), !def->rt.emissive);
|
||||||
break;
|
break;
|
||||||
case BlockModel::aabb:
|
case BlockModel::aabb:
|
||||||
batch->blockCube(def->hitbox.size() * glm::vec3(size * 0.63f),
|
batch->blockCube(def->hitbox.size() * glm::vec3(size * 0.63f),
|
||||||
texfaces, tint, !def->rt.emissive);
|
texfaces, glm::vec4(1.0f), !def->rt.emissive);
|
||||||
break;
|
break;
|
||||||
case BlockModel::custom:
|
case BlockModel::custom:
|
||||||
case BlockModel::xsprite: {
|
case BlockModel::xsprite: {
|
||||||
@@ -73,10 +50,64 @@ void BlocksPreview::draw(const Block* def, int x, int y, int size, glm::vec4 tin
|
|||||||
right,
|
right,
|
||||||
size*0.5f, size*0.6f,
|
size*0.5f, size*0.6f,
|
||||||
texfaces[0],
|
texfaces[0],
|
||||||
tint);
|
glm::vec4(1.0f));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
batch->flush();
|
batch->flush();
|
||||||
|
return fbo->texture->readData();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::unique_ptr<Atlas> BlocksPreview::build(
|
||||||
|
const ContentGfxCache* cache,
|
||||||
|
Assets* assets,
|
||||||
|
const Content* content
|
||||||
|
) {
|
||||||
|
auto indices = content->getIndices();
|
||||||
|
size_t count = indices->countBlockDefs();
|
||||||
|
size_t iconSize = ITEM_ICON_SIZE;
|
||||||
|
|
||||||
|
Shader* shader = assets->getShader("ui3d");
|
||||||
|
Atlas* atlas = assets->getAtlas("blocks");
|
||||||
|
|
||||||
|
Viewport viewport(iconSize, iconSize);
|
||||||
|
GfxContext pctx(nullptr, viewport, nullptr);
|
||||||
|
GfxContext ctx = pctx.sub();
|
||||||
|
ctx.cullFace(true);
|
||||||
|
ctx.depthTest(true);
|
||||||
|
|
||||||
|
Framebuffer fbo(iconSize, iconSize, true);
|
||||||
|
Batch3D batch(1024);
|
||||||
|
batch.begin();
|
||||||
|
|
||||||
|
shader->use();
|
||||||
|
shader->uniformMatrix("u_projview",
|
||||||
|
|
||||||
|
glm::ortho(0.0f, float(iconSize), 0.0f, float(iconSize),
|
||||||
|
-100.0f, 100.0f) *
|
||||||
|
glm::lookAt(glm::vec3(2, 2, 2),
|
||||||
|
glm::vec3(0.0f),
|
||||||
|
glm::vec3(0, 1, 0)));
|
||||||
|
|
||||||
|
AtlasBuilder builder;
|
||||||
|
Window::viewport(0, 0, iconSize, iconSize);
|
||||||
|
Window::setBgColor(glm::vec4(0.0f));
|
||||||
|
|
||||||
|
fbo.bind();
|
||||||
|
for (size_t i = 0; i < count; i++) {
|
||||||
|
auto def = indices->getBlockDef(i);
|
||||||
|
|
||||||
|
glm::vec3 offset(0.1f, 0.5f, 0.1f);
|
||||||
|
if (def->model == BlockModel::aabb) {
|
||||||
|
offset.y += (1.0f - def->hitbox.size()).y * 0.5f;
|
||||||
|
}
|
||||||
|
atlas->getTexture()->bind();
|
||||||
|
shader->uniformMatrix("u_apply", glm::translate(glm::mat4(1.0f), offset));
|
||||||
|
|
||||||
|
builder.add(def->name, draw(cache, &fbo, &batch, def, iconSize));
|
||||||
|
}
|
||||||
|
fbo.unbind();
|
||||||
|
|
||||||
|
Window::viewport(0, 0, Window::width, Window::height);
|
||||||
|
return std::unique_ptr<Atlas>(builder.build(2));
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -6,25 +6,27 @@
|
|||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
class Assets;
|
class Assets;
|
||||||
class Viewport;
|
class ImageData;
|
||||||
class Shader;
|
|
||||||
class Atlas;
|
class Atlas;
|
||||||
|
class Framebuffer;
|
||||||
class Batch3D;
|
class Batch3D;
|
||||||
class Block;
|
class Block;
|
||||||
|
class Content;
|
||||||
class ContentGfxCache;
|
class ContentGfxCache;
|
||||||
|
|
||||||
class BlocksPreview {
|
class BlocksPreview {
|
||||||
Shader* shader;
|
|
||||||
Atlas* atlas;
|
|
||||||
std::unique_ptr<Batch3D> batch;
|
|
||||||
const ContentGfxCache* const cache;
|
|
||||||
const Viewport* viewport;
|
|
||||||
public:
|
public:
|
||||||
BlocksPreview(Assets* assets, const ContentGfxCache* cache);
|
static ImageData* draw(
|
||||||
~BlocksPreview();
|
const ContentGfxCache* cache,
|
||||||
|
Framebuffer* framebuffer,
|
||||||
|
Batch3D* batch,
|
||||||
|
const Block* block,
|
||||||
|
int size);
|
||||||
|
|
||||||
void begin(const Viewport* viewport);
|
static std::unique_ptr<Atlas> build(
|
||||||
void draw(const Block* block, int x, int y, int size, glm::vec4 tint);
|
const ContentGfxCache* cache,
|
||||||
|
Assets* assets,
|
||||||
|
const Content* content);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // FRONTEND_BLOCKS_PREVIEW_H_
|
#endif // FRONTEND_BLOCKS_PREVIEW_H_
|
||||||
|
|||||||
@@ -28,6 +28,10 @@ void InventoryLayout::add(SlotLayout slot) {
|
|||||||
slots.push_back(slot);
|
slots.push_back(slot);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void InventoryLayout::add(InventoryPanel panel) {
|
||||||
|
panels.push_back(panel);
|
||||||
|
}
|
||||||
|
|
||||||
void InventoryLayout::setSize(glm::vec2 size) {
|
void InventoryLayout::setSize(glm::vec2 size) {
|
||||||
this->size = size;
|
this->size = size;
|
||||||
}
|
}
|
||||||
@@ -48,6 +52,10 @@ std::vector<SlotLayout>& InventoryLayout::getSlots() {
|
|||||||
return slots;
|
return slots;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::vector<InventoryPanel>& InventoryLayout::getPanels() {
|
||||||
|
return panels;
|
||||||
|
}
|
||||||
|
|
||||||
SlotLayout::SlotLayout(
|
SlotLayout::SlotLayout(
|
||||||
glm::vec2 position,
|
glm::vec2 position,
|
||||||
bool background,
|
bool background,
|
||||||
@@ -72,14 +80,17 @@ InventoryBuilder::InventoryBuilder()
|
|||||||
{}
|
{}
|
||||||
|
|
||||||
void InventoryBuilder::addGrid(
|
void InventoryBuilder::addGrid(
|
||||||
int cols, int rows,
|
int cols, int count,
|
||||||
glm::vec2 coord,
|
glm::vec2 coord,
|
||||||
int padding,
|
int padding,
|
||||||
|
bool addpanel,
|
||||||
SlotLayout slotLayout)
|
SlotLayout slotLayout)
|
||||||
{
|
{
|
||||||
const int slotSize = InventoryView::SLOT_SIZE;
|
const int slotSize = InventoryView::SLOT_SIZE;
|
||||||
const int interval = InventoryView::SLOT_INTERVAL;
|
const int interval = InventoryView::SLOT_INTERVAL;
|
||||||
|
|
||||||
|
int rows = ceildiv(count, cols);
|
||||||
|
|
||||||
uint width = cols * (slotSize + interval) - interval + padding*2;
|
uint width = cols * (slotSize + interval) - interval + padding*2;
|
||||||
uint height = rows * (slotSize + interval) - interval + padding*2;
|
uint height = rows * (slotSize + interval) - interval + padding*2;
|
||||||
|
|
||||||
@@ -94,6 +105,8 @@ void InventoryBuilder::addGrid(
|
|||||||
|
|
||||||
for (int row = 0; row < rows; row++) {
|
for (int row = 0; row < rows; row++) {
|
||||||
for (int col = 0; col < cols; col++) {
|
for (int col = 0; col < cols; col++) {
|
||||||
|
if (row * cols + col >= count)
|
||||||
|
break;
|
||||||
glm::vec2 position (
|
glm::vec2 position (
|
||||||
col * (slotSize + interval) + padding,
|
col * (slotSize + interval) + padding,
|
||||||
row * (slotSize + interval) + padding
|
row * (slotSize + interval) + padding
|
||||||
@@ -103,6 +116,32 @@ void InventoryBuilder::addGrid(
|
|||||||
layout->add(builtSlot);
|
layout->add(builtSlot);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (addpanel) {
|
||||||
|
add(InventoryPanel(
|
||||||
|
coord,
|
||||||
|
glm::vec2(width, height),
|
||||||
|
glm::vec4(0, 0, 0, 0.5f)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void InventoryBuilder::add(SlotLayout slotLayout) {
|
||||||
|
uint width = InventoryView::SLOT_SIZE;
|
||||||
|
uint height = InventoryView::SLOT_SIZE;
|
||||||
|
|
||||||
|
auto coord = slotLayout.position;
|
||||||
|
auto lsize = layout->getSize();
|
||||||
|
if (coord.x + width > lsize.x) {
|
||||||
|
lsize.x = coord.x + width;
|
||||||
|
}
|
||||||
|
if (coord.y + height > lsize.y) {
|
||||||
|
lsize.y = coord.y + height;
|
||||||
|
}
|
||||||
|
layout->add(slotLayout);
|
||||||
|
}
|
||||||
|
|
||||||
|
void InventoryBuilder::add(InventoryPanel panel) {
|
||||||
|
layout->add(panel);
|
||||||
}
|
}
|
||||||
|
|
||||||
std::unique_ptr<InventoryLayout> InventoryBuilder::build() {
|
std::unique_ptr<InventoryLayout> InventoryBuilder::build() {
|
||||||
@@ -149,31 +188,23 @@ void SlotView::draw(Batch2D* batch, Assets* assets) {
|
|||||||
|
|
||||||
batch->color = glm::vec4(1.0f);
|
batch->color = glm::vec4(1.0f);
|
||||||
|
|
||||||
Shader* uiShader = assets->getShader("ui");
|
auto previews = frontend->getBlocksAtlas();
|
||||||
Viewport viewport(Window::width, Window::height);
|
|
||||||
GfxContext ctx(nullptr, viewport, batch);
|
|
||||||
|
|
||||||
auto preview = frontend->getBlocksPreview();
|
|
||||||
auto indices = content->getIndices();
|
auto indices = content->getIndices();
|
||||||
|
|
||||||
ItemDef* item = indices->getItemDef(stack.getItemId());
|
ItemDef* item = indices->getItemDef(stack.getItemId());
|
||||||
switch (item->iconType) {
|
switch (item->iconType) {
|
||||||
case item_icon_type::none:
|
case item_icon_type::none:
|
||||||
break;
|
break;
|
||||||
case item_icon_type::block:
|
case item_icon_type::block: {
|
||||||
batch->render();
|
Block* cblock = content->requireBlock(item->icon);
|
||||||
{
|
batch->texture(previews->getTexture());
|
||||||
GfxContext subctx = ctx.sub();
|
|
||||||
subctx.depthTest(true);
|
|
||||||
subctx.cullFace(true);
|
|
||||||
|
|
||||||
Block* cblock = content->requireBlock(item->icon);
|
UVRegion region = previews->get(cblock->name);
|
||||||
preview->begin(&subctx.getViewport());
|
batch->rect(
|
||||||
preview->draw(cblock, coord.x, coord.y, slotSize, tint);
|
coord.x, coord.y, slotSize, slotSize,
|
||||||
}
|
0, 0, 0, region, false, true, tint);
|
||||||
uiShader->use();
|
|
||||||
batch->begin();
|
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case item_icon_type::sprite: {
|
case item_icon_type::sprite: {
|
||||||
size_t index = item->icon.find(':');
|
size_t index = item->icon.find(':');
|
||||||
std::string name = item->icon.substr(index+1);
|
std::string name = item->icon.substr(index+1);
|
||||||
@@ -279,14 +310,17 @@ InventoryView::InventoryView(
|
|||||||
frontend(frontend),
|
frontend(frontend),
|
||||||
interaction(interaction) {
|
interaction(interaction) {
|
||||||
size(this->layout->getSize());
|
size(this->layout->getSize());
|
||||||
color(glm::vec4(0, 0, 0, 0.5f));
|
color(glm::vec4(0, 0, 0, 0.0f));
|
||||||
}
|
}
|
||||||
|
|
||||||
InventoryView::~InventoryView() {}
|
InventoryView::~InventoryView() {}
|
||||||
|
|
||||||
void InventoryView::build() {
|
void InventoryView::build() {
|
||||||
int index = 0;
|
size_t index = 0;
|
||||||
for (auto& slot : layout->getSlots()) {
|
for (auto& slot : layout->getSlots()) {
|
||||||
|
if (index >= inventory->size())
|
||||||
|
break;
|
||||||
|
|
||||||
ItemStack& item = inventory->getSlot(index);
|
ItemStack& item = inventory->getSlot(index);
|
||||||
|
|
||||||
auto view = std::make_shared<SlotView>(
|
auto view = std::make_shared<SlotView>(
|
||||||
@@ -320,15 +354,15 @@ InventoryLayout* InventoryView::getLayout() const {
|
|||||||
return layout.get();
|
return layout.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
// performance disaster x2
|
|
||||||
void InventoryView::draw(Batch2D* batch, Assets* assets) {
|
|
||||||
Container::draw(batch, assets);
|
|
||||||
Window::clearDepth();
|
|
||||||
}
|
|
||||||
|
|
||||||
void InventoryView::drawBackground(Batch2D* batch, Assets* assets) {
|
void InventoryView::drawBackground(Batch2D* batch, Assets* assets) {
|
||||||
glm::vec2 coord = calcCoord();
|
glm::vec2 coord = calcCoord();
|
||||||
|
|
||||||
batch->texture(nullptr);
|
batch->texture(nullptr);
|
||||||
batch->color = color_;
|
|
||||||
batch->rect(coord.x-1, coord.y-1, size_.x+2, size_.y+2);
|
for (auto& panel : layout->getPanels()) {
|
||||||
|
glm::vec2 size = panel.size;
|
||||||
|
glm::vec2 pos = coord + panel.position;
|
||||||
|
batch->color = panel.color;
|
||||||
|
batch->rect(pos.x-1, pos.y-1, size.x+2, size.y+2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -53,10 +53,12 @@ class InventoryLayout {
|
|||||||
glm::vec2 size;
|
glm::vec2 size;
|
||||||
glm::vec2 origin;
|
glm::vec2 origin;
|
||||||
std::vector<SlotLayout> slots;
|
std::vector<SlotLayout> slots;
|
||||||
|
std::vector<InventoryPanel> panels;
|
||||||
public:
|
public:
|
||||||
InventoryLayout(glm::vec2 size);
|
InventoryLayout(glm::vec2 size);
|
||||||
|
|
||||||
void add(SlotLayout slot);
|
void add(SlotLayout slot);
|
||||||
|
void add(InventoryPanel panel);
|
||||||
void setSize(glm::vec2 size);
|
void setSize(glm::vec2 size);
|
||||||
void setOrigin(glm::vec2 origin);
|
void setOrigin(glm::vec2 origin);
|
||||||
|
|
||||||
@@ -64,6 +66,7 @@ public:
|
|||||||
glm::vec2 getOrigin() const;
|
glm::vec2 getOrigin() const;
|
||||||
|
|
||||||
std::vector<SlotLayout>& getSlots();
|
std::vector<SlotLayout>& getSlots();
|
||||||
|
std::vector<InventoryPanel>& getPanels();
|
||||||
};
|
};
|
||||||
|
|
||||||
class InventoryBuilder {
|
class InventoryBuilder {
|
||||||
@@ -72,10 +75,15 @@ public:
|
|||||||
InventoryBuilder();
|
InventoryBuilder();
|
||||||
|
|
||||||
void addGrid(
|
void addGrid(
|
||||||
int cols, int rows,
|
int cols, int count,
|
||||||
glm::vec2 coord,
|
glm::vec2 coord,
|
||||||
int padding,
|
int padding,
|
||||||
|
bool addpanel,
|
||||||
SlotLayout slotLayout);
|
SlotLayout slotLayout);
|
||||||
|
|
||||||
|
void add(SlotLayout slotLayout);
|
||||||
|
void add(InventoryPanel panel);
|
||||||
|
|
||||||
std::unique_ptr<InventoryLayout> build();
|
std::unique_ptr<InventoryLayout> build();
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -126,7 +134,6 @@ public:
|
|||||||
|
|
||||||
void build();
|
void build();
|
||||||
|
|
||||||
virtual void draw(Batch2D* batch, Assets* assets) override;
|
|
||||||
virtual void drawBackground(Batch2D* batch, Assets* assets) override;
|
virtual void drawBackground(Batch2D* batch, Assets* assets) override;
|
||||||
|
|
||||||
void setInventory(std::shared_ptr<Inventory> inventory);
|
void setInventory(std::shared_ptr<Inventory> inventory);
|
||||||
@@ -138,7 +145,7 @@ public:
|
|||||||
void setSelected(int index);
|
void setSelected(int index);
|
||||||
|
|
||||||
static const int SLOT_INTERVAL = 4;
|
static const int SLOT_INTERVAL = 4;
|
||||||
static const int SLOT_SIZE = 48;
|
static const int SLOT_SIZE = ITEM_ICON_SIZE;
|
||||||
};
|
};
|
||||||
|
|
||||||
class InventoryInteraction {
|
class InventoryInteraction {
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
#include "../world/Level.h"
|
#include "../world/Level.h"
|
||||||
#include "../assets/Assets.h"
|
#include "../assets/Assets.h"
|
||||||
|
#include "../graphics/Atlas.h"
|
||||||
#include "BlocksPreview.h"
|
#include "BlocksPreview.h"
|
||||||
#include "ContentGfxCache.h"
|
#include "ContentGfxCache.h"
|
||||||
|
|
||||||
@@ -9,8 +10,7 @@ LevelFrontend::LevelFrontend(Level* level, Assets* assets)
|
|||||||
: level(level),
|
: level(level),
|
||||||
assets(assets),
|
assets(assets),
|
||||||
contentCache(std::make_unique<ContentGfxCache>(level->content, assets)),
|
contentCache(std::make_unique<ContentGfxCache>(level->content, assets)),
|
||||||
blocksPreview(std::make_unique<BlocksPreview>(assets, contentCache.get())) {
|
blocksAtlas(BlocksPreview::build(contentCache.get(), assets, level->content)) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LevelFrontend::~LevelFrontend() {
|
LevelFrontend::~LevelFrontend() {
|
||||||
@@ -24,10 +24,10 @@ Assets* LevelFrontend::getAssets() const {
|
|||||||
return assets;
|
return assets;
|
||||||
}
|
}
|
||||||
|
|
||||||
BlocksPreview* LevelFrontend::getBlocksPreview() const {
|
|
||||||
return blocksPreview.get();
|
|
||||||
}
|
|
||||||
|
|
||||||
ContentGfxCache* LevelFrontend::getContentGfxCache() const {
|
ContentGfxCache* LevelFrontend::getContentGfxCache() const {
|
||||||
return contentCache.get();
|
return contentCache.get();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Atlas* LevelFrontend::getBlocksAtlas() const {
|
||||||
|
return blocksAtlas.get();
|
||||||
|
}
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
|
class Atlas;
|
||||||
class Level;
|
class Level;
|
||||||
class Assets;
|
class Assets;
|
||||||
class BlocksPreview;
|
class BlocksPreview;
|
||||||
@@ -12,15 +13,15 @@ class LevelFrontend {
|
|||||||
Level* level;
|
Level* level;
|
||||||
Assets* assets;
|
Assets* assets;
|
||||||
std::unique_ptr<ContentGfxCache> contentCache;
|
std::unique_ptr<ContentGfxCache> contentCache;
|
||||||
std::unique_ptr<BlocksPreview> blocksPreview;
|
std::unique_ptr<Atlas> blocksAtlas;
|
||||||
public:
|
public:
|
||||||
LevelFrontend(Level* level, Assets* assets);
|
LevelFrontend(Level* level, Assets* assets);
|
||||||
~LevelFrontend();
|
~LevelFrontend();
|
||||||
|
|
||||||
Level* getLevel() const;
|
Level* getLevel() const;
|
||||||
Assets* getAssets() const;
|
Assets* getAssets() const;
|
||||||
BlocksPreview* getBlocksPreview() const;
|
|
||||||
ContentGfxCache* getContentGfxCache() const;
|
ContentGfxCache* getContentGfxCache() const;
|
||||||
|
Atlas* getBlocksAtlas() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
+188
-210
@@ -52,106 +52,106 @@ using glm::vec4;
|
|||||||
using namespace gui;
|
using namespace gui;
|
||||||
|
|
||||||
inline std::shared_ptr<Label> create_label(gui::wstringsupplier supplier) {
|
inline std::shared_ptr<Label> create_label(gui::wstringsupplier supplier) {
|
||||||
auto label = std::make_shared<Label>(L"-");
|
auto label = std::make_shared<Label>(L"-");
|
||||||
label->textSupplier(supplier);
|
label->textSupplier(supplier);
|
||||||
return label;
|
return label;
|
||||||
}
|
}
|
||||||
|
|
||||||
void HudRenderer::createDebugPanel(Engine* engine) {
|
void HudRenderer::createDebugPanel(Engine* engine) {
|
||||||
auto level = frontend->getLevel();
|
auto level = frontend->getLevel();
|
||||||
|
|
||||||
Panel* panel = new Panel(vec2(250, 200), vec4(5.0f), 1.0f);
|
Panel* panel = new Panel(vec2(250, 200), vec4(5.0f), 1.0f);
|
||||||
debugPanel = std::shared_ptr<UINode>(panel);
|
debugPanel = std::shared_ptr<UINode>(panel);
|
||||||
panel->listenInterval(1.0f, [this]() {
|
panel->listenInterval(1.0f, [this]() {
|
||||||
fpsString = std::to_wstring(fpsMax)+L" / "+std::to_wstring(fpsMin);
|
fpsString = std::to_wstring(fpsMax)+L" / "+std::to_wstring(fpsMin);
|
||||||
fpsMin = fps;
|
fpsMin = fps;
|
||||||
fpsMax = fps;
|
fpsMax = fps;
|
||||||
});
|
});
|
||||||
panel->setCoord(vec2(10, 10));
|
panel->setCoord(vec2(10, 10));
|
||||||
panel->add(create_label([this](){ return L"fps: "+this->fpsString;}));
|
panel->add(create_label([this](){ return L"fps: "+this->fpsString;}));
|
||||||
panel->add(create_label([this](){
|
panel->add(create_label([this](){
|
||||||
return L"meshes: " + std::to_wstring(Mesh::meshesCount);
|
return L"meshes: " + std::to_wstring(Mesh::meshesCount);
|
||||||
}));
|
}));
|
||||||
panel->add(create_label([=](){
|
panel->add(create_label([=](){
|
||||||
auto& settings = engine->getSettings();
|
auto& settings = engine->getSettings();
|
||||||
bool culling = settings.graphics.frustumCulling;
|
bool culling = settings.graphics.frustumCulling;
|
||||||
return L"frustum-culling: "+std::wstring(culling ? L"on" : L"off");
|
return L"frustum-culling: "+std::wstring(culling ? L"on" : L"off");
|
||||||
}));
|
}));
|
||||||
panel->add(create_label([=]() {
|
panel->add(create_label([=]() {
|
||||||
return L"chunks: "+std::to_wstring(level->chunks->chunksCount)+
|
return L"chunks: "+std::to_wstring(level->chunks->chunksCount)+
|
||||||
L" visible: "+std::to_wstring(level->chunks->visible);
|
L" visible: "+std::to_wstring(level->chunks->visible);
|
||||||
}));
|
}));
|
||||||
panel->add(create_label([=](){
|
panel->add(create_label([=](){
|
||||||
auto player = level->player;
|
auto player = level->player;
|
||||||
auto* indices = level->content->getIndices();
|
auto* indices = level->content->getIndices();
|
||||||
auto def = indices->getBlockDef(player->selectedVoxel.id);
|
auto def = indices->getBlockDef(player->selectedVoxel.id);
|
||||||
std::wstringstream stream;
|
std::wstringstream stream;
|
||||||
stream << std::hex << level->player->selectedVoxel.states;
|
stream << std::hex << level->player->selectedVoxel.states;
|
||||||
if (def) {
|
if (def) {
|
||||||
stream << L" (" << util::str2wstr_utf8(def->name) << L")";
|
stream << L" (" << util::str2wstr_utf8(def->name) << L")";
|
||||||
}
|
}
|
||||||
return L"block: "+std::to_wstring(player->selectedVoxel.id)+
|
return L"block: "+std::to_wstring(player->selectedVoxel.id)+
|
||||||
L" "+stream.str();
|
L" "+stream.str();
|
||||||
}));
|
}));
|
||||||
panel->add(create_label([=](){
|
panel->add(create_label([=](){
|
||||||
return L"seed: "+std::to_wstring(level->world->seed);
|
return L"seed: "+std::to_wstring(level->world->getSeed());
|
||||||
}));
|
}));
|
||||||
|
|
||||||
for (int ax = 0; ax < 3; ax++){
|
for (int ax = 0; ax < 3; ax++){
|
||||||
Panel* sub = new Panel(vec2(10, 27), vec4(0.0f));
|
Panel* sub = new Panel(vec2(10, 27), vec4(0.0f));
|
||||||
sub->orientation(Orientation::horizontal);
|
sub->orientation(Orientation::horizontal);
|
||||||
|
|
||||||
std::wstring str = L"x: ";
|
std::wstring str = L"x: ";
|
||||||
str[0] += ax;
|
str[0] += ax;
|
||||||
Label* label = new Label(str);
|
Label* label = new Label(str);
|
||||||
label->margin(vec4(2, 3, 2, 3));
|
label->margin(vec4(2, 3, 2, 3));
|
||||||
sub->add(label);
|
sub->add(label);
|
||||||
sub->color(vec4(0.0f));
|
sub->color(vec4(0.0f));
|
||||||
|
|
||||||
// Coord input
|
// Coord input
|
||||||
TextBox* box = new TextBox(L"");
|
TextBox* box = new TextBox(L"");
|
||||||
box->textSupplier([=]() {
|
box->textSupplier([=]() {
|
||||||
Hitbox* hitbox = level->player->hitbox.get();
|
Hitbox* hitbox = level->player->hitbox.get();
|
||||||
return util::to_wstring(hitbox->position[ax], 2);
|
return util::to_wstring(hitbox->position[ax], 2);
|
||||||
});
|
});
|
||||||
box->textConsumer([=](std::wstring text) {
|
box->textConsumer([=](std::wstring text) {
|
||||||
try {
|
try {
|
||||||
vec3 position = level->player->hitbox->position;
|
vec3 position = level->player->hitbox->position;
|
||||||
position[ax] = std::stoi(text);
|
position[ax] = std::stoi(text);
|
||||||
level->player->teleport(position);
|
level->player->teleport(position);
|
||||||
} catch (std::invalid_argument& _){
|
} catch (std::invalid_argument& _){
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
box->setOnEditStart([=](){
|
box->setOnEditStart([=](){
|
||||||
Hitbox* hitbox = level->player->hitbox.get();
|
Hitbox* hitbox = level->player->hitbox.get();
|
||||||
box->text(std::to_wstring(int(hitbox->position[ax])));
|
box->text(std::to_wstring(int(hitbox->position[ax])));
|
||||||
});
|
});
|
||||||
|
|
||||||
sub->add(box);
|
sub->add(box);
|
||||||
panel->add(sub);
|
panel->add(sub);
|
||||||
}
|
}
|
||||||
panel->add(create_label([=](){
|
panel->add(create_label([=](){
|
||||||
int hour, minute, second;
|
int hour, minute, second;
|
||||||
timeutil::from_value(level->world->daytime, hour, minute, second);
|
timeutil::from_value(level->world->daytime, hour, minute, second);
|
||||||
|
|
||||||
std::wstring timeString =
|
std::wstring timeString =
|
||||||
util::lfill(std::to_wstring(hour), 2, L'0') + L":" +
|
util::lfill(std::to_wstring(hour), 2, L'0') + L":" +
|
||||||
util::lfill(std::to_wstring(minute), 2, L'0');
|
util::lfill(std::to_wstring(minute), 2, L'0');
|
||||||
return L"time: "+timeString;
|
return L"time: "+timeString;
|
||||||
}));
|
}));
|
||||||
{
|
{
|
||||||
TrackBar* bar = new TrackBar(0.0f, 1.0f, 1.0f, 0.005f, 8);
|
TrackBar* bar = new TrackBar(0.0f, 1.0f, 1.0f, 0.005f, 8);
|
||||||
bar->supplier([=]() {return level->world->daytime;});
|
bar->supplier([=]() {return level->world->daytime;});
|
||||||
bar->consumer([=](double val) {level->world->daytime = val;});
|
bar->consumer([=](double val) {level->world->daytime = val;});
|
||||||
panel->add(bar);
|
panel->add(bar);
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
TrackBar* bar = new TrackBar(0.0f, 1.0f, 0.0f, 0.005f, 8);
|
TrackBar* bar = new TrackBar(0.0f, 1.0f, 0.0f, 0.005f, 8);
|
||||||
bar->supplier([=]() {return WorldRenderer::fog;});
|
bar->supplier([=]() {return WorldRenderer::fog;});
|
||||||
bar->consumer([=](double val) {WorldRenderer::fog = val;});
|
bar->consumer([=](double val) {WorldRenderer::fog = val;});
|
||||||
panel->add(bar);
|
panel->add(bar);
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
auto checkbox = new FullCheckBox(L"Show Chunk Borders", vec2(400, 32));
|
auto checkbox = new FullCheckBox(L"Show Chunk Borders", vec2(400, 32));
|
||||||
checkbox->supplier([=]() {
|
checkbox->supplier([=]() {
|
||||||
return engine->getSettings().debug.showChunkBorders;
|
return engine->getSettings().debug.showChunkBorders;
|
||||||
@@ -160,8 +160,8 @@ void HudRenderer::createDebugPanel(Engine* engine) {
|
|||||||
engine->getSettings().debug.showChunkBorders = checked;
|
engine->getSettings().debug.showChunkBorders = checked;
|
||||||
});
|
});
|
||||||
panel->add(checkbox);
|
panel->add(checkbox);
|
||||||
}
|
}
|
||||||
panel->refresh();
|
panel->refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
std::shared_ptr<InventoryView> HudRenderer::createContentAccess() {
|
std::shared_ptr<InventoryView> HudRenderer::createContentAccess() {
|
||||||
@@ -177,37 +177,25 @@ std::shared_ptr<InventoryView> HudRenderer::createContentAccess() {
|
|||||||
accessInventory->getSlot(id-1).set(ItemStack(id, 1));
|
accessInventory->getSlot(id-1).set(ItemStack(id, 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
const int slotSize = InventoryView::SLOT_SIZE;
|
SlotLayout slotLayout(glm::vec2(), false, true,
|
||||||
const int interval = InventoryView::SLOT_INTERVAL;
|
[=](ItemStack& item) {
|
||||||
int padding = 8;
|
auto copy = ItemStack(item);
|
||||||
|
inventory->move(copy, indices);
|
||||||
|
},
|
||||||
|
[=](ItemStack& item, ItemStack& grabbed) {
|
||||||
|
inventory->getSlot(player->getChosenSlot()).set(item);
|
||||||
|
});
|
||||||
|
|
||||||
|
InventoryBuilder builder;
|
||||||
|
builder.addGrid(8, itemsCount-1, glm::vec2(), 8, true, slotLayout);
|
||||||
|
auto layout = builder.build();
|
||||||
|
|
||||||
int columns = 8;
|
|
||||||
int rows = ceildiv(itemsCount-1, columns);
|
|
||||||
uint cawidth = columns * (slotSize + interval) - interval + padding;
|
|
||||||
uint caheight = rows * (slotSize + interval) - interval + padding*2;
|
|
||||||
auto layout = std::make_unique<InventoryLayout>(glm::vec2(cawidth, caheight));
|
|
||||||
for (int i = 0; i < itemsCount-1; i++) {
|
|
||||||
int row = i / columns;
|
|
||||||
int col = i % columns;
|
|
||||||
glm::vec2 position (
|
|
||||||
col * slotSize + (col-1) * interval + padding,
|
|
||||||
row * slotSize + (row-1) * interval + padding
|
|
||||||
);
|
|
||||||
layout->add(SlotLayout(position, false, true,
|
|
||||||
[=](ItemStack& item) {
|
|
||||||
auto copy = ItemStack(item);
|
|
||||||
inventory->move(copy, indices);
|
|
||||||
},
|
|
||||||
[=](ItemStack& item, ItemStack& grabbed) {
|
|
||||||
inventory->getSlot(player->getChosenSlot()).set(item);
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
auto contentAccess = std::make_shared<InventoryView>(
|
auto contentAccess = std::make_shared<InventoryView>(
|
||||||
content,
|
content,
|
||||||
frontend,
|
frontend,
|
||||||
interaction.get(),
|
interaction.get(),
|
||||||
accessInventory,
|
accessInventory,
|
||||||
std::move(layout)
|
std::move(layout)
|
||||||
);
|
);
|
||||||
contentAccess->build();
|
contentAccess->build();
|
||||||
return contentAccess;
|
return contentAccess;
|
||||||
@@ -219,24 +207,18 @@ std::shared_ptr<InventoryView> HudRenderer::createHotbar() {
|
|||||||
auto inventory = player->getInventory();
|
auto inventory = player->getInventory();
|
||||||
auto content = level->content;
|
auto content = level->content;
|
||||||
|
|
||||||
const int slotSize = InventoryView::SLOT_SIZE;
|
SlotLayout slotLayout(glm::vec2(), false, false, nullptr, nullptr);
|
||||||
const int interval = InventoryView::SLOT_INTERVAL;
|
InventoryBuilder builder;
|
||||||
|
builder.addGrid(10, 10, glm::vec2(), 4, true, slotLayout);
|
||||||
|
auto layout = builder.build();
|
||||||
|
|
||||||
int padding = 4;
|
layout->setOrigin(glm::vec2(layout->getSize().x/2, 0));
|
||||||
uint width = 10 * (slotSize + interval) - interval + padding*2;
|
|
||||||
uint height = slotSize + padding * 2;
|
|
||||||
auto layout = std::make_unique<InventoryLayout>(glm::vec2(width, height));
|
|
||||||
for (int i = 0; i < 10; i++) {
|
|
||||||
glm::vec2 position (i * (slotSize + interval) + padding, padding);
|
|
||||||
layout->add(SlotLayout(position, false, false, nullptr, nullptr));
|
|
||||||
}
|
|
||||||
layout->setOrigin(glm::vec2(width / 2, 0));
|
|
||||||
auto view = std::make_shared<InventoryView>(
|
auto view = std::make_shared<InventoryView>(
|
||||||
content,
|
content,
|
||||||
frontend,
|
frontend,
|
||||||
interaction.get(),
|
interaction.get(),
|
||||||
inventory,
|
inventory,
|
||||||
std::move(layout)
|
std::move(layout)
|
||||||
);
|
);
|
||||||
view->build();
|
view->build();
|
||||||
view->setInteractive(false);
|
view->setInteractive(false);
|
||||||
@@ -252,13 +234,9 @@ std::shared_ptr<InventoryView> HudRenderer::createInventory() {
|
|||||||
SlotLayout slotLayout(glm::vec2(), true, false, [=](ItemStack& stack) {
|
SlotLayout slotLayout(glm::vec2(), true, false, [=](ItemStack& stack) {
|
||||||
stack.clear();
|
stack.clear();
|
||||||
}, nullptr);
|
}, nullptr);
|
||||||
|
|
||||||
int columns = 10;
|
|
||||||
int rows = ceildiv(inventory->size(), columns);
|
|
||||||
int padding = 4;
|
|
||||||
|
|
||||||
InventoryBuilder builder;
|
InventoryBuilder builder;
|
||||||
builder.addGrid(columns, rows, glm::vec2(), padding, slotLayout);
|
builder.addGrid(10, inventory->size(), glm::vec2(), 4, true, slotLayout);
|
||||||
auto layout = builder.build();
|
auto layout = builder.build();
|
||||||
|
|
||||||
auto view = std::make_shared<InventoryView>(
|
auto view = std::make_shared<InventoryView>(
|
||||||
@@ -277,13 +255,13 @@ HudRenderer::HudRenderer(Engine* engine, LevelFrontend* frontend)
|
|||||||
gui(engine->getGUI()),
|
gui(engine->getGUI()),
|
||||||
frontend(frontend)
|
frontend(frontend)
|
||||||
{
|
{
|
||||||
auto menu = gui->getMenu();
|
auto menu = gui->getMenu();
|
||||||
|
|
||||||
interaction = std::make_unique<InventoryInteraction>();
|
interaction = std::make_unique<InventoryInteraction>();
|
||||||
grabbedItemView = std::make_shared<SlotView>(
|
grabbedItemView = std::make_shared<SlotView>(
|
||||||
interaction->getGrabbedItem(),
|
interaction->getGrabbedItem(),
|
||||||
frontend,
|
frontend,
|
||||||
interaction.get(),
|
interaction.get(),
|
||||||
frontend->getLevel()->content,
|
frontend->getLevel()->content,
|
||||||
SlotLayout(glm::vec2(), false, false, nullptr, nullptr)
|
SlotLayout(glm::vec2(), false, false, nullptr, nullptr)
|
||||||
);
|
);
|
||||||
@@ -301,14 +279,14 @@ HudRenderer::HudRenderer(Engine* engine, LevelFrontend* frontend)
|
|||||||
hotbarView = createHotbar();
|
hotbarView = createHotbar();
|
||||||
inventoryView = createInventory();
|
inventoryView = createInventory();
|
||||||
|
|
||||||
uicamera = new Camera(vec3(), 1);
|
uicamera = new Camera(vec3(), 1);
|
||||||
uicamera->perspective = false;
|
uicamera->perspective = false;
|
||||||
uicamera->flipped = true;
|
uicamera->flipped = true;
|
||||||
|
|
||||||
createDebugPanel(engine);
|
createDebugPanel(engine);
|
||||||
menu->reset();
|
menu->reset();
|
||||||
|
|
||||||
gui->add(debugPanel);
|
gui->add(debugPanel);
|
||||||
gui->add(contentAccessPanel);
|
gui->add(contentAccessPanel);
|
||||||
gui->add(hotbarView);
|
gui->add(hotbarView);
|
||||||
gui->add(inventoryView);
|
gui->add(inventoryView);
|
||||||
@@ -320,48 +298,48 @@ HudRenderer::~HudRenderer() {
|
|||||||
gui->remove(inventoryView);
|
gui->remove(inventoryView);
|
||||||
gui->remove(hotbarView);
|
gui->remove(hotbarView);
|
||||||
gui->remove(contentAccessPanel);
|
gui->remove(contentAccessPanel);
|
||||||
gui->remove(debugPanel);
|
gui->remove(debugPanel);
|
||||||
delete uicamera;
|
delete uicamera;
|
||||||
}
|
}
|
||||||
|
|
||||||
void HudRenderer::drawDebug(int fps){
|
void HudRenderer::drawDebug(int fps){
|
||||||
this->fps = fps;
|
this->fps = fps;
|
||||||
fpsMin = min(fps, fpsMin);
|
fpsMin = min(fps, fpsMin);
|
||||||
fpsMax = max(fps, fpsMax);
|
fpsMax = max(fps, fpsMax);
|
||||||
}
|
}
|
||||||
|
|
||||||
void HudRenderer::update(bool visible) {
|
void HudRenderer::update(bool visible) {
|
||||||
auto level = frontend->getLevel();
|
auto level = frontend->getLevel();
|
||||||
auto player = level->player;
|
auto player = level->player;
|
||||||
auto menu = gui->getMenu();
|
auto menu = gui->getMenu();
|
||||||
|
|
||||||
menu->visible(pause);
|
menu->visible(pause);
|
||||||
|
|
||||||
if (!visible && inventoryOpen) {
|
if (!visible && inventoryOpen) {
|
||||||
inventoryOpen = false;
|
inventoryOpen = false;
|
||||||
}
|
}
|
||||||
if (pause && menu->current().panel == nullptr) {
|
if (pause && menu->current().panel == nullptr) {
|
||||||
pause = false;
|
pause = false;
|
||||||
}
|
}
|
||||||
if (Events::jpressed(keycode::ESCAPE) && !gui->isFocusCaught()) {
|
if (Events::jpressed(keycode::ESCAPE) && !gui->isFocusCaught()) {
|
||||||
if (pause) {
|
if (pause) {
|
||||||
pause = false;
|
pause = false;
|
||||||
menu->reset();
|
menu->reset();
|
||||||
} else if (inventoryOpen) {
|
} else if (inventoryOpen) {
|
||||||
inventoryOpen = false;
|
inventoryOpen = false;
|
||||||
} else {
|
} else {
|
||||||
pause = true;
|
pause = true;
|
||||||
menu->set("pause");
|
menu->set("pause");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (visible && Events::jactive(BIND_HUD_INVENTORY)) {
|
if (visible && Events::jactive(BIND_HUD_INVENTORY)) {
|
||||||
if (!pause) {
|
if (!pause) {
|
||||||
inventoryOpen = !inventoryOpen;
|
inventoryOpen = !inventoryOpen;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ((pause || inventoryOpen) == Events::_cursor_locked) {
|
if ((pause || inventoryOpen) == Events::_cursor_locked) {
|
||||||
Events::toggleCursor();
|
Events::toggleCursor();
|
||||||
}
|
}
|
||||||
|
|
||||||
glm::vec2 invSize = contentAccessPanel->size();
|
glm::vec2 invSize = contentAccessPanel->size();
|
||||||
inventoryView->visible(inventoryOpen);
|
inventoryView->visible(inventoryOpen);
|
||||||
@@ -387,10 +365,10 @@ void HudRenderer::update(bool visible) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void HudRenderer::drawOverlay(const GfxContext& ctx) {
|
void HudRenderer::drawOverlay(const GfxContext& ctx) {
|
||||||
if (pause) {
|
if (pause) {
|
||||||
Shader* uishader = assets->getShader("ui");
|
Shader* uishader = assets->getShader("ui");
|
||||||
uishader->use();
|
uishader->use();
|
||||||
uishader->uniformMatrix("u_projview", uicamera->getProjView());
|
uishader->uniformMatrix("u_projview", uicamera->getProjView());
|
||||||
|
|
||||||
const Viewport& viewport = ctx.getViewport();
|
const Viewport& viewport = ctx.getViewport();
|
||||||
const uint width = viewport.getWidth();
|
const uint width = viewport.getWidth();
|
||||||
@@ -398,48 +376,48 @@ void HudRenderer::drawOverlay(const GfxContext& ctx) {
|
|||||||
auto batch = ctx.getBatch2D();
|
auto batch = ctx.getBatch2D();
|
||||||
batch->begin();
|
batch->begin();
|
||||||
|
|
||||||
// draw fullscreen dark overlay
|
// draw fullscreen dark overlay
|
||||||
batch->texture(nullptr);
|
batch->texture(nullptr);
|
||||||
batch->color = vec4(0.0f, 0.0f, 0.0f, 0.5f);
|
batch->color = vec4(0.0f, 0.0f, 0.0f, 0.5f);
|
||||||
batch->rect(0, 0, width, height);
|
batch->rect(0, 0, width, height);
|
||||||
batch->render();
|
batch->render();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void HudRenderer::draw(const GfxContext& ctx){
|
void HudRenderer::draw(const GfxContext& ctx){
|
||||||
auto level = frontend->getLevel();
|
auto level = frontend->getLevel();
|
||||||
|
|
||||||
const Viewport& viewport = ctx.getViewport();
|
const Viewport& viewport = ctx.getViewport();
|
||||||
const uint width = viewport.getWidth();
|
const uint width = viewport.getWidth();
|
||||||
const uint height = viewport.getHeight();
|
const uint height = viewport.getHeight();
|
||||||
|
|
||||||
Player* player = level->player;
|
Player* player = level->player;
|
||||||
debugPanel->visible(player->debug);
|
debugPanel->visible(player->debug);
|
||||||
|
|
||||||
uicamera->setFov(height);
|
uicamera->setFov(height);
|
||||||
|
|
||||||
auto batch = ctx.getBatch2D();
|
auto batch = ctx.getBatch2D();
|
||||||
batch->begin();
|
batch->begin();
|
||||||
|
|
||||||
Shader* uishader = assets->getShader("ui");
|
Shader* uishader = assets->getShader("ui");
|
||||||
uishader->use();
|
uishader->use();
|
||||||
uishader->uniformMatrix("u_projview", uicamera->getProjView());
|
uishader->uniformMatrix("u_projview", uicamera->getProjView());
|
||||||
|
|
||||||
// Draw selected item preview
|
// Draw selected item preview
|
||||||
hotbarView->setCoord(glm::vec2(width/2, height-65));
|
hotbarView->setCoord(glm::vec2(width/2, height-65));
|
||||||
hotbarView->setSelected(player->getChosenSlot());
|
hotbarView->setSelected(player->getChosenSlot());
|
||||||
|
|
||||||
// Crosshair
|
// Crosshair
|
||||||
batch->begin();
|
batch->begin();
|
||||||
if (!pause && Events::_cursor_locked && !level->player->debug) {
|
if (!pause && Events::_cursor_locked && !level->player->debug) {
|
||||||
batch->lineWidth(2);
|
batch->lineWidth(2);
|
||||||
batch->line(width/2, height/2-6, width/2, height/2+6, 0.2f, 0.2f, 0.2f, 1.0f);
|
batch->line(width/2, height/2-6, width/2, height/2+6, 0.2f, 0.2f, 0.2f, 1.0f);
|
||||||
batch->line(width/2+6, height/2, width/2-6, height/2, 0.2f, 0.2f, 0.2f, 1.0f);
|
batch->line(width/2+6, height/2, width/2-6, height/2, 0.2f, 0.2f, 0.2f, 1.0f);
|
||||||
batch->line(width/2-5, height/2-5, width/2+5, height/2+5, 0.9f, 0.9f, 0.9f, 1.0f);
|
batch->line(width/2-5, height/2-5, width/2+5, height/2+5, 0.9f, 0.9f, 0.9f, 1.0f);
|
||||||
batch->line(width/2+5, height/2-5, width/2-5, height/2+5, 0.9f, 0.9f, 0.9f, 1.0f);
|
batch->line(width/2+5, height/2-5, width/2-5, height/2+5, 0.9f, 0.9f, 0.9f, 1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (inventoryOpen) {
|
if (inventoryOpen) {
|
||||||
auto caLayout = contentAccess->getLayout();
|
auto caLayout = contentAccess->getLayout();
|
||||||
auto invLayout = inventoryView->getLayout();
|
auto invLayout = inventoryView->getLayout();
|
||||||
float caWidth = caLayout->getSize().x;
|
float caWidth = caLayout->getSize().x;
|
||||||
@@ -452,15 +430,15 @@ void HudRenderer::draw(const GfxContext& ctx){
|
|||||||
height/2-invSize.y/2
|
height/2-invSize.y/2
|
||||||
));
|
));
|
||||||
contentAccessPanel->setCoord(glm::vec2(width-caWidth, 0));
|
contentAccessPanel->setCoord(glm::vec2(width-caWidth, 0));
|
||||||
}
|
}
|
||||||
grabbedItemView->setCoord(glm::vec2(Events::cursor));
|
grabbedItemView->setCoord(glm::vec2(Events::cursor));
|
||||||
batch->render();
|
batch->render();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool HudRenderer::isInventoryOpen() const {
|
bool HudRenderer::isInventoryOpen() const {
|
||||||
return inventoryOpen;
|
return inventoryOpen;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool HudRenderer::isPause() const {
|
bool HudRenderer::isPause() const {
|
||||||
return pause;
|
return pause;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -3,13 +3,15 @@
|
|||||||
#include <GL/glew.h>
|
#include <GL/glew.h>
|
||||||
#include "Texture.h"
|
#include "Texture.h"
|
||||||
|
|
||||||
Framebuffer::Framebuffer(uint width, uint height) : width(width), height(height) {
|
Framebuffer::Framebuffer(uint width, uint height, bool alpha)
|
||||||
|
: width(width), height(height) {
|
||||||
glGenFramebuffers(1, &fbo);
|
glGenFramebuffers(1, &fbo);
|
||||||
bind();
|
bind();
|
||||||
GLuint tex;
|
GLuint tex;
|
||||||
glGenTextures(1, &tex);
|
glGenTextures(1, &tex);
|
||||||
glBindTexture(GL_TEXTURE_2D, tex);
|
glBindTexture(GL_TEXTURE_2D, tex);
|
||||||
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, width, height, 0, GL_RGB, GL_UNSIGNED_BYTE, nullptr);
|
GLuint format = alpha ? GL_RGBA : GL_RGB;
|
||||||
|
glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0, format, GL_UNSIGNED_BYTE, nullptr);
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ public:
|
|||||||
uint width;
|
uint width;
|
||||||
uint height;
|
uint height;
|
||||||
Texture* texture;
|
Texture* texture;
|
||||||
Framebuffer(uint width, uint height);
|
Framebuffer(uint width, uint height, bool alpha=false);
|
||||||
~Framebuffer();
|
~Framebuffer();
|
||||||
|
|
||||||
void bind();
|
void bind();
|
||||||
|
|||||||
+39
-30
@@ -1,52 +1,61 @@
|
|||||||
#include "Texture.h"
|
#include "Texture.h"
|
||||||
#include <GL/glew.h>
|
#include <GL/glew.h>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
#include <memory>
|
||||||
|
|
||||||
#include "ImageData.h"
|
#include "ImageData.h"
|
||||||
|
|
||||||
Texture::Texture(uint id, int width, int height)
|
Texture::Texture(uint id, int width, int height)
|
||||||
: id(id), width(width), height(height) {
|
: id(id), width(width), height(height) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Texture::Texture(ubyte* data, int width, int height, uint format)
|
Texture::Texture(ubyte* data, int width, int height, uint format)
|
||||||
: width(width), height(height) {
|
: width(width), height(height) {
|
||||||
glGenTextures(1, &id);
|
glGenTextures(1, &id);
|
||||||
glBindTexture(GL_TEXTURE_2D, id);
|
glBindTexture(GL_TEXTURE_2D, id);
|
||||||
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
|
glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
|
||||||
glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0,
|
glTexImage2D(GL_TEXTURE_2D, 0, format, width, height, 0,
|
||||||
format, GL_UNSIGNED_BYTE, (GLvoid *) data);
|
format, GL_UNSIGNED_BYTE, (GLvoid *) data);
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST);
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_NEAREST);
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
||||||
glGenerateMipmap(GL_TEXTURE_2D);
|
glGenerateMipmap(GL_TEXTURE_2D);
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 2);
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 2);
|
||||||
glBindTexture(GL_TEXTURE_2D, 0);
|
glBindTexture(GL_TEXTURE_2D, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
Texture::~Texture() {
|
Texture::~Texture() {
|
||||||
glDeleteTextures(1, &id);
|
glDeleteTextures(1, &id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Texture::bind(){
|
void Texture::bind(){
|
||||||
glBindTexture(GL_TEXTURE_2D, id);
|
glBindTexture(GL_TEXTURE_2D, id);
|
||||||
}
|
}
|
||||||
|
|
||||||
void Texture::reload(ubyte* data){
|
void Texture::reload(ubyte* data){
|
||||||
glBindTexture(GL_TEXTURE_2D, id);
|
glBindTexture(GL_TEXTURE_2D, id);
|
||||||
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0,
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0,
|
||||||
GL_RGBA, GL_UNSIGNED_BYTE, (GLvoid *) data);
|
GL_RGBA, GL_UNSIGNED_BYTE, (GLvoid *) data);
|
||||||
glBindTexture(GL_TEXTURE_2D, 0);
|
glBindTexture(GL_TEXTURE_2D, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
ImageData* Texture::readData() {
|
||||||
|
std::unique_ptr<ubyte[]> data (new ubyte[width * height * 4]);
|
||||||
|
glBindTexture(GL_TEXTURE_2D, id);
|
||||||
|
glGetTexImage(GL_TEXTURE_2D, 0, GL_RGBA, GL_UNSIGNED_BYTE, data.get());
|
||||||
|
glBindTexture(GL_TEXTURE_2D, 0);
|
||||||
|
return new ImageData(ImageFormat::rgba8888, width, height, data.release());
|
||||||
}
|
}
|
||||||
|
|
||||||
Texture* Texture::from(const ImageData* image) {
|
Texture* Texture::from(const ImageData* image) {
|
||||||
uint width = image->getWidth();
|
uint width = image->getWidth();
|
||||||
uint height = image->getHeight();
|
uint height = image->getHeight();
|
||||||
uint format;
|
uint format;
|
||||||
const void* data = image->getData();
|
const void* data = image->getData();
|
||||||
switch (image->getFormat()) {
|
switch (image->getFormat()) {
|
||||||
case ImageFormat::rgb888: format = GL_RGB; break;
|
case ImageFormat::rgb888: format = GL_RGB; break;
|
||||||
case ImageFormat::rgba8888: format = GL_RGBA; break;
|
case ImageFormat::rgba8888: format = GL_RGBA; break;
|
||||||
default:
|
default:
|
||||||
throw std::runtime_error("unsupported image data format");
|
throw std::runtime_error("unsupported image data format");
|
||||||
}
|
}
|
||||||
return new Texture((ubyte*)data, width, height, format);
|
return new Texture((ubyte*)data, width, height, format);
|
||||||
}
|
}
|
||||||
|
|||||||
+11
-9
@@ -8,17 +8,19 @@ class ImageData;
|
|||||||
|
|
||||||
class Texture {
|
class Texture {
|
||||||
public:
|
public:
|
||||||
uint id;
|
uint id;
|
||||||
int width;
|
int width;
|
||||||
int height;
|
int height;
|
||||||
Texture(uint id, int width, int height);
|
Texture(uint id, int width, int height);
|
||||||
Texture(ubyte* data, int width, int height, uint format);
|
Texture(ubyte* data, int width, int height, uint format);
|
||||||
~Texture();
|
~Texture();
|
||||||
|
|
||||||
void bind();
|
void bind();
|
||||||
void reload(ubyte* data);
|
void reload(ubyte* data);
|
||||||
|
|
||||||
static Texture* from(const ImageData* image);
|
ImageData* readData();
|
||||||
|
|
||||||
|
static Texture* from(const ImageData* image);
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* GRAPHICS_TEXTURE_H_ */
|
#endif /* GRAPHICS_TEXTURE_H_ */
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ Inventory::Inventory(size_t size) : slots(size) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ItemStack& Inventory::getSlot(size_t index) {
|
ItemStack& Inventory::getSlot(size_t index) {
|
||||||
return slots[index];
|
return slots.at(index);
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t Inventory::findEmptySlot(size_t begin, size_t end) const {
|
size_t Inventory::findEmptySlot(size_t begin, size_t end) const {
|
||||||
|
|||||||
@@ -11,6 +11,7 @@
|
|||||||
|
|
||||||
class ContentIndices;
|
class ContentIndices;
|
||||||
|
|
||||||
|
// TODO: items indices fix
|
||||||
class Inventory {
|
class Inventory {
|
||||||
std::vector<ItemStack> slots;
|
std::vector<ItemStack> slots;
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -102,7 +102,11 @@ bool ChunksController::loadVisible(){
|
|||||||
chunks->putChunk(chunk);
|
chunks->putChunk(chunk);
|
||||||
|
|
||||||
if (!chunk->isLoaded()) {
|
if (!chunk->isLoaded()) {
|
||||||
generator->generate(chunk->voxels, chunk->x, chunk->z, level->world->seed);
|
generator->generate(
|
||||||
|
chunk->voxels,
|
||||||
|
chunk->x, chunk->z,
|
||||||
|
level->world->getSeed()
|
||||||
|
);
|
||||||
chunk->setUnsaved(true);
|
chunk->setUnsaved(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -47,6 +47,11 @@ static const luaL_Reg packlib [] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
/* == world library == */
|
/* == world library == */
|
||||||
|
static int l_world_get_total_time(lua_State* L) {
|
||||||
|
lua_pushnumber(L, scripting::level->world->totalTime);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
static int l_world_get_day_time(lua_State* L) {
|
static int l_world_get_day_time(lua_State* L) {
|
||||||
lua_pushnumber(L, scripting::level->world->daytime);
|
lua_pushnumber(L, scripting::level->world->daytime);
|
||||||
return 1;
|
return 1;
|
||||||
@@ -59,11 +64,12 @@ static int l_world_set_day_time(lua_State* L) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static int l_world_get_seed(lua_State* L) {
|
static int l_world_get_seed(lua_State* L) {
|
||||||
lua_pushinteger(L, scripting::level->world->seed);
|
lua_pushinteger(L, scripting::level->world->getSeed());
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
static const luaL_Reg worldlib [] = {
|
static const luaL_Reg worldlib [] = {
|
||||||
|
{"get_total_time", l_world_get_total_time},
|
||||||
{"get_day_time", l_world_get_day_time},
|
{"get_day_time", l_world_get_day_time},
|
||||||
{"set_day_time", l_world_set_day_time},
|
{"set_day_time", l_world_set_day_time},
|
||||||
{"get_seed", l_world_get_seed},
|
{"get_seed", l_world_get_seed},
|
||||||
@@ -261,14 +267,14 @@ static int l_set_block_user_bits(lua_State* L) {
|
|||||||
int offset = lua_tointeger(L, 4) + VOXEL_USER_BITS_OFFSET;
|
int offset = lua_tointeger(L, 4) + VOXEL_USER_BITS_OFFSET;
|
||||||
int bits = lua_tointeger(L, 5);
|
int bits = lua_tointeger(L, 5);
|
||||||
|
|
||||||
uint mask = (1 << bits) - 1;
|
uint mask = ((1 << bits) - 1) << offset;
|
||||||
int value = lua_tointeger(L, 6) & mask;
|
int value = (lua_tointeger(L, 6) << offset) & mask;
|
||||||
|
|
||||||
voxel* vox = scripting::level->chunks->get(x, y, z);
|
voxel* vox = scripting::level->chunks->get(x, y, z);
|
||||||
if (vox == nullptr) {
|
if (vox == nullptr) {
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
vox->states = (vox->states & (~mask)) | (value << offset);
|
vox->states = (vox->states & (~mask)) | value;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -26,6 +26,10 @@ Level* scripting::level = nullptr;
|
|||||||
const Content* scripting::content = nullptr;
|
const Content* scripting::content = nullptr;
|
||||||
BlocksController* scripting::blocks = nullptr;
|
BlocksController* scripting::blocks = nullptr;
|
||||||
|
|
||||||
|
static void handleError(lua_State* L) {
|
||||||
|
std::cerr << "lua error: " << lua_tostring(L,-1) << std::endl;
|
||||||
|
}
|
||||||
|
|
||||||
inline int lua_pushivec3(lua_State* L, int x, int y, int z) {
|
inline int lua_pushivec3(lua_State* L, int x, int y, int z) {
|
||||||
lua_pushinteger(L, x);
|
lua_pushinteger(L, x);
|
||||||
lua_pushinteger(L, y);
|
lua_pushinteger(L, y);
|
||||||
@@ -51,13 +55,24 @@ bool rename_global(lua_State* L, const char* src, const char* dst) {
|
|||||||
|
|
||||||
int call_func(lua_State* L, int argc, const std::string& name) {
|
int call_func(lua_State* L, int argc, const std::string& name) {
|
||||||
if (lua_pcall(L, argc, LUA_MULTRET, 0)) {
|
if (lua_pcall(L, argc, LUA_MULTRET, 0)) {
|
||||||
std::cerr << "Lua error in " << name << ": ";
|
handleError(L);
|
||||||
std::cerr << lua_tostring(L,-1) << std::endl;
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void load_script(fs::path name) {
|
||||||
|
auto paths = scripting::engine->getPaths();
|
||||||
|
fs::path file = paths->getResources()/fs::path("scripts")/name;
|
||||||
|
|
||||||
|
std::string src = files::read_string(file);
|
||||||
|
if (luaL_loadbuffer(L, src.c_str(), src.length(), file.u8string().c_str())) {
|
||||||
|
handleError(L);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
call_func(L, 0, file.u8string());
|
||||||
|
}
|
||||||
|
|
||||||
void scripting::initialize(Engine* engine) {
|
void scripting::initialize(Engine* engine) {
|
||||||
scripting::engine = engine;
|
scripting::engine = engine;
|
||||||
|
|
||||||
@@ -81,17 +96,15 @@ void scripting::initialize(Engine* engine) {
|
|||||||
# endif // LUAJIT_VERSION
|
# endif // LUAJIT_VERSION
|
||||||
|
|
||||||
apilua::create_funcs(L);
|
apilua::create_funcs(L);
|
||||||
|
|
||||||
|
load_script(fs::path("stdlib.lua"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void scripting::on_world_load(Level* level, BlocksController* blocks) {
|
void scripting::on_world_load(Level* level, BlocksController* blocks) {
|
||||||
scripting::level = level;
|
scripting::level = level;
|
||||||
scripting::content = level->content;
|
scripting::content = level->content;
|
||||||
scripting::blocks = blocks;
|
scripting::blocks = blocks;
|
||||||
auto paths = scripting::engine->getPaths();
|
load_script("world.lua");
|
||||||
fs::path file = paths->getResources()/fs::path("scripts/world.lua");
|
|
||||||
std::string src = files::read_string(file);
|
|
||||||
luaL_loadbuffer(L, src.c_str(), src.length(), file.string().c_str());
|
|
||||||
call_func(L, 0, "<script>");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void scripting::on_world_quit() {
|
void scripting::on_world_quit() {
|
||||||
@@ -165,7 +178,7 @@ void scripting::load_block_script(std::string prefix, fs::path file, block_funcs
|
|||||||
std::string src = files::read_string(file);
|
std::string src = files::read_string(file);
|
||||||
std::cout << "loading script " << file.u8string() << std::endl;
|
std::cout << "loading script " << file.u8string() << std::endl;
|
||||||
if (luaL_loadbuffer(L, src.c_str(), src.size(), file.string().c_str())) {
|
if (luaL_loadbuffer(L, src.c_str(), src.size(), file.string().c_str())) {
|
||||||
std::cerr << "Lua error:" << lua_tostring(L,-1) << std::endl;
|
handleError(L);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
call_func(L, 0, "<script>");
|
call_func(L, 0, "<script>");
|
||||||
@@ -181,7 +194,7 @@ void scripting::load_item_script(std::string prefix, fs::path file, item_funcs_s
|
|||||||
std::string src = files::read_string(file);
|
std::string src = files::read_string(file);
|
||||||
std::cout << "loading script " << file.u8string() << std::endl;
|
std::cout << "loading script " << file.u8string() << std::endl;
|
||||||
if (luaL_loadbuffer(L, src.c_str(), src.size(), file.string().c_str())) {
|
if (luaL_loadbuffer(L, src.c_str(), src.size(), file.string().c_str())) {
|
||||||
std::cerr << "Lua error:" << lua_tostring(L,-1) << std::endl;
|
handleError(L);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
call_func(L, 0, "<script>");
|
call_func(L, 0, "<script>");
|
||||||
|
|||||||
@@ -179,6 +179,10 @@ void Window::setBgColor(glm::vec3 color) {
|
|||||||
glClearColor(color.r, color.g, color.b, 1.0f);
|
glClearColor(color.r, color.g, color.b, 1.0f);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Window::setBgColor(glm::vec4 color) {
|
||||||
|
glClearColor(color.r, color.g, color.b, color.a);
|
||||||
|
}
|
||||||
|
|
||||||
void Window::viewport(int x, int y, int width, int height){
|
void Window::viewport(int x, int y, int width, int height){
|
||||||
glViewport(x, y, width, height);
|
glViewport(x, y, width, height);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ public:
|
|||||||
static void clear();
|
static void clear();
|
||||||
static void clearDepth();
|
static void clearDepth();
|
||||||
static void setBgColor(glm::vec3 color);
|
static void setBgColor(glm::vec3 color);
|
||||||
|
static void setBgColor(glm::vec4 color);
|
||||||
static double time();
|
static double time();
|
||||||
static const char* getClipboardText();
|
static const char* getClipboardText();
|
||||||
static DisplaySettings* getSettings();
|
static DisplaySettings* getSettings();
|
||||||
|
|||||||
+80
-66
@@ -13,101 +13,115 @@
|
|||||||
#include "../objects/Player.h"
|
#include "../objects/Player.h"
|
||||||
#include "../window/Camera.h"
|
#include "../window/Camera.h"
|
||||||
|
|
||||||
using glm::vec3;
|
world_load_error::world_load_error(std::string message)
|
||||||
using std::unique_ptr;
|
: std::runtime_error(message) {
|
||||||
using std::shared_ptr;
|
|
||||||
using std::string;
|
|
||||||
using std::filesystem::path;
|
|
||||||
namespace fs = std::filesystem;
|
|
||||||
|
|
||||||
world_load_error::world_load_error(string message) : std::runtime_error(message) {
|
|
||||||
}
|
}
|
||||||
|
|
||||||
World::World(string name,
|
World::World(
|
||||||
path directory,
|
std::string name,
|
||||||
uint64_t seed,
|
fs::path directory,
|
||||||
EngineSettings& settings,
|
uint64_t seed,
|
||||||
const Content* content,
|
EngineSettings& settings,
|
||||||
const std::vector<ContentPack> packs)
|
const Content* content,
|
||||||
: settings(settings),
|
const std::vector<ContentPack> packs)
|
||||||
content(content),
|
: name(name),
|
||||||
packs(packs),
|
seed(seed),
|
||||||
name(name),
|
settings(settings),
|
||||||
seed(seed) {
|
content(content),
|
||||||
wfile = new WorldFiles(directory, settings.debug);
|
packs(packs) {
|
||||||
|
wfile = new WorldFiles(directory, settings.debug);
|
||||||
}
|
}
|
||||||
|
|
||||||
World::~World(){
|
World::~World(){
|
||||||
delete wfile;
|
delete wfile;
|
||||||
}
|
}
|
||||||
|
|
||||||
void World::updateTimers(float delta) {
|
void World::updateTimers(float delta) {
|
||||||
daytime += delta * daytimeSpeed;
|
daytime += delta * daytimeSpeed;
|
||||||
daytime = fmod(daytime, 1.0f);
|
daytime = fmod(daytime, 1.0f);
|
||||||
|
totalTime += delta;
|
||||||
}
|
}
|
||||||
|
|
||||||
void World::write(Level* level) {
|
void World::write(Level* level) {
|
||||||
const Content* content = level->content;
|
const Content* content = level->content;
|
||||||
|
|
||||||
Chunks* chunks = level->chunks;
|
Chunks* chunks = level->chunks;
|
||||||
|
|
||||||
for (size_t i = 0; i < chunks->volume; i++) {
|
for (size_t i = 0; i < chunks->volume; i++) {
|
||||||
shared_ptr<Chunk> chunk = chunks->chunks[i];
|
auto chunk = chunks->chunks[i];
|
||||||
if (chunk == nullptr || !chunk->isLighted())
|
if (chunk == nullptr || !chunk->isLighted())
|
||||||
continue;
|
continue;
|
||||||
bool lightsUnsaved = !chunk->isLoadedLights() &&
|
bool lightsUnsaved = !chunk->isLoadedLights() &&
|
||||||
settings.debug.doWriteLights;
|
settings.debug.doWriteLights;
|
||||||
if (!chunk->isUnsaved() && !lightsUnsaved)
|
if (!chunk->isUnsaved() && !lightsUnsaved)
|
||||||
continue;
|
continue;
|
||||||
wfile->put(chunk.get());
|
wfile->put(chunk.get());
|
||||||
}
|
}
|
||||||
|
|
||||||
wfile->write(this, content);
|
wfile->write(this, content);
|
||||||
wfile->writePlayer(level->player);
|
wfile->writePlayer(level->player);
|
||||||
}
|
}
|
||||||
|
|
||||||
const float DEF_PLAYER_Y = 100.0f;
|
const float DEF_PLAYER_Y = 100.0f;
|
||||||
const float DEF_PLAYER_SPEED = 4.0f;
|
const float DEF_PLAYER_SPEED = 4.0f;
|
||||||
|
|
||||||
Level* World::create(string name,
|
Level* World::create(std::string name,
|
||||||
path directory,
|
fs::path directory,
|
||||||
uint64_t seed,
|
uint64_t seed,
|
||||||
EngineSettings& settings,
|
EngineSettings& settings,
|
||||||
const Content* content,
|
const Content* content,
|
||||||
const std::vector<ContentPack>& packs) {
|
const std::vector<ContentPack>& packs) {
|
||||||
World* world = new World(name, directory, seed, settings, content, packs);
|
World* world = new World(name, directory, seed, settings, content, packs);
|
||||||
Player* player = new Player(vec3(0, DEF_PLAYER_Y, 0), DEF_PLAYER_SPEED);
|
Player* player = new Player(glm::vec3(0, DEF_PLAYER_Y, 0), DEF_PLAYER_SPEED);
|
||||||
return new Level(world, content, player, settings);
|
return new Level(world, content, player, settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
ContentLUT* World::checkIndices(const path& directory,
|
ContentLUT* World::checkIndices(const fs::path& directory,
|
||||||
const Content* content) {
|
const Content* content) {
|
||||||
path indicesFile = directory/path("indices.json");
|
fs::path indicesFile = directory/fs::path("indices.json");
|
||||||
if (fs::is_regular_file(indicesFile)) {
|
if (fs::is_regular_file(indicesFile)) {
|
||||||
return ContentLUT::create(indicesFile, content);
|
return ContentLUT::create(indicesFile, content);
|
||||||
}
|
}
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
Level* World::load(path directory,
|
Level* World::load(fs::path directory,
|
||||||
EngineSettings& settings,
|
EngineSettings& settings,
|
||||||
const Content* content,
|
const Content* content,
|
||||||
const std::vector<ContentPack>& packs) {
|
const std::vector<ContentPack>& packs) {
|
||||||
unique_ptr<World> world (new World(".", directory, 0, settings, content, packs));
|
auto world = std::make_unique<World>(
|
||||||
auto& wfile = world->wfile;
|
".", directory, 0, settings, content, packs
|
||||||
|
);
|
||||||
|
auto& wfile = world->wfile;
|
||||||
|
|
||||||
if (!wfile->readWorldInfo(world.get())) {
|
if (!wfile->readWorldInfo(world.get())) {
|
||||||
throw world_load_error("could not to find world.json");
|
throw world_load_error("could not to find world.json");
|
||||||
}
|
}
|
||||||
|
|
||||||
Player* player = new Player(vec3(0, DEF_PLAYER_Y, 0), DEF_PLAYER_SPEED);
|
Player* player = new Player(glm::vec3(0, DEF_PLAYER_Y, 0), DEF_PLAYER_SPEED);
|
||||||
Level* level = new Level(world.get(), content, player, settings);
|
Level* level = new Level(world.get(), content, player, settings);
|
||||||
wfile->readPlayer(player);
|
wfile->readPlayer(player);
|
||||||
|
|
||||||
world.release();
|
world.release();
|
||||||
return level;
|
return level;
|
||||||
|
}
|
||||||
|
|
||||||
|
void World::setName(const std::string& name) {
|
||||||
|
this->name = name;
|
||||||
|
}
|
||||||
|
|
||||||
|
void World::setSeed(uint64_t seed) {
|
||||||
|
this->seed = seed;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string World::getName() const {
|
||||||
|
return name;
|
||||||
|
}
|
||||||
|
|
||||||
|
uint64_t World::getSeed() const {
|
||||||
|
return seed;
|
||||||
}
|
}
|
||||||
|
|
||||||
const std::vector<ContentPack>& World::getPacks() const {
|
const std::vector<ContentPack>& World::getPacks() const {
|
||||||
return packs;
|
return packs;
|
||||||
}
|
}
|
||||||
|
|||||||
+44
-36
@@ -18,53 +18,61 @@ class Level;
|
|||||||
class Player;
|
class Player;
|
||||||
class ContentLUT;
|
class ContentLUT;
|
||||||
|
|
||||||
|
namespace fs = std::filesystem;
|
||||||
|
|
||||||
class world_load_error : public std::runtime_error {
|
class world_load_error : public std::runtime_error {
|
||||||
public:
|
public:
|
||||||
world_load_error(std::string message);
|
world_load_error(std::string message);
|
||||||
};
|
};
|
||||||
|
|
||||||
class World {
|
class World {
|
||||||
EngineSettings& settings;
|
std::string name;
|
||||||
const Content* const content;
|
uint64_t seed;
|
||||||
std::vector<ContentPack> packs;
|
EngineSettings& settings;
|
||||||
|
const Content* const content;
|
||||||
|
std::vector<ContentPack> packs;
|
||||||
public:
|
public:
|
||||||
std::string name;
|
WorldFiles* wfile;
|
||||||
WorldFiles* wfile;
|
|
||||||
uint64_t seed;
|
|
||||||
|
|
||||||
/* Day/night loop timer in range 0..1
|
/* Day/night loop timer in range 0..1
|
||||||
0.0 - is midnight
|
0.0 - is midnight
|
||||||
0.5 - is noon
|
0.5 - is noon
|
||||||
*/
|
*/
|
||||||
float daytime = timeutil::time_value(10, 00, 00);
|
float daytime = timeutil::time_value(10, 00, 00);
|
||||||
float daytimeSpeed = 1.0f/60.0f/24.0f;
|
float daytimeSpeed = 1.0f/60.0f/24.0f;
|
||||||
|
double totalTime = 0.0;
|
||||||
|
|
||||||
World(std::string name,
|
World(std::string name,
|
||||||
std::filesystem::path directory,
|
fs::path directory,
|
||||||
uint64_t seed,
|
uint64_t seed,
|
||||||
EngineSettings& settings,
|
EngineSettings& settings,
|
||||||
const Content* content,
|
const Content* content,
|
||||||
std::vector<ContentPack> packs);
|
std::vector<ContentPack> packs);
|
||||||
~World();
|
~World();
|
||||||
|
|
||||||
void updateTimers(float delta);
|
void updateTimers(float delta);
|
||||||
void write(Level* level);
|
void write(Level* level);
|
||||||
|
|
||||||
static ContentLUT* checkIndices(const std::filesystem::path& directory,
|
static ContentLUT* checkIndices(const fs::path& directory,
|
||||||
const Content* content);
|
const Content* content);
|
||||||
|
|
||||||
static Level* create(std::string name,
|
static Level* create(std::string name,
|
||||||
std::filesystem::path directory,
|
fs::path directory,
|
||||||
uint64_t seed,
|
uint64_t seed,
|
||||||
EngineSettings& settings,
|
EngineSettings& settings,
|
||||||
const Content* content,
|
const Content* content,
|
||||||
const std::vector<ContentPack>& packs);
|
const std::vector<ContentPack>& packs);
|
||||||
static Level* load(std::filesystem::path directory,
|
static Level* load(fs::path directory,
|
||||||
EngineSettings& settings,
|
EngineSettings& settings,
|
||||||
const Content* content,
|
const Content* content,
|
||||||
const std::vector<ContentPack>& packs);
|
const std::vector<ContentPack>& packs);
|
||||||
|
|
||||||
const std::vector<ContentPack>& getPacks() const;
|
void setName(const std::string& name);
|
||||||
|
void setSeed(uint64_t seed);
|
||||||
|
|
||||||
|
std::string getName() const;
|
||||||
|
uint64_t getSeed() const;
|
||||||
|
const std::vector<ContentPack>& getPacks() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif /* WORLD_WORLD_H_ */
|
#endif /* WORLD_WORLD_H_ */
|
||||||
|
|||||||
Reference in New Issue
Block a user