Crossfire Server, Trunk
poisoning.c
Go to the documentation of this file.
1 /*
2  CrossFire, A Multiplayer game for X-windows
3 
4  Copyright (C) 2007 Mark Wedel & 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 
27 #include <global.h>
28 #include <ob_methods.h>
29 #include <ob_types.h>
30 #include <sounds.h>
31 #include <sproto.h>
32 
33 static method_ret poisoning_type_process(object *op);
34 
38 void init_type_poisoning(void) {
40 }
41 
48  if (op->env == NULL
49  || !QUERY_FLAG(op->env, FLAG_ALIVE)
50  || op->env->stats.hp < 0) {
53  LOG(llevDebug, "Found POISONING with invalid env. Removing...\n");
54  return METHOD_ERROR;
55  }
56 
57  if (op->stats.food == 1) {
58  /* need to remove the object before fix_player is called, else fix_object
59  * will not do anything.
60  */
61  if (op->env->type == PLAYER) {
63  fix_object(op->env);
65  "You feel much better now.");
66  }
69  return METHOD_OK;
70  }
71 
72  if (op->env->type == PLAYER) {
73  op->env->stats.food--;
74  /* Not really the start of a bad effect, more the continuing effect */
76  "You feel very sick...");
77  }
78  (void)hit_player(op->env, op->stats.dam, op, AT_INTERNAL, 1);
79  return METHOD_OK;
80 }
PLAYER
@ PLAYER
Definition: object.h:107
global.h
object_remove
void object_remove(object *op)
Definition: object.c:1819
QUERY_FLAG
#define QUERY_FLAG(xyz, p)
Definition: define.h:226
register_process
void register_process(int ob_type, process_func method)
Definition: ob_types.c:71
METHOD_OK
#define METHOD_OK
Definition: ob_methods.h:15
MSG_TYPE_ATTRIBUTE
#define MSG_TYPE_ATTRIBUTE
Definition: newclient.h:405
AT_INTERNAL
#define AT_INTERNAL
Definition: attack.h:99
FLAG_APPLIED
#define FLAG_APPLIED
Definition: define.h:235
POISONING
@ POISONING
Definition: object.h:218
FLAG_ALIVE
#define FLAG_ALIVE
Definition: define.h:230
MSG_TYPE_ATTRIBUTE_BAD_EFFECT_START
#define MSG_TYPE_ATTRIBUTE_BAD_EFFECT_START
Definition: newclient.h:565
fix_object
void fix_object(object *op)
Definition: living.c:1126
sproto.h
nlohmann::detail::void
j template void())
Definition: json.hpp:4099
method_ret
char method_ret
Definition: ob_methods.h:14
ob_types.h
sounds.h
NDI_UNIQUE
#define NDI_UNIQUE
Definition: newclient.h:262
LOG
void LOG(LogLevel logLevel, const char *format,...)
Definition: logger.c:51
give.op
op
Definition: give.py:33
hit_player
int hit_player(object *op, int dam, object *hitter, uint32_t type, int full_hit)
Definition: attack.c:1860
CLEAR_FLAG
#define CLEAR_FLAG(xyz, p)
Definition: define.h:225
MSG_TYPE_ATTRIBUTE_BAD_EFFECT_END
#define MSG_TYPE_ATTRIBUTE_BAD_EFFECT_END
Definition: newclient.h:567
draw_ext_info
void draw_ext_info(int flags, int pri, const object *pl, uint8_t type, uint8_t subtype, const char *message)
Definition: main.c:309
object_free_drop_inventory
void object_free_drop_inventory(object *ob)
Definition: object.c:1546
METHOD_ERROR
#define METHOD_ERROR
Definition: ob_methods.h:17
ob_methods.h
poisoning_type_process
static method_ret poisoning_type_process(object *op)
Definition: poisoning.c:47
init_type_poisoning
void init_type_poisoning(void)
Definition: poisoning.c:38
llevDebug
@ llevDebug
Definition: logger.h:13