blob: 23b2ba6d0dd2768057e2a00b1a63e341bc59d937 (
plain) (
tree)
|
|
#pragma once
#include <experimental/filesystem>
#include <map>
#include <GL/glew.h>
#include <glm/vec4.hpp>
#include <nlohmann/json.hpp>
#include "../world/Block.hpp"
#include "../graphics/Texture.hpp"
struct TextureCoord{
unsigned int x,y,w,h;
};
class AssetManager {
Texture *textureAtlas;
std::map<std::string,Block> assetIds;
std::map<std::string,TextureCoord> assetTextures;
public:
AssetManager();
~AssetManager();
void LoadTextureResources();
TextureCoord GetTextureByAssetName(std::string AssetName);
std::string GetTextureAssetNameByBlockId(unsigned short BlockId, unsigned char BlockSide = 0);
const GLuint GetTextureAtlas();
void LoadIds();
};
|