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

Comparing deliantra/server/server/c_misc.C (file contents):
Revision 1.6 by root, Mon Sep 4 11:08:00 2006 UTC vs.
Revision 1.7 by root, Sun Sep 10 15:59:57 2006 UTC

1
1/* 2/*
2 * static char *rcsid_c_misc_c = 3 * static char *rcsid_c_misc_c =
3 * "$Id: c_misc.C,v 1.6 2006/09/04 11:08:00 root Exp $"; 4 * "$Id: c_misc.C,v 1.7 2006/09/10 15:59:57 root Exp $";
4 */ 5 */
5 6
6/* 7/*
7 CrossFire, A Multiplayer game for X-windows 8 CrossFire, A Multiplayer game for X-windows
8 9
27*/ 28*/
28 29
29#include <global.h> 30#include <global.h>
30#include <loader.h> 31#include <loader.h>
31#ifndef __CEXTRACT__ 32#ifndef __CEXTRACT__
32#include <sproto.h> 33# include <sproto.h>
33#endif 34#endif
34 35
35extern weathermap_t **weathermap; 36extern weathermap_t **weathermap;
36 37
37/* Handles misc. input request - things like hash table, malloc, maps, 38/* Handles misc. input request - things like hash table, malloc, maps,
38 * who, etc. 39 * who, etc.
39 */ 40 */
40 41
42void
41void map_info(object *op, char *search) { 43map_info (object *op, char *search)
44{
42 mapstruct *m; 45 mapstruct *m;
43 char buf[MAX_BUF], map_path[MAX_BUF]; 46 char buf[MAX_BUF], map_path[MAX_BUF];
44 long sec = seconds(); 47 long sec = seconds ();
45 new_draw_info_format(NDI_UNIQUE, 0, op, 48
46 "Current time is: %02ld:%02ld:%02ld.", 49 new_draw_info_format (NDI_UNIQUE, 0, op, "Current time is: %02ld:%02ld:%02ld.", (sec % 86400) / 3600, (sec % 3600) / 60, sec % 60);
47 (sec%86400)/3600,(sec%3600)/60,sec%60);
48 new_draw_info(NDI_UNIQUE, 0,op,"Path Pl PlM IM TO Dif Reset"); 50 new_draw_info (NDI_UNIQUE, 0, op, "Path Pl PlM IM TO Dif Reset");
49 for(m=first_map;m!=NULL;m=m->next) { 51 for (m = first_map; m != NULL; m = m->next)
52 {
50 53
51 if ( search && strstr(m->path,search)==NULL ) continue; /* Skip unwanted maps */ 54 if (search && strstr (m->path, search) == NULL)
55 continue; /* Skip unwanted maps */
52 /* Print out the last 18 characters of the map name... */ 56 /* Print out the last 18 characters of the map name... */
53 if (strlen(m->path)<=18) strcpy(map_path, m->path); 57 if (strlen (m->path) <= 18)
58 strcpy (map_path, m->path);
59 else
54 else strcpy(map_path, m->path + strlen(m->path) - 18); 60 strcpy (map_path, m->path + strlen (m->path) - 18);
55 sprintf(buf,"%-18.18s %2d %2d %1d %4d %2d %02d:%02d:%02d", 61 sprintf (buf, "%-18.18s %2d %2d %1d %4d %2d %02d:%02d:%02d",
56 map_path, m->players,players_on_map(m,FALSE), 62 map_path, m->players, players_on_map (m, FALSE),
57 m->in_memory,m->timeout,m->difficulty, 63 m->in_memory, m->timeout, m->difficulty,
58 (MAP_WHEN_RESET(m)%86400)/3600,(MAP_WHEN_RESET(m)%3600)/60, 64 (MAP_WHEN_RESET (m) % 86400) / 3600, (MAP_WHEN_RESET (m) % 3600) / 60, MAP_WHEN_RESET (m) % 60);
59 MAP_WHEN_RESET(m)%60);
60 new_draw_info(NDI_UNIQUE, 0,op,buf); 65 new_draw_info (NDI_UNIQUE, 0, op, buf);
61 } 66 }
62} 67}
63 68
64/* This command dumps the body information for object *op. 69/* This command dumps the body information for object *op.
65 * it doesn't care what the params are. 70 * it doesn't care what the params are.
66 * This is mostly meant as a debug command. 71 * This is mostly meant as a debug command.
67 */ 72 */
73int
68int command_body(object *op, char *params) 74command_body (object *op, char *params)
69{ 75{
70 int i; 76 int i;
71 77
72 /* Too hard to try and make a header that lines everything up, so just 78 /* Too hard to try and make a header that lines everything up, so just
73 * give a description. 79 * give a description.
74 */ 80 */
75 new_draw_info(NDI_UNIQUE, 0, op, "The first column is the name of the body location."); 81 new_draw_info (NDI_UNIQUE, 0, op, "The first column is the name of the body location.");
76 new_draw_info(NDI_UNIQUE, 0, op, "The second column is how many of those locations your body has."); 82 new_draw_info (NDI_UNIQUE, 0, op, "The second column is how many of those locations your body has.");
77 new_draw_info(NDI_UNIQUE, 0, op, "The third column is how many slots in that location are available."); 83 new_draw_info (NDI_UNIQUE, 0, op, "The third column is how many slots in that location are available.");
78 for (i=0; i<NUM_BODY_LOCATIONS; i++) { 84 for (i = 0; i < NUM_BODY_LOCATIONS; i++)
85 {
79 /* really debugging - normally body_used should not be set to anything 86 /* really debugging - normally body_used should not be set to anything
80 * if body_info isn't also set. 87 * if body_info isn't also set.
81 */ 88 */
82 if (op->body_info[i] || op->body_used[i]) { 89 if (op->body_info[i] || op->body_used[i])
83 new_draw_info_format(NDI_UNIQUE, 0, op,
84 "%-30s %5d %5d", body_locations[i].use_name, op->body_info[i], op->body_used[i]);
85 } 90 {
91 new_draw_info_format (NDI_UNIQUE, 0, op, "%-30s %5d %5d", body_locations[i].use_name, op->body_info[i], op->body_used[i]);
92 }
86 } 93 }
87 if (!QUERY_FLAG(op, FLAG_USE_ARMOUR)) 94 if (!QUERY_FLAG (op, FLAG_USE_ARMOUR))
88 new_draw_info(NDI_UNIQUE, 0, op, "You are not allowed to wear armor"); 95 new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to wear armor");
89 if (!QUERY_FLAG(op, FLAG_USE_WEAPON)) 96 if (!QUERY_FLAG (op, FLAG_USE_WEAPON))
90 new_draw_info(NDI_UNIQUE, 0, op, "You are not allowed to use weapons"); 97 new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to use weapons");
91 98
92 return 1; 99 return 1;
93} 100}
94 101
95 102
103int
96int command_motd(object *op, char *params) 104command_motd (object *op, char *params)
97{ 105{
98 display_motd(op); 106 display_motd (op);
99 return 1; 107 return 1;
100} 108}
101 109
110int
102int command_bug(object *op, char *params) 111command_bug (object *op, char *params)
103{ 112{
104 char buf[MAX_BUF]; 113 char buf[MAX_BUF];
105 114
106 if (params == NULL) { 115 if (params == NULL)
116 {
107 new_draw_info(NDI_UNIQUE, 0,op,"what bugs?"); 117 new_draw_info (NDI_UNIQUE, 0, op, "what bugs?");
108 return 1; 118 return 1;
109 } 119 }
110 strcpy(buf,op->name); 120 strcpy (buf, op->name);
111 strcat(buf," bug-reports: "); 121 strcat (buf, " bug-reports: ");
112 strncat(buf,++params,MAX_BUF - strlen(buf) ); 122 strncat (buf, ++params, MAX_BUF - strlen (buf));
113 buf[MAX_BUF - 1] = '\0'; 123 buf[MAX_BUF - 1] = '\0';
114 bug_report(buf); 124 bug_report (buf);
115 LOG(llevError,"%s\n",buf); 125 LOG (llevError, "%s\n", buf);
116 new_draw_info(NDI_ALL | NDI_UNIQUE, 1, NULL, buf); 126 new_draw_info (NDI_ALL | NDI_UNIQUE, 1, NULL, buf);
117 new_draw_info(NDI_UNIQUE, 0,op, "OK, thanks!"); 127 new_draw_info (NDI_UNIQUE, 0, op, "OK, thanks!");
118 return 1; 128 return 1;
119} 129}
120 130
121/* 131/*
122 * Pretty much identical to current map_info, but on a bigger scale 132 * Pretty much identical to current map_info, but on a bigger scale
123 * This function returns the name of the players current region, and 133 * This function returns the name of the players current region, and
124 * a description of it. It is there merely for flavour text. 134 * a description of it. It is there merely for flavour text.
125 */ 135 */
136void
126void current_region_info(object *op) { 137current_region_info (object *op)
138{
127 /* 139 /*
128 * Ok I /suppose/ I should write a seperate function for this, but it isn't 140 * Ok I /suppose/ I should write a seperate function for this, but it isn't
129 * going to be /that/ slow, and won't get called much 141 * going to be /that/ slow, and won't get called much
130 */ 142 */
131 region *r = get_region_by_name(get_name_of_region_for_map(op->map)); 143 region *r = get_region_by_name (get_name_of_region_for_map (op->map));
132 144
133 if (!r) 145 if (!r)
134 return; 146 return;
135 /* This should only be possible if regions are not operating on this server. */ 147 /* This should only be possible if regions are not operating on this server. */
136 148
137 new_draw_info_format(NDI_UNIQUE, 0,op, 149 new_draw_info_format (NDI_UNIQUE, 0, op, "You are in %s. \n %s", get_region_longname (r), get_region_msg (r));
138 "You are in %s. \n %s", get_region_longname(r), get_region_msg(r));
139} 150}
140 151
152void
141void current_map_info(object *op) { 153current_map_info (object *op)
154{
142 mapstruct *m = op->map; 155 mapstruct *m = op->map;
143 156
144 if (!m) 157 if (!m)
145 return; 158 return;
146 159
147 new_draw_info_format(NDI_UNIQUE, 0,op,
148 "%s (%s) in %s", m->name, m->path, get_name_of_region_for_map(m)); 160 new_draw_info_format (NDI_UNIQUE, 0, op, "%s (%s) in %s", m->name, m->path, get_name_of_region_for_map (m));
149 161
150 if (QUERY_FLAG(op,FLAG_WIZ)) { 162 if (QUERY_FLAG (op, FLAG_WIZ))
163 {
151 new_draw_info_format(NDI_UNIQUE, 0, op, 164 new_draw_info_format (NDI_UNIQUE, 0, op,
152 "players:%d difficulty:%d size:%dx%d start:%dx%d timeout %ld", 165 "players:%d difficulty:%d size:%dx%d start:%dx%d timeout %ld",
153 m->players, m->difficulty, 166 m->players, m->difficulty, MAP_WIDTH (m), MAP_HEIGHT (m), MAP_ENTER_X (m), MAP_ENTER_Y (m), MAP_TIMEOUT (m));
154 MAP_WIDTH(m), MAP_HEIGHT(m),
155 MAP_ENTER_X(m), MAP_ENTER_Y(m),
156 MAP_TIMEOUT(m));
157 167
158 } 168 }
159 if (m->msg) 169 if (m->msg)
160 new_draw_info(NDI_UNIQUE, NDI_NAVY, op, m->msg); 170 new_draw_info (NDI_UNIQUE, NDI_NAVY, op, m->msg);
161} 171}
162 172
163#ifdef DEBUG_MALLOC_LEVEL 173#ifdef DEBUG_MALLOC_LEVEL
174int
164int command_malloc_verify(object *op, char *parms) 175command_malloc_verify (object *op, char *parms)
165{ 176{
166 extern int malloc_verify(void); 177 extern int malloc_verify (void);
167 178
168 if (!malloc_verify()) 179 if (!malloc_verify ())
169 new_draw_info(NDI_UNIQUE, 0,op,"Heap is corrupted."); 180 new_draw_info (NDI_UNIQUE, 0, op, "Heap is corrupted.");
170 else 181 else
171 new_draw_info(NDI_UNIQUE, 0,op,"Heap checks out OK."); 182 new_draw_info (NDI_UNIQUE, 0, op, "Heap checks out OK.");
172 return 1; 183 return 1;
173 } 184}
174#endif 185#endif
175 186
187int
176int command_whereabouts(object *op, char *params) { 188command_whereabouts (object *op, char *params)
189{
177 190
178 region *reg; 191 region *reg;
179 player *pl; 192 player *pl;
180 193
181 /* 194 /*
182 * reset the counter on the region, then use it to store the number of 195 * reset the counter on the region, then use it to store the number of
183 * players there. 196 * players there.
184 * I don't know how thread-safe this would be, I suspect not very.... 197 * I don't know how thread-safe this would be, I suspect not very....
185 */ 198 */
186 for (reg=first_region;reg!=NULL;reg=reg->next) { 199 for (reg = first_region; reg != NULL; reg = reg->next)
200 {
187 reg->counter=0; 201 reg->counter = 0;
188 } 202 }
189 for (pl=first_player;pl!=NULL;pl=pl->next) 203 for (pl = first_player; pl != NULL; pl = pl->next)
190 if (pl->ob->map!=NULL) 204 if (pl->ob->map != NULL)
191 get_region_by_map(pl->ob->map)->counter++; 205 get_region_by_map (pl->ob->map)->counter++;
192 206
193 /* we only want to print out by places with a 'longname' field...*/ 207 /* we only want to print out by places with a 'longname' field... */
194 for (reg=first_region;reg!=NULL;reg=reg->next) { 208 for (reg = first_region; reg != NULL; reg = reg->next)
209 {
195 if (reg->longname==NULL && reg->counter>0) { 210 if (reg->longname == NULL && reg->counter > 0)
211 {
196 if(reg->parent !=NULL) { 212 if (reg->parent != NULL)
213 {
197 reg->parent->counter+=reg->counter; 214 reg->parent->counter += reg->counter;
198 reg->counter=0; 215 reg->counter = 0;
199 } 216 }
200 else /*uh oh, we shouldn't be here. */ 217 else /*uh oh, we shouldn't be here. */
201 LOG(llevError,"command_whereabouts() Region %s with no longname has no parent", reg->name); 218 LOG (llevError, "command_whereabouts() Region %s with no longname has no parent", reg->name);
202 } 219 }
203 } 220 }
204 new_draw_info_format(NDI_UNIQUE, 0,op, 221 new_draw_info_format (NDI_UNIQUE, 0, op, "In the world currently there are:");
205 "In the world currently there are:");
206 for (reg=first_region;reg!=NULL;reg=reg->next) 222 for (reg = first_region; reg != NULL; reg = reg->next)
207 if(reg->counter>0) 223 if (reg->counter > 0)
208 new_draw_info_format(NDI_UNIQUE, 0,op, 224 new_draw_info_format (NDI_UNIQUE, 0, op, "%u players in %s", reg->counter, get_region_longname (reg));
209 "%u players in %s", reg->counter, get_region_longname(reg));
210 return 1; 225 return 1;
211} 226}
212 227
213typedef struct 228typedef struct
214 { 229{
215 char namebuf[MAX_BUF]; 230 char namebuf[MAX_BUF];
216 int login_order; 231 int login_order;
217 } chars_names; 232} chars_names;
218 233
219/*local functon for qsort comparison*/ 234/*local functon for qsort comparison*/
235static int
220static int name_cmp (const chars_names *c1, const chars_names *c2) 236name_cmp (const chars_names * c1, const chars_names * c2)
221 { 237{
222 return strcasecmp (c1->namebuf, c2->namebuf); 238 return strcasecmp (c1->namebuf, c2->namebuf);
223 } 239}
224 240
241int
225int command_who (object *op, char *params) { 242command_who (object *op, char *params)
243{
226 player *pl; 244 player *pl;
227 uint16 i; 245 uint16 i;
228 region *reg; 246 region *reg;
229 char* format; 247 char *format;
230 int num_players = 0; 248 int num_players = 0;
231 int num_wiz = 0; 249 int num_wiz = 0;
232 int num_afk = 0; 250 int num_afk = 0;
233 chars_names *chars = NULL; 251 chars_names *chars = NULL;
234 252
235 /* 253 /*
236 * The who formats are defined in config to be blank. They should have been 254 * The who formats are defined in config to be blank. They should have been
237 * overridden by the settings file, if there are no entries however, it will 255 * overridden by the settings file, if there are no entries however, it will
238 * have stayed blank. Since this probably isn't what is wanted, we will check if 256 * have stayed blank. Since this probably isn't what is wanted, we will check if
239 * new formats have been specified, and if not we will use the old defaults. 257 * new formats have been specified, and if not we will use the old defaults.
240 */ 258 */
241 if (!strcmp(settings.who_format,"")) 259 if (!strcmp (settings.who_format, ""))
242 strcpy(settings.who_format, "%N_%T%t%h%d%n[%m]"); 260 strcpy (settings.who_format, "%N_%T%t%h%d%n[%m]");
243 if (!strcmp(settings.who_wiz_format,"")) 261 if (!strcmp (settings.who_wiz_format, ""))
244 strcpy(settings.who_wiz_format, "%N_%T%t%h%d%nLevel %l [%m](@%i)(%c)"); 262 strcpy (settings.who_wiz_format, "%N_%T%t%h%d%nLevel %l [%m](@%i)(%c)");
245 if (op == NULL || QUERY_FLAG(op, FLAG_WIZ)) 263 if (op == NULL || QUERY_FLAG (op, FLAG_WIZ))
246 format=settings.who_wiz_format; 264 format = settings.who_wiz_format;
247 else 265 else
248 format=settings.who_format; 266 format = settings.who_format;
249 267
250 reg=get_region_from_string(params); 268 reg = get_region_from_string (params);
269
270 for (pl = first_player; pl != NULL; pl = pl->next)
251 271 {
252 for (pl=first_player;pl!=NULL;pl=pl->next) {
253 if (pl->ob->map == NULL) 272 if (pl->ob->map == NULL)
254 continue; 273 continue;
255 if (pl->hidden && !QUERY_FLAG(op, FLAG_WIZ)) continue; 274 if (pl->hidden && !QUERY_FLAG (op, FLAG_WIZ))
256 275 continue;
276
257 if(!region_is_child_of_region(get_region_by_map(pl->ob->map),reg)) continue; 277 if (!region_is_child_of_region (get_region_by_map (pl->ob->map), reg))
278 continue;
258 279
259 if (pl->state==ST_PLAYING || pl->state==ST_GET_PARTY_PASSWORD) { 280 if (pl->state == ST_PLAYING || pl->state == ST_GET_PARTY_PASSWORD)
281 {
260 282
261 num_players++; 283 num_players++;
262 chars = (chars_names *) realloc(chars, num_players*sizeof(chars_names)); 284 chars = (chars_names *) realloc (chars, num_players * sizeof (chars_names));
263 if (chars == NULL) { 285 if (chars == NULL)
286 {
264 new_draw_info(NDI_UNIQUE, 0, op, "who failed - out of memory!"); 287 new_draw_info (NDI_UNIQUE, 0, op, "who failed - out of memory!");
265 return 0; 288 return 0;
266 } 289 }
267 sprintf(chars[num_players-1].namebuf, "%s", &pl->ob->name); 290 sprintf (chars[num_players - 1].namebuf, "%s", &pl->ob->name);
268 chars[num_players-1].login_order = num_players; 291 chars[num_players - 1].login_order = num_players;
269 /*Check for WIZ's & AFK's*/ 292 /*Check for WIZ's & AFK's */
270 if (QUERY_FLAG(pl->ob,FLAG_WIZ)) 293 if (QUERY_FLAG (pl->ob, FLAG_WIZ))
271 num_wiz++; 294 num_wiz++;
272 if (QUERY_FLAG(pl->ob,FLAG_AFK)) 295 if (QUERY_FLAG (pl->ob, FLAG_AFK))
273 num_afk++; 296 num_afk++;
274 } 297 }
275 } 298 }
276 if (first_player != (player *) NULL) { 299 if (first_player != (player *) NULL)
300 {
277 if (reg == NULL) 301 if (reg == NULL)
278 new_draw_info_format(NDI_UNIQUE, 0, op, "Total Players (%d) -- WIZ(%d) AFK(%d)", 302 new_draw_info_format (NDI_UNIQUE, 0, op, "Total Players (%d) -- WIZ(%d) AFK(%d)", num_players, num_wiz, num_afk);
279 num_players, num_wiz, num_afk);
280 else if (reg->longname == NULL) 303 else if (reg->longname == NULL)
304 new_draw_info_format (NDI_UNIQUE, 0, op, "Total Players in %s (%d) -- WIZ(%d) AFK(%d)", reg->name, num_players, num_wiz, num_afk);
305 else
281 new_draw_info_format(NDI_UNIQUE, 0, op, "Total Players in %s (%d) -- WIZ(%d) AFK(%d)", 306 new_draw_info_format (NDI_UNIQUE, 0, op, "Total Players in %s (%d) -- WIZ(%d) AFK(%d)",
282 reg->name, num_players, num_wiz, num_afk);
283 else
284 new_draw_info_format(NDI_UNIQUE, 0, op, "Total Players in %s (%d) -- WIZ(%d) AFK(%d)",
285 reg->longname, num_players, num_wiz, num_afk); 307 reg->longname, num_players, num_wiz, num_afk);
286 } 308 }
287 qsort (chars, num_players, sizeof(chars_names), (int (*)(const void *, const void *))name_cmp); 309 qsort (chars, num_players, sizeof (chars_names), (int (*)(const void *, const void *)) name_cmp);
288 for (i=0;i<num_players;i++) 310 for (i = 0; i < num_players; i++)
289 display_who_entry(op, find_player(chars[i].namebuf), format); 311 display_who_entry (op, find_player (chars[i].namebuf), format);
290 free(chars); 312 free (chars);
291 return 1; 313 return 1;
292} 314}
293 315
294/* Display a line of 'who' to op, about pl, using the formatting specified by format */ 316/* Display a line of 'who' to op, about pl, using the formatting specified by format */
317void
295void display_who_entry(object *op, player *pl, const char *format) { 318display_who_entry (object *op, player *pl, const char *format)
319{
296 char tmpbuf[MAX_BUF]; 320 char tmpbuf[MAX_BUF];
297 char outbuf[MAX_BUF]; 321 char outbuf[MAX_BUF];
298 size_t i; 322 size_t i;
323
299 outbuf[0]='\0'; /* we strcat to this, so reset it here. */ 324 outbuf[0] = '\0'; /* we strcat to this, so reset it here. */
300 if (pl==NULL) { 325 if (pl == NULL)
326 {
301 LOG(llevError,"display_who_entry(): I was passed a null player"); 327 LOG (llevError, "display_who_entry(): I was passed a null player");
302 return; 328 return;
303 } 329 }
304 for (i=0;i<=strlen(format);i++) { 330 for (i = 0; i <= strlen (format); i++)
331 {
305 if (format[i]=='%') { 332 if (format[i] == '%')
333 {
306 i++; 334 i++;
307 get_who_escape_code_value(tmpbuf,format[i],pl); 335 get_who_escape_code_value (tmpbuf, format[i], pl);
308 strcat(outbuf, tmpbuf); 336 strcat (outbuf, tmpbuf);
309 } 337 }
310 else if (format[i]=='_') 338 else if (format[i] == '_')
311 strcat(outbuf," "); /* allow '_' to be used in place of spaces */ 339 strcat (outbuf, " "); /* allow '_' to be used in place of spaces */
312 else { 340 else
341 {
313 sprintf(tmpbuf,"%c",format[i]); 342 sprintf (tmpbuf, "%c", format[i]);
314 strcat(outbuf,tmpbuf); 343 strcat (outbuf, tmpbuf);
315 } 344 }
316 } 345 }
317 new_draw_info(NDI_UNIQUE, 0, op, outbuf); 346 new_draw_info (NDI_UNIQUE, 0, op, outbuf);
318} 347}
319 348
320/* Returns the value of the escape code used in the who format specifier 349/* Returns the value of the escape code used in the who format specifier
321 * the values are: 350 * the values are:
322 * N Name of character 351 * N Name of character
334 * R the regional title (eg The Kingdom of Scorn, The Port of Wolfsburg) 363 * R the regional title (eg The Kingdom of Scorn, The Port of Wolfsburg)
335 * i player's ip adress 364 * i player's ip adress
336 * % a literal % 365 * % a literal %
337 * _ a literal underscore 366 * _ a literal underscore
338 */ 367 */
339 368
369void
340void get_who_escape_code_value(char *return_val, const char letter, player *pl) { 370get_who_escape_code_value (char *return_val, const char letter, player *pl)
341 371{
372
342 switch (letter) { 373 switch (letter)
374 {
375 case 'N':
343 case 'N' : strcpy(return_val, pl->ob->name); 376 strcpy (return_val, pl->ob->name);
344 break;
345 case 't' : strcpy(return_val,(pl->own_title[0]=='\0'?pl->title:pl->own_title));
346 break;
347 case 'T' : if (pl->own_title[0]=='\0')
348 strcpy(return_val,"the ");
349 else
350 *return_val='\0';
351 break; 377 break;
378 case 't':
379 strcpy (return_val, (pl->own_title[0] == '\0' ? pl->title : pl->own_title));
380 break;
381 case 'T':
382 if (pl->own_title[0] == '\0')
383 strcpy (return_val, "the ");
384 else
385 *return_val = '\0';
386 break;
387 case 'c':
352 case 'c' : sprintf(return_val,"%d",pl->ob->count); 388 sprintf (return_val, "%d", pl->ob->count);
353 break; 389 break;
390 case 'n':
354 case 'n' : strcpy(return_val, "\n"); 391 strcpy (return_val, "\n");
355 break; 392 break;
393 case 'h':
356 case 'h' : strcpy(return_val,pl->peaceful?"":" [Hostile]"); 394 strcpy (return_val, pl->peaceful ? "" : " [Hostile]");
357 break; 395 break;
396 case 'l':
358 case 'l' : sprintf(return_val,"%d",pl->ob->level); 397 sprintf (return_val, "%d", pl->ob->level);
359 break; 398 break;
399 case 'd':
360 case 'd' : strcpy(return_val,(QUERY_FLAG(pl->ob,FLAG_WIZ)?" [WIZ]":"")); 400 strcpy (return_val, (QUERY_FLAG (pl->ob, FLAG_WIZ) ? " [WIZ]" : ""));
361 break; 401 break;
402 case 'a':
362 case 'a' : strcpy(return_val,(QUERY_FLAG(pl->ob,FLAG_AFK)?" [AFK]":"")); 403 strcpy (return_val, (QUERY_FLAG (pl->ob, FLAG_AFK) ? " [AFK]" : ""));
363 break; 404 break;
405 case 'm':
364 case 'm' : strcpy(return_val,pl->ob->map->path); 406 strcpy (return_val, pl->ob->map->path);
365 break; 407 break;
408 case 'M':
366 case 'M' : strcpy(return_val,pl->ob->map->name?pl->ob->map->name:"Untitled"); 409 strcpy (return_val, pl->ob->map->name ? pl->ob->map->name : "Untitled");
367 break; 410 break;
411 case 'r':
368 case 'r' : strcpy(return_val,get_name_of_region_for_map(pl->ob->map)); 412 strcpy (return_val, get_name_of_region_for_map (pl->ob->map));
369 break; 413 break;
414 case 'R':
370 case 'R' : strcpy(return_val,get_region_longname(get_region_by_map(pl->ob->map))); 415 strcpy (return_val, get_region_longname (get_region_by_map (pl->ob->map)));
371 break; 416 break;
417 case 'i':
372 case 'i' : strcpy(return_val,pl->socket.host); 418 strcpy (return_val, pl->socket.host);
373 break; 419 break;
420 case '%':
374 case '%' : strcpy(return_val, "%"); 421 strcpy (return_val, "%");
375 break; 422 break;
423 case '_':
376 case '_' : strcpy(return_val, "_"); 424 strcpy (return_val, "_");
377 break; 425 break;
378 } 426 }
379 427
380} 428}
381 429
382 430
431int
383int command_afk (object *op, char *params) 432command_afk (object *op, char *params)
384{ 433{
385 if QUERY_FLAG(op,FLAG_AFK) { 434 if QUERY_FLAG
435 (op, FLAG_AFK)
436 {
386 CLEAR_FLAG(op,FLAG_AFK); 437 CLEAR_FLAG (op, FLAG_AFK);
387 new_draw_info(NDI_UNIQUE, 0, op, "You are no longer AFK"); 438 new_draw_info (NDI_UNIQUE, 0, op, "You are no longer AFK");
388 }
389 else
390 { 439 }
440 else
441 {
391 SET_FLAG(op,FLAG_AFK); 442 SET_FLAG (op, FLAG_AFK);
392 new_draw_info(NDI_UNIQUE, 0, op, "You are now AFK"); 443 new_draw_info (NDI_UNIQUE, 0, op, "You are now AFK");
393 } 444 }
445 return 1;
446}
447
448int
449command_mapinfo (object *op, char *params)
450{
451 current_map_info (op);
452 return 1;
453}
454
455int
456command_whereami (object *op, char *params)
457{
458 current_region_info (op);
459 return 1;
460}
461
462int
463command_maps (object *op, char *params)
464{
465 map_info (op, params);
466 return 1;
467}
468
469int
470command_time (object *op, char *params)
471{
472 print_tod (op);
473 return 1;
474}
475
476int
477command_weather (object *op, char *params)
478{
479 int wx, wy, temp, sky;
480 char buf[MAX_BUF];
481
482 if (settings.dynamiclevel < 1)
394 return 1; 483 return 1;
395}
396 484
397int command_mapinfo (object *op, char *params) 485 if (op->map == NULL)
398{
399 current_map_info(op);
400 return 1; 486 return 1;
401 }
402 487
403int command_whereami (object *op, char *params) 488 if (worldmap_to_weathermap (op->x, op->y, &wx, &wy, op->map) != 0)
404{
405 current_region_info(op);
406 return 1; 489 return 1;
407}
408 490
409 int command_maps (object *op, char *params)
410{
411 map_info(op,params);
412 return 1;
413 }
414
415int command_time (object *op, char *params)
416{
417 print_tod (op);
418 return 1;
419}
420
421int command_weather (object *op, char *params)
422{
423 int wx, wy, temp, sky;
424 char buf[MAX_BUF];
425
426 if (settings.dynamiclevel < 1)
427 return 1;
428
429 if (op->map == NULL)
430 return 1;
431
432 if (worldmap_to_weathermap(op->x, op->y, &wx, &wy, op->map) != 0)
433 return 1;
434
435 if (QUERY_FLAG(op, FLAG_WIZ)) { 491 if (QUERY_FLAG (op, FLAG_WIZ))
492 {
436 /* dump the weather, Dm style! Yo! */ 493 /* dump the weather, Dm style! Yo! */
437 new_draw_info_format(NDI_UNIQUE, 0, op, "Real temp: %d", 494 new_draw_info_format (NDI_UNIQUE, 0, op, "Real temp: %d", real_world_temperature (op->x, op->y, op->map));
438 real_world_temperature(op->x, op->y, op->map));
439 new_draw_info_format(NDI_UNIQUE, 0, op, "Base temp: %d", 495 new_draw_info_format (NDI_UNIQUE, 0, op, "Base temp: %d", weathermap[wx][wy].temp);
440 weathermap[wx][wy].temp);
441 new_draw_info_format(NDI_UNIQUE, 0, op, "Humid: %d", 496 new_draw_info_format (NDI_UNIQUE, 0, op, "Humid: %d", weathermap[wx][wy].humid);
442 weathermap[wx][wy].humid); 497 new_draw_info_format (NDI_UNIQUE, 0, op, "Wind: dir=%d speed=%d", weathermap[wx][wy].winddir, weathermap[wx][wy].windspeed);
443 new_draw_info_format(NDI_UNIQUE, 0, op, "Wind: dir=%d speed=%d",
444 weathermap[wx][wy].winddir, weathermap[wx][wy].windspeed);
445 new_draw_info_format(NDI_UNIQUE, 0, op, "Pressure: %d", 498 new_draw_info_format (NDI_UNIQUE, 0, op, "Pressure: %d", weathermap[wx][wy].pressure);
446 weathermap[wx][wy].pressure);
447 new_draw_info_format(NDI_UNIQUE, 0, op, "Avg Elevation: %d", 499 new_draw_info_format (NDI_UNIQUE, 0, op, "Avg Elevation: %d", weathermap[wx][wy].avgelev);
448 weathermap[wx][wy].avgelev); 500 new_draw_info_format (NDI_UNIQUE, 0, op, "Rainfall: %d Water: %d", weathermap[wx][wy].rainfall, weathermap[wx][wy].water);
449 new_draw_info_format(NDI_UNIQUE, 0, op, "Rainfall: %d Water: %d",
450 weathermap[wx][wy].rainfall, weathermap[wx][wy].water);
451 } 501 }
452 502
453 temp = real_world_temperature(op->x, op->y, op->map); 503 temp = real_world_temperature (op->x, op->y, op->map);
454 new_draw_info_format(NDI_UNIQUE, 0, op, "It's currently %d degrees " 504 new_draw_info_format (NDI_UNIQUE, 0, op, "It's currently %d degrees " "Centigrade out.", temp);
455 "Centigrade out.", temp);
456 505
457 /* humid */ 506 /* humid */
458 if (weathermap[wx][wy].humid < 20) 507 if (weathermap[wx][wy].humid < 20)
459 new_draw_info(NDI_UNIQUE, 0, op, "It is very dry."); 508 new_draw_info (NDI_UNIQUE, 0, op, "It is very dry.");
460 else if (weathermap[wx][wy].humid < 40) 509 else if (weathermap[wx][wy].humid < 40)
461 new_draw_info(NDI_UNIQUE, 0, op, "It is very comfortable today."); 510 new_draw_info (NDI_UNIQUE, 0, op, "It is very comfortable today.");
462 else if (weathermap[wx][wy].humid < 60) 511 else if (weathermap[wx][wy].humid < 60)
463 new_draw_info(NDI_UNIQUE, 0, op, "It is a bit muggy."); 512 new_draw_info (NDI_UNIQUE, 0, op, "It is a bit muggy.");
464 else if (weathermap[wx][wy].humid < 80) 513 else if (weathermap[wx][wy].humid < 80)
465 new_draw_info(NDI_UNIQUE, 0, op, "It is muggy."); 514 new_draw_info (NDI_UNIQUE, 0, op, "It is muggy.");
466 else 515 else
467 new_draw_info(NDI_UNIQUE, 0, op, "It is uncomfortably muggy."); 516 new_draw_info (NDI_UNIQUE, 0, op, "It is uncomfortably muggy.");
468 517
469 /* wind */ 518 /* wind */
470 switch (weathermap[wx][wy].winddir) { 519 switch (weathermap[wx][wy].winddir)
471 case 1: sprintf(buf, "north"); break;
472 case 2: sprintf(buf, "northeast"); break;
473 case 3: sprintf(buf, "east"); break;
474 case 4: sprintf(buf, "southeast"); break;
475 case 5: sprintf(buf, "south"); break;
476 case 6: sprintf(buf, "southwest"); break;
477 case 7: sprintf(buf, "west"); break;
478 case 8: sprintf(buf, "northwest"); break;
479 } 520 {
521 case 1:
522 sprintf (buf, "north");
523 break;
524 case 2:
525 sprintf (buf, "northeast");
526 break;
527 case 3:
528 sprintf (buf, "east");
529 break;
530 case 4:
531 sprintf (buf, "southeast");
532 break;
533 case 5:
534 sprintf (buf, "south");
535 break;
536 case 6:
537 sprintf (buf, "southwest");
538 break;
539 case 7:
540 sprintf (buf, "west");
541 break;
542 case 8:
543 sprintf (buf, "northwest");
544 break;
545 }
480 if (weathermap[wx][wy].windspeed < 5) 546 if (weathermap[wx][wy].windspeed < 5)
481 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a mild breeze " 547 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a mild breeze " "coming from the %s.", buf);
482 "coming from the %s.", buf);
483 else if (weathermap[wx][wy].windspeed < 10) 548 else if (weathermap[wx][wy].windspeed < 10)
484 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a strong breeze " 549 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong breeze " "coming from the %s.", buf);
485 "coming from the %s.", buf);
486 else if (weathermap[wx][wy].windspeed < 15) 550 else if (weathermap[wx][wy].windspeed < 15)
487 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a light wind " 551 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a light wind " "coming from the %s.", buf);
488 "coming from the %s.", buf);
489 else if (weathermap[wx][wy].windspeed < 25) 552 else if (weathermap[wx][wy].windspeed < 25)
490 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a strong wind " 553 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong wind " "coming from the %s.", buf);
491 "coming from the %s.", buf);
492 else if (weathermap[wx][wy].windspeed < 35) 554 else if (weathermap[wx][wy].windspeed < 35)
493 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a heavy wind " 555 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a heavy wind " "coming from the %s.", buf);
494 "coming from the %s.", buf);
495 else 556 else
496 new_draw_info_format(NDI_UNIQUE, 0, op, "The wind from the %s is " 557 new_draw_info_format (NDI_UNIQUE, 0, op, "The wind from the %s is " "incredibly strong!", buf);
497 "incredibly strong!", buf);
498 558
499 sky = weathermap[wx][wy].sky; 559 sky = weathermap[wx][wy].sky;
500 if (temp <= 0 && sky > SKY_OVERCAST && sky < SKY_FOG) 560 if (temp <= 0 && sky > SKY_OVERCAST && sky < SKY_FOG)
501 sky += 10; /*let it snow*/ 561 sky += 10; /*let it snow */
502 switch (sky) { 562 switch (sky)
563 {
564 case SKY_CLEAR:
503 case SKY_CLEAR: new_draw_info(NDI_UNIQUE, 0, op, "There isn''t a cloud in the sky."); break; 565 new_draw_info (NDI_UNIQUE, 0, op, "There isn''t a cloud in the sky.");
566 break;
567 case SKY_LIGHTCLOUD:
504 case SKY_LIGHTCLOUD: new_draw_info(NDI_UNIQUE, 0, op, "There are a few light clouds in the sky."); break; 568 new_draw_info (NDI_UNIQUE, 0, op, "There are a few light clouds in the sky.");
569 break;
570 case SKY_OVERCAST:
505 case SKY_OVERCAST: new_draw_info(NDI_UNIQUE, 0, op, "The sky is cloudy and dreary."); break; 571 new_draw_info (NDI_UNIQUE, 0, op, "The sky is cloudy and dreary.");
572 break;
573 case SKY_LIGHT_RAIN:
506 case SKY_LIGHT_RAIN: new_draw_info(NDI_UNIQUE, 0, op, "It is raining softly."); break; 574 new_draw_info (NDI_UNIQUE, 0, op, "It is raining softly.");
575 break;
576 case SKY_RAIN:
507 case SKY_RAIN: new_draw_info(NDI_UNIQUE, 0, op, "It is raining."); break; 577 new_draw_info (NDI_UNIQUE, 0, op, "It is raining.");
578 break;
579 case SKY_HEAVY_RAIN:
508 case SKY_HEAVY_RAIN: new_draw_info(NDI_UNIQUE, 0, op, "It is raining heavily."); break; 580 new_draw_info (NDI_UNIQUE, 0, op, "It is raining heavily.");
581 break;
582 case SKY_HURRICANE:
509 case SKY_HURRICANE: new_draw_info(NDI_UNIQUE, 0, op, "There is a heavy storm! You should go inside!"); break; 583 new_draw_info (NDI_UNIQUE, 0, op, "There is a heavy storm! You should go inside!");
584 break;
585 case SKY_FOG:
510 case SKY_FOG: new_draw_info(NDI_UNIQUE, 0, op, "It''s foggy and miserable."); break; 586 new_draw_info (NDI_UNIQUE, 0, op, "It''s foggy and miserable.");
587 break;
588 case SKY_HAIL:
511 case SKY_HAIL: new_draw_info(NDI_UNIQUE, 0, op, "It''s hailing out! Take cover!"); break; 589 new_draw_info (NDI_UNIQUE, 0, op, "It''s hailing out! Take cover!");
590 break;
591 case SKY_LIGHT_SNOW:
512 case SKY_LIGHT_SNOW: new_draw_info(NDI_UNIQUE, 0, op, "Snow is gently falling from the sky."); break; 592 new_draw_info (NDI_UNIQUE, 0, op, "Snow is gently falling from the sky.");
593 break;
594 case SKY_SNOW:
513 case SKY_SNOW: new_draw_info(NDI_UNIQUE, 0, op, "It''s snowing out."); break; 595 new_draw_info (NDI_UNIQUE, 0, op, "It''s snowing out.");
596 break;
597 case SKY_HEAVY_SNOW:
514 case SKY_HEAVY_SNOW: new_draw_info(NDI_UNIQUE, 0, op, "The snow is falling very heavily now."); break; 598 new_draw_info (NDI_UNIQUE, 0, op, "The snow is falling very heavily now.");
599 break;
600 case SKY_BLIZZARD:
515 case SKY_BLIZZARD: new_draw_info(NDI_UNIQUE, 0, op, "A full blown blizzard is in effect. You might want to take cover!"); break; 601 new_draw_info (NDI_UNIQUE, 0, op, "A full blown blizzard is in effect. You might want to take cover!");
602 break;
516 } 603 }
517 return 1; 604 return 1;
518} 605}
519 606
607int
520int command_archs (object *op, char *params) 608command_archs (object *op, char *params)
521{ 609{
522 arch_info(op); 610 arch_info (op);
523 return 1; 611 return 1;
524 } 612}
525 613
614int
526int command_hiscore (object *op, char *params) 615command_hiscore (object *op, char *params)
527{ 616{
528 display_high_score(op,op==NULL?9999:50, params); 617 display_high_score (op, op == NULL ? 9999 : 50, params);
529 return 1; 618 return 1;
530 } 619}
531 620
621int
532int command_debug (object *op, char *params) 622command_debug (object *op, char *params)
533{ 623{
534 int i; 624 int i;
535 char buf[MAX_BUF]; 625 char buf[MAX_BUF];
626
536 if(params==NULL || !sscanf(params, "%d", &i)) { 627 if (params == NULL || !sscanf (params, "%d", &i))
628 {
537 sprintf(buf,"Global debug level is %d.",settings.debug); 629 sprintf (buf, "Global debug level is %d.", settings.debug);
538 new_draw_info(NDI_UNIQUE, 0,op,buf); 630 new_draw_info (NDI_UNIQUE, 0, op, buf);
539 return 1; 631 return 1;
540 } 632 }
541 if(op != NULL && !QUERY_FLAG(op, FLAG_WIZ)) { 633 if (op != NULL && !QUERY_FLAG (op, FLAG_WIZ))
634 {
542 new_draw_info(NDI_UNIQUE, 0,op,"Privileged command."); 635 new_draw_info (NDI_UNIQUE, 0, op, "Privileged command.");
543 return 1; 636 return 1;
544 } 637 }
545 settings.debug = (enum LogLevel) FABS(i); 638 settings.debug = (enum LogLevel) FABS (i);
546 sprintf(buf,"Set debug level to %d.", i); 639 sprintf (buf, "Set debug level to %d.", i);
547 new_draw_info(NDI_UNIQUE, 0,op,buf); 640 new_draw_info (NDI_UNIQUE, 0, op, buf);
548 return 1; 641 return 1;
549 } 642}
550 643
551 644
552/* 645/*
553 * Those dumps should be just one dump with good parser 646 * Those dumps should be just one dump with good parser
554 */ 647 */
555 648
649int
556int command_dumpbelow (object *op, char *params) 650command_dumpbelow (object *op, char *params)
557{ 651{
558 if (op && op->below) { 652 if (op && op->below)
653 {
559 dump_object(op->below); 654 dump_object (op->below);
560 new_draw_info(NDI_UNIQUE, 0,op,errmsg); 655 new_draw_info (NDI_UNIQUE, 0, op, errmsg);
561 /* Let's push that item on the dm's stack */ 656 /* Let's push that item on the dm's stack */
562 dm_stack_push( op->contr, op->below->count ); 657 dm_stack_push (op->contr, op->below->count);
563 } 658 }
564 return 0; 659 return 0;
565} 660}
566 661
662int
567int command_wizpass (object *op, char *params) 663command_wizpass (object *op, char *params)
568{ 664{
569 int i; 665 int i;
570 666
571 if (!op) 667 if (!op)
572 return 0; 668 return 0;
573 669
574 if (!params) 670 if (!params)
575 i = (QUERY_FLAG(op, FLAG_WIZPASS)) ? 0 : 1; 671 i = (QUERY_FLAG (op, FLAG_WIZPASS)) ? 0 : 1;
576 else 672 else
577 i =onoff_value(params); 673 i = onoff_value (params);
578 674
579 if (i) { 675 if (i)
676 {
580 new_draw_info(NDI_UNIQUE, 0,op, "You will now walk through walls.\n"); 677 new_draw_info (NDI_UNIQUE, 0, op, "You will now walk through walls.\n");
581 SET_FLAG(op, FLAG_WIZPASS); 678 SET_FLAG (op, FLAG_WIZPASS);
679 }
582 } else { 680 else
681 {
583 new_draw_info(NDI_UNIQUE, 0,op, "You will now be stopped by walls.\n"); 682 new_draw_info (NDI_UNIQUE, 0, op, "You will now be stopped by walls.\n");
584 CLEAR_FLAG(op, FLAG_WIZPASS); 683 CLEAR_FLAG (op, FLAG_WIZPASS);
585 } 684 }
586 return 0; 685 return 0;
587} 686}
588 687
688int
589int command_wizcast (object *op, char *params) 689command_wizcast (object *op, char *params)
590{ 690{
591 int i; 691 int i;
592 692
593 if (!op) 693 if (!op)
594 return 0; 694 return 0;
595 695
596 if (!params) 696 if (!params)
597 i = (QUERY_FLAG(op, FLAG_WIZCAST)) ? 0 : 1; 697 i = (QUERY_FLAG (op, FLAG_WIZCAST)) ? 0 : 1;
598 else 698 else
599 i = onoff_value(params); 699 i = onoff_value (params);
600 700
601 if (i) { 701 if (i)
702 {
602 new_draw_info(NDI_UNIQUE, 0, op, "You can now cast spells anywhere."); 703 new_draw_info (NDI_UNIQUE, 0, op, "You can now cast spells anywhere.");
603 SET_FLAG(op, FLAG_WIZCAST); 704 SET_FLAG (op, FLAG_WIZCAST);
705 }
604 } else { 706 else
707 {
605 new_draw_info(NDI_UNIQUE, 0, op, "You now cannot cast spells in no-magic areas."); 708 new_draw_info (NDI_UNIQUE, 0, op, "You now cannot cast spells in no-magic areas.");
606 CLEAR_FLAG(op, FLAG_WIZCAST); 709 CLEAR_FLAG (op, FLAG_WIZCAST);
607 } 710 }
608 return 0; 711 return 0;
609} 712}
610 713
714int
611int command_dumpallobjects (object *op, char *params) 715command_dumpallobjects (object *op, char *params)
612{ 716{
613 dump_all_objects(); 717 dump_all_objects ();
614 return 0; 718 return 0;
615} 719}
616 720
721int
617int command_dumpfriendlyobjects (object *op, char *params) 722command_dumpfriendlyobjects (object *op, char *params)
618{ 723{
619 dump_friendly_objects(); 724 dump_friendly_objects ();
620 return 0; 725 return 0;
621} 726}
622 727
728int
623int command_dumpallarchetypes (object *op, char *params) 729command_dumpallarchetypes (object *op, char *params)
624{ 730{
625 dump_all_archetypes(); 731 dump_all_archetypes ();
626 return 0; 732 return 0;
627 } 733}
628 734
735int
629int command_dumpmap (object *op, char *params) 736command_dumpmap (object *op, char *params)
630{
631 if(op)
632 dump_map(op->map);
633 return 0;
634}
635
636int command_dumpallmaps (object *op, char *params)
637{
638 dump_all_maps();
639 return 0;
640}
641
642int command_printlos (object *op, char *params)
643{ 737{
644 if (op) 738 if (op)
739 dump_map (op->map);
740 return 0;
741}
742
743int
744command_dumpallmaps (object *op, char *params)
745{
746 dump_all_maps ();
747 return 0;
748}
749
750int
751command_printlos (object *op, char *params)
752{
753 if (op)
645 print_los(op); 754 print_los (op);
646 return 0; 755 return 0;
647} 756}
648 757
649 758
759int
650int command_version (object *op, char *params) 760command_version (object *op, char *params)
651{ 761{
652 version(op); 762 version (op);
653 return 0; 763 return 0;
654} 764}
655 765
656 766
657#ifndef BUG_LOG 767#ifndef BUG_LOG
658#define BUG_LOG "bug_log" 768# define BUG_LOG "bug_log"
659#endif 769#endif
770void
660void bug_report(const char * reportstring){ 771bug_report (const char *reportstring)
772{
661 FILE * fp; 773 FILE *fp;
774
662 if((fp = fopen( BUG_LOG , "a")) != NULL){ 775 if ((fp = fopen (BUG_LOG, "a")) != NULL)
776 {
663 fprintf(fp,"%s\n", reportstring); 777 fprintf (fp, "%s\n", reportstring);
664 fclose(fp); 778 fclose (fp);
779 }
665 } else { 780 else
781 {
666 LOG(llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror(errno)); 782 LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno));
667 } 783 }
668} 784}
669 785
786int
670int command_output_sync(object *op, char *params) 787command_output_sync (object *op, char *params)
671{ 788{
672 int val; 789 int val;
673 790
674 if (!params) { 791 if (!params)
675 new_draw_info_format(NDI_UNIQUE, 0, op, 792 {
676 "Output sync time is presently %d", op->contr->outputs_sync); 793 new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time is presently %d", op->contr->outputs_sync);
677 return 1; 794 return 1;
678 } 795 }
679 val=atoi(params); 796 val = atoi (params);
680 if (val>0) { 797 if (val > 0)
798 {
681 op->contr->outputs_sync = val; 799 op->contr->outputs_sync = val;
682 new_draw_info_format(NDI_UNIQUE, 0, op, 800 new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time now set to %d", op->contr->outputs_sync);
683 "Output sync time now set to %d", op->contr->outputs_sync);
684 } 801 }
685 else 802 else
686 new_draw_info(NDI_UNIQUE, 0, op,"Invalid value for output_sync."); 803 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_sync.");
687 804
688 return 1; 805 return 1;
689} 806}
690 807
808int
691int command_output_count(object *op, char *params) 809command_output_count (object *op, char *params)
692{ 810{
693 int val; 811 int val;
694 812
695 if (!params) { 813 if (!params)
696 new_draw_info_format(NDI_UNIQUE, 0, op, 814 {
697 "Output count is presently %d", op->contr->outputs_count); 815 new_draw_info_format (NDI_UNIQUE, 0, op, "Output count is presently %d", op->contr->outputs_count);
698 return 1; 816 return 1;
699 } 817 }
700 val=atoi(params); 818 val = atoi (params);
701 if (val>0) { 819 if (val > 0)
820 {
702 op->contr->outputs_count = val; 821 op->contr->outputs_count = val;
703 new_draw_info_format(NDI_UNIQUE, 0, op, 822 new_draw_info_format (NDI_UNIQUE, 0, op, "Output count now set to %d", op->contr->outputs_count);
704 "Output count now set to %d", op->contr->outputs_count);
705 } 823 }
706 else 824 else
707 new_draw_info(NDI_UNIQUE, 0, op,"Invalid value for output_count."); 825 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_count.");
708 826
709 return 1; 827 return 1;
710} 828}
711 829
830int
712int command_listen (object *op, char *params) 831command_listen (object *op, char *params)
713{ 832{
714 int i; 833 int i;
715 834
716 if(params==NULL || !sscanf(params, "%d", &i)) { 835 if (params == NULL || !sscanf (params, "%d", &i))
717 new_draw_info_format(NDI_UNIQUE, 0, op, 836 {
718 "Set listen to what (presently %d)?", op->contr->listening); 837 new_draw_info_format (NDI_UNIQUE, 0, op, "Set listen to what (presently %d)?", op->contr->listening);
719 return 1; 838 return 1;
720 } 839 }
721 op->contr->listening=(char) i; 840 op->contr->listening = (char) i;
722 new_draw_info_format(NDI_UNIQUE, 0, op, 841 new_draw_info_format (NDI_UNIQUE, 0, op, "Your verbose level is now %d.", i);
723 "Your verbose level is now %d.",i);
724 return 1; 842 return 1;
725} 843}
726 844
727/* Prints out some useful information for the character. Everything we print 845/* Prints out some useful information for the character. Everything we print
728 * out can be determined by the docs, so we aren't revealing anything extra - 846 * out can be determined by the docs, so we aren't revealing anything extra -
729 * rather, we are making it convenient to find the values. params have 847 * rather, we are making it convenient to find the values. params have
730 * no meaning here. 848 * no meaning here.
731 */ 849 */
850int
732int command_statistics(object *pl, char *params) 851command_statistics (object *pl, char *params)
733{ 852{
734 if (!pl->contr) return 1; 853 if (!pl->contr)
854 return 1;
735#ifndef WIN32 855#ifndef WIN32
736 new_draw_info_format(NDI_UNIQUE, 0, pl," Experience: %lld",pl->stats.exp); 856 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %lld", pl->stats.exp);
737 new_draw_info_format(NDI_UNIQUE, 0, pl," Next Level: %lld",level_exp(pl->level+1, pl->expmul)); 857 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %lld", level_exp (pl->level + 1, pl->expmul));
738#else 858#else
739 new_draw_info_format(NDI_UNIQUE, 0, pl," Experience: %I64d",pl->stats.exp); 859 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %I64d", pl->stats.exp);
740 new_draw_info_format(NDI_UNIQUE, 0, pl," Next Level: %I64d",level_exp(pl->level+1, pl->expmul)); 860 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %I64d", level_exp (pl->level + 1, pl->expmul));
741#endif 861#endif
742 new_draw_info(NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max"); 862 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
743 863
744 new_draw_info_format(NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d", 864 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d",
745 pl->contr->orig_stats.Str, pl->stats.Str, 20+pl->arch->clone.stats.Str); 865 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->clone.stats.Str);
746 new_draw_info_format(NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d", 866 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d",
747 pl->contr->orig_stats.Dex, pl->stats.Dex, 20+pl->arch->clone.stats.Dex); 867 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->clone.stats.Dex);
748 new_draw_info_format(NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d", 868 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d",
749 pl->contr->orig_stats.Con, pl->stats.Con, 20+pl->arch->clone.stats.Con); 869 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->clone.stats.Con);
750 new_draw_info_format(NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d", 870 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d",
751 pl->contr->orig_stats.Int, pl->stats.Int, 20+pl->arch->clone.stats.Int); 871 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->clone.stats.Int);
752 new_draw_info_format(NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d", 872 new_draw_info_format (NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d",
753 pl->contr->orig_stats.Wis, pl->stats.Wis, 20+pl->arch->clone.stats.Wis); 873 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->clone.stats.Wis);
754 new_draw_info_format(NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d", 874 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d",
755 pl->contr->orig_stats.Pow, pl->stats.Pow, 20+pl->arch->clone.stats.Pow); 875 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->clone.stats.Pow);
756 new_draw_info_format(NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d", 876 new_draw_info_format (NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
757 pl->contr->orig_stats.Cha, pl->stats.Cha, 20+pl->arch->clone.stats.Cha); 877 pl->contr->orig_stats.Cha, pl->stats.Cha, 20 + pl->arch->clone.stats.Cha);
758 new_draw_info_format(NDI_UNIQUE, 0, pl, "\nAttack Mode: %s",pl->contr->peaceful? "Peaceful":"Hostile"); 878 new_draw_info_format (NDI_UNIQUE, 0, pl, "\nAttack Mode: %s", pl->contr->peaceful ? "Peaceful" : "Hostile");
759 879
760 /* Can't think of anything else to print right now */ 880 /* Can't think of anything else to print right now */
761 return 0; 881 return 0;
762} 882}
763 883
884int
764int command_fix_me(object *op, char *params) 885command_fix_me (object *op, char *params)
765{ 886{
766 sum_weight(op); 887 sum_weight (op);
767 fix_player(op); 888 fix_player (op);
768 return 1; 889 return 1;
769} 890}
770 891
892int
771int command_players(object *op, char *paramss) 893command_players (object *op, char *paramss)
772{ 894{
773 char buf[MAX_BUF]; 895 char buf[MAX_BUF];
774 char *t; 896 char *t;
775 DIR *Dir; 897 DIR *Dir;
776 898
777 sprintf(buf,"%s/%s/",settings.localdir,settings.playerdir); 899 sprintf (buf, "%s/%s/", settings.localdir, settings.playerdir);
778 t=buf+strlen(buf); 900 t = buf + strlen (buf);
779 if ((Dir=opendir(buf))!=NULL) { 901 if ((Dir = opendir (buf)) != NULL)
902 {
780 const struct dirent *Entry; 903 const struct dirent *Entry;
781 904
782 while ((Entry=readdir(Dir))!=NULL) { 905 while ((Entry = readdir (Dir)) != NULL)
906 {
783 /* skip '.' , '..' */ 907 /* skip '.' , '..' */
784 if (!((Entry->d_name[0]=='.' && Entry->d_name[1]=='\0') || 908 if (!((Entry->d_name[0] == '.' && Entry->d_name[1] == '\0') ||
785 (Entry->d_name[0]=='.' && Entry->d_name[1]=='.' && Entry->d_name[2]=='\0'))) 909 (Entry->d_name[0] == '.' && Entry->d_name[1] == '.' && Entry->d_name[2] == '\0')))
786 { 910 {
787 struct stat Stat; 911 struct stat Stat;
788 912
789 strcpy(t,Entry->d_name); 913 strcpy (t, Entry->d_name);
790 if (stat(buf,&Stat)==0) { 914 if (stat (buf, &Stat) == 0)
915 {
791 /* This was not posix compatible 916 /* This was not posix compatible
792 * if ((Stat.st_mode & S_IFMT)==S_IFDIR) { 917 * if ((Stat.st_mode & S_IFMT)==S_IFDIR) {
793 */ 918 */
794 if (S_ISDIR(Stat.st_mode)){ 919 if (S_ISDIR (Stat.st_mode))
920 {
795 char buf2[MAX_BUF]; 921 char buf2[MAX_BUF];
796 struct tm *tm=localtime(&Stat.st_mtime); 922 struct tm *tm = localtime (&Stat.st_mtime);
923
797 sprintf(buf2,"%s\t%04d %02d %02d %02d %02d %02d", 924 sprintf (buf2, "%s\t%04d %02d %02d %02d %02d %02d",
798 Entry->d_name, 925 Entry->d_name, 1900 + tm->tm_year, 1 + tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec);
799 1900+tm->tm_year,
800 1+tm->tm_mon,
801 tm->tm_mday,
802 tm->tm_hour,
803 tm->tm_min,
804 tm->tm_sec);
805 new_draw_info(NDI_UNIQUE, 0, op, buf2); 926 new_draw_info (NDI_UNIQUE, 0, op, buf2);
806 } 927 }
807 } 928 }
808 } 929 }
809 } 930 }
810 } 931 }
811 closedir(Dir); 932 closedir (Dir);
933 return 0;
934}
935
936
937
938int
939command_logs (object *op, char *params)
940{
941 int i;
942 int first;
943
944 first = 1;
945 for (i = 2; i < socket_info.allocated_sockets; i++)
946 {
947 if (init_sockets[i].old_mode == Old_Listen)
948 {
949 if (first)
950 {
951 new_draw_info (NDI_UNIQUE, 0, op, "Kill-logs are sent to:");
952 first = 0;
953 }
954 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %s", init_sockets[i].host, init_sockets[i].comment);
955 }
956 }
957 if (first)
958 {
959 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills.");
960 }
961 return 1;
962}
963
964int
965command_applymode (object *op, char *params)
966{
967 unapplymode unapply = op->contr->unapply;
968 static const char *const types[] = { "nochoice", "never", "always" };
969
970 if (!params)
971 {
972 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode is set to %s", types[op->contr->unapply]);
973 return 1;
974 }
975
976 if (!strcmp (params, "nochoice"))
977 op->contr->unapply = unapply_nochoice;
978 else if (!strcmp (params, "never"))
979 op->contr->unapply = unapply_never;
980 else if (!strcmp (params, "always"))
981 op->contr->unapply = unapply_always;
982 else
983 {
984 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode: Unknown options %s, valid options are nochoice, never, always", params);
985 return 0;
986 }
987 new_draw_info_format (NDI_UNIQUE, 0, op, "Applymode %s set to %s",
988 (unapply == op->contr->unapply ? "" : " now"), types[op->contr->unapply]);
989 return 1;
990}
991
992int
993command_bowmode (object *op, char *params)
994{
995 bowtype_t oldtype = op->contr->bowtype;
996 static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth",
997 "firene", "fireeast", "firese", "firesouth",
998 "firesw", "firewest", "firenw", "bestarrow"
999 };
1000 char buf[MAX_BUF];
1001 int i, found;
1002
1003 if (!params)
1004 {
1005 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode is set to %s", types[op->contr->bowtype]);
1006 return 1;
1007 }
1008
1009 for (i = 0, found = 0; i <= bow_bestarrow; i++)
1010 {
1011 if (!strcmp (params, types[i]))
1012 {
1013 found++;
1014 op->contr->bowtype = (bowtype_t) i;
1015 break;
1016 }
1017 }
1018 if (!found)
1019 {
1020 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
1021 for (i = 0; i <= bow_bestarrow; i++)
1022 {
1023 strcat (buf, " ");
1024 strcat (buf, types[i]);
1025 if (i < bow_nw)
1026 strcat (buf, ",");
1027 else
1028 strcat (buf, ".");
1029 }
1030 new_draw_info_format (NDI_UNIQUE, 0, op, buf);
1031 return 0;
1032 }
1033 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]);
1034 return 1;
1035}
1036
1037int
1038command_petmode (object *op, char *params)
1039{
1040 petmode_t oldtype = op->contr->petmode;
1041 static const char *const types[] = { "normal", "sad", "defend", "arena" };
1042
1043 if (!params)
1044 {
1045 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode is set to %s", types[op->contr->petmode]);
1046 return 1;
1047 }
1048
1049 if (!strcmp (params, "normal"))
1050 op->contr->petmode = pet_normal;
1051 else if (!strcmp (params, "sad"))
1052 op->contr->petmode = pet_sad;
1053 else if (!strcmp (params, "defend"))
1054 op->contr->petmode = pet_defend;
1055 else if (!strcmp (params, "arena"))
1056 op->contr->petmode = pet_arena;
1057 else
1058 {
1059 new_draw_info_format (NDI_UNIQUE, 0, op,
1060 "petmode: Unknown options %s, valid options are normal," "sad (seek and destroy), defend, arena", params);
1061 return 0;
1062 }
1063 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode %s set to %s", (oldtype == op->contr->petmode ? "" : "now"), types[op->contr->petmode]);
1064 return 1;
1065}
1066
1067int
1068command_showpets (object *op, char *params)
1069{
1070 objectlink *obl, *next;
1071 int counter = 0, target = 0;
1072 int have_shown_pet = 0;
1073
1074 if (params != NULL)
1075 target = atoi (params);
1076 for (obl = first_friendly_object; obl != NULL; obl = next)
1077 {
1078 object *ob = obl->ob;
1079
1080 next = obl->next;
1081 if (get_owner (ob) == op)
1082 {
1083 if (target == 0)
1084 {
1085 if (counter == 0)
1086 new_draw_info (NDI_UNIQUE, 0, op, "Pets:");
1087 new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level);
1088 }
1089 else if (!have_shown_pet && ++counter == target)
1090 {
1091 new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name);
1092 new_draw_info_format (NDI_UNIQUE, 0, op, "%d/%d HP, %d/%d SP", ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp);
1093 /* this is not a nice way to do this, it should be made to be more like the statistics command */
1094 new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str);
1095 new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex);
1096 new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con);
1097 new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int);
1098 new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis);
1099 new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha);
1100 new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow);
1101 new_draw_info_format (NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", ob->stats.wc, ob->stats.dam, ob->stats.ac);
1102 have_shown_pet = 1;
1103 }
1104 }
1105 }
1106 if (counter == 0)
1107 new_draw_info (NDI_UNIQUE, 0, op, "you have no pets.");
1108 else if (target != 0 && have_shown_pet == 0)
1109 new_draw_info (NDI_UNIQUE, 0, op, "no such pet.");
1110 return 0;
1111}
1112
1113int
1114command_usekeys (object *op, char *params)
1115{
1116 usekeytype oldtype = op->contr->usekeys;
1117 static const char *const types[] = { "inventory", "keyrings", "containers" };
1118
1119 if (!params)
1120 {
1121 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys is set to %s", types[op->contr->usekeys]);
1122 return 1;
1123 }
1124
1125 if (!strcmp (params, "inventory"))
1126 op->contr->usekeys = key_inventory;
1127 else if (!strcmp (params, "keyrings"))
1128 op->contr->usekeys = keyrings;
1129 else if (!strcmp (params, "containers"))
1130 op->contr->usekeys = containers;
1131 else
1132 {
1133 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys: Unknown options %s, valid options are inventory, keyrings, containers", params);
1134 return 0;
1135 }
1136 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys %s set to %s", (oldtype == op->contr->usekeys ? "" : "now"), types[op->contr->usekeys]);
1137 return 1;
1138}
1139
1140int
1141command_resistances (object *op, char *params)
1142{
1143 int i;
1144
1145 if (!op)
812 return 0; 1146 return 0;
813}
814 1147
1148 for (i = 0; i < NROFATTACKS; i++)
1149 {
1150 if (i == ATNR_INTERNAL)
1151 continue;
815 1152
1153 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
1154 }
816 1155
817int command_logs (object *op, char *params) 1156 /* If dragon player, let's display natural resistances */
818{ 1157 if (is_dragon_pl (op))
819 int i; 1158 {
820 int first; 1159 int attack;
1160 object *tmp;
821 1161
822 first=1; 1162 for (tmp = op->inv; tmp != NULL; tmp = tmp->below)
823 for(i=2; i<socket_info.allocated_sockets; i++) { 1163 {
824 if (init_sockets[i].old_mode == Old_Listen) { 1164 if ((tmp->type == FORCE) && (strcmp (tmp->arch->name, "dragon_skin_force") == 0))
825 if (first) { 1165 {
826 new_draw_info(NDI_UNIQUE,0,op,"Kill-logs are sent to:"); 1166 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:");
1167 for (attack = 0; attack < NROFATTACKS; attack++)
827 first=0; 1168 {
1169 if (atnr_is_dragon_enabled (attack))
1170 {
1171 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]);
1172 }
1173 }
1174 break;
828 } 1175 }
829 new_draw_info_format(NDI_UNIQUE, 0, op, "%s: %s",
830 init_sockets[i].host,init_sockets[i].comment);
831 }
832 }
833 if (first) {
834 new_draw_info(NDI_UNIQUE,0,op,"Nobody is currently logging kills.");
835 }
836 return 1;
837}
838
839int command_applymode(object *op, char *params)
840{
841 unapplymode unapply = op->contr->unapply;
842 static const char* const types[]={"nochoice", "never", "always"};
843
844 if (!params) {
845 new_draw_info_format(NDI_UNIQUE, 0, op, "applymode is set to %s",
846 types[op->contr->unapply]);
847 return 1;
848 }
849
850 if (!strcmp(params,"nochoice"))
851 op->contr->unapply=unapply_nochoice;
852 else if (!strcmp(params,"never"))
853 op->contr->unapply=unapply_never;
854 else if (!strcmp(params,"always"))
855 op->contr->unapply=unapply_always;
856 else {
857 new_draw_info_format(NDI_UNIQUE, 0, op,
858 "applymode: Unknown options %s, valid options are nochoice, never, always",
859 params);
860 return 0;
861 }
862 new_draw_info_format(NDI_UNIQUE, 0, op, "Applymode %s set to %s",
863 (unapply==op->contr->unapply?"":" now"),
864 types[op->contr->unapply]);
865 return 1;
866}
867
868int command_bowmode(object *op, char *params)
869{
870 bowtype_t oldtype=op->contr->bowtype;
871 static const char* const types[] =
872 {"normal", "threewide", "spreadshot", "firenorth",
873 "firene", "fireeast", "firese", "firesouth",
874 "firesw", "firewest", "firenw", "bestarrow"};
875 char buf[MAX_BUF];
876 int i, found;
877
878 if (!params) {
879 new_draw_info_format(NDI_UNIQUE, 0, op, "bowmode is set to %s",
880 types[op->contr->bowtype]);
881 return 1;
882 }
883
884 for (i=0,found=0; i<=bow_bestarrow; i++) {
885 if (!strcmp(params, types[i])) {
886 found++;
887 op->contr->bowtype= (bowtype_t) i;
888 break;
889 }
890 }
891 if (!found) {
892 sprintf(buf, "bowmode: Unknown options %s, valid options are:", params);
893 for (i=0; i<=bow_bestarrow; i++) {
894 strcat(buf, " ");
895 strcat(buf, types[i]);
896 if (i < bow_nw)
897 strcat(buf, ",");
898 else
899 strcat(buf, ".");
900 }
901 new_draw_info_format(NDI_UNIQUE, 0, op, buf);
902 return 0;
903 }
904 new_draw_info_format(NDI_UNIQUE, 0, op, "bowmode %s set to %s",
905 (oldtype==op->contr->bowtype?"":"now"),
906 types[op->contr->bowtype]);
907 return 1;
908}
909
910int command_petmode(object *op, char *params)
911{
912 petmode_t oldtype=op->contr->petmode;
913 static const char* const types[]={"normal", "sad", "defend", "arena"};
914
915 if (!params) {
916 new_draw_info_format(NDI_UNIQUE, 0, op, "petmode is set to %s",
917 types[op->contr->petmode]);
918 return 1;
919 }
920
921 if (!strcmp(params,"normal"))
922 op->contr->petmode=pet_normal;
923 else if (!strcmp(params,"sad"))
924 op->contr->petmode=pet_sad;
925 else if (!strcmp(params,"defend"))
926 op->contr->petmode=pet_defend;
927 else if (!strcmp(params,"arena"))
928 op->contr->petmode=pet_arena;
929 else {
930 new_draw_info_format(NDI_UNIQUE, 0, op,
931 "petmode: Unknown options %s, valid options are normal,"
932 "sad (seek and destroy), defend, arena", params);
933 return 0;
934 }
935 new_draw_info_format(NDI_UNIQUE, 0, op, "petmode %s set to %s",
936 (oldtype==op->contr->petmode?"":"now"),
937 types[op->contr->petmode]);
938 return 1;
939}
940
941int command_showpets(object *op, char *params)
942{
943 objectlink *obl, *next;
944 int counter=0, target=0;
945 int have_shown_pet=0;
946 if (params !=NULL) target= atoi(params);
947 for (obl = first_friendly_object; obl != NULL; obl = next) {
948 object *ob = obl->ob;
949 next = obl->next;
950 if (get_owner(ob) == op) {
951 if (target ==0) {
952 if (counter==0)
953 new_draw_info(NDI_UNIQUE, 0, op, "Pets:");
954 new_draw_info_format(NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level );
955 }
956 else if (!have_shown_pet && ++counter==target) {
957 new_draw_info_format(NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name);
958 new_draw_info_format(NDI_UNIQUE, 0, op, "%d/%d HP, %d/%d SP",
959 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp);
960 /* this is not a nice way to do this, it should be made to be more like the statistics command */
961 new_draw_info_format(NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str);
962 new_draw_info_format(NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex);
963 new_draw_info_format(NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con);
964 new_draw_info_format(NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int);
965 new_draw_info_format(NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis);
966 new_draw_info_format(NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha);
967 new_draw_info_format(NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow);
968 new_draw_info_format(NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ",
969 ob->stats.wc, ob->stats.dam, ob->stats.ac);
970 have_shown_pet=1;
971 } 1176 }
972 }
973 } 1177 }
974 if (counter == 0) 1178
975 new_draw_info(NDI_UNIQUE, 0, op, "you have no pets.");
976 else if (target !=0 && have_shown_pet==0)
977 new_draw_info(NDI_UNIQUE, 0, op, "no such pet.");
978 return 0; 1179 return 0;
979} 1180}
980 1181
981int command_usekeys(object *op, char *params)
982{
983 usekeytype oldtype=op->contr->usekeys;
984 static const char* const types[]={"inventory", "keyrings", "containers"};
985
986 if (!params) {
987 new_draw_info_format(NDI_UNIQUE, 0, op, "usekeys is set to %s",
988 types[op->contr->usekeys]);
989 return 1;
990 }
991
992 if (!strcmp(params,"inventory"))
993 op->contr->usekeys=key_inventory;
994 else if (!strcmp(params,"keyrings"))
995 op->contr->usekeys=keyrings;
996 else if (!strcmp(params,"containers"))
997 op->contr->usekeys=containers;
998 else {
999 new_draw_info_format(NDI_UNIQUE, 0, op,
1000 "usekeys: Unknown options %s, valid options are inventory, keyrings, containers",
1001 params);
1002 return 0;
1003 }
1004 new_draw_info_format(NDI_UNIQUE, 0, op, "usekeys %s set to %s",
1005 (oldtype==op->contr->usekeys?"":"now"),
1006 types[op->contr->usekeys]);
1007 return 1;
1008}
1009
1010int command_resistances(object *op, char *params)
1011{
1012 int i;
1013 if (!op)
1014 return 0;
1015
1016 for (i=0; i<NROFATTACKS; i++) {
1017 if (i==ATNR_INTERNAL) continue;
1018
1019 new_draw_info_format(NDI_UNIQUE, 0, op, "%-20s %+5d",
1020 attacktype_desc[i], op->resist[i]);
1021 }
1022
1023 /* If dragon player, let's display natural resistances */
1024 if ( is_dragon_pl( op ) )
1025 {
1026 int attack;
1027 object* tmp;
1028 for ( tmp = op->inv; tmp != NULL; tmp = tmp->below )
1029 {
1030 if ( ( tmp->type == FORCE ) && ( strcmp( tmp->arch->name, "dragon_skin_force" )== 0 ) )
1031 {
1032 new_draw_info( NDI_UNIQUE, 0, op, "\nNatural skin resistances:" );
1033 for ( attack = 0; attack < NROFATTACKS; attack++ )
1034 {
1035 if ( atnr_is_dragon_enabled( attack ) )
1036 {
1037 new_draw_info_format( NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[ attack ], tmp->resist[ attack ] );
1038 }
1039 }
1040 break;
1041 }
1042 }
1043 }
1044
1045return 0;
1046}
1047/* 1182/*
1048 * Actual commands. 1183 * Actual commands.
1049 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...) 1184 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
1050 */ 1185 */
1051 1186
1052 1187
1188static void
1053static void help_topics(object *op, int what) 1189help_topics (object *op, int what)
1054{ 1190{
1055 DIR *dirp; 1191 DIR *dirp;
1056 struct dirent *de; 1192 struct dirent *de;
1057 char filename[MAX_BUF], line[80]; 1193 char filename[MAX_BUF], line[80];
1058 int namelen, linelen=0; 1194 int namelen, linelen = 0;
1059 1195
1060 switch (what) { 1196 switch (what)
1197 {
1061 case 1: 1198 case 1:
1062 sprintf(filename, "%s/wizhelp", settings.datadir); 1199 sprintf (filename, "%s/wizhelp", settings.datadir);
1063 new_draw_info(NDI_UNIQUE, 0,op, " Wiz commands:"); 1200 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
1064 break; 1201 break;
1065 case 3: 1202 case 3:
1066 sprintf(filename, "%s/mischelp", settings.datadir); 1203 sprintf (filename, "%s/mischelp", settings.datadir);
1067 new_draw_info(NDI_UNIQUE, 0,op, " Misc help:"); 1204 new_draw_info (NDI_UNIQUE, 0, op, " Misc help:");
1068 break; 1205 break;
1069 default: 1206 default:
1070 sprintf(filename, "%s/help", settings.datadir); 1207 sprintf (filename, "%s/help", settings.datadir);
1071 new_draw_info(NDI_UNIQUE, 0,op, " Commands:"); 1208 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
1072 break; 1209 break;
1073 } 1210 }
1074 if (!(dirp=opendir(filename))) 1211 if (!(dirp = opendir (filename)))
1075 return; 1212 return;
1076 1213
1077 line[0] ='\0'; 1214 line[0] = '\0';
1078 for (de = readdir(dirp); de; de = readdir(dirp)) { 1215 for (de = readdir (dirp); de; de = readdir (dirp))
1216 {
1079 namelen = NAMLEN(de); 1217 namelen = NAMLEN (de);
1080 if (namelen <= 2 && *de->d_name == '.' && 1218 if (namelen <= 2 && *de->d_name == '.' && (namelen == 1 || de->d_name[1] == '.'))
1081 (namelen == 1 || de->d_name[1] == '.' ) )
1082 continue; 1219 continue;
1083 linelen +=namelen+1; 1220 linelen += namelen + 1;
1084 if (linelen > 42) { 1221 if (linelen > 42)
1222 {
1085 new_draw_info(NDI_UNIQUE, 0,op, line); 1223 new_draw_info (NDI_UNIQUE, 0, op, line);
1086 sprintf(line, " %s", de->d_name); 1224 sprintf (line, " %s", de->d_name);
1087 linelen =namelen+1; 1225 linelen = namelen + 1;
1088 continue; 1226 continue;
1089 } 1227 }
1090 strcat(line, " "); 1228 strcat (line, " ");
1091 strcat(line, de->d_name); 1229 strcat (line, de->d_name);
1092 } 1230 }
1093 new_draw_info(NDI_UNIQUE, 0,op, line); 1231 new_draw_info (NDI_UNIQUE, 0, op, line);
1094 closedir(dirp); 1232 closedir (dirp);
1095} 1233}
1096 1234
1235static void
1097static void show_commands(object *op, int what) 1236show_commands (object *op, int what)
1098{ 1237{
1099 char line[80]; 1238 char line[80];
1100 int i, size, namelen, linelen=0; 1239 int i, size, namelen, linelen = 0;
1101 CommArray_s *ap; 1240 CommArray_s *ap;
1102 extern CommArray_s Commands[], WizCommands[]; 1241 extern CommArray_s Commands[], WizCommands[];
1103 extern const int CommandsSize, WizCommandsSize; 1242 extern const int CommandsSize, WizCommandsSize;
1104 1243
1105 switch (what) { 1244 switch (what)
1245 {
1106 case 1: 1246 case 1:
1107 ap =WizCommands; 1247 ap = WizCommands;
1108 size =WizCommandsSize; 1248 size = WizCommandsSize;
1109 new_draw_info(NDI_UNIQUE, 0,op, " Wiz commands:"); 1249 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
1110 break; 1250 break;
1111 case 2: 1251 case 2:
1112 ap= CommunicationCommands; 1252 ap = CommunicationCommands;
1113 size= CommunicationCommandSize; 1253 size = CommunicationCommandSize;
1114 new_draw_info(NDI_UNIQUE, 0, op, " Communication commands:"); 1254 new_draw_info (NDI_UNIQUE, 0, op, " Communication commands:");
1115 break; 1255 break;
1116 default: 1256 default:
1117 ap =Commands; 1257 ap = Commands;
1118 size =CommandsSize; 1258 size = CommandsSize;
1119 new_draw_info(NDI_UNIQUE, 0,op, " Commands:"); 1259 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
1120 break; 1260 break;
1121 } 1261 }
1122 1262
1123 line[0] ='\0'; 1263 line[0] = '\0';
1124 for (i=0; i<size; i++) { 1264 for (i = 0; i < size; i++)
1265 {
1125 namelen = strlen(ap[i].name); 1266 namelen = strlen (ap[i].name);
1126 linelen +=namelen+1; 1267 linelen += namelen + 1;
1127 if (linelen > 42) { 1268 if (linelen > 42)
1269 {
1128 new_draw_info(NDI_UNIQUE, 0,op, line); 1270 new_draw_info (NDI_UNIQUE, 0, op, line);
1129 sprintf(line, " %s", ap[i].name); 1271 sprintf (line, " %s", ap[i].name);
1130 linelen =namelen+1; 1272 linelen = namelen + 1;
1131 continue; 1273 continue;
1132 } 1274 }
1133 strcat(line, " "); 1275 strcat (line, " ");
1134 strcat(line, ap[i].name); 1276 strcat (line, ap[i].name);
1135 } 1277 }
1136 new_draw_info(NDI_UNIQUE, 0,op, line); 1278 new_draw_info (NDI_UNIQUE, 0, op, line);
1137} 1279}
1138 1280
1139 1281
1282int
1140int command_help (object *op, char *params) 1283command_help (object *op, char *params)
1141{ 1284{
1142 struct stat st; 1285 struct stat st;
1143 FILE *fp; 1286 FILE *fp;
1144 char filename[MAX_BUF], line[MAX_BUF]; 1287 char filename[MAX_BUF], line[MAX_BUF];
1145 int len; 1288 int len;
1146 1289
1147 if(op != NULL) 1290 if (op != NULL)
1148 clear_win_info(op); 1291 clear_win_info (op);
1149 1292
1150/* 1293/*
1151 * Main help page? 1294 * Main help page?
1152 */ 1295 */
1153 if (!params) { 1296 if (!params)
1297 {
1154 sprintf(filename, "%s/def_help", settings.datadir); 1298 sprintf (filename, "%s/def_help", settings.datadir);
1155 if ((fp=fopen(filename, "r")) == NULL) { 1299 if ((fp = fopen (filename, "r")) == NULL)
1300 {
1156 LOG(llevError, "Cannot open help file %s: %s\n", filename, strerror(errno)); 1301 LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
1302 return 0;
1303 }
1304 while (fgets (line, MAX_BUF, fp))
1305 {
1306 line[MAX_BUF - 1] = '\0';
1307 len = strlen (line) - 1;
1308 if (line[len] == '\n')
1309 line[len] = '\0';
1310 new_draw_info (NDI_UNIQUE, 0, op, line);
1311 }
1312 fclose (fp);
1157 return 0; 1313 return 0;
1158 } 1314 }
1159 while (fgets(line, MAX_BUF, fp)) {
1160 line[MAX_BUF-1] ='\0';
1161 len =strlen(line)-1;
1162 if (line[len] == '\n')
1163 line[len] ='\0';
1164 new_draw_info(NDI_UNIQUE, 0,op, line);
1165 }
1166 fclose(fp);
1167 return 0;
1168 }
1169 1315
1170 /* 1316 /*
1171 * Topics list 1317 * Topics list
1172 */ 1318 */
1173 if (!strcmp(params, "topics")) { 1319 if (!strcmp (params, "topics"))
1320 {
1174 help_topics(op, 3); 1321 help_topics (op, 3);
1175 help_topics(op, 0); 1322 help_topics (op, 0);
1176 if (QUERY_FLAG(op, FLAG_WIZ)) 1323 if (QUERY_FLAG (op, FLAG_WIZ))
1177 help_topics(op, 1); 1324 help_topics (op, 1);
1178 return 0; 1325 return 0;
1179 } 1326 }
1180 1327
1181 /* 1328 /*
1182 * Commands list 1329 * Commands list
1183 */ 1330 */
1184 if (!strcmp(params, "commands")) { 1331 if (!strcmp (params, "commands"))
1332 {
1185 show_commands(op, 0); 1333 show_commands (op, 0);
1186 show_commands(op, 2); /* show comm commands */ 1334 show_commands (op, 2); /* show comm commands */
1187 if (QUERY_FLAG(op, FLAG_WIZ)) 1335 if (QUERY_FLAG (op, FLAG_WIZ))
1188 show_commands(op, 1); 1336 show_commands (op, 1);
1189 return 0; 1337 return 0;
1190 } 1338 }
1191 1339
1192 /* 1340 /*
1193 * User wants info about command 1341 * User wants info about command
1194 */ 1342 */
1195 if (strchr(params, '.') || strchr(params, ' ') || strchr(params, '/')) { 1343 if (strchr (params, '.') || strchr (params, ' ') || strchr (params, '/'))
1344 {
1196 sprintf(line, "Illegal characters in '%s'", params); 1345 sprintf (line, "Illegal characters in '%s'", params);
1197 new_draw_info(NDI_UNIQUE, 0,op, line); 1346 new_draw_info (NDI_UNIQUE, 0, op, line);
1198 return 0; 1347 return 0;
1199 } 1348 }
1200 1349
1201 sprintf(filename, "%s/mischelp/%s", settings.datadir, params); 1350 sprintf (filename, "%s/mischelp/%s", settings.datadir, params);
1202 if (stat(filename, &st) || !S_ISREG(st.st_mode)) { 1351 if (stat (filename, &st) || !S_ISREG (st.st_mode))
1352 {
1203 if (op) { 1353 if (op)
1204 sprintf(filename, "%s/help/%s", settings.datadir, params); 1354 {
1205 if (stat(filename, &st) || !S_ISREG(st.st_mode)) {
1206 if (QUERY_FLAG(op, FLAG_WIZ)) {
1207 sprintf(filename, "%s/wizhelp/%s", settings.datadir, params); 1355 sprintf (filename, "%s/help/%s", settings.datadir, params);
1208 if (stat(filename, &st) || !S_ISREG(st.st_mode)) 1356 if (stat (filename, &st) || !S_ISREG (st.st_mode))
1357 {
1358 if (QUERY_FLAG (op, FLAG_WIZ))
1359 {
1360 sprintf (filename, "%s/wizhelp/%s", settings.datadir, params);
1361 if (stat (filename, &st) || !S_ISREG (st.st_mode))
1362 goto nohelp;
1363 }
1364 else
1209 goto nohelp; 1365 goto nohelp;
1210 } else 1366 }
1211 goto nohelp;
1212 } 1367 }
1213 } 1368 }
1214 }
1215 1369
1216 /* 1370 /*
1217 * Found that. Just cat it to screen. 1371 * Found that. Just cat it to screen.
1218 */ 1372 */
1219 if ((fp=fopen(filename, "r")) == NULL) { 1373 if ((fp = fopen (filename, "r")) == NULL)
1374 {
1220 LOG(llevError, "Cannot open help file %s: %s\n", filename, strerror(errno)); 1375 LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
1221 return 0; 1376 return 0;
1222 } 1377 }
1223 sprintf(line, "Help about '%s'", params); 1378 sprintf (line, "Help about '%s'", params);
1224 new_draw_info(NDI_UNIQUE, 0,op, line); 1379 new_draw_info (NDI_UNIQUE, 0, op, line);
1225 while (fgets(line, MAX_BUF, fp)) { 1380 while (fgets (line, MAX_BUF, fp))
1381 {
1226 line[MAX_BUF-1] ='\0'; 1382 line[MAX_BUF - 1] = '\0';
1227 len =strlen(line)-1; 1383 len = strlen (line) - 1;
1228 if (line[len] == '\n') 1384 if (line[len] == '\n')
1229 line[len] ='\0'; 1385 line[len] = '\0';
1230 new_draw_info(NDI_UNIQUE, 0,op, line); 1386 new_draw_info (NDI_UNIQUE, 0, op, line);
1231 } 1387 }
1232 fclose(fp); 1388 fclose (fp);
1233 return 0; 1389 return 0;
1234 1390
1235 /* 1391 /*
1236 * No_help -escape 1392 * No_help -escape
1237 */ 1393 */
1238 nohelp: 1394nohelp:
1239 sprintf(line, "No help available on '%s'", params); 1395 sprintf (line, "No help available on '%s'", params);
1240 new_draw_info(NDI_UNIQUE, 0,op, line); 1396 new_draw_info (NDI_UNIQUE, 0, op, line);
1241 return 0; 1397 return 0;
1242} 1398}
1243 1399
1244 1400
1401int
1245int onoff_value(const char *line) 1402onoff_value (const char *line)
1246{ 1403{
1247 int i; 1404 int i;
1248 1405
1249 if (sscanf(line, "%d", &i)) 1406 if (sscanf (line, "%d", &i))
1250 return (i != 0); 1407 return (i != 0);
1251 switch (line[0]) { 1408 switch (line[0])
1409 {
1252 case 'o': 1410 case 'o':
1253 switch (line[1]) { 1411 switch (line[1])
1254 case 'n': return 1; /* on */ 1412 {
1255 default: return 0; /* o[ff] */ 1413 case 'n':
1256 } 1414 return 1; /* on */
1257 case 'y': /* y[es] */ 1415 default:
1258 case 'k': /* k[ylla] */ 1416 return 0; /* o[ff] */
1417 }
1418 case 'y': /* y[es] */
1419 case 'k': /* k[ylla] */
1259 case 's': 1420 case 's':
1260 case 'd': 1421 case 'd':
1261 return 1; 1422 return 1;
1262 case 'n': /* n[o] */ 1423 case 'n': /* n[o] */
1263 case 'e': /* e[i] */ 1424 case 'e': /* e[i] */
1264 case 'u': 1425 case 'u':
1265 default: 1426 default:
1266 return 0; 1427 return 0;
1267 } 1428 }
1268} 1429}
1269 1430
1431int
1270int command_quit (object *op, char *params) 1432command_quit (object *op, char *params)
1271{ 1433{
1434 new_draw_info (NDI_UNIQUE, 0, op,
1272 new_draw_info(NDI_UNIQUE, 0, op, "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit."); 1435 "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit.");
1273 return 1; 1436 return 1;
1274} 1437}
1275 1438
1439int
1276int command_real_quit (object *op, char *params) 1440command_real_quit (object *op, char *params)
1277{ 1441{
1278 send_query(&op->contr->socket,CS_QUERY_SINGLECHAR, 1442 send_query (&op->contr->socket, CS_QUERY_SINGLECHAR, "Quitting will delete your character.\nAre you sure you want to quit (y/n):");
1279 "Quitting will delete your character.\nAre you sure you want to quit (y/n):");
1280 1443
1281 op->contr->state = ST_CONFIRM_QUIT; 1444 op->contr->state = ST_CONFIRM_QUIT;
1282 return 1; 1445 return 1;
1283 } 1446}
1284 1447
1285/* 1448/*
1286 * don't allow people to exit explore mode. It otherwise becomes 1449 * don't allow people to exit explore mode. It otherwise becomes
1287 * really easy to abuse this. 1450 * really easy to abuse this.
1288 */ 1451 */
1452int
1289int command_explore (object *op, char *params) 1453command_explore (object *op, char *params)
1290{ 1454{
1291 if (settings.explore_mode == FALSE) 1455 if (settings.explore_mode == FALSE)
1292 return 1; 1456 return 1;
1293 /* 1457 /*
1294 * I guess this is the best way to see if we are solo or not. Actually, 1458 * I guess this is the best way to see if we are solo or not. Actually,
1295 * are there any cases when first_player->next==NULL and we are not solo? 1459 * are there any cases when first_player->next==NULL and we are not solo?
1296 */ 1460 */
1297 if ((first_player!=op->contr) || (first_player->next!=NULL)) { 1461 if ((first_player != op->contr) || (first_player->next != NULL))
1462 {
1298 new_draw_info(NDI_UNIQUE, 0,op,"You can not enter explore mode if you are in a party"); 1463 new_draw_info (NDI_UNIQUE, 0, op, "You can not enter explore mode if you are in a party");
1464 }
1299 } else if (op->contr->explore) 1465 else if (op->contr->explore)
1300 new_draw_info(NDI_UNIQUE, 0,op, "There is no return from explore mode"); 1466 new_draw_info (NDI_UNIQUE, 0, op, "There is no return from explore mode");
1301 else { 1467 else
1468 {
1302 op->contr->explore=1; 1469 op->contr->explore = 1;
1303 new_draw_info(NDI_UNIQUE, 0,op, "You are now in explore mode"); 1470 new_draw_info (NDI_UNIQUE, 0, op, "You are now in explore mode");
1304 } 1471 }
1305 return 1; 1472 return 1;
1306} 1473}
1307 1474
1475int
1308int command_sound (object *op, char *params) 1476command_sound (object *op, char *params)
1309{ 1477{
1310 if (op->contr->socket.sound) { 1478 if (op->contr->socket.sound)
1479 {
1311 op->contr->socket.sound=0; 1480 op->contr->socket.sound = 0;
1312 new_draw_info(NDI_UNIQUE, 0,op, "Silence is golden..."); 1481 new_draw_info (NDI_UNIQUE, 0, op, "Silence is golden...");
1482 }
1483 else
1313 } 1484 {
1314 else {
1315 op->contr->socket.sound=1; 1485 op->contr->socket.sound = 1;
1316 new_draw_info(NDI_UNIQUE, 0,op, "The sounds are enabled."); 1486 new_draw_info (NDI_UNIQUE, 0, op, "The sounds are enabled.");
1317 } 1487 }
1318 return 1; 1488 return 1;
1319} 1489}
1320 1490
1321/* Perhaps these should be in player.c, but that file is 1491/* Perhaps these should be in player.c, but that file is
1322 * already a bit big. 1492 * already a bit big.
1323 */ 1493 */
1324 1494
1495void
1325void receive_player_name(object *op,char k) { 1496receive_player_name (object *op, char k)
1497{
1326 1498
1327 if(!check_name(op->contr,op->contr->write_buf+1)) { 1499 if (!check_name (op->contr, op->contr->write_buf + 1))
1328 get_name(op);
1329 return;
1330 } 1500 {
1331 op->name = op->contr->write_buf + 1;
1332 op->name_pl = op->contr->write_buf + 1;
1333 new_draw_info(NDI_UNIQUE, 0,op,op->contr->write_buf);
1334 op->contr->name_changed=1;
1335 get_password(op);
1336}
1337
1338void receive_player_password(object *op,char k) {
1339
1340 unsigned int pwd_len=strlen(op->contr->write_buf);
1341 if(pwd_len<=1||pwd_len>17) {
1342 get_name(op);
1343 return;
1344 }
1345 new_draw_info(NDI_UNIQUE, 0,op," "); /* To hide the password better */
1346
1347 if (checkbanned(op->name, op->contr->socket.host)) {
1348 LOG(llevInfo, "Banned player tried to add: [%s@%s]\n", &op->name, op->contr->socket.host);
1349 new_draw_info(NDI_UNIQUE|NDI_RED, 0, op, "You are not allowed to play.");
1350 get_name(op);
1351 return;
1352 }
1353
1354 if(op->contr->state==ST_CONFIRM_PASSWORD) {
1355 if(!check_password(op->contr->write_buf+1,op->contr->password)) {
1356 new_draw_info(NDI_UNIQUE, 0,op,"The passwords did not match.");
1357 get_name(op); 1501 get_name (op);
1358 return; 1502 return;
1359 } 1503 }
1504 op->name = op->contr->write_buf + 1;
1505 op->name_pl = op->contr->write_buf + 1;
1506 new_draw_info (NDI_UNIQUE, 0, op, op->contr->write_buf);
1507 op->contr->name_changed = 1;
1508 get_password (op);
1509}
1510
1511void
1512receive_player_password (object *op, char k)
1513{
1514
1515 unsigned int pwd_len = strlen (op->contr->write_buf);
1516
1517 if (pwd_len <= 1 || pwd_len > 17)
1518 {
1519 get_name (op);
1520 return;
1521 }
1522 new_draw_info (NDI_UNIQUE, 0, op, " "); /* To hide the password better */
1523
1524 if (checkbanned (op->name, op->contr->socket.host))
1525 {
1526 LOG (llevInfo, "Banned player tried to add: [%s@%s]\n", &op->name, op->contr->socket.host);
1527 new_draw_info (NDI_UNIQUE | NDI_RED, 0, op, "You are not allowed to play.");
1528 get_name (op);
1529 return;
1530 }
1531
1532 if (op->contr->state == ST_CONFIRM_PASSWORD)
1533 {
1534 if (!check_password (op->contr->write_buf + 1, op->contr->password))
1535 {
1536 new_draw_info (NDI_UNIQUE, 0, op, "The passwords did not match.");
1537 get_name (op);
1538 return;
1539 }
1360 clear_win_info(op); 1540 clear_win_info (op);
1361 display_motd(op); 1541 display_motd (op);
1362 new_draw_info(NDI_UNIQUE, 0,op," "); 1542 new_draw_info (NDI_UNIQUE, 0, op, " ");
1363 new_draw_info(NDI_UNIQUE, 0,op,"Welcome, Brave New Warrior!"); 1543 new_draw_info (NDI_UNIQUE, 0, op, "Welcome, Brave New Warrior!");
1364 new_draw_info(NDI_UNIQUE, 0,op," "); 1544 new_draw_info (NDI_UNIQUE, 0, op, " ");
1365 Roll_Again(op); 1545 Roll_Again (op);
1366 op->contr->state=ST_ROLL_STAT; 1546 op->contr->state = ST_ROLL_STAT;
1367 return; 1547 return;
1368 } 1548 }
1369 strcpy(op->contr->password,crypt_string(op->contr->write_buf+1,NULL)); 1549 strcpy (op->contr->password, crypt_string (op->contr->write_buf + 1, NULL));
1370 op->contr->state=ST_ROLL_STAT; 1550 op->contr->state = ST_ROLL_STAT;
1371 check_login(op); 1551 check_login (op);
1372 return; 1552 return;
1373} 1553}
1374 1554
1375 1555
1556int
1376int explore_mode(void) { 1557explore_mode (void)
1558{
1377 player *pl; 1559 player *pl;
1378 1560
1379 if (settings.explore_mode == TRUE) { 1561 if (settings.explore_mode == TRUE)
1562 {
1380 for (pl = first_player; pl != (player *) NULL; pl = pl->next) 1563 for (pl = first_player; pl != (player *) NULL; pl = pl->next)
1381 if (pl->explore) 1564 if (pl->explore)
1382 return 1; 1565 return 1;
1383 } 1566 }
1384 return 0; 1567 return 0;
1385} 1568}
1386 1569
1387 1570
1571int
1388int command_title (object *op, char *params) 1572command_title (object *op, char *params)
1389{ 1573{
1390 char buf[MAX_BUF]; 1574 char buf[MAX_BUF];
1391 1575
1392 if (settings.set_title == FALSE) { 1576 if (settings.set_title == FALSE)
1577 {
1393 new_draw_info(NDI_UNIQUE, 0, op, "You cannot change your title."); 1578 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title.");
1394 return 1; 1579 return 1;
1395 } 1580 }
1396 1581
1397 /* dragon players cannot change titles */ 1582 /* dragon players cannot change titles */
1398 if (is_dragon_pl(op)) { 1583 if (is_dragon_pl (op))
1584 {
1399 new_draw_info(NDI_UNIQUE, 0, op, "Dragons cannot change titles."); 1585 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles.");
1400 return 1; 1586 return 1;
1401 }
1402 1587 }
1588
1403 if(params == NULL) { 1589 if (params == NULL)
1590 {
1404 if(op->contr->own_title[0]=='\0') 1591 if (op->contr->own_title[0] == '\0')
1405 sprintf(buf,"Your title is '%s'.", op->contr->title); 1592 sprintf (buf, "Your title is '%s'.", op->contr->title);
1406 else 1593 else
1407 sprintf(buf,"Your title is '%s'.", op->contr->own_title); 1594 sprintf (buf, "Your title is '%s'.", op->contr->own_title);
1408 new_draw_info(NDI_UNIQUE, 0,op,buf); 1595 new_draw_info (NDI_UNIQUE, 0, op, buf);
1409 return 1; 1596 return 1;
1410 } 1597 }
1411 if(strcmp(params, "clear")==0 || strcmp(params, "default")==0) { 1598 if (strcmp (params, "clear") == 0 || strcmp (params, "default") == 0)
1599 {
1412 if(op->contr->own_title[0]=='\0') 1600 if (op->contr->own_title[0] == '\0')
1413 new_draw_info(NDI_UNIQUE, 0,op,"Your title is the default title."); 1601 new_draw_info (NDI_UNIQUE, 0, op, "Your title is the default title.");
1414 else 1602 else
1415 new_draw_info(NDI_UNIQUE, 0,op,"Title set to default."); 1603 new_draw_info (NDI_UNIQUE, 0, op, "Title set to default.");
1416 op->contr->own_title[0]='\0'; 1604 op->contr->own_title[0] = '\0';
1417 return 1; 1605 return 1;
1418 } 1606 }
1419 1607
1420 if((int)strlen(params) >= MAX_NAME) { 1608 if ((int) strlen (params) >= MAX_NAME)
1609 {
1421 new_draw_info(NDI_UNIQUE, 0,op,"Title too long."); 1610 new_draw_info (NDI_UNIQUE, 0, op, "Title too long.");
1422 return 1; 1611 return 1;
1423 } 1612 }
1424 strcpy(op->contr->own_title, params); 1613 strcpy (op->contr->own_title, params);
1425 return 1; 1614 return 1;
1426} 1615}
1427 1616
1617int
1428int command_save (object *op, char *params) 1618command_save (object *op, char *params)
1429{ 1619{
1430// if (get_map_flags(op->map, NULL, op->x, op->y, NULL, NULL) & P_NO_CLERIC) { 1620// if (get_map_flags(op->map, NULL, op->x, op->y, NULL, NULL) & P_NO_CLERIC) {
1431// new_draw_info(NDI_UNIQUE, 0, op, "You can not save on unholy ground"); 1621// new_draw_info(NDI_UNIQUE, 0, op, "You can not save on unholy ground");
1432// } else 1622// } else
1433 if (!op->stats.exp) { 1623 if (!op->stats.exp)
1624 {
1434 new_draw_info(NDI_UNIQUE, 0, op, "You don't deserve to save yet."); 1625 new_draw_info (NDI_UNIQUE, 0, op, "You don't deserve to save yet.");
1435 } else { 1626 }
1627 else
1628 {
1436 if(save_player(op,1)) 1629 if (save_player (op, 1))
1437 new_draw_info(NDI_UNIQUE, 0,op,"You have been saved."); 1630 new_draw_info (NDI_UNIQUE, 0, op, "You have been saved.");
1438 else 1631 else
1439 new_draw_info(NDI_UNIQUE, 0,op,"SAVE FAILED!"); 1632 new_draw_info (NDI_UNIQUE, 0, op, "SAVE FAILED!");
1440 } 1633 }
1441 return 1; 1634 return 1;
1442} 1635}
1443 1636
1444 1637
1638int
1445int command_peaceful (object *op, char *params) 1639command_peaceful (object *op, char *params)
1446{ 1640{
1447 new_draw_info(NDI_UNIQUE, 0, op, 1641 new_draw_info (NDI_UNIQUE, 0, op,
1448 "You cannot change your peaceful setting with this command." 1642 "You cannot change your peaceful setting with this command."
1449 " Please speak to the priest in the temple of Gorokh" 1643 " Please speak to the priest in the temple of Gorokh"
1450 " if you want to become hostile or in temple of Valriel" 1644 " if you want to become hostile or in temple of Valriel" " if you want to become peaceful again.");
1451 " if you want to become peaceful again."
1452 );
1453 1645
1454/* 1646/*
1455 if((op->contr->peaceful=!op->contr->peaceful)) 1647 if((op->contr->peaceful=!op->contr->peaceful))
1456 new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players."); 1648 new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players.");
1457 else 1649 else
1458 new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players."); 1650 new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players.");
1459*/ 1651*/
1460 return 1; 1652 return 1;
1461} 1653}
1462 1654
1463 1655
1464 1656
1657int
1465int command_wimpy (object *op, char *params) 1658command_wimpy (object *op, char *params)
1466{ 1659{
1467 int i; 1660 int i;
1468 char buf[MAX_BUF]; 1661 char buf[MAX_BUF];
1469 1662
1470 if (params==NULL || !sscanf(params, "%d", &i)) { 1663 if (params == NULL || !sscanf (params, "%d", &i))
1664 {
1471 sprintf(buf, "Your current wimpy level is %d.", op->run_away); 1665 sprintf (buf, "Your current wimpy level is %d.", op->run_away);
1472 new_draw_info(NDI_UNIQUE, 0,op, buf); 1666 new_draw_info (NDI_UNIQUE, 0, op, buf);
1473 return 1; 1667 return 1;
1474 } 1668 }
1475 sprintf(buf, "Your new wimpy level is %d.", i); 1669 sprintf (buf, "Your new wimpy level is %d.", i);
1476 new_draw_info(NDI_UNIQUE, 0,op, buf); 1670 new_draw_info (NDI_UNIQUE, 0, op, buf);
1477 op->run_away = i; 1671 op->run_away = i;
1478 return 1; 1672 return 1;
1479} 1673}
1480 1674
1481 1675
1676int
1482int command_brace (object *op, char *params) 1677command_brace (object *op, char *params)
1483{ 1678{
1484 if (!params) 1679 if (!params)
1485 op->contr->braced =!op->contr->braced; 1680 op->contr->braced = !op->contr->braced;
1486 else 1681 else
1487 op->contr->braced =onoff_value(params); 1682 op->contr->braced = onoff_value (params);
1488 1683
1489 if(op->contr->braced) 1684 if (op->contr->braced)
1490 new_draw_info(NDI_UNIQUE, 0,op, "You are braced."); 1685 new_draw_info (NDI_UNIQUE, 0, op, "You are braced.");
1491 else 1686 else
1492 new_draw_info(NDI_UNIQUE, 0,op, "Not braced."); 1687 new_draw_info (NDI_UNIQUE, 0, op, "Not braced.");
1493 1688
1494 fix_player(op); 1689 fix_player (op);
1495 return 0; 1690 return 0;
1496} 1691}
1497 1692
1693int
1498int command_style_map_info(object *op, char *params) 1694command_style_map_info (object *op, char *params)
1499{ 1695{
1500 extern mapstruct *styles; 1696 extern mapstruct *styles;
1501 mapstruct *mp; 1697 mapstruct *mp;
1502 int maps_used=0, mapmem=0, objects_used=0, x,y; 1698 int maps_used = 0, mapmem = 0, objects_used = 0, x, y;
1503 object *tmp; 1699 object *tmp;
1504 1700
1505 for (mp = styles; mp!=NULL; mp=mp->next) { 1701 for (mp = styles; mp != NULL; mp = mp->next)
1702 {
1506 maps_used++; 1703 maps_used++;
1507 mapmem += MAP_WIDTH(mp)*MAP_HEIGHT(mp)*(sizeof(object *)+sizeof(MapSpace)) + sizeof(mapstruct); 1704 mapmem += MAP_WIDTH (mp) * MAP_HEIGHT (mp) * (sizeof (object *) + sizeof (MapSpace)) + sizeof (mapstruct);
1508 for (x=0; x<MAP_WIDTH(mp); x++) { 1705 for (x = 0; x < MAP_WIDTH (mp); x++)
1706 {
1509 for (y=0; y<MAP_HEIGHT(mp); y++) { 1707 for (y = 0; y < MAP_HEIGHT (mp); y++)
1708 {
1510 for (tmp=get_map_ob(mp, x, y); tmp!=NULL; tmp=tmp->above) 1709 for (tmp = get_map_ob (mp, x, y); tmp != NULL; tmp = tmp->above)
1511 objects_used++; 1710 objects_used++;
1512 } 1711 }
1513 } 1712 }
1514 } 1713 }
1515 new_draw_info_format(NDI_UNIQUE, 0, op, "Style maps loaded: %d", maps_used); 1714 new_draw_info_format (NDI_UNIQUE, 0, op, "Style maps loaded: %d", maps_used);
1516 new_draw_info(NDI_UNIQUE, 0, op, "Memory used, not"); 1715 new_draw_info (NDI_UNIQUE, 0, op, "Memory used, not");
1517 new_draw_info_format(NDI_UNIQUE, 0, op, "including objects: %d", mapmem); 1716 new_draw_info_format (NDI_UNIQUE, 0, op, "including objects: %d", mapmem);
1518 new_draw_info_format(NDI_UNIQUE, 0, op, "Style objects: %d", objects_used); 1717 new_draw_info_format (NDI_UNIQUE, 0, op, "Style objects: %d", objects_used);
1519 new_draw_info_format(NDI_UNIQUE, 0, op, "Mem for objects: %d", objects_used * sizeof(object)); 1718 new_draw_info_format (NDI_UNIQUE, 0, op, "Mem for objects: %d", objects_used * sizeof (object));
1520 return 0; 1719 return 0;
1521} 1720}
1522 1721
1722int
1523int command_kill_pets(object *op, char *params) 1723command_kill_pets (object *op, char *params)
1524{ 1724{
1525 objectlink *obl, *next; 1725 objectlink *obl, *next;
1526 int counter=0, removecount=0; 1726 int counter = 0, removecount = 0;
1727
1527 if (params == NULL) { 1728 if (params == NULL)
1729 {
1528 terminate_all_pets(op); 1730 terminate_all_pets (op);
1529 new_draw_info(NDI_UNIQUE, 0, op, "Your pets have been killed."); 1731 new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed.");
1732 }
1733 else
1530 } 1734 {
1531 else {
1532 int target = atoi(params); 1735 int target = atoi (params);
1736
1533 for(obl = first_friendly_object; obl != NULL; obl = next) { 1737 for (obl = first_friendly_object; obl != NULL; obl = next)
1738 {
1534 object *ob = obl->ob; 1739 object *ob = obl->ob;
1740
1535 next = obl->next; 1741 next = obl->next;
1536 if (get_owner(ob) == op) 1742 if (get_owner (ob) == op)
1537 if (++counter==target || (target==0 && !strcasecmp(ob->name, params))) { 1743 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
1744 {
1538 if (!QUERY_FLAG(ob, FLAG_REMOVED)) 1745 if (!QUERY_FLAG (ob, FLAG_REMOVED))
1539 remove_ob(ob); 1746 remove_ob (ob);
1540 remove_friendly_object(ob); 1747 remove_friendly_object (ob);
1541 free_object(ob); 1748 free_object (ob);
1542 removecount++; 1749 removecount++;
1543 } 1750 }
1544 } 1751 }
1545 if (removecount!=0) 1752 if (removecount != 0)
1546 new_draw_info_format(NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount); 1753 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount);
1547 else 1754 else
1548 new_draw_info(NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n"); 1755 new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n");
1549 } 1756 }
1550 return 0; 1757 return 0;
1551} 1758}
1552

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines