forked from github/server
the "moved" attribute is unused
so was a lot of other stuff.
This commit is contained in:
parent
b5b1050d73
commit
5518e43591
2 changed files with 0 additions and 102 deletions
|
@ -1,66 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright (c) 1998-2015, Enno Rehling <enno@eressea.de>
|
|
||||||
Katja Zedel <katze@felidae.kn-bremen.de
|
|
||||||
Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
||||||
|
|
||||||
Permission to use, copy, modify, and/or distribute this software for any
|
|
||||||
purpose with or without fee is hereby granted, provided that the above
|
|
||||||
copyright notice and this permission notice appear in all copies.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
||||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
||||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
||||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
||||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
||||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
||||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
**/
|
|
||||||
|
|
||||||
#include <platform.h>
|
|
||||||
#include <kernel/config.h>
|
|
||||||
#include "moved.h"
|
|
||||||
|
|
||||||
#include <util/attrib.h>
|
|
||||||
#include <util/gamedata.h>
|
|
||||||
#include <util/macros.h>
|
|
||||||
|
|
||||||
#include <storage.h>
|
|
||||||
|
|
||||||
static int age_moved(attrib * a, void *owner)
|
|
||||||
{
|
|
||||||
UNUSED_ARG(owner);
|
|
||||||
--a->data.i;
|
|
||||||
return a->data.i > 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void
|
|
||||||
write_moved(const attrib * a, const void *owner, struct storage *store)
|
|
||||||
{
|
|
||||||
WRITE_INT(store, a->data.i);
|
|
||||||
}
|
|
||||||
|
|
||||||
static int read_moved(attrib * a, void *owner, gamedata *data)
|
|
||||||
{
|
|
||||||
READ_INT(data->store, &a->data.i);
|
|
||||||
if (a->data.i != 0)
|
|
||||||
return AT_READ_OK;
|
|
||||||
else
|
|
||||||
return AT_READ_FAIL;
|
|
||||||
}
|
|
||||||
|
|
||||||
attrib_type at_moved = {
|
|
||||||
"moved", NULL, NULL, age_moved, write_moved, read_moved
|
|
||||||
};
|
|
||||||
|
|
||||||
bool get_moved(attrib ** alist)
|
|
||||||
{
|
|
||||||
return a_find(*alist, &at_moved) ? true : false;
|
|
||||||
}
|
|
||||||
|
|
||||||
void set_moved(attrib ** alist)
|
|
||||||
{
|
|
||||||
attrib *a = a_find(*alist, &at_moved);
|
|
||||||
if (a == NULL)
|
|
||||||
a = a_add(alist, a_new(&at_moved));
|
|
||||||
a->data.i = 2;
|
|
||||||
}
|
|
|
@ -1,36 +0,0 @@
|
||||||
/*
|
|
||||||
Copyright (c) 1998-2015, Enno Rehling <enno@eressea.de>
|
|
||||||
Katja Zedel <katze@felidae.kn-bremen.de
|
|
||||||
Christian Schlittchen <corwin@amber.kn-bremen.de>
|
|
||||||
|
|
||||||
Permission to use, copy, modify, and/or distribute this software for any
|
|
||||||
purpose with or without fee is hereby granted, provided that the above
|
|
||||||
copyright notice and this permission notice appear in all copies.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
||||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
||||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
||||||
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
||||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
||||||
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
||||||
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
||||||
**/
|
|
||||||
|
|
||||||
#ifndef H_ATTRIBUTE_MOVED
|
|
||||||
#define H_ATTRIBUTE_MOVED
|
|
||||||
#ifdef __cplusplus
|
|
||||||
extern "C" {
|
|
||||||
#endif
|
|
||||||
|
|
||||||
struct attrib;
|
|
||||||
struct attrib_type;
|
|
||||||
|
|
||||||
extern bool get_moved(struct attrib **alist);
|
|
||||||
extern void set_moved(struct attrib **alist);
|
|
||||||
|
|
||||||
extern struct attrib_type at_moved;
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
|
||||||
}
|
|
||||||
#endif
|
|
||||||
#endif
|
|
Loading…
Reference in a new issue