forked from github/server
update key attribute api
prepare to replace at_key. do not return the internals. add basic test.
This commit is contained in:
parent
abc3caa6d1
commit
0189111876
|
@ -1,6 +1,7 @@
|
||||||
PROJECT(attributes C)
|
PROJECT(attributes C)
|
||||||
SET(_TEST_FILES
|
SET(_TEST_FILES
|
||||||
stealth.test.c
|
stealth.test.c
|
||||||
|
key.test.c
|
||||||
otherfaction.test.c
|
otherfaction.test.c
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,7 @@ attrib_type at_iceberg = {
|
||||||
NULL,
|
NULL,
|
||||||
a_writeint,
|
a_writeint,
|
||||||
a_readint,
|
a_readint,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -22,6 +22,68 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
#include <kernel/save.h>
|
#include <kernel/save.h>
|
||||||
#include <util/attrib.h>
|
#include <util/attrib.h>
|
||||||
|
#include <storage.h>
|
||||||
|
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <assert.h>
|
||||||
|
|
||||||
|
static void a_writekeys(const attrib *a, const void *o, storage *store) {
|
||||||
|
int i, *keys = (int *)a->data.v;
|
||||||
|
for (i = 0; i != keys[0]; ++i) {
|
||||||
|
WRITE_INT(store, keys[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static int a_readkeys(attrib * a, void *owner, struct storage *store) {
|
||||||
|
int i, *p = 0;
|
||||||
|
READ_INT(store, &i);
|
||||||
|
assert(i < 4096 && i>0);
|
||||||
|
a->data.v = p = malloc(sizeof(int)*(i + 1));
|
||||||
|
*p++ = i;
|
||||||
|
while (--i) {
|
||||||
|
READ_INT(store, p++);
|
||||||
|
}
|
||||||
|
return AT_READ_OK;
|
||||||
|
}
|
||||||
|
|
||||||
|
static int a_readkey(attrib *a, void *owner, struct storage *store) {
|
||||||
|
int res = a_readint(a, owner, store);
|
||||||
|
return (res != AT_READ_FAIL) ? AT_READ_DEPR : res;
|
||||||
|
}
|
||||||
|
|
||||||
|
attrib_type at_keys = {
|
||||||
|
"keys",
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
NULL,
|
||||||
|
a_writekeys,
|
||||||
|
a_readkeys,
|
||||||
|
NULL
|
||||||
|
};
|
||||||
|
|
||||||
|
void a_upgradekeys(attrib **alist, attrib *abegin) {
|
||||||
|
int n = 0, *keys = 0;
|
||||||
|
int i = 0, val[4];
|
||||||
|
attrib *a, *ak = a_find(*alist, &at_keys);
|
||||||
|
if (!ak) {
|
||||||
|
ak = a_add(alist, a_new(&at_keys));
|
||||||
|
keys = (int *)ak->data.v;
|
||||||
|
n = keys ? keys[0] : 0;
|
||||||
|
}
|
||||||
|
for (a = abegin; a && a->type == abegin->type; a = a->next) {
|
||||||
|
val[i++] = a->data.i;
|
||||||
|
if (i == 4) {
|
||||||
|
keys = realloc(keys, sizeof(int) * (n + i + 1));
|
||||||
|
memcpy(keys + n + 1, val, sizeof(int)*i);
|
||||||
|
n += i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (i > 0) {
|
||||||
|
keys = realloc(keys, sizeof(int) * (n + i + 1));
|
||||||
|
memcpy(keys + n + 1, val, sizeof(int)*i);
|
||||||
|
}
|
||||||
|
keys[0] = n + i;
|
||||||
|
}
|
||||||
|
|
||||||
attrib_type at_key = {
|
attrib_type at_key = {
|
||||||
"key",
|
"key",
|
||||||
|
@ -29,29 +91,51 @@ attrib_type at_key = {
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
a_writeint,
|
a_writeint,
|
||||||
a_readint,
|
a_readkey,
|
||||||
|
a_upgradekeys
|
||||||
};
|
};
|
||||||
|
|
||||||
attrib *add_key(attrib ** alist, int key)
|
static attrib *make_key(int key)
|
||||||
{
|
|
||||||
attrib *a = find_key(*alist, key);
|
|
||||||
if (a == NULL)
|
|
||||||
a = a_add(alist, make_key(key));
|
|
||||||
return a;
|
|
||||||
}
|
|
||||||
|
|
||||||
attrib *make_key(int key)
|
|
||||||
{
|
{
|
||||||
attrib *a = a_new(&at_key);
|
attrib *a = a_new(&at_key);
|
||||||
|
assert(key != 0);
|
||||||
a->data.i = key;
|
a->data.i = key;
|
||||||
return a;
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
attrib *find_key(attrib * alist, int key)
|
static attrib *find_key(attrib * alist, int key)
|
||||||
{
|
{
|
||||||
attrib *a = a_find(alist, &at_key);
|
attrib *a = a_find(alist, &at_key);
|
||||||
|
assert(key != 0);
|
||||||
while (a && a->type == &at_key && a->data.i != key) {
|
while (a && a->type == &at_key && a->data.i != key) {
|
||||||
a = a->next;
|
a = a->next;
|
||||||
}
|
}
|
||||||
return (a && a->type == &at_key) ? a : NULL;
|
return (a && a->type == &at_key) ? a : NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void key_set(attrib ** alist, int key)
|
||||||
|
{
|
||||||
|
attrib *a;
|
||||||
|
assert(key != 0);
|
||||||
|
a = find_key(*alist, key);
|
||||||
|
if (!a) {
|
||||||
|
a = a_add(alist, make_key(key));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void key_unset(attrib ** alist, int key)
|
||||||
|
{
|
||||||
|
attrib *a;
|
||||||
|
assert(key != 0);
|
||||||
|
a = find_key(*alist, key);
|
||||||
|
if (a) {
|
||||||
|
a_remove(alist, a);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
bool key_get(attrib *alist, int key) {
|
||||||
|
attrib *a;
|
||||||
|
assert(key != 0);
|
||||||
|
a = find_key(alist, key);
|
||||||
|
return a != NULL;
|
||||||
|
}
|
||||||
|
|
|
@ -24,9 +24,9 @@ extern "C" {
|
||||||
|
|
||||||
extern struct attrib_type at_key;
|
extern struct attrib_type at_key;
|
||||||
|
|
||||||
struct attrib *make_key(int key);
|
void key_set(struct attrib **alist, int key);
|
||||||
struct attrib *find_key(struct attrib *alist, int key);
|
void key_unset(struct attrib **alist, int key);
|
||||||
struct attrib *add_key(struct attrib **alist, int key);
|
bool key_get(struct attrib *alist, int key);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,20 @@
|
||||||
|
#include <platform.h>
|
||||||
|
#include "key.h"
|
||||||
|
|
||||||
|
#include <util/attrib.h>
|
||||||
|
#include <CuTest.h>
|
||||||
|
|
||||||
|
static void test_get_set_keys(CuTest *tc) {
|
||||||
|
attrib *a = 0;
|
||||||
|
key_set(&a, 42);
|
||||||
|
CuAssertTrue(tc, key_get(a, 42));
|
||||||
|
key_unset(&a, 42);
|
||||||
|
CuAssertTrue(tc, !key_get(a, 42));
|
||||||
|
}
|
||||||
|
|
||||||
|
CuSuite *get_key_suite(void)
|
||||||
|
{
|
||||||
|
CuSuite *suite = CuSuiteNew();
|
||||||
|
SUITE_ADD_TEST(suite, test_get_set_keys);
|
||||||
|
return suite;
|
||||||
|
}
|
|
@ -28,6 +28,7 @@ attrib_type at_matmod = {
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
NULL,
|
NULL,
|
||||||
|
NULL,
|
||||||
ATF_PRESERVE
|
ATF_PRESERVE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -28,7 +28,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
attrib_type at_orcification = {
|
attrib_type at_orcification = {
|
||||||
"orcification", NULL, NULL, NULL, a_writeint, a_readint, ATF_UNIQUE
|
"orcification", NULL, NULL, NULL, a_writeint, a_readint, NULL, ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
attrib *make_orcification(int orcification)
|
attrib *make_orcification(int orcification)
|
||||||
|
|
|
@ -53,7 +53,7 @@ int read_of(struct attrib *a, void *owner, struct storage *store)
|
||||||
}
|
}
|
||||||
|
|
||||||
attrib_type at_otherfaction = {
|
attrib_type at_otherfaction = {
|
||||||
"otherfaction", NULL, NULL, NULL, write_of, read_of, ATF_UNIQUE
|
"otherfaction", NULL, NULL, NULL, write_of, read_of, NULL, ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
struct faction *get_otherfaction(const struct attrib *a)
|
struct faction *get_otherfaction(const struct attrib *a)
|
||||||
|
|
|
@ -28,7 +28,7 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
attrib_type at_raceprefix = {
|
attrib_type at_raceprefix = {
|
||||||
"raceprefix", NULL, a_finalizestring, NULL, a_writestring, a_readstring,
|
"raceprefix", NULL, a_finalizestring, NULL, a_writestring, a_readstring, NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -49,6 +49,7 @@ attrib_type at_reduceproduction = {
|
||||||
age_reduceproduction,
|
age_reduceproduction,
|
||||||
a_writeshorts,
|
a_writeshorts,
|
||||||
a_readshorts,
|
a_readshorts,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -52,6 +52,7 @@ attrib_type at_targetregion = {
|
||||||
NULL,
|
NULL,
|
||||||
write_targetregion,
|
write_targetregion,
|
||||||
read_targetregion,
|
read_targetregion,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -542,11 +542,9 @@ static int tolua_region_getkey(lua_State * L)
|
||||||
{
|
{
|
||||||
region *self = (region *)tolua_tousertype(L, 1, 0);
|
region *self = (region *)tolua_tousertype(L, 1, 0);
|
||||||
const char *name = tolua_tostring(L, 2, 0);
|
const char *name = tolua_tostring(L, 2, 0);
|
||||||
|
|
||||||
int flag = atoi36(name);
|
int flag = atoi36(name);
|
||||||
attrib *a = find_key(self->attribs, flag);
|
|
||||||
lua_pushboolean(L, a != NULL);
|
|
||||||
|
|
||||||
|
lua_pushboolean(L, key_get(self->attribs, flag));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -555,14 +553,13 @@ static int tolua_region_setkey(lua_State * L)
|
||||||
region *self = (region *)tolua_tousertype(L, 1, 0);
|
region *self = (region *)tolua_tousertype(L, 1, 0);
|
||||||
const char *name = tolua_tostring(L, 2, 0);
|
const char *name = tolua_tostring(L, 2, 0);
|
||||||
int value = tolua_toboolean(L, 3, 0);
|
int value = tolua_toboolean(L, 3, 0);
|
||||||
|
|
||||||
int flag = atoi36(name);
|
int flag = atoi36(name);
|
||||||
attrib *a = find_key(self->attribs, flag);
|
|
||||||
if (a == NULL && value) {
|
if (value) {
|
||||||
add_key(&self->attribs, flag);
|
key_set(&self->attribs, flag);
|
||||||
}
|
}
|
||||||
else if (a != NULL && !value) {
|
else {
|
||||||
a_remove(&self->attribs, a);
|
key_unset(&self->attribs, flag);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -807,8 +807,7 @@ static int tolua_unit_get_flag(lua_State * L)
|
||||||
unit *self = (unit *)tolua_tousertype(L, 1, 0);
|
unit *self = (unit *)tolua_tousertype(L, 1, 0);
|
||||||
const char *name = tolua_tostring(L, 2, 0);
|
const char *name = tolua_tostring(L, 2, 0);
|
||||||
int flag = atoi36(name);
|
int flag = atoi36(name);
|
||||||
attrib *a = find_key(self->attribs, flag);
|
lua_pushboolean(L, key_get(self->attribs, flag));
|
||||||
lua_pushboolean(L, (a != NULL));
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -818,12 +817,11 @@ static int tolua_unit_set_flag(lua_State * L)
|
||||||
const char *name = tolua_tostring(L, 2, 0);
|
const char *name = tolua_tostring(L, 2, 0);
|
||||||
int value = (int)tolua_tonumber(L, 3, 0);
|
int value = (int)tolua_tonumber(L, 3, 0);
|
||||||
int flag = atoi36(name);
|
int flag = atoi36(name);
|
||||||
attrib *a = find_key(self->attribs, flag);
|
if (value) {
|
||||||
if (a == NULL && value) {
|
key_set(&self->attribs, flag);
|
||||||
add_key(&self->attribs, flag);
|
|
||||||
}
|
}
|
||||||
else if (a != NULL && !value) {
|
else {
|
||||||
a_remove(&self->attribs, a);
|
key_unset(&self->attribs, flag);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -186,8 +186,8 @@ static int tolua_getkey(lua_State * L)
|
||||||
{
|
{
|
||||||
const char *name = tolua_tostring(L, 1, 0);
|
const char *name = tolua_tostring(L, 1, 0);
|
||||||
int flag = atoi36(name);
|
int flag = atoi36(name);
|
||||||
attrib *a = find_key(global.attribs, flag);
|
|
||||||
lua_pushboolean(L, a != NULL);
|
lua_pushboolean(L, key_get(global.attribs, flag));
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -209,12 +209,12 @@ static int tolua_setkey(lua_State * L)
|
||||||
const char *name = tolua_tostring(L, 1, 0);
|
const char *name = tolua_tostring(L, 1, 0);
|
||||||
int value = tolua_toboolean(L, 2, 0);
|
int value = tolua_toboolean(L, 2, 0);
|
||||||
int flag = atoi36(name);
|
int flag = atoi36(name);
|
||||||
attrib *a = find_key(global.attribs, flag);
|
bool isset = key_get(global.attribs, flag);
|
||||||
if (a == NULL && value) {
|
if (value) {
|
||||||
add_key(&global.attribs, flag);
|
key_set(&global.attribs, flag);
|
||||||
}
|
}
|
||||||
else if (a != NULL && !value) {
|
else {
|
||||||
a_remove(&global.attribs, a);
|
key_unset(&global.attribs, flag);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,6 +50,7 @@ attrib_type at_chaoscount = {
|
||||||
DEFAULT_AGE,
|
DEFAULT_AGE,
|
||||||
a_writeint,
|
a_writeint,
|
||||||
a_readint,
|
a_readint,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -38,6 +38,7 @@ attrib_type at_guard = {
|
||||||
DEFAULT_AGE,
|
DEFAULT_AGE,
|
||||||
a_writeint,
|
a_writeint,
|
||||||
a_readint,
|
a_readint,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -480,7 +480,7 @@ int victorycondition(const alliance * al, const char *name)
|
||||||
|
|
||||||
for (qi = 0; flist; ql_advance(&flist, &qi, 1)) {
|
for (qi = 0; flist; ql_advance(&flist, &qi, 1)) {
|
||||||
faction *f = (faction *)ql_get(flist, qi);
|
faction *f = (faction *)ql_get(flist, qi);
|
||||||
if (find_key(f->attribs, atoi36("phnx"))) {
|
if (key_get(f->attribs, atoi36("phnx"))) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -509,7 +509,7 @@ int victorycondition(const alliance * al, const char *name)
|
||||||
|
|
||||||
for (qi = 0; flist; ql_advance(&flist, &qi, 1)) {
|
for (qi = 0; flist; ql_advance(&flist, &qi, 1)) {
|
||||||
faction *f = (faction *)ql_get(flist, qi);
|
faction *f = (faction *)ql_get(flist, qi);
|
||||||
if (find_key(f->attribs, atoi36("pyra"))) {
|
if (key_get(f->attribs, atoi36("pyra"))) {
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -121,6 +121,7 @@ attrib_type at_npcfaction = {
|
||||||
NULL,
|
NULL,
|
||||||
a_writeint,
|
a_writeint,
|
||||||
a_readint,
|
a_readint,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -141,7 +141,7 @@ int buildingcapacity(const building * b)
|
||||||
}
|
}
|
||||||
|
|
||||||
attrib_type at_building_generic_type = {
|
attrib_type at_building_generic_type = {
|
||||||
"building_generic_type", NULL, NULL, NULL, a_writestring, a_readstring,
|
"building_generic_type", NULL, NULL, NULL, a_writestring, a_readstring, NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -285,6 +285,7 @@ attrib_type at_curse = {
|
||||||
curse_age,
|
curse_age,
|
||||||
curse_write,
|
curse_write,
|
||||||
curse_read,
|
curse_read,
|
||||||
|
NULL,
|
||||||
ATF_CURSE
|
ATF_CURSE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -798,6 +798,7 @@ attrib_type at_maxmagicians = {
|
||||||
NULL,
|
NULL,
|
||||||
a_writeint,
|
a_writeint,
|
||||||
a_readint,
|
a_readint,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -119,7 +119,7 @@ write_group(const attrib * a, const void *owner, struct storage *store)
|
||||||
attrib_type at_group = { /* attribute for units assigned to a group */
|
attrib_type at_group = { /* attribute for units assigned to a group */
|
||||||
"grp",
|
"grp",
|
||||||
DEFAULT_INIT,
|
DEFAULT_INIT,
|
||||||
DEFAULT_FINALIZE, DEFAULT_AGE, write_group, read_group, ATF_UNIQUE };
|
DEFAULT_FINALIZE, DEFAULT_AGE, write_group, read_group, NULL, ATF_UNIQUE };
|
||||||
|
|
||||||
void free_group(group * g)
|
void free_group(group * g)
|
||||||
{
|
{
|
||||||
|
|
|
@ -926,14 +926,14 @@ struct order *ord)
|
||||||
"unit item region command", user, itype->rtype, user->region, ord));
|
"unit item region command", user, itype->rtype, user->region, ord));
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
if (!is_mage(user) || find_key(f->attribs, atoi36("mbst")) != NULL) {
|
if (!is_mage(user) || key_get(f->attribs, atoi36("mbst"))) {
|
||||||
cmistake(user, user->thisorder, 214, MSG_EVENT);
|
cmistake(user, user->thisorder, 214, MSG_EVENT);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
use_pooled(user, itype->rtype, GET_SLACK | GET_RESERVE | GET_POOLED_SLACK,
|
use_pooled(user, itype->rtype, GET_SLACK | GET_RESERVE | GET_POOLED_SLACK,
|
||||||
user->number);
|
user->number);
|
||||||
|
|
||||||
a_add(&f->attribs, make_key(atoi36("mbst")));
|
key_set(&f->attribs, atoi36("mbst"));
|
||||||
set_level(user, SK_MAGIC, 3);
|
set_level(user, SK_MAGIC, 3);
|
||||||
|
|
||||||
ADDMSG(&user->faction->msgs, msg_message("use_item",
|
ADDMSG(&user->faction->msgs, msg_message("use_item",
|
||||||
|
|
|
@ -483,6 +483,7 @@ attrib_type at_horseluck = {
|
||||||
DEFAULT_AGE,
|
DEFAULT_AGE,
|
||||||
NO_WRITE,
|
NO_WRITE,
|
||||||
NO_READ,
|
NO_READ,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -496,6 +497,7 @@ attrib_type at_peasantluck = {
|
||||||
DEFAULT_AGE,
|
DEFAULT_AGE,
|
||||||
NO_WRITE,
|
NO_WRITE,
|
||||||
NO_READ,
|
NO_READ,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -509,6 +511,7 @@ attrib_type at_deathcount = {
|
||||||
DEFAULT_AGE,
|
DEFAULT_AGE,
|
||||||
a_writeint,
|
a_writeint,
|
||||||
a_readint,
|
a_readint,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -522,6 +525,7 @@ attrib_type at_woodcount = {
|
||||||
DEFAULT_AGE,
|
DEFAULT_AGE,
|
||||||
NO_WRITE,
|
NO_WRITE,
|
||||||
a_readint,
|
a_readint,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -70,8 +70,8 @@ static void test_readwrite_attrib(CuTest *tc) {
|
||||||
test_cleanup();
|
test_cleanup();
|
||||||
data = gamedata_open(path, "wb");
|
data = gamedata_open(path, "wb");
|
||||||
CuAssertPtrNotNull(tc, data);
|
CuAssertPtrNotNull(tc, data);
|
||||||
add_key(&a, 41);
|
key_set(&a, 41);
|
||||||
add_key(&a, 42);
|
key_set(&a, 42);
|
||||||
write_attribs(data->store, a, NULL);
|
write_attribs(data->store, a, NULL);
|
||||||
gamedata_close(data);
|
gamedata_close(data);
|
||||||
a_removeall(&a, NULL);
|
a_removeall(&a, NULL);
|
||||||
|
@ -81,8 +81,8 @@ static void test_readwrite_attrib(CuTest *tc) {
|
||||||
CuAssertPtrNotNull(tc, data);
|
CuAssertPtrNotNull(tc, data);
|
||||||
read_attribs(data->store, &a, NULL);
|
read_attribs(data->store, &a, NULL);
|
||||||
gamedata_close(data);
|
gamedata_close(data);
|
||||||
CuAssertPtrNotNull(tc, find_key(a, 41));
|
CuAssertTrue(tc, key_get(a, 41));
|
||||||
CuAssertPtrNotNull(tc, find_key(a, 42));
|
CuAssertTrue(tc, key_get(a, 42));
|
||||||
a_removeall(&a, NULL);
|
a_removeall(&a, NULL);
|
||||||
|
|
||||||
CuAssertIntEquals(tc, 0, remove(path));
|
CuAssertIntEquals(tc, 0, remove(path));
|
||||||
|
|
|
@ -59,6 +59,7 @@ attrib_type at_skillmod = {
|
||||||
NULL,
|
NULL,
|
||||||
NULL, /* can't write function pointers */
|
NULL, /* can't write function pointers */
|
||||||
NULL, /* can't read function pointers */
|
NULL, /* can't read function pointers */
|
||||||
|
NULL,
|
||||||
ATF_PRESERVE
|
ATF_PRESERVE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -486,6 +486,7 @@ attrib_type at_germs = {
|
||||||
DEFAULT_AGE,
|
DEFAULT_AGE,
|
||||||
a_writeshorts,
|
a_writeshorts,
|
||||||
a_readshorts,
|
a_readshorts,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2749,7 +2750,7 @@ void sinkships(struct region * r)
|
||||||
|
|
||||||
static attrib_type at_number = {
|
static attrib_type at_number = {
|
||||||
"faction_renum",
|
"faction_renum",
|
||||||
NULL, NULL, NULL, NULL, NULL,
|
NULL, NULL, NULL, NULL, NULL, NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -335,6 +335,7 @@ attrib_type at_mage = {
|
||||||
NULL,
|
NULL,
|
||||||
write_mage,
|
write_mage,
|
||||||
read_mage,
|
read_mage,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2416,6 +2417,7 @@ attrib_type at_familiarmage = {
|
||||||
age_unit,
|
age_unit,
|
||||||
a_write_unit,
|
a_write_unit,
|
||||||
read_magician,
|
read_magician,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2426,6 +2428,7 @@ attrib_type at_familiar = {
|
||||||
age_unit,
|
age_unit,
|
||||||
a_write_unit,
|
a_write_unit,
|
||||||
read_familiar,
|
read_familiar,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2436,6 +2439,7 @@ attrib_type at_clonemage = {
|
||||||
age_unit,
|
age_unit,
|
||||||
a_write_unit,
|
a_write_unit,
|
||||||
read_magician,
|
read_magician,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2446,6 +2450,7 @@ attrib_type at_clone = {
|
||||||
age_unit,
|
age_unit,
|
||||||
a_write_unit,
|
a_write_unit,
|
||||||
read_clone,
|
read_clone,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -63,7 +63,7 @@ static void free_market(attrib * a)
|
||||||
attrib_type at_market = {
|
attrib_type at_market = {
|
||||||
"script",
|
"script",
|
||||||
NULL, free_market, NULL,
|
NULL, free_market, NULL,
|
||||||
NULL, NULL, ATF_UNIQUE
|
NULL, NULL, NULL, ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
static int rc_luxury_trade(const struct race *rc)
|
static int rc_luxury_trade(const struct race *rc)
|
||||||
|
|
|
@ -96,6 +96,7 @@ static attrib_type at_alp = {
|
||||||
alp_verify,
|
alp_verify,
|
||||||
alp_write,
|
alp_write,
|
||||||
alp_read,
|
alp_read,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -112,6 +112,7 @@ static attrib_type at_cursewall = {
|
||||||
curse_age,
|
curse_age,
|
||||||
cw_write,
|
cw_write,
|
||||||
cw_read,
|
cw_read,
|
||||||
|
NULL,
|
||||||
ATF_CURSE
|
ATF_CURSE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -157,7 +157,7 @@ static void done_learning(struct attrib *a)
|
||||||
|
|
||||||
const attrib_type at_learning = {
|
const attrib_type at_learning = {
|
||||||
"learning",
|
"learning",
|
||||||
init_learning, done_learning, NULL, NULL, NULL,
|
init_learning, done_learning, NULL, NULL, NULL, NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -118,6 +118,7 @@ int RunAllTests(int argc, char *argv[])
|
||||||
ADD_SUITE(monsters);
|
ADD_SUITE(monsters);
|
||||||
ADD_SUITE(move);
|
ADD_SUITE(move);
|
||||||
ADD_SUITE(piracy);
|
ADD_SUITE(piracy);
|
||||||
|
ADD_SUITE(key);
|
||||||
ADD_SUITE(stealth);
|
ADD_SUITE(stealth);
|
||||||
ADD_SUITE(otherfaction);
|
ADD_SUITE(otherfaction);
|
||||||
ADD_SUITE(upkeep);
|
ADD_SUITE(upkeep);
|
||||||
|
|
|
@ -292,7 +292,7 @@ void at_deprecate(const char * name, int(*reader)(attrib *, void *, struct stora
|
||||||
}
|
}
|
||||||
|
|
||||||
static int a_read_i(struct storage *store, attrib ** attribs, void *owner, unsigned int key) {
|
static int a_read_i(struct storage *store, attrib ** attribs, void *owner, unsigned int key) {
|
||||||
int retval = AT_READ_FAIL;
|
int retval = AT_READ_OK;
|
||||||
int(*reader)(attrib *, void *, struct storage *) = 0;
|
int(*reader)(attrib *, void *, struct storage *) = 0;
|
||||||
attrib_type *at = at_find(key);
|
attrib_type *at = at_find(key);
|
||||||
attrib * na = 0;
|
attrib * na = 0;
|
||||||
|
@ -313,11 +313,13 @@ static int a_read_i(struct storage *store, attrib ** attribs, void *owner, unsig
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (reader) {
|
if (reader) {
|
||||||
retval = reader(na, owner, store);
|
int ret = reader(na, owner, store);
|
||||||
if (na) {
|
if (na) {
|
||||||
switch (retval) {
|
switch (ret) {
|
||||||
|
case AT_READ_DEPR:
|
||||||
case AT_READ_OK:
|
case AT_READ_OK:
|
||||||
a_add(attribs, na);
|
a_add(attribs, na);
|
||||||
|
retval = ret;
|
||||||
break;
|
break;
|
||||||
case AT_READ_FAIL:
|
case AT_READ_FAIL:
|
||||||
a_free(na);
|
a_free(na);
|
||||||
|
@ -341,11 +343,24 @@ int a_read(struct storage *store, attrib ** attribs, void *owner) {
|
||||||
zText[0] = 0;
|
zText[0] = 0;
|
||||||
key = -1;
|
key = -1;
|
||||||
READ_INT(store, &key);
|
READ_INT(store, &key);
|
||||||
while (key > 0 && retval == AT_READ_OK) {
|
while (key > 0) {
|
||||||
retval = a_read_i(store, attribs, owner, key);
|
int ret = a_read_i(store, attribs, owner, key);
|
||||||
|
if (ret == AT_READ_DEPR) {
|
||||||
|
retval = AT_READ_DEPR;
|
||||||
|
}
|
||||||
READ_INT(store, &key);
|
READ_INT(store, &key);
|
||||||
}
|
}
|
||||||
return retval;
|
if (retval == AT_READ_DEPR) {
|
||||||
|
/* handle deprecated attributes */
|
||||||
|
attrib *a = *attribs;
|
||||||
|
while (a) {
|
||||||
|
if (a->type->upgrade) {
|
||||||
|
a->type->upgrade(attribs, a);
|
||||||
|
}
|
||||||
|
a = a->nexttype;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return AT_READ_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
int a_read_orig(struct storage *store, attrib ** attribs, void *owner)
|
int a_read_orig(struct storage *store, attrib ** attribs, void *owner)
|
||||||
|
|
|
@ -56,6 +56,7 @@ extern "C" {
|
||||||
/* age returns 0 if the attribute needs to be removed, !=0 otherwise */
|
/* age returns 0 if the attribute needs to be removed, !=0 otherwise */
|
||||||
void(*write) (const struct attrib *, const void *owner, struct storage *);
|
void(*write) (const struct attrib *, const void *owner, struct storage *);
|
||||||
int(*read) (struct attrib *, void *owner, struct storage *); /* return AT_READ_OK on success, AT_READ_FAIL if attrib needs removal */
|
int(*read) (struct attrib *, void *owner, struct storage *); /* return AT_READ_OK on success, AT_READ_FAIL if attrib needs removal */
|
||||||
|
void(*upgrade) (struct attrib **alist, struct attrib *a);
|
||||||
unsigned int flags;
|
unsigned int flags;
|
||||||
/* ---- internal data, do not modify: ---- */
|
/* ---- internal data, do not modify: ---- */
|
||||||
struct attrib_type *nexthash;
|
struct attrib_type *nexthash;
|
||||||
|
@ -90,6 +91,7 @@ extern "C" {
|
||||||
|
|
||||||
#define AT_READ_OK 0
|
#define AT_READ_OK 0
|
||||||
#define AT_READ_FAIL -1
|
#define AT_READ_FAIL -1
|
||||||
|
#define AT_READ_DEPR 1 /* a deprecated attribute was read, should run a_upgrade */
|
||||||
|
|
||||||
#define AT_AGE_REMOVE 0 /* remove the attribute after calling age() */
|
#define AT_AGE_REMOVE 0 /* remove the attribute after calling age() */
|
||||||
#define AT_AGE_KEEP 1 /* keep the attribute for another turn */
|
#define AT_AGE_KEEP 1 /* keep the attribute for another turn */
|
||||||
|
|
|
@ -134,6 +134,7 @@ static attrib_type at_wormhole = {
|
||||||
wormhole_age,
|
wormhole_age,
|
||||||
wormhole_write,
|
wormhole_write,
|
||||||
wormhole_read,
|
wormhole_read,
|
||||||
|
NULL,
|
||||||
ATF_UNIQUE
|
ATF_UNIQUE
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue