ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/time.C
Revision: 1.24
Committed: Fri Mar 26 01:04:44 2010 UTC (14 years, 2 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_0
Changes since 1.23: +1 -1 lines
Log Message:
update copyright for up to 2010

File Contents

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