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.17 by root, Thu Nov 8 19:43:23 2007 UTC vs.
Revision 1.30 by root, Sat Nov 17 23:40:00 2018 UTC

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

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines