mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
78 lines
1.7 KiB
C
78 lines
1.7 KiB
C
#include "grid.h"
|
|
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
|
|
#define LOG_MODULE "grid"
|
|
#define LOG_ENABLE_DBG 1
|
|
#include "log.h"
|
|
|
|
struct cell *
|
|
grid_get_range(struct grid *grid, int start, int *length)
|
|
{
|
|
#define min(x, y) ((x) < (y) ? (x) : (y))
|
|
assert(*length <= grid->size);
|
|
|
|
int real_start = (grid->offset + start) % grid->size;
|
|
if (real_start < 0)
|
|
real_start += grid->size;
|
|
assert(real_start >= 0);
|
|
assert(real_start < grid->size);
|
|
|
|
*length = min(*length, grid->size - real_start);
|
|
assert(real_start + *length <= grid->size);
|
|
|
|
return &grid->cells[real_start];
|
|
#undef min
|
|
}
|
|
|
|
void
|
|
grid_memset(struct grid *grid, int start, int c, int length)
|
|
{
|
|
int left = length;
|
|
while (left > 0) {
|
|
int count = left;
|
|
struct cell *cells = grid_get_range(grid, start, &count);
|
|
|
|
assert(count > 0);
|
|
assert(count <= left);
|
|
|
|
memset(cells, c, count * sizeof(cells[0]));
|
|
|
|
left -= count;
|
|
start += count;
|
|
}
|
|
}
|
|
|
|
void
|
|
grid_memmove(struct grid *grid, int dst, int src, int length)
|
|
{
|
|
int left = length;
|
|
int copy_idx = 0;
|
|
struct cell copy[left];
|
|
|
|
while (left > 0) {
|
|
int count = left;
|
|
struct cell *src_cells = grid_get_range(grid, src, &count);
|
|
|
|
memcpy(©[copy_idx], src_cells, count * sizeof(copy[0]));
|
|
|
|
left -= count;
|
|
src += count;
|
|
copy_idx += count;
|
|
}
|
|
|
|
left = length;
|
|
copy_idx = 0;
|
|
|
|
while (left > 0) {
|
|
int count = left;
|
|
struct cell *dst_cells = grid_get_range(grid, dst, &count);
|
|
|
|
memcpy(dst_cells, ©[copy_idx], count * sizeof(copy[0]));
|
|
|
|
left -= count;
|
|
dst += count;
|
|
copy_idx += count;
|
|
}
|
|
}
|