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.3 by root, Thu Aug 24 13:13:48 2006 UTC vs.
Revision 1.5 by root, Thu Sep 14 22:34:00 2006 UTC

1/*
2 * static char *rcsid_time_c =
3 * "$Id: time.C,v 1.3 2006/08/24 13:13:48 root Exp $";
4 */
5
6/* 1/*
7 CrossFire, A Multiplayer game for X-windows 2 CrossFire, A Multiplayer game for X-windows
8 3
9 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 4 Copyright (C) 2002 Mark Wedel & Crossfire Development Team
10 Copyright (C) 1992 Frank Tore Johansen 5 Copyright (C) 1992 Frank Tore Johansen
21 16
22 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software 18 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 20
26 The authors can be reached via e-mail at crossfire-devel@real-time.com 21 The authors can be reached via e-mail at <crossfire@schmorp.de>
27*/ 22*/
28 23
29#include <global.h> 24#include <global.h>
30#include <funcpoint.h> 25#include <funcpoint.h>
31#include <tod.h> 26#include <tod.h>
32 27
33#ifndef WIN32 /* ---win32 exclude header */ 28#ifndef WIN32 /* ---win32 exclude header */
34#include <stdio.h> 29# include <stdio.h>
35#include <sys/types.h> 30# include <sys/types.h>
36#include <sys/time.h> 31# include <sys/time.h>
37#endif /* win32 */ 32#endif /* win32 */
38 33
39/* 34/*
40 * Gloabal variables: 35 * Gloabal variables:
41 */ 36 */
42 37
43long psaveind; 38long psaveind;
44long pticks; 39long pticks;
45 40
46const char *season_name[] = 41const char *season_name[] = {
47{
48 "The Season of New Year", 42 "The Season of New Year",
49 "The Season of Growth", 43 "The Season of Growth",
50 "The Season of Harvest", 44 "The Season of Harvest",
51 "The Season of Decay", 45 "The Season of Decay",
52 "The Season of the Blizzard", 46 "The Season of the Blizzard",
53 "\n" 47 "\n"
54}; 48};
55 49
56const char *weekdays[DAYS_PER_WEEK] = { 50const char *weekdays[DAYS_PER_WEEK] = {
57 "the Day of the Moon", 51 "the Day of the Moon",
58 "the Day of the Bull", 52 "the Day of the Bull",
59 "the Day of the Deception", 53 "the Day of the Deception",
60 "the Day of Thunder", 54 "the Day of Thunder",
61 "the Day of Freedom", 55 "the Day of Freedom",
62 "the Day of the Great Gods", 56 "the Day of the Great Gods",
63 "the Day of the Sun" 57 "the Day of the Sun"
64}; 58};
65 59
66const char *month_name[MONTHS_PER_YEAR] = { 60const char *month_name[MONTHS_PER_YEAR] = {
67 "Month of Winter", /* 0 */ 61 "Month of Winter", /* 0 */
68 "Month of the Ice Dragon", 62 "Month of the Ice Dragon",
69 "Month of the Frost Giant", 63 "Month of the Frost Giant",
70 "Month of Valriel", 64 "Month of Valriel",
71 "Month of Lythander", 65 "Month of Lythander",
72 "Month of the Harvest", 66 "Month of the Harvest",
73 "Month of Gaea", 67 "Month of Gaea",
74 "Month of Futility", 68 "Month of Futility",
75 "Month of the Dragon", 69 "Month of the Dragon",
76 "Month of the Sun", 70 "Month of the Sun",
77 "Month of the Great Infernus", 71 "Month of the Great Infernus",
78 "Month of Ruggilli", 72 "Month of Ruggilli",
79 "Month of the Dark Shades", 73 "Month of the Dark Shades",
80 "Month of the Devourers", 74 "Month of the Devourers",
81 "Month of Sorig", 75 "Month of Sorig",
82 "Month of the Ancient Darkness", 76 "Month of the Ancient Darkness",
83 "Month of Gorokh" 77 "Month of Gorokh"
84}; 78};
85 79
86extern unsigned long todtick; 80extern unsigned long todtick;
87 81
88void 82void
89get_tod(timeofday_t *tod) 83get_tod (timeofday_t * tod)
90{ 84{
91 tod->year = todtick/HOURS_PER_YEAR; 85 tod->year = todtick / HOURS_PER_YEAR;
92 tod->month = (todtick/HOURS_PER_MONTH)%MONTHS_PER_YEAR; 86 tod->month = (todtick / HOURS_PER_MONTH) % MONTHS_PER_YEAR;
93 tod->day = (todtick%HOURS_PER_MONTH)/DAYS_PER_MONTH; 87 tod->day = (todtick % HOURS_PER_MONTH) / DAYS_PER_MONTH;
94 tod->dayofweek = tod->day%DAYS_PER_WEEK; 88 tod->dayofweek = tod->day % DAYS_PER_WEEK;
95 tod->hour = todtick%HOURS_PER_DAY; 89 tod->hour = todtick % HOURS_PER_DAY;
96 tod->minute = (pticks%PTICKS_PER_CLOCK)/(PTICKS_PER_CLOCK/58); 90 tod->minute = (pticks % PTICKS_PER_CLOCK) / (PTICKS_PER_CLOCK / 58);
97 if (tod->minute > 58) 91 if (tod->minute > 58)
98 tod->minute = 58; /* it's imprecise at best anyhow */ 92 tod->minute = 58; /* it's imprecise at best anyhow */
99 tod->weekofmonth = tod->day/WEEKS_PER_MONTH; 93 tod->weekofmonth = tod->day / WEEKS_PER_MONTH;
100 if (tod->month < 3) 94 if (tod->month < 3)
101 tod->season = 0; 95 tod->season = 0;
102 else if (tod->month < 6) 96 else if (tod->month < 6)
103 tod->season = 1; 97 tod->season = 1;
104 else if (tod->month < 9) 98 else if (tod->month < 9)
108 else 102 else
109 tod->season = 4; 103 tod->season = 4;
110} 104}
111 105
112void 106void
113print_tod(object *op) 107print_tod (object *op)
114{ 108{
115 timeofday_t tod; 109 timeofday_t tod;
116 const char *suf; 110 const char *suf;
117 int day; 111 int day;
118 112
119 get_tod(&tod); 113 get_tod (&tod);
120 sprintf(errmsg, "It is %d minute%s past %d o'clock %s, on %s", 114 sprintf (errmsg, "It is %d minute%s past %d o'clock %s, on %s",
121 tod.minute+1, ((tod.minute+1 < 2) ? "" : "s"), 115 tod.minute + 1, ((tod.minute + 1 < 2) ? "" : "s"),
122 ((tod.hour % 14 == 0) ? 14 : ((tod.hour)%14)), 116 ((tod.hour % 14 == 0) ? 14 : ((tod.hour) % 14)), ((tod.hour >= 14) ? "pm" : "am"), weekdays[tod.dayofweek]);
123 ((tod.hour >= 14) ? "pm" : "am"),
124 weekdays[tod.dayofweek]);
125 new_draw_info(NDI_UNIQUE, 0,op,errmsg); 117 new_draw_info (NDI_UNIQUE, 0, op, errmsg);
126 118
127 day = tod.day + 1; 119 day = tod.day + 1;
128 if (day == 1 || ((day % 10) == 1 && day > 20)) 120 if (day == 1 || ((day % 10) == 1 && day > 20))
129 suf = "st"; 121 suf = "st";
130 else if (day == 2 || ((day % 10) == 2 && day > 20)) 122 else if (day == 2 || ((day % 10) == 2 && day > 20))
131 suf = "nd"; 123 suf = "nd";
132 else if (day == 3 || ((day % 10) == 3 && day > 20)) 124 else if (day == 3 || ((day % 10) == 3 && day > 20))
133 suf = "rd"; 125 suf = "rd";
134 else 126 else
135 suf = "th"; 127 suf = "th";
136 sprintf(errmsg, "The %d%s Day of the %s, Year %d", day, suf, 128 sprintf (errmsg, "The %d%s Day of the %s, Year %d", day, suf, month_name[tod.month], tod.year + 1);
137 month_name[tod.month], tod.year+1);
138 new_draw_info(NDI_UNIQUE, 0,op,errmsg); 129 new_draw_info (NDI_UNIQUE, 0, op, errmsg);
139 130
140 sprintf(errmsg, "Time of Year: %s", season_name[tod.season]); 131 sprintf (errmsg, "Time of Year: %s", season_name[tod.season]);
141 new_draw_info(NDI_UNIQUE, 0,op,errmsg); 132 new_draw_info (NDI_UNIQUE, 0, op, errmsg);
142} 133}
143 134
144long 135long
145seconds(void) 136seconds (void)
146{ 137{
147 struct timeval now; 138 struct timeval now;
148 139
149 (void) GETTIMEOFDAY(&now); 140 (void) GETTIMEOFDAY (&now);
150 return now.tv_sec; 141 return now.tv_sec;
151} 142}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines