eco2d/code/common/world/world.c

265 lines
7.9 KiB
C
Raw Normal View History

2021-05-04 17:41:30 +00:00
#include "zpl.h"
#include "librg.h"
#include "modules/general.h"
2021-05-05 13:14:02 +00:00
#include "modules/net.h"
#include "modules/physics.h"
2021-05-04 17:41:30 +00:00
#include "world/world.h"
2021-05-06 16:26:52 +00:00
#include "entity_view.h"
2021-05-04 17:41:30 +00:00
2021-05-05 13:14:02 +00:00
#include "packets/pkt_send_librg_update.h"
2021-05-04 17:41:30 +00:00
typedef struct {
uint8_t *data;
uint32_t seed;
uint32_t size;
uint16_t block_size;
uint16_t chunk_size;
2021-05-08 06:55:12 +00:00
uint16_t chunk_amount;
2021-05-08 07:07:24 +00:00
uint16_t dim;
uint64_t tracker_update[3];
2021-05-09 14:41:19 +00:00
uint8_t active_layer_id;
2021-05-04 17:41:30 +00:00
ecs_world_t *ecs;
2021-05-09 16:25:34 +00:00
ecs_query_t *ecs_update;
2021-05-04 17:41:30 +00:00
librg_world *tracker;
world_pkt_reader_proc *reader_proc;
world_pkt_writer_proc *writer_proc;
} world_data;
static world_data world = {0};
int32_t world_gen();
2021-05-06 16:26:52 +00:00
entity_view world_build_entity_view(int64_t e) {
ECS_IMPORT(world_ecs(), General);
ECS_IMPORT(world_ecs(), Physics);
2021-05-08 09:05:15 +00:00
ECS_IMPORT(world_ecs(), Net);
2021-05-06 16:26:52 +00:00
entity_view view = {0};
2021-05-06 18:24:01 +00:00
// TODO(zaklaus): branch out based on ECS tags
const Position *pos = ecs_get(world_ecs(), e, Position);
if (pos) {
2021-05-08 09:05:15 +00:00
view.kind = ecs_has(world_ecs(), e, EcsClient) ? EKIND_PLAYER : EKIND_THING;
2021-05-06 18:24:01 +00:00
view.x = pos->x;
view.y = pos->y;
}
const Velocity *vel = ecs_get(world_ecs(), e, Velocity);
if (vel) {
view.flag |= EFLAG_INTERP;
view.vx = vel->x;
view.vy = vel->y;
2021-05-06 18:24:01 +00:00
}
const Chunk *chpos = ecs_get(world_ecs(), e, Chunk);
if (chpos) {
view.kind = EKIND_CHUNK;
view.x = chpos->x;
view.y = chpos->y;
}
2021-05-06 16:26:52 +00:00
return view;
}
2021-05-05 22:03:43 +00:00
int32_t tracker_write_create(librg_world *w, librg_event *e) {
int64_t owner_id = librg_event_owner_get(w, e);
int64_t entity_id = librg_event_entity_get(w, e);
2021-05-09 14:41:19 +00:00
#ifdef WORLD_LAYERING
if (world.active_layer_id != WORLD_TRACKER_LAYERS-1) {
// NOTE(zaklaus): reject updates from smaller layers
return LIBRG_WRITE_REJECT;
}
#endif
2021-05-06 16:26:52 +00:00
size_t actual_length = librg_event_size_get(w, e);
char *buffer = librg_event_buffer_get(w, e);
2021-05-06 18:24:01 +00:00
return entity_view_pack_struct(buffer, actual_length, world_build_entity_view(entity_id));
2021-05-05 22:03:43 +00:00
}
int32_t tracker_write_remove(librg_world *w, librg_event *e) {
2021-05-09 14:41:19 +00:00
#ifdef WORLD_LAYERING
if (world.active_layer_id != WORLD_TRACKER_LAYERS-1) {
// NOTE(zaklaus): reject updates from smaller layers
return LIBRG_WRITE_REJECT;
}
#endif
2021-05-05 22:03:43 +00:00
return 0;
}
int32_t tracker_write_update(librg_world *w, librg_event *e) {
2021-05-06 16:26:52 +00:00
int64_t entity_id = librg_event_entity_get(w, e);
2021-05-05 22:03:43 +00:00
size_t actual_length = librg_event_size_get(w, e);
char *buffer = librg_event_buffer_get(w, e);
2021-05-06 16:26:52 +00:00
2021-05-06 18:24:01 +00:00
return entity_view_pack_struct(buffer, actual_length, world_build_entity_view(entity_id));
2021-05-05 22:03:43 +00:00
}
2021-05-06 15:30:38 +00:00
void world_setup_pkt_handlers(world_pkt_reader_proc *reader_proc, world_pkt_writer_proc *writer_proc) {
world.reader_proc = reader_proc;
world.writer_proc = writer_proc;
}
2021-05-08 06:55:12 +00:00
int32_t world_init(int32_t seed, uint16_t block_size, uint16_t chunk_size, uint16_t chunk_amount) {
2021-05-06 15:30:38 +00:00
if (world.data) {
return 0;
}
world.seed = seed;
2021-05-04 17:41:30 +00:00
world.chunk_size = chunk_size;
2021-05-08 06:55:12 +00:00
world.chunk_amount = chunk_amount;
2021-05-04 17:41:30 +00:00
world.block_size = block_size;
world.dim = (world.chunk_size * world.chunk_amount);
2021-05-08 07:07:24 +00:00
world.size = world.dim * world.dim;
2021-05-04 17:41:30 +00:00
2021-05-06 07:56:38 +00:00
if (world.tracker == NULL) {
world.tracker = librg_world_create();
}
2021-05-06 15:30:38 +00:00
2021-05-04 17:41:30 +00:00
if (world.tracker == NULL) {
zpl_printf("[ERROR] An error occurred while trying to create a server world.\n");
return WORLD_ERROR_TRACKER_FAILED;
}
/* config our world grid */
librg_config_chunksize_set(world.tracker, block_size * world.chunk_size, block_size * world.chunk_size, 0);
librg_config_chunkamount_set(world.tracker, world.chunk_amount, world.chunk_amount, 0);
2021-05-08 20:32:31 +00:00
librg_config_chunkoffset_set(world.tracker, LIBRG_OFFSET_BEG, LIBRG_OFFSET_BEG, 0);
2021-05-04 17:41:30 +00:00
2021-05-05 22:03:43 +00:00
librg_event_set(world.tracker, LIBRG_WRITE_CREATE, tracker_write_create);
librg_event_set(world.tracker, LIBRG_WRITE_REMOVE, tracker_write_remove);
librg_event_set(world.tracker, LIBRG_WRITE_UPDATE, tracker_write_update);
2021-05-04 17:41:30 +00:00
world.data = zpl_malloc(sizeof(uint8_t)*world.size);
if (!world.data) {
return WORLD_ERROR_OUTOFMEM;
}
world.ecs = ecs_init();
ecs_set_entity_range(world.ecs, 0, UINT32_MAX);
ECS_IMPORT(world.ecs, General);
2021-05-09 16:25:34 +00:00
ECS_IMPORT(world.ecs, Net);
world.ecs_update = ecs_query_new(world.ecs, "Net.ClientInfo, general.Position");
int32_t world_build_status = world_gen();
ZPL_ASSERT(world_build_status >= 0);
2021-05-04 17:41:30 +00:00
for (int i = 0; i < world.chunk_amount * world.chunk_amount; ++i) {
2021-05-04 17:41:30 +00:00
ecs_entity_t e = ecs_new(world.ecs, 0);
Chunk *chunk = ecs_get_mut(world.ecs, e, Chunk, NULL);
2021-05-04 17:41:30 +00:00
librg_entity_track(world.tracker, e);
2021-05-08 20:32:31 +00:00
librg_entity_chunk_set(world.tracker, e, i);
librg_chunk_to_chunkpos(world.tracker, i, &chunk->x, &chunk->y, NULL);
2021-05-04 17:41:30 +00:00
}
zpl_printf("[INFO] Created a new server world\n");
return world_build_status;
2021-05-04 17:41:30 +00:00
}
int32_t world_destroy(void) {
librg_world_destroy(world.tracker);
ecs_fini(world.ecs);
zpl_mfree(world.data);
zpl_memset(&world, 0, sizeof(world));
zpl_printf("[INFO] World was destroyed.\n");
return WORLD_ERROR_NONE;
}
2021-05-08 16:10:34 +00:00
#define WORLD_LIBRG_BUFSIZ 2000000
2021-05-06 18:24:01 +00:00
static void world_tracker_update(uint8_t ticker, uint32_t freq, uint8_t radius) {
if (world.tracker_update[ticker] > zpl_time_rel_ms()) return;
world.tracker_update[ticker] = zpl_time_rel_ms() + freq;
2021-05-05 22:03:43 +00:00
2021-05-09 16:25:34 +00:00
ECS_IMPORT(world.ecs, General);
2021-05-05 13:14:02 +00:00
ECS_IMPORT(world.ecs, Net);
2021-05-05 13:52:28 +00:00
2021-05-09 16:25:34 +00:00
ecs_iter_t it = ecs_query_iter(world.ecs_update);
2021-05-06 18:24:01 +00:00
static char buffer[WORLD_LIBRG_BUFSIZ] = {0};
2021-05-09 14:41:19 +00:00
world.active_layer_id = ticker;
2021-05-05 13:52:28 +00:00
2021-05-05 13:14:02 +00:00
while (ecs_query_next(&it)) {
ClientInfo *p = ecs_column(&it, ClientInfo, 1);
2021-05-08 08:03:18 +00:00
Position *pos = ecs_column(&it, Position, 2);
2021-05-05 13:52:28 +00:00
2021-05-05 13:14:02 +00:00
for (int i = 0; i < it.count; i++) {
2021-05-06 18:24:01 +00:00
size_t datalen = WORLD_LIBRG_BUFSIZ;
2021-05-09 14:41:19 +00:00
// TODO(zaklaus): SUPER TEMPORARY HOT !!! simulate variable radius queries
{
librg_entity_radius_set(world_tracker(), p[i].peer, radius);
}
// TODO(zaklaus): push radius once librg patch comes in
2021-05-06 15:30:38 +00:00
int32_t result = librg_world_write(world_tracker(), p[i].peer, buffer, &datalen, NULL);
2021-05-05 13:52:28 +00:00
2021-05-05 13:14:02 +00:00
if (result > 0) {
zpl_printf("[info] buffer size was not enough, please increase it by at least: %d\n", result);
} else if (result < 0) {
zpl_printf("[error] an error happened writing the world %d\n", result);
}
2021-05-05 13:52:28 +00:00
pkt_world_write(MSG_ID_LIBRG_UPDATE, pkt_send_librg_update_encode(buffer, datalen, ticker), 1, p[i].view_id, p[i].peer);
2021-05-05 13:14:02 +00:00
}
}
2021-05-05 13:52:28 +00:00
}
int32_t world_update() {
ecs_progress(world.ecs, 0);
2021-05-09 14:41:19 +00:00
world_tracker_update(0, WORLD_TRACKER_UPDATE_FAST_MS, 2);
world_tracker_update(1, WORLD_TRACKER_UPDATE_NORMAL_MS, 4);
2021-05-09 14:41:19 +00:00
world_tracker_update(2, WORLD_TRACKER_UPDATE_SLOW_MS, 6);
2021-05-04 17:41:30 +00:00
return 0;
}
2021-05-04 19:22:55 +00:00
int32_t world_read(void* data, uint32_t datalen, void *udata) {
2021-05-04 17:41:30 +00:00
if (world.reader_proc) {
2021-05-04 19:22:55 +00:00
return world.reader_proc(data, datalen, udata);
2021-05-04 17:41:30 +00:00
}
return -1;
}
2021-05-04 19:22:55 +00:00
int32_t world_write(pkt_header *pkt, void *udata) {
2021-05-04 17:41:30 +00:00
if (world.writer_proc) {
2021-05-04 19:22:55 +00:00
return world.writer_proc(pkt, udata);
2021-05-04 17:41:30 +00:00
}
return -1;
}
uint32_t world_buf(uint8_t const **ptr, uint32_t *width) {
ZPL_ASSERT_NOT_NULL(world.data);
ZPL_ASSERT_NOT_NULL(ptr);
*ptr = world.data;
2021-05-08 07:07:24 +00:00
if (width) *width = world.dim;
2021-05-04 17:41:30 +00:00
return world.size;
}
ecs_world_t * world_ecs() {
return world.ecs;
}
librg_world * world_tracker() {
return world.tracker;
}
2021-05-04 19:22:55 +00:00
uint16_t world_block_size(void) {
return world.block_size;
}
2021-05-04 17:41:30 +00:00
uint16_t world_chunk_size(void) {
return world.chunk_size;
}
2021-05-08 06:55:12 +00:00
uint16_t world_chunk_amount(void) {
return world.chunk_amount;
}
uint16_t world_dim(void) {
return world.block_size * world.chunk_size * world.chunk_amount;
2021-05-04 17:41:30 +00:00
}
#include "world_gen.c"