Added proper mod function.

This commit is contained in:
2021-04-03 15:28:48 +11:00
parent bec43c4093
commit 73decbfe39
4 changed files with 13 additions and 4 deletions

View File

@ -52,7 +52,7 @@ engine_t * engineInit(platform_t *platform, char *name, uint32_t inputCount) {
shaderUseCamera(shader, camera);
list = chunkListCreate(3, 3, 3);
chunkListShift(list, -1, 0, 0);
chunkListShift(list, 1, 0, 0);
// Test
// primitive = quadCreate(

8
src/engine/util/math.h Normal file
View File

@ -0,0 +1,8 @@
// Copyright (c) 2021 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#define mod(a,b) (a%b+b)%b

View File

@ -89,9 +89,9 @@ void chunkListShift(chunklist_t *list, int32_t x, int32_t y, int32_t z) {
chunk = list->chunkList[i];
// Calculate the new local positions for the chunk.
nx = (chunk->x - list->x - x) % list->width;
ny = (chunk->y - list->y - y) % list->height;
nz = (chunk->z - list->z - z) % list->depth;
nx = mod(chunk->x - list->x - x, list->width);
ny = mod(chunk->y - list->y - y, list->height);
nz = mod(chunk->z - list->z - z, list->depth);
// Load the chunk if we need to. We also use this to calculate new absolutes
if(

View File

@ -7,6 +7,7 @@
#include <stdint.h>
#include <malloc.h>
#include "chunk.h"
#include "./../util/math.h"
#define CHUNK_INDEX_NULL = 0