Crossfire Server, Branches 1.12  R18729
blindness.c
Go to the documentation of this file.
1 /*
2  CrossFire, A Multiplayer game for X-windows
3 
4  Copyright (C) 2008 Crossfire Development Team
5  Copyright (C) 1992 Frank Tore Johansen
6 
7  This program is free software; you can redistribute it and/or modify
8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation; either version 2 of the License, or
10  (at your option) any later version.
11 
12  This program is distributed in the hope that it will be useful,
13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  GNU General Public License for more details.
16 
17  You should have received a copy of the GNU General Public License
18  along with this program; if not, write to the Free Software
19  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 
21  The authors can be reached via e-mail at crossfire-devel@real-time.com
22 */
23 
28 #include <global.h>
29 #include <ob_methods.h>
30 #include <ob_types.h>
31 #include <sounds.h>
32 #include <sproto.h>
33 
34 static method_ret blindness_type_process(ob_methods *context, object *op);
35 
39 void init_type_blindness(void) {
41 }
42 
51 static method_ret blindness_type_process(ob_methods *context, object *op) {
52  if (--op->stats.food > 0)
53  return METHOD_OK;
55  if (op->env != NULL) {
56  change_abil(op->env, op);
57  fix_object(op->env);
58  }
59  remove_ob(op);
60  free_object(op);
61  return METHOD_OK;
62 }
static method_ret blindness_type_process(ob_methods *context, object *op)
Definition: blindness.c:51
void init_type_blindness(void)
Definition: blindness.c:39
char method_ret
Definition: ob_methods.h:41
int change_abil(object *op, object *tmp)
Definition: living.c:443
void remove_ob(object *op)
Definition: object.c:1515
#define METHOD_OK
Definition: ob_methods.h:42
struct obj * env
Definition: object.h:151
#define BLINDNESS
Definition: define.h:171
#define CLEAR_FLAG(xyz, p)
Definition: define.h:512
living stats
Definition: object.h:219
#define FLAG_APPLIED
Definition: define.h:531
void register_process(int ob_type, process_func method)
Definition: ob_types.c:88
void free_object(object *ob)
Definition: object.c:1238
void fix_object(object *op)
Definition: living.c:900
sint32 food
Definition: living.h:89