From 7e62552b8674cea1f14f71042aec3a2fe99a0693 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sat, 3 Apr 2021 19:49:33 +1100 Subject: [PATCH] Added texture loading. --- CMakeLists.txt | 12 ++--------- assets/bruh.png | Bin 0 -> 209 bytes src/engine/engine.c | 24 ++++------------------ src/engine/file/asset.c | 38 +++++++++++++++++++++++++++++++++++ src/engine/file/asset.h | 7 ++++++- src/engine/world/chunklist.c | 17 +++++++++++++--- src/engine/world/chunklist.h | 2 -- 7 files changed, 64 insertions(+), 36 deletions(-) create mode 100644 assets/bruh.png diff --git a/CMakeLists.txt b/CMakeLists.txt index 337f5969..977871c4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,7 +22,7 @@ file(GLOB_RECURSE SOURCE_FILES ${CMAKE_SOURCE_DIR}/src/*.c) file(GLOB_RECURSE HEADER_FILES ${CMAKE_SOURCE_DIR}/src/*.h) file(COPY ${CMAKE_CURRENT_LIST_DIR}/assets DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) -##################################### LIBS ################ ##################### +##################################### LIBS ##################################### include_directories(${CMAKE_SOURCE_DIR}/lib/stb) ################################## EXECUTABLE ################################## @@ -55,12 +55,4 @@ endif() target_link_libraries(${PROJECT_NAME} cglm) find_package(OpenGL REQUIRED) -target_link_libraries(${PROJECT_NAME} OpenGL::GL) - -# OpenMP -# find_package(OpenMP) -# if (OPENMP_FOUND) -# set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}") -# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") -# set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} ${OpenMP_EXE_LINKER_FLAGS}") -# endif() \ No newline at end of file +target_link_libraries(${PROJECT_NAME} OpenGL::GL) \ No newline at end of file diff --git a/assets/bruh.png b/assets/bruh.png new file mode 100644 index 0000000000000000000000000000000000000000..131ebded2f86c3c7d60dcb77912b326f77eabd11 GIT binary patch literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^3LwnF3?v&v(vJfv#^NA%Cx&(BWL^R}Ea{HEjtmSN z`?>!lvI6;R0X`wF|AByk;dRvW$v_d#0*}aI1_r*vAk26?e?kJkG*GFHU`! x_E+pry>xug4Yurender); - // primitiveDraw(primitive, 0, 6); + primitiveDraw(primitive, 0, 6); inputUpdate(engine->input); - return 0; } diff --git a/src/engine/file/asset.c b/src/engine/file/asset.c index bb7842b0..fceba1bb 100644 --- a/src/engine/file/asset.c +++ b/src/engine/file/asset.c @@ -7,6 +7,11 @@ #include "asset.h" +#ifndef STB_IMAGE_IMPLEMENTATION + #define STB_IMAGE_IMPLEMENTATION + #include +#endif + char * assetStringLoad(char *assetName) { // Open a buffer. FILE *fptr = assetBufferOpen(assetName); @@ -88,4 +93,37 @@ shader_t * assetShaderLoad(char *fileVertex, char *fileFragment) { free(fragmentShader); return shader;//shader may be NULL if loading failed, but not our problem. +} + +texture_t * assetTextureLoad(char *fileName) { + FILE *buffer; + texture_t *texture; + int channels, width, height; + pixel_t *data; + stbi_io_callbacks OPENGL_STBI_CALLBACKS; + + buffer = assetBufferOpen(fileName); + if(buffer == NULL) return NULL; + + // Setup the interface for STBI + OPENGL_STBI_CALLBACKS.read = &assetBufferRead; + OPENGL_STBI_CALLBACKS.skip = &assetBufferSkip; + OPENGL_STBI_CALLBACKS.eof = &assetBufferEnd; + + // Buffer the image + channels = 0; + data = (pixel_t *)stbi_load_from_callbacks( + &OPENGL_STBI_CALLBACKS, buffer, + &width, &height, + &channels, STBI_rgb_alpha + ); + + // Close the buffer + assetBufferClose(buffer); + if(data == NULL) return NULL; + + // Turn into a texture. + texture = textureCreate(width, height, data); + stbi_image_free(data); + return texture; } \ No newline at end of file diff --git a/src/engine/file/asset.h b/src/engine/file/asset.h index 520ae468..695c0a60 100644 --- a/src/engine/file/asset.h +++ b/src/engine/file/asset.h @@ -75,4 +75,9 @@ void assetBufferSkip(FILE *buffer, int32_t n); * @param fileFragment The file path of the fragment shader * @return The loaded shader_t instance (From shaderCompile) */ -shader_t * assetShaderLoad(char *fileVertex, char *fileFragment); \ No newline at end of file +shader_t * assetShaderLoad(char *fileVertex, char *fileFragment); + +/** + * Load a texture from a PNG file. + */ +texture_t * assetTextureLoad(char *fileName); \ No newline at end of file diff --git a/src/engine/world/chunklist.c b/src/engine/world/chunklist.c index 536debae..53e1919e 100644 --- a/src/engine/world/chunklist.c +++ b/src/engine/world/chunklist.c @@ -96,18 +96,24 @@ void chunkListShift(chunklist_t *list, int32_t x, int32_t y, int32_t z) { // Load the chunk if we need to. We also use this to calculate new absolutes if( (ax = lx + nx) != chunk->x || - (ay = ly + ny) != chunk->y || - (az = lz + nz) != chunk->z + (ly + ny) != chunk->y || + (lz + nz) != chunk->z ) { + // Calculate those things that may have not been done within the if + ay = ly + ny; + az = lz + nz; + // Load new chunk. chunkUnload(chunk); chunkLoad(chunk, ax, ay, az); + + // Update the absolute coordinates. chunk->x = ax; chunk->y = ay; chunk->z = az; } - //Now, based off those new local positions, calculate the new index. + // Now, based off those new local positions, calculate the new index. ni = ( nx + (ny * list->width) + @@ -116,6 +122,11 @@ void chunkListShift(chunklist_t *list, int32_t x, int32_t y, int32_t z) { chunkList[ni] = chunk; } + // Update Absolutes. + list->x = lx; + list->y = ly; + list->z = lz; + // Now copy that array over. memcpy(list->chunkList, chunkList, sizeof(chunk_t *) * list->count); free(chunkList); diff --git a/src/engine/world/chunklist.h b/src/engine/world/chunklist.h index 29c2f6d2..4aaeb327 100644 --- a/src/engine/world/chunklist.h +++ b/src/engine/world/chunklist.h @@ -9,8 +9,6 @@ #include "chunk.h" #include "./../util/math.h" -#define CHUNK_INDEX_NULL = 0 - typedef struct { /** Dimensions of the chunk list */ int32_t width, height, depth;