ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/time.C
(Generate patch)

Comparing deliantra/server/common/time.C (file contents):
Revision 1.9 by pippijn, Mon Jan 15 21:06:18 2007 UTC vs.
Revision 1.16 by root, Sun Jul 1 05:00:18 2007 UTC

1/* 1/*
2 * CrossFire, A Multiplayer game for X-windows 2 * This file is part of Crossfire TRT, the Roguelike Realtime MORPG.
3 * 3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * Crossfire TRT is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by 9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or 10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version. 11 * (at your option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21 * 20 *
22 * The authors can be reached via e-mail at <crossfire@schmorp.de> 21 * The authors can be reached via e-mail to <crossfire@schmorp.de>
23 */ 22 */
24 23
25#include <global.h> 24#include <global.h>
26#include <funcpoint.h> 25#include <funcpoint.h>
27#include <tod.h> 26#include <tod.h>
28 27
29#include <stdio.h> 28#include <cstdio>
29
30#include <sys/types.h> 30#include <sys/types.h>
31#include <sys/time.h> 31#include <sys/time.h>
32 32
33/* 33/*
34 * Gloabal variables: 34 * Gloabal variables:
35 */ 35 */
36tick_t pticks;
36 37
37long psaveind;
38long pticks;
39
40const char *season_name[] = { 38static const char *season_name[5] = {
41 "The Season of New Year", 39 "New Year",
42 "The Season of Growth", 40 "Growth",
43 "The Season of Harvest", 41 "Harvest",
44 "The Season of Decay", 42 "Decay",
45 "The Season of the Blizzard", 43 "the Blizzard",
46 "\n"
47}; 44};
48 45
49const char *weekdays[DAYS_PER_WEEK] = { 46static const char *weekdays[DAYS_PER_WEEK] = {
50 "the Day of the Moon", 47 "the Moon",
51 "the Day of the Bull", 48 "the Bull",
52 "the Day of the Deception", 49 "the Deception",
53 "the Day of Thunder", 50 "Thunder",
54 "the Day of Freedom", 51 "Freedom",
55 "the Day of the Great Gods", 52 "the Great Gods",
56 "the Day of the Sun" 53 "the Sun"
57}; 54};
58 55
59const char *month_name[MONTHS_PER_YEAR] = { 56static const char *month_name[MONTHS_PER_YEAR] = {
60 "Month of Winter", /* 0 */ 57 "Winter", /* 0 */
61 "Month of the Ice Dragon", 58 "the Ice Dragon",
62 "Month of the Frost Giant", 59 "the Frost Giant",
63 "Month of Valriel", 60 "Valriel",
64 "Month of Lythander", 61 "Lythander",
65 "Month of the Harvest", 62 "the Harvest",
66 "Month of Gaea", 63 "Gaea",
67 "Month of Futility", 64 "Futility",
68 "Month of the Dragon", 65 "the Dragon",
69 "Month of the Sun", 66 "the Sun",
70 "Month of the Great Infernus", 67 "the Great Infernus",
71 "Month of Ruggilli", 68 "Ruggilli",
72 "Month of the Dark Shades", 69 "the Dark Shades",
73 "Month of the Devourers", 70 "the Devourers",
74 "Month of Sorig", 71 "Sorig",
75 "Month of the Ancient Darkness", 72 "the Ancient Darkness",
76 "Month of Gorokh" 73 "Gorokh"
77}; 74};
78
79extern unsigned long todtick;
80 75
81void 76void
82get_tod (timeofday_t * tod) 77get_tod (timeofday_t * tod)
83{ 78{
79 unsigned int todtick = (unsigned int)(runtime * (1. / RUNTIME_PER_HOUR));
80
84 tod->year = todtick / HOURS_PER_YEAR; 81 tod->year = todtick / HOURS_PER_YEAR;
85 tod->month = (todtick / HOURS_PER_MONTH) % MONTHS_PER_YEAR; 82 tod->month = todtick / HOURS_PER_MONTH % MONTHS_PER_YEAR;
86 tod->day = (todtick % HOURS_PER_MONTH) / DAYS_PER_MONTH; 83 tod->day = todtick % HOURS_PER_MONTH / DAYS_PER_MONTH;
84 tod->hour = todtick % HOURS_PER_DAY;
85 tod->minute = (int)((runtime - todtick * RUNTIME_PER_HOUR) * (60. / RUNTIME_PER_HOUR));
86
87 tod->dayofweek = tod->day % DAYS_PER_WEEK; 87 tod->dayofweek = tod->day % DAYS_PER_WEEK;
88 tod->hour = todtick % HOURS_PER_DAY;
89 tod->minute = (pticks % PTICKS_PER_CLOCK) / (PTICKS_PER_CLOCK / 58);
90 if (tod->minute > 58)
91 tod->minute = 58; /* it's imprecise at best anyhow */
92 tod->weekofmonth = tod->day / WEEKS_PER_MONTH; 88 tod->weekofmonth = tod->day / WEEKS_PER_MONTH;
93 if (tod->month < 3) 89 tod->season = min (4, tod->month / 3);
94 tod->season = 0;
95 else if (tod->month < 6)
96 tod->season = 1;
97 else if (tod->month < 9)
98 tod->season = 2;
99 else if (tod->month < 12)
100 tod->season = 3;
101 else
102 tod->season = 4;
103} 90}
104 91
105void 92void
106print_tod (object *op) 93print_tod (object *op)
107{ 94{
108 timeofday_t tod; 95 timeofday_t tod;
96 get_tod (&tod);
97
98 char todmsg [1024];
99
100 int day = tod.day + 1;
109 const char *suf; 101 const char *suf;
110 int day;
111
112 get_tod (&tod);
113 sprintf (errmsg, "It is %d minute%s past %d o'clock %s, on %s",
114 tod.minute + 1, ((tod.minute + 1 < 2) ? "" : "s"),
115 ((tod.hour % 14 == 0) ? 14 : ((tod.hour) % 14)), ((tod.hour >= 14) ? "pm" : "am"), weekdays[tod.dayofweek]);
116 new_draw_info (NDI_UNIQUE, 0, op, errmsg);
117
118 day = tod.day + 1;
119 if (day == 1 || ((day % 10) == 1 && day > 20)) 102 if (day == 1 || ((day % 10) == 1 && day > 20))
120 suf = "st"; 103 suf = "st";
121 else if (day == 2 || ((day % 10) == 2 && day > 20)) 104 else if (day == 2 || ((day % 10) == 2 && day > 20))
122 suf = "nd"; 105 suf = "nd";
123 else if (day == 3 || ((day % 10) == 3 && day > 20)) 106 else if (day == 3 || ((day % 10) == 3 && day > 20))
124 suf = "rd"; 107 suf = "rd";
125 else 108 else
126 suf = "th"; 109 suf = "th";
127 sprintf (errmsg, "The %d%s Day of the %s, Year %d", day, suf, month_name[tod.month], tod.year + 1);
128 new_draw_info (NDI_UNIQUE, 0, op, errmsg);
129 110
130 sprintf (errmsg, "Time of Year: %s", season_name[tod.season]); 111 snprintf (todmsg, sizeof (todmsg),
112 "It is %d minute%s past %d o'clock %s, on the Day of %s,\n"
113 "the %d%s Day of the Month of %s, Year %d.\n"
114 "It is the Season of %s.",
115
116 tod.minute + 1,
117 (tod.minute + 1 < 2) ? "" : "s",
118 (tod.hour + 13) % 14 + 1,
119 (tod.hour >= 14 ? "pm" : "am"),
120 weekdays[tod.dayofweek],
121
122 day, suf, month_name[tod.month], tod.year + 1,
123
124 season_name[tod.season]);
125
131 new_draw_info (NDI_UNIQUE, 0, op, errmsg); 126 new_draw_info (NDI_UNIQUE, 0, op, todmsg);
132} 127}
133 128

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines