Crossfire Server, Branches 1.12  R18729
trigger.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 
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 trigger_type_apply(ob_methods *context, object *op, object *applier, int aflags);
35 static method_ret trigger_type_process(ob_methods *context, object *op);
36 
40 void init_type_trigger(void) {
43 }
44 
53 static method_ret trigger_type_apply(ob_methods *context, object *op, object *applier, int aflags) {
54  if (check_trigger(op, applier)) {
56  "You turn the handle.", NULL);
57  play_sound_map(SOUND_TYPE_GROUND, op, 0, "turn handle");
58  } else {
60  "The handle doesn't move.", NULL);
61  }
62  return 1;
63 }
64 
71 static method_ret trigger_type_process(ob_methods *context, object *op) {
72  if ((unsigned char)++op->stats.wc >= NUM_ANIMATIONS(op)) {
73  op->stats.wc = 0;
74  check_trigger(op, NULL);
75  } else {
76  SET_ANIMATION(op, op->stats.wc);
78  }
79  return METHOD_OK;
80 }
#define UP_OBJ_FACE
Definition: object.h:356
#define MSG_TYPE_APPLY_FAILURE
Definition: newclient.h:519
#define SOUND_TYPE_GROUND
Definition: sounds.h:38
#define SET_ANIMATION(ob, newanim)
Definition: global.h:247
void draw_ext_info(int flags, int pri, const object *pl, uint8 type, uint8 subtype, const char *message, const char *oldmessage)
Definition: standalone.c:171
void update_object(object *op, int action)
Definition: object.c:1112
char method_ret
Definition: ob_methods.h:41
#define METHOD_OK
Definition: ob_methods.h:42
void register_apply(int ob_type, apply_func method)
Definition: ob_types.c:79
void play_sound_map(sint8 sound_type, object *emitter, int dir, const char *action)
Definition: sounds.c:90
#define TRIGGER
Definition: define.h:139
#define MSG_TYPE_APPLY
Definition: newclient.h:330
void init_type_trigger(void)
Definition: trigger.c:40
sint8 wc
Definition: living.h:79
#define MSG_TYPE_APPLY_SUCCESS
Definition: newclient.h:518
#define NUM_ANIMATIONS(ob)
Definition: global.h:255
living stats
Definition: object.h:219
static method_ret trigger_type_process(ob_methods *context, object *op)
Definition: trigger.c:71
void register_process(int ob_type, process_func method)
Definition: ob_types.c:88
#define NDI_UNIQUE
Definition: newclient.h:219
int check_trigger(object *op, object *cause)
Definition: button.c:525
static method_ret trigger_type_apply(ob_methods *context, object *op, object *applier, int aflags)
Definition: trigger.c:53