forked from xtreme8000/BetterSpades
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentitysystem.c
69 lines (50 loc) · 1.94 KB
/
entitysystem.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
Copyright (c) 2017-2020 ByteBit
This file is part of BetterSpades.
BetterSpades is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
BetterSpades is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with BetterSpades. If not, see <http://www.gnu.org/licenses/>.
*/
#include <stdlib.h>
#include <string.h>
#include <assert.h>
#include <stdint.h>
#include "entitysystem.h"
void entitysys_create(struct entity_system* es, size_t object_size, size_t initial_size) {
assert(es != NULL && object_size > 0 && initial_size > 0);
es->buffer = malloc(object_size * initial_size);
es->count = 0;
es->object_size = object_size;
es->length = initial_size;
pthread_mutex_init(&es->lock, NULL);
}
void entitysys_iterate(struct entity_system* es, void* user, bool (*callback)(void* object, void* user)) {
assert(es != NULL && callback != NULL);
pthread_mutex_lock(&es->lock);
uint8_t* obj = es->buffer;
for(size_t k = 0; k < es->count; k++, obj += es->object_size) {
if(callback(obj, user)) {
if(es->count > 1)
memcpy(obj, (uint8_t*)es->buffer + es->object_size * (es->count - 1), es->object_size);
es->count--;
}
}
pthread_mutex_unlock(&es->lock);
}
void entitysys_add(struct entity_system* es, void* object) {
assert(es != NULL && object != NULL);
pthread_mutex_lock(&es->lock);
if(es->count >= es->length) {
es->length *= 2;
es->buffer = realloc(es->buffer, es->object_size * es->length);
}
memcpy((uint8_t*)es->buffer + es->object_size * (es->count++), object, es->object_size);
pthread_mutex_unlock(&es->lock);
}