diff options
author | LaG1924 <lag1924@gmail.com> | 2021-12-28 05:19:31 +0100 |
---|---|---|
committer | LaG1924 <lag1924@gmail.com> | 2021-12-28 05:19:31 +0100 |
commit | e265b7f69f9fa0d81e8d6882fae08a0acbb1c50c (patch) | |
tree | aa1568fe1eb16bf7ec534197044d7f2ec4a6aeb8 /src/AssetManager.cpp | |
parent | Added RegisterLiquid to lua api (diff) | |
download | AltCraft-e265b7f69f9fa0d81e8d6882fae08a0acbb1c50c.tar AltCraft-e265b7f69f9fa0d81e8d6882fae08a0acbb1c50c.tar.gz AltCraft-e265b7f69f9fa0d81e8d6882fae08a0acbb1c50c.tar.bz2 AltCraft-e265b7f69f9fa0d81e8d6882fae08a0acbb1c50c.tar.lz AltCraft-e265b7f69f9fa0d81e8d6882fae08a0acbb1c50c.tar.xz AltCraft-e265b7f69f9fa0d81e8d6882fae08a0acbb1c50c.tar.zst AltCraft-e265b7f69f9fa0d81e8d6882fae08a0acbb1c50c.zip |
Diffstat (limited to '')
-rw-r--r-- | src/AssetManager.cpp | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/AssetManager.cpp b/src/AssetManager.cpp index 3e3f677..09f5209 100644 --- a/src/AssetManager.cpp +++ b/src/AssetManager.cpp @@ -573,6 +573,52 @@ BlockFaces &AssetManager::GetBlockModelByBlockId(BlockId block) { return it->second; BlockInfo *blockInfo = GetBlockInfo(block); + if (blockInfo->blockstate == "@liquid") { + BlockFaces blockFaces; + blockFaces.isBlock = false; + blockFaces.isLiquid = true; + blockFaces.transform = glm::mat4(1.0f); + blockFaces.ambientOcclusion = false; + for (size_t i = 0; i < FaceDirection::none; i++) { + blockFaces.faceDirectionVector[i] = FaceDirectionVector[i]; + } + + const auto& liquidInfo = GetBlockLiquidInfo(BlockId{ block.id, 0 }); + + { + AssetTexture* assetTexture = AssetManager::GetAsset<AssetTexture>("minecraft/textures/" + liquidInfo.flowTexture); + if (!assetTexture) + return errorFaces; + TextureCoord texture = atlas->GetTexture(assetTexture->id); + float textureFrames = assetTexture->frames; + blockFaces.faces.emplace_back(ParsedFace{ + FaceDirection::none, + glm::translate(glm::mat4(1.0f), glm::vec3{0.0f, 1.0f, 0.0f}), + glm::vec4{ texture.x,texture.y,texture.w,texture.h }, + static_cast<float>(texture.layer), + static_cast<float>(assetTexture->frames), + glm::vec3(1.0f), + }); + } + + { + AssetTexture* assetTexture = AssetManager::GetAsset<AssetTexture>("minecraft/textures/" + liquidInfo.stillTexture); + if (!assetTexture) + return errorFaces; + TextureCoord texture = atlas->GetTexture(assetTexture->id); + float textureFrames = assetTexture->frames; + blockFaces.faces.emplace_back(ParsedFace{ + FaceDirection::none, + glm::translate(glm::mat4(1.0f), glm::vec3{0.0f, 1.0f, 0.0f}), + glm::vec4{ texture.x,texture.y,texture.w,texture.h }, + static_cast<float>(texture.layer), + static_cast<float>(assetTexture->frames), + glm::vec3(1.0f), + }); + } + + return blockIdToBlockFaces.insert(std::make_pair(block, blockFaces)).first->second; + } AssetBlockState *asset = GetAsset<AssetBlockState>("/minecraft/blockstates/" + blockInfo->blockstate); if (!asset) return errorFaces; @@ -595,6 +641,7 @@ BlockFaces &AssetManager::GetBlockModelByBlockId(BlockId block) { blockFaces.faces = assetModel->blockModel.parsedFaces; blockFaces.isBlock = assetModel->blockModel.IsBlock; blockFaces.ambientOcclusion = assetModel->blockModel.AmbientOcclusion; + blockFaces.isLiquid = false; glm::mat4 transform = glm::mat4(1.0); if (model.y != 0) { |