Crossfire Server, Trunk
cf_handle.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
cf_handle_type_apply
(
object
*
op
,
object
*applier,
int
aflags);
34
38
void
init_type_cf_handle
(
void
) {
39
register_apply
(
CF_HANDLE
,
cf_handle_type_apply
);
40
}
41
49
static
method_ret
cf_handle_type_apply
(
object
*
op
,
object
*applier,
int
aflags) {
50
(
void
)aflags;
51
draw_ext_info
(
NDI_UNIQUE
, 0, applier,
MSG_TYPE_APPLY
,
MSG_TYPE_APPLY_SUCCESS
,
52
"You turn the handle."
);
53
play_sound_map
(
SOUND_TYPE_ITEM
,
op
, 0,
"turn handle"
);
54
op
->value =
op
->value ? 0 : 1;
55
SET_ANIMATION
(
op
,
op
->value);
56
object_update
(
op
,
UP_OBJ_FACE
);
57
push_button
(
op
);
58
return
METHOD_OK
;
59
}
UP_OBJ_FACE
#define UP_OBJ_FACE
Definition:
object.h:519
global.h
CF_HANDLE
@ CF_HANDLE
Definition:
object.h:208
SOUND_TYPE_ITEM
#define SOUND_TYPE_ITEM
Definition:
newclient.h:335
object_update
void object_update(object *op, int action)
Definition:
object.c:1420
METHOD_OK
#define METHOD_OK
Definition:
ob_methods.h:15
SET_ANIMATION
#define SET_ANIMATION(ob, newanim)
Definition:
global.h:159
play_sound_map
void play_sound_map(int8_t sound_type, object *emitter, int dir, const char *action)
Definition:
sounds.c:113
push_button
void push_button(object *op)
Definition:
button.c:149
MSG_TYPE_APPLY_SUCCESS
#define MSG_TYPE_APPLY_SUCCESS
Definition:
newclient.h:603
sproto.h
nlohmann::detail::void
j template void())
Definition:
json.hpp:4099
register_apply
void register_apply(int ob_type, apply_func method)
Definition:
ob_types.c:62
method_ret
char method_ret
Definition:
ob_methods.h:14
ob_types.h
sounds.h
NDI_UNIQUE
#define NDI_UNIQUE
Definition:
newclient.h:262
give.op
op
Definition:
give.py:33
init_type_cf_handle
void init_type_cf_handle(void)
Definition:
cf_handle.c:38
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
ob_methods.h
cf_handle_type_apply
static method_ret cf_handle_type_apply(object *op, object *applier, int aflags)
Definition:
cf_handle.c:49
MSG_TYPE_APPLY
#define MSG_TYPE_APPLY
Definition:
newclient.h:408
crossfire-crossfire-server
types
cf_handle
cf_handle.c
Generated by
1.8.17