Skip to content

Commit

Permalink
Water render fix, minor refactor, README.md update
Browse files Browse the repository at this point in the history
  • Loading branch information
MihailRis committed Nov 5, 2023
1 parent e437cc9 commit 2693547
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 35 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- **LMB** - remove block
- **RMB** - place block
- **F** - toggle flight mode
- **N** - noclip mode
- **Esc** - exit

#### Build with CMake
Expand Down
33 changes: 0 additions & 33 deletions src/coders/png.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ int _png_load(const char* file, int* width, int* height){
return 0;
}
// configure second post-processing framebuffer
unsigned int framebuffer;
glGenFramebuffers(1, &framebuffer);
glBindFramebuffer(GL_FRAMEBUFFER, framebuffer);

glGenTextures(1, &texture);
glBindTexture(GL_TEXTURE_2D, texture);
Expand All @@ -112,37 +109,7 @@ int _png_load(const char* file, int* width, int* height){
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAX_LEVEL, 3);
glGenerateMipmap(GL_TEXTURE_2D);
// glFramebufferTexture2D(GL_READ_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, texture, 0); // we only need a color buffer

glBindTexture(GL_TEXTURE_2D, 0);
glBindFramebuffer(GL_FRAMEBUFFER, 0);

unsigned int framebufferms;
glGenFramebuffers(1, &framebufferms);
glBindFramebuffer(GL_FRAMEBUFFER, framebufferms);
// create a multisampled color attachment texture
glGenTextures(1, &texturems);
glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, texturems);
glTexImage2DMultisample(GL_TEXTURE_2D_MULTISAMPLE, 16, GL_RGBA, t_width, t_height, GL_TRUE);
glFramebufferTexture2D(GL_DRAW_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D_MULTISAMPLE, texturems, 0);
glTexParameteri(GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_WRAP_T, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D_MULTISAMPLE, GL_TEXTURE_MAX_LEVEL, 3);
// glGenerateMipmap(GL_TEXTURE_2D_MULTISAMPLE);


glBindFramebuffer(GL_READ_FRAMEBUFFER, framebuffer);
glBindFramebuffer(GL_DRAW_FRAMEBUFFER, framebufferms);
glBlitFramebuffer(0, 0, t_width, t_height, 0, 0, t_width, t_height, GL_COLOR_BUFFER_BIT, GL_NEAREST);

glBindTexture(GL_TEXTURE_2D_MULTISAMPLE, 0);
glBindFramebuffer(GL_FRAMEBUFFER, 0);





png_destroy_read_struct( &png_ptr, &info_ptr, &end_info );
free( image_data );
Expand Down
2 changes: 1 addition & 1 deletion src/graphics/BlocksRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ bool BlocksRenderer::isOpen(int x, int y, int z, ubyte group) const {
if (id == BLOCK_VOID)
return false;
const Block& block = *Block::blocks[id];
if (block.drawGroup != group) {
if (block.drawGroup != group && block.lightPassing) {
return true;
}
return !id;
Expand Down
3 changes: 2 additions & 1 deletion src/voxel_engine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ class initialize_error : public std::runtime_error {
struct EngineSettings {
int displayWidth;
int displayHeight;
/* Anti-aliasing samples */
int displaySamples;
const char* title;
/* Max milliseconds that engine uses for chunks loading only */
Expand Down Expand Up @@ -177,7 +178,7 @@ Engine::~Engine() {
int main() {
setup_definitions();
try {
Engine engine(EngineSettings{ 1280, 720, 1, "VoxelEngine-Cpp v13", 10 });
Engine engine(EngineSettings{ 1280, 720, 1, "VoxelEngine-Cpp v13", 15 });
engine.mainloop();
}
catch (const initialize_error& err) {
Expand Down

0 comments on commit 2693547

Please sign in to comment.