Crossfire Server, Branches 1.12
R18729
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
trigger_button.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
trigger_button_type_move_on
(
ob_methods
*context,
object
*trap,
object
*victim,
object
*originator);
34
38
void
init_type_trigger_button
(
void
) {
39
register_move_on
(
TRIGGER_BUTTON
,
trigger_button_type_move_on
);
40
}
41
50
static
method_ret
trigger_button_type_move_on
(
ob_methods
*context,
object
*trap,
object
*victim,
object
*originator) {
51
if
(
common_pre_ob_move_on
(trap, victim, originator) ==
METHOD_ERROR
)
52
return
METHOD_OK
;
53
check_trigger
(trap, victim);
54
common_post_ob_move_on
(trap, victim, originator);
55
return
METHOD_OK
;
56
}
sounds.h
ob_methods
Definition:
ob_methods.h:72
common_pre_ob_move_on
method_ret common_pre_ob_move_on(object *trap, object *victim, object *originator)
Definition:
common_apply.c:51
METHOD_ERROR
#define METHOD_ERROR
Definition:
ob_methods.h:44
global.h
method_ret
char method_ret
Definition:
ob_methods.h:41
trigger_button_type_move_on
static method_ret trigger_button_type_move_on(ob_methods *context, object *trap, object *victim, object *originator)
Definition:
trigger_button.c:50
register_move_on
void register_move_on(int ob_type, move_on_func method)
Definition:
ob_types.c:106
METHOD_OK
#define METHOD_OK
Definition:
ob_methods.h:42
sproto.h
TRIGGER_BUTTON
#define TRIGGER_BUTTON
Definition:
define.h:142
ob_types.h
common_post_ob_move_on
void common_post_ob_move_on(object *trap, object *victim, object *originator)
Definition:
common_apply.c:88
check_trigger
int check_trigger(object *op, object *cause)
Definition:
button.c:525
ob_methods.h
init_type_trigger_button
void init_type_trigger_button(void)
Definition:
trigger_button.c:38
crossfire-code
server
branches
1.12
types
trigger_button
trigger_button.c
Generated on Sun Nov 18 2018 02:40:30 for Crossfire Server, Branches 1.12 by
1.8.6