Crossfire Server, Branches 1.12  R18729
common_trap.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 
41 method_ret common_trap_type_move_on(ob_methods *context, object *trap, object *victim, object *originator) {
42  if (common_pre_ob_move_on(trap, victim, originator) == METHOD_ERROR)
43  return METHOD_OK;
44  if (trap->level && QUERY_FLAG(victim, FLAG_ALIVE))
45  spring_trap(trap, victim);
46  common_post_ob_move_on(trap, victim, originator);
47  return METHOD_OK;
48 }
49 
67  int det = 0;
68 
69  if (!op->level) {
70  return METHOD_OK; /* runes of level zero cannot detonate. */
71  }
72 
73  det = op->invisible;
74  if (!(rndm(0, MAX(1, (op->stats.Cha))-1))) {
75  op->invisible = 0;
76  op->speed_left -= 1;
77  } else
78  op->invisible = 1;
79  if (op->invisible != det)
81  return METHOD_OK;
82 }
void spring_trap(object *trap, object *victim)
Definition: rune.c:227
#define UP_OBJ_FACE
Definition: object.h:356
method_ret common_pre_ob_move_on(object *trap, object *victim, object *originator)
Definition: common_apply.c:51
#define METHOD_ERROR
Definition: ob_methods.h:44
sint16 invisible
Definition: object.h:211
void update_object(object *op, int action)
Definition: object.c:1112
method_ret common_trap_type_process(ob_methods *context, object *op)
Definition: common_trap.c:66
method_ret common_trap_type_move_on(ob_methods *context, object *trap, object *victim, object *originator)
Definition: common_trap.c:41
char method_ret
Definition: ob_methods.h:41
int rndm(int min, int max)
Definition: utils.c:174
#define FLAG_ALIVE
Definition: define.h:526
float speed_left
Definition: object.h:182
#define METHOD_OK
Definition: ob_methods.h:42
sint8 Cha
Definition: living.h:78
#define MAX(x, y)
Definition: define.h:70
#define QUERY_FLAG(xyz, p)
Definition: define.h:514
void common_post_ob_move_on(object *trap, object *victim, object *originator)
Definition: common_apply.c:88
living stats
Definition: object.h:219
sint16 level
Definition: object.h:202