Crossfire Server, Trunk
director.cpp
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 
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 director_type_move_on(object *trap, object *victim, object *originator);
35 
36 static method_ret director_process(object *op) {
37  if (op->stats.maxsp)
39  return METHOD_OK;
40 }
41 
45 void init_type_director(void) {
48 }
49 
57 static method_ret director_type_move_on(object *trap, object *victim, object *originator) {
58  if (common_pre_ob_move_on(trap, victim, originator) == METHOD_ERROR)
59  return METHOD_OK;
60  if (victim->direction && !should_director_abort(trap, victim)) {
61  victim->direction = trap->stats.sp;
63  }
64  common_post_ob_move_on(trap, victim, originator);
65  return METHOD_OK;
66 }
init_type_director
void init_type_director(void)
Definition: director.cpp:45
global.h
object_update_turn_face
void object_update_turn_face(object *op)
Definition: object.cpp:1332
METHOD_OK
#define METHOD_OK
Definition: ob_methods.h:15
register_move_on
void register_move_on(int ob_type, move_on_func method)
Definition: ob_types.cpp:89
register_process
void register_process(int ob_type, process_func method)
Definition: ob_types.cpp:71
director_type_move_on
static method_ret director_type_move_on(object *trap, object *victim, object *originator)
Definition: director.cpp:57
sword_of_souls.victim
victim
Definition: sword_of_souls.py:12
common_pre_ob_move_on
method_ret common_pre_ob_move_on(object *trap, object *victim, object *originator)
Definition: common_apply.cpp:35
should_director_abort
int should_director_abort(const object *op, const object *victim)
Definition: apply.cpp:68
sproto.h
living::sp
int16_t sp
Definition: living.h:42
animate_turning
void animate_turning(object *op)
Definition: button.cpp:270
method_ret
char method_ret
Definition: ob_methods.h:14
ob_types.h
sounds.h
give.op
op
Definition: give.py:33
DIRECTOR
@ DIRECTOR
Definition: object.h:227
METHOD_ERROR
#define METHOD_ERROR
Definition: ob_methods.h:17
ob_methods.h
object::stats
living stats
Definition: object.h:378
director_process
static method_ret director_process(object *op)
Definition: director.cpp:36
common_post_ob_move_on
void common_post_ob_move_on(object *trap, object *victim, object *originator)
Definition: common_apply.cpp:67