Crossfire Server, Branches 1.12  R18729
clock.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 */
26 #include <global.h>
27 #include <ob_methods.h>
28 #include <ob_types.h>
29 #include <sounds.h>
30 #include <sproto.h>
31 
32 static method_ret clock_type_apply(ob_methods *context, object *op, object *applier, int aflags);
33 
37 void init_type_clock(void) {
39 }
40 
50 static method_ret clock_type_apply(ob_methods *context, object *op, object *applier, int aflags) {
51  if (applier->type == PLAYER) {
52  timeofday_t tod;
53 
54  get_tod(&tod);
55  play_sound_player_only(applier->contr, SOUND_TYPE_ITEM, op, 0, "tick");
57  "It is %d minute%s past %d o'clock %s",
58  "It is %d minute%s past %d o'clock %s",
59  tod.minute+1, ((tod.minute+1 < 2) ? "" : "s"),
60  ((tod.hour%14 == 0) ? 14 : ((tod.hour)%14)),
61  ((tod.hour >= 14) ? "pm" : "am"));
62  return METHOD_OK;
63  }
64  return METHOD_UNHANDLED;
65 }
int minute
Definition: tod.h:67
void draw_ext_info_format(int flags, int pri, const object *pl, uint8 type, uint8 subtype, const char *new_format, const char *old_format,...)
Definition: standalone.c:175
#define PLAYER
Definition: define.h:113
#define SOUND_TYPE_ITEM
Definition: sounds.h:37
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
struct pl * contr
Definition: object.h:134
#define MSG_TYPE_APPLY
Definition: newclient.h:330
#define METHOD_UNHANDLED
Definition: ob_methods.h:43
#define MSG_TYPE_APPLY_SUCCESS
Definition: newclient.h:518
void get_tod(timeofday_t *tod)
Definition: time.c:268
Definition: tod.h:61
void init_type_clock(void)
Definition: clock.c:37
#define CLOCK
Definition: define.h:121
int hour
Definition: tod.h:66
void play_sound_player_only(player *pl, sint8 sound_type, object *emitter, int dir, const char *action)
Definition: sounds.c:40
static method_ret clock_type_apply(ob_methods *context, object *op, object *applier, int aflags)
Definition: clock.c:50
#define NDI_UNIQUE
Definition: newclient.h:219
uint8 type
Definition: object.h:189