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.54 by pippijn, Fri Mar 2 11:23:18 2007 UTC vs.
Revision 1.86 by root, Fri Jan 27 22:01:46 2012 UTC

1/* 1/*
2 * CrossFire, A Multiplayer game for X-windows 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 * 7 *
8 * This program is free software; you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * it under the terms of the GNU General Public License as published by 9 * the terms of the Affero GNU General Public License as published by the
10 * the Free Software Foundation; either version 2 of the License, or 10 * Free Software Foundation, either version 3 of the License, or (at your
11 * (at your option) any later version. 11 * option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU General Public License 18 * You should have received a copy of the Affero GNU General Public License
19 * along with this program; if not, write to the Free Software 19 * and the GNU General Public License along with this program. If not, see
20 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * <http://www.gnu.org/licenses/>.
21 * 21 *
22 * The authors can be reached via e-mail at <crossfire@schmorp.de> 22 * The authors can be reached via e-mail to <support@deliantra.net>
23 */ 23 */
24 24
25#include <global.h> 25#include <global.h>
26#include <loader.h>
27#include <sproto.h> 26#include <sproto.h>
28 27
29/* Handles misc. input request - things like hash table, malloc, maps, 28/* Handles misc. input request - things like hash table, malloc, maps, etc */
30 * who, etc.
31 */
32
33/* This command dumps the body information for object *op.
34 * it doesn't care what the params are.
35 * This is mostly meant as a debug command.
36 */
37int
38command_body (object *op, char *params)
39{
40 int i;
41
42 /* Too hard to try and make a header that lines everything up, so just
43 * give a description.
44 */
45 new_draw_info (NDI_UNIQUE, 0, op, "The first column is the name of the body location.");
46 new_draw_info (NDI_UNIQUE, 0, op, "The second column is how many of those locations your body has.");
47 new_draw_info (NDI_UNIQUE, 0, op, "The third column is how many slots in that location are available.");
48 for (i = 0; i < NUM_BODY_LOCATIONS; i++)
49 {
50 /* really debugging - normally body_used should not be set to anything
51 * if body_info isn't also set.
52 */
53 if (op->body_info[i] || op->body_used[i])
54 {
55 new_draw_info_format (NDI_UNIQUE, 0, op, "%-30s %5d %5d", body_locations[i].use_name, op->body_info[i], op->body_used[i]);
56 }
57 }
58 if (!QUERY_FLAG (op, FLAG_USE_ARMOUR))
59 new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to wear armor");
60 if (!QUERY_FLAG (op, FLAG_USE_WEAPON))
61 new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to use weapons");
62
63 return 1;
64}
65
66
67int
68command_motd (object *op, char *params)
69{
70 display_motd (op);
71 return 1;
72}
73
74#ifdef DEBUG_MALLOC_LEVEL
75int
76command_malloc_verify (object *op, char *parms)
77{
78 extern int malloc_verify (void);
79
80 if (!malloc_verify ())
81 new_draw_info (NDI_UNIQUE, 0, op, "Heap is corrupted.");
82 else
83 new_draw_info (NDI_UNIQUE, 0, op, "Heap checks out OK.");
84 return 1;
85}
86#endif
87
88int
89command_whereabouts (object *op, char *params)
90{
91 //TODO: should obviously not waste space in struct region for this.
92 /*
93 * reset the counter on the region, then use it to store the number of
94 * players there.
95 * I don't know how thread-safe this would be, I suspect not very....
96 */
97 for_all_regions (rgn)
98 rgn->counter = 0;
99
100 for_all_players (pl)
101 if (pl->ob->map)
102 ++pl->ob->region ()->counter;
103
104 /* we only want to print out by places with a 'longname' field... */
105 for_all_regions (rgn)
106 {
107 if (!rgn->longname && rgn->counter > 0)
108 {
109 if (rgn->parent)
110 {
111 rgn->parent->counter += rgn->counter;
112 rgn->counter = 0;
113 }
114 else /*uh oh, we shouldn't be here. */
115 LOG (llevError, "command_whereabouts() Region %s with no longname has no parent", &rgn->name);
116 }
117 }
118
119 new_draw_info_format (NDI_UNIQUE, 0, op, "In the world currently there are:");
120
121 for_all_regions (rgn)
122 if (rgn->counter)
123 new_draw_info_format (NDI_UNIQUE, 0, op, "%u players %s", rgn->counter, &rgn->longname);
124
125 return 1;
126}
127
128typedef struct
129{
130 char namebuf[MAX_BUF];
131 int login_order;
132} chars_names;
133 29
134int 30int
135command_time (object *op, char *params) 31command_time (object *op, char *params)
136{ 32{
137 print_tod (op); 33 print_tod (op);
138 return 1;
139}
140
141int
142command_weather (object *op, char *params)
143{
144#if 0
145 int wx, wy, temp, sky;
146 char buf[MAX_BUF];
147
148 if (settings.dynamiclevel < 1)
149 return 1;
150
151 if (op->map == NULL)
152 return 1;
153
154 if (worldmap_to_weathermap (op->x, op->y, &wx, &wy, op->map) != 0)
155 return 1;
156
157 if (QUERY_FLAG (op, FLAG_WIZ))
158 {
159 /* dump the weather, Dm style! Yo! */
160 new_draw_info_format (NDI_UNIQUE, 0, op, "Real temp: %d", real_world_temperature (op->x, op->y, op->map));
161 new_draw_info_format (NDI_UNIQUE, 0, op, "Base temp: %d", weathermap[wx][wy].temp);
162 new_draw_info_format (NDI_UNIQUE, 0, op, "Humid: %d", weathermap[wx][wy].humid);
163 new_draw_info_format (NDI_UNIQUE, 0, op, "Wind: dir=%d speed=%d", weathermap[wx][wy].winddir, weathermap[wx][wy].windspeed);
164 new_draw_info_format (NDI_UNIQUE, 0, op, "Pressure: %d", weathermap[wx][wy].pressure);
165 new_draw_info_format (NDI_UNIQUE, 0, op, "Avg Elevation: %d", weathermap[wx][wy].avgelev);
166 new_draw_info_format (NDI_UNIQUE, 0, op, "Rainfall: %d Water: %d", weathermap[wx][wy].rainfall, weathermap[wx][wy].water);
167 }
168
169 temp = real_world_temperature (op->x, op->y, op->map);
170 new_draw_info_format (NDI_UNIQUE, 0, op, "It's currently %d degrees " "Centigrade out.", temp);
171
172 /* humid */
173 if (weathermap[wx][wy].humid < 20)
174 new_draw_info (NDI_UNIQUE, 0, op, "It is very dry.");
175 else if (weathermap[wx][wy].humid < 40)
176 new_draw_info (NDI_UNIQUE, 0, op, "It is very comfortable today.");
177 else if (weathermap[wx][wy].humid < 60)
178 new_draw_info (NDI_UNIQUE, 0, op, "It is a bit muggy.");
179 else if (weathermap[wx][wy].humid < 80)
180 new_draw_info (NDI_UNIQUE, 0, op, "It is muggy.");
181 else
182 new_draw_info (NDI_UNIQUE, 0, op, "It is uncomfortably muggy.");
183
184 /* wind */
185 switch (weathermap[wx][wy].winddir)
186 {
187 case 1:
188 sprintf (buf, "north");
189 break;
190 case 2:
191 sprintf (buf, "northeast");
192 break;
193 case 3:
194 sprintf (buf, "east");
195 break;
196 case 4:
197 sprintf (buf, "southeast");
198 break;
199 case 5:
200 sprintf (buf, "south");
201 break;
202 case 6:
203 sprintf (buf, "southwest");
204 break;
205 case 7:
206 sprintf (buf, "west");
207 break;
208 case 8:
209 sprintf (buf, "northwest");
210 break;
211 }
212 if (weathermap[wx][wy].windspeed < 5)
213 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a mild breeze " "coming from the %s.", buf);
214 else if (weathermap[wx][wy].windspeed < 10)
215 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong breeze " "coming from the %s.", buf);
216 else if (weathermap[wx][wy].windspeed < 15)
217 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a light wind " "coming from the %s.", buf);
218 else if (weathermap[wx][wy].windspeed < 25)
219 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong wind " "coming from the %s.", buf);
220 else if (weathermap[wx][wy].windspeed < 35)
221 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a heavy wind " "coming from the %s.", buf);
222 else
223 new_draw_info_format (NDI_UNIQUE, 0, op, "The wind from the %s is " "incredibly strong!", buf);
224
225 sky = weathermap[wx][wy].sky;
226 if (temp <= 0 && sky > SKY_OVERCAST && sky < SKY_FOG)
227 sky += 10; /*let it snow */
228 switch (sky)
229 {
230 case SKY_CLEAR:
231 new_draw_info (NDI_UNIQUE, 0, op, "There isn''t a cloud in the sky.");
232 break;
233 case SKY_LIGHTCLOUD:
234 new_draw_info (NDI_UNIQUE, 0, op, "There are a few light clouds in the sky.");
235 break;
236 case SKY_OVERCAST:
237 new_draw_info (NDI_UNIQUE, 0, op, "The sky is cloudy and dreary.");
238 break;
239 case SKY_LIGHT_RAIN:
240 new_draw_info (NDI_UNIQUE, 0, op, "It is raining softly.");
241 break;
242 case SKY_RAIN:
243 new_draw_info (NDI_UNIQUE, 0, op, "It is raining.");
244 break;
245 case SKY_HEAVY_RAIN:
246 new_draw_info (NDI_UNIQUE, 0, op, "It is raining heavily.");
247 break;
248 case SKY_HURRICANE:
249 new_draw_info (NDI_UNIQUE, 0, op, "There is a heavy storm! You should go inside!");
250 break;
251 case SKY_FOG:
252 new_draw_info (NDI_UNIQUE, 0, op, "It''s foggy and miserable.");
253 break;
254 case SKY_HAIL:
255 new_draw_info (NDI_UNIQUE, 0, op, "It''s hailing out! Take cover!");
256 break;
257 case SKY_LIGHT_SNOW:
258 new_draw_info (NDI_UNIQUE, 0, op, "Snow is gently falling from the sky.");
259 break;
260 case SKY_SNOW:
261 new_draw_info (NDI_UNIQUE, 0, op, "It''s snowing out.");
262 break;
263 case SKY_HEAVY_SNOW:
264 new_draw_info (NDI_UNIQUE, 0, op, "The snow is falling very heavily now.");
265 break;
266 case SKY_BLIZZARD:
267 new_draw_info (NDI_UNIQUE, 0, op, "A full blown blizzard is in effect. You might want to take cover!");
268 break;
269 }
270#endif
271 return 1;
272}
273
274int
275command_hiscore (object *op, char *params)
276{
277 display_high_score (op, op == NULL ? 9999 : 50, params);
278 return 1; 34 return 1;
279} 35}
280 36
281int 37int
282command_debug (object *op, char *params) 38command_debug (object *op, char *params)
288 { 44 {
289 sprintf (buf, "Global debug level is %d.", settings.debug); 45 sprintf (buf, "Global debug level is %d.", settings.debug);
290 new_draw_info (NDI_UNIQUE, 0, op, buf); 46 new_draw_info (NDI_UNIQUE, 0, op, buf);
291 return 1; 47 return 1;
292 } 48 }
293 settings.debug = (enum LogLevel) FABS (i); 49
50 settings.debug = i;
51
294 sprintf (buf, "Set debug level to %d.", i); 52 sprintf (buf, "Set debug level to %d.", i);
295 new_draw_info (NDI_UNIQUE, 0, op, buf); 53 new_draw_info (NDI_UNIQUE, 0, op, buf);
296 return 1; 54 return 1;
297} 55}
298
299 56
300/* 57/*
301 * Those dumps should be just one dump with good parser 58 * Those dumps should be just one dump with good parser
302 */ 59 */
303 60
314 } 71 }
315 return 0; 72 return 0;
316} 73}
317 74
318int 75int
319command_dumpfriendlyobjects (object *op, char *params)
320{
321 dump_friendly_objects ();
322 return 0;
323}
324
325int
326command_printlos (object *op, char *params)
327{
328 if (op)
329 print_los (op);
330 return 0;
331}
332
333
334int
335command_version (object *op, char *params) 76command_version (object *op, char *params)
336{ 77{
337 version (op); 78 version (op);
338 return 0; 79 return 0;
339}
340
341#ifndef BUG_LOG
342# define BUG_LOG "bug_log"
343#endif
344void
345bug_report (const char *reportstring)
346{
347 FILE *fp;
348
349 if ((fp = fopen (BUG_LOG, "a")) != NULL)
350 {
351 fprintf (fp, "%s\n", reportstring);
352 fclose (fp);
353 }
354 else
355 {
356 LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno));
357 }
358} 80}
359 81
360/* Prints out some useful information for the character. Everything we print 82/* Prints out some useful information for the character. Everything we print
361 * out can be determined by the docs, so we aren't revealing anything extra - 83 * out can be determined by the docs, so we aren't revealing anything extra -
362 * rather, we are making it convenient to find the values. params have 84 * rather, we are making it convenient to find the values. params have
365int 87int
366command_statistics (object *pl, char *params) 88command_statistics (object *pl, char *params)
367{ 89{
368 if (!pl->contr) 90 if (!pl->contr)
369 return 1; 91 return 1;
370 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %" PRId64, pl->stats.exp);
371 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %" PRId64, level_exp (pl->level + 1, pl->expmul));
372 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
373 92
374 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d", 93 dynbuf_text &msg = msg_dynbuf; msg.clear ();
375 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->clone.stats.Str); 94
376 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d", 95 msg << " Experience: " << pl->stats.exp << '\n'
377 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->clone.stats.Dex); 96 << " Next Level: " << level_exp (pl->level + 1, pl->expmul) << '\n'
378 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d", 97 << "\n Stat Nat/Real/Max\n";
379 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->clone.stats.Con); 98
380 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d", 99 for (int i = 0; i < NUM_STATS; ++i)
381 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->clone.stats.Int); 100 msg.printf (" %s %2d/ %3d/%3d\n", short_stat_name [i], pl->contr->orig_stats.stat (i), pl->stats.stat (i), 20 + pl->arch->stats.stat (i));
382 new_draw_info_format (NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d", 101
383 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->clone.stats.Wis); 102 msg << "\nYou are " << (pl->contr->peaceful ? "peaceful" : "hostile") << '.';
384 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d", 103
385 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->clone.stats.Pow); 104 pl->contr->infobox (MSG_CHANNEL ("statistics"), msg);
386 new_draw_info_format (NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
387 pl->contr->orig_stats.Cha, pl->stats.Cha, 20 + pl->arch->clone.stats.Cha);
388 new_draw_info_format (NDI_UNIQUE, 0, pl, "\nAttack Mode: %s", pl->contr->peaceful ? "Peaceful" : "Hostile");
389 105
390 /* Can't think of anything else to print right now */ 106 /* Can't think of anything else to print right now */
391 return 0; 107 return 0;
392} 108}
393 109
394int 110int
395command_fix_me (object *op, char *params) 111command_fix_me (object *op, char *params)
396{ 112{
397 sum_weight (op); 113 op->update_weight ();
398 op->update_stats (); 114 op->update_stats ();
399 new_draw_info (NDI_UNIQUE, 0, op, "Your character was fixed."); 115 new_draw_info (NDI_UNIQUE, 0, op, "Your character was fixed.");
400 116
401 return 1; 117 return 1;
402} 118}
403 119
404int 120int
405command_logs (object *op, char *params)
406{
407 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills.");
408
409 return 1;
410}
411
412int
413command_bowmode (object *op, char *params) 121command_bowmode (object *op, char *params)
414{ 122{
415 bowtype_t oldtype = op->contr->bowtype; 123 bowtype_t oldtype = op->contr->bowtype;
416 static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth", 124 static const char *const types[] = {
125 "normal", "threewide", "spreadshot", "firenorth",
417 "firene", "fireeast", "firese", "firesouth", 126 "firene", "fireeast", "firese", "firesouth",
418 "firesw", "firewest", "firenw", "bestarrow" 127 "firesw", "firewest", "firenw", "bestarrow"
419 }; 128 };
420 char buf[MAX_BUF]; 129 char buf[MAX_BUF];
421 int i, found; 130 int i, found;
437 } 146 }
438 147
439 if (!found) 148 if (!found)
440 { 149 {
441 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params); 150 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
151
442 for (i = 0; i <= bow_bestarrow; i++) 152 for (i = 0; i <= bow_bestarrow; i++)
443 { 153 {
444 strcat (buf, " "); 154 strcat (buf, " ");
445 strcat (buf, types[i]); 155 strcat (buf, types[i]);
446 if (i < bow_nw) 156 if (i < bow_nw)
457} 167}
458 168
459int 169int
460command_showpets (object *op, char *params) 170command_showpets (object *op, char *params)
461{ 171{
462 objectlink *obl, *next;
463 int counter = 0, target = 0; 172 int counter = 0, target = 0;
464 int have_shown_pet = 0; 173 int have_shown_pet = 0;
465 174
175 dynbuf_text &msg = msg_dynbuf; msg.clear ();
176
466 if (params != NULL) 177 if (params)
467 target = atoi (params); 178 target = atoi (params);
179
468 for (obl = first_friendly_object; obl != NULL; obl = next) 180 for (objectlink *obl = first_friendly_object; obl; obl = obl->next)
469 { 181 {
470 object *ob = obl->ob; 182 object *ob = obl->ob;
471 183
472 next = obl->next;
473 if (ob->owner == op) 184 if (ob->owner == op)
474 { 185 {
475 if (target == 0) 186 if (target == 0)
476 { 187 {
477 if (counter == 0) 188 if (counter == 0)
478 new_draw_info (NDI_UNIQUE, 0, op, "Pets:"); 189 msg << "T<Pets>\n\n";
190
479 new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level); 191 msg.printf (" %3d %s, level %d\n", ++counter, &ob->name, ob->level);
480 } 192 }
481 else if (!have_shown_pet && ++counter == target) 193 else if (!have_shown_pet && ++counter == target)
482 { 194 {
483 new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name); 195 msg.printf ("T<%s>\n\n"
484 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); 196 " level %d\n"
485 /* this is not a nice way to do this, it should be made to be more like the statistics command */ 197 " %d/%d HP, %d/%d SP\n"
486 new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str); 198 " Str %2d\n"
487 new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex); 199 " Dex %2d\n"
488 new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con); 200 " Con %2d\n"
489 new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int); 201 " Int %2d\n"
490 new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis); 202 " Wis %2d\n"
491 new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha); 203 " Cha %2d\n"
492 new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow); 204 " Pow %2d\n"
493 new_draw_info_format (NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", ob->stats.wc, ob->stats.dam, ob->stats.ac); 205 " wc %d damage %d ac %d\n",
206 &ob->name,
207 ob->level,
208 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp,
209 ob->stats.Str,
210 ob->stats.Dex,
211 ob->stats.Con,
212 ob->stats.Int,
213 ob->stats.Wis,
214 ob->stats.Cha,
215 ob->stats.Pow,
216 ob->stats.wc, ob->stats.dam, ob->stats.ac);
217
494 have_shown_pet = 1; 218 have_shown_pet = 1;
495 } 219 }
496 } 220 }
497 } 221 }
222
498 if (counter == 0) 223 if (counter == 0)
499 new_draw_info (NDI_UNIQUE, 0, op, "you have no pets."); 224 msg << "you have no pets.";
500 else if (target != 0 && have_shown_pet == 0) 225 else if (target != 0 && have_shown_pet == 0)
501 new_draw_info (NDI_UNIQUE, 0, op, "no such pet."); 226 msg << "no such pet.";
227
228 op->contr->infobox (MSG_CHANNEL ("pets"), msg);
229
502 return 0; 230 return 0;
503} 231}
504 232
505int 233int
506command_resistances (object *op, char *params) 234command_resistances (object *op, char *params)
507{ 235{
508 int i; 236 dynbuf_text &msg = msg_dynbuf; msg.clear ();
509 237
510 if (!op) 238 msg << "Resistances:\n\n";
511 return 0;
512 239
513 for (i = 0; i < NROFATTACKS; i++) 240 for (int i = 0; i < NROFATTACKS; i++)
514 {
515 if (i == ATNR_INTERNAL) 241 if (i != ATNR_INTERNAL)
516 continue; 242 msg.printf (" %-20s %+4d\n", attacktype_desc [i], op->resist [i]);
517
518 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
519 }
520 243
521 /* If dragon player, let's display natural resistances */ 244 /* If dragon player, let's display natural resistances */
522 if (is_dragon_pl (op)) 245 if (op->is_dragon ())
523 {
524 int attack;
525 object *tmp;
526
527 for (tmp = op->inv; tmp != NULL; tmp = tmp->below) 246 for (object *tmp = op->inv; tmp; tmp = tmp->below)
528 {
529 if ((tmp->type == FORCE) && (strcmp (tmp->arch->name, "dragon_skin_force") == 0)) 247 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force)
530 { 248 {
531 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:"); 249 msg << "\nOf those, these are natural skin resistances:\n\n";
250
532 for (attack = 0; attack < NROFATTACKS; attack++) 251 for (int attack = 0; attack < NROFATTACKS; attack++)
533 {
534 if (atnr_is_dragon_enabled (attack)) 252 if (atnr_is_dragon_enabled (attack))
535 { 253 msg.printf (" %-20s %+4d\n", change_resist_msg [attack], tmp->resist [attack]);
536 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]);
537 }
538 }
539 break;
540 }
541 }
542 }
543 254
544 return 0;
545}
546
547/*
548 * Actual commands.
549 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
550 */
551
552
553static void
554help_topics (object *op, int what)
555{
556 DIR *dirp;
557 struct dirent *de;
558 char filename[MAX_BUF], line[80];
559 int namelen, linelen = 0;
560
561 switch (what)
562 {
563 case 1:
564 sprintf (filename, "%s/wizhelp", settings.datadir);
565 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
566 break;
567 case 3:
568 sprintf (filename, "%s/mischelp", settings.datadir);
569 new_draw_info (NDI_UNIQUE, 0, op, " Misc help:");
570 break;
571 default:
572 sprintf (filename, "%s/help", settings.datadir);
573 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
574 break;
575 }
576
577 if (!(dirp = opendir (filename)))
578 return;
579
580 line[0] = '\0';
581 while ((de = readdir (dirp)))
582 {
583 namelen = strlen (de->d_name);
584 if (namelen <= 2 && *de->d_name == '.' && (namelen == 1 || de->d_name[1] == '.'))
585 continue;
586 linelen += namelen + 1;
587 if (linelen > 42)
588 {
589 new_draw_info (NDI_UNIQUE, 0, op, line);
590 sprintf (line, " %s", de->d_name);
591 linelen = namelen + 1;
592 continue;
593 }
594 strcat (line, " ");
595 strcat (line, de->d_name);
596 }
597 new_draw_info (NDI_UNIQUE, 0, op, line);
598 closedir (dirp);
599}
600
601static void
602show_commands (object *op, int what)
603{
604 char line[80];
605 int i, size, namelen, linelen = 0;
606 CommArray_s *ap;
607 extern CommArray_s Commands[], WizCommands[];
608 extern const int CommandsSize, WizCommandsSize;
609
610 switch (what)
611 {
612 case 1:
613 ap = WizCommands;
614 size = WizCommandsSize;
615 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
616 break; 255 break;
617 case 2:
618 ap = CommunicationCommands;
619 size = CommunicationCommandSize;
620 new_draw_info (NDI_UNIQUE, 0, op, " Communication commands:");
621 break;
622 default:
623 ap = Commands;
624 size = CommandsSize;
625 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
626 break;
627 }
628
629 line[0] = '\0';
630 for (i = 0; i < size; i++)
631 {
632 namelen = strlen (ap[i].name);
633 linelen += namelen + 1;
634 if (linelen > 42)
635 { 256 }
636 new_draw_info (NDI_UNIQUE, 0, op, line);
637 sprintf (line, " %s", ap[i].name);
638 linelen = namelen + 1;
639 continue;
640 }
641 strcat (line, " ");
642 strcat (line, ap[i].name);
643 }
644 new_draw_info (NDI_UNIQUE, 0, op, line);
645}
646 257
258 op->contr->infobox (MSG_CHANNEL ("resistances"), msg);
647 259
648int
649command_help (object *op, char *params)
650{
651 struct stat st;
652 FILE *fp;
653 char filename[MAX_BUF], line[MAX_BUF];
654 int len;
655
656 if (op != NULL)
657 clear_win_info (op);
658
659/*
660 * Main help page?
661 */
662 if (!params)
663 {
664 sprintf (filename, "%s/def_help", settings.datadir);
665 if ((fp = fopen (filename, "r")) == NULL)
666 {
667 LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
668 return 0;
669 }
670 while (fgets (line, MAX_BUF, fp))
671 {
672 line[MAX_BUF - 1] = '\0';
673 len = strlen (line) - 1;
674 if (line[len] == '\n')
675 line[len] = '\0';
676 new_draw_info (NDI_UNIQUE, 0, op, line);
677 }
678 fclose (fp);
679 return 0; 260 return 0;
680 }
681
682 /*
683 * Topics list
684 */
685 if (!strcmp (params, "topics"))
686 {
687 help_topics (op, 3);
688 help_topics (op, 0);
689 if (QUERY_FLAG (op, FLAG_WIZ))
690 help_topics (op, 1);
691 return 0;
692 }
693
694 /*
695 * Commands list
696 */
697 if (!strcmp (params, "commands"))
698 {
699 show_commands (op, 0);
700 show_commands (op, 2); /* show comm commands */
701 if (QUERY_FLAG (op, FLAG_WIZ))
702 show_commands (op, 1);
703 return 0;
704 }
705
706 /*
707 * User wants info about command
708 */
709 if (strchr (params, '.') || strchr (params, ' ') || strchr (params, '/'))
710 {
711 sprintf (line, "Illegal characters in '%s'", params);
712 new_draw_info (NDI_UNIQUE, 0, op, line);
713 return 0;
714 }
715
716 sprintf (filename, "%s/mischelp/%s", settings.datadir, params);
717 if (stat (filename, &st) || !S_ISREG (st.st_mode))
718 {
719 if (op)
720 {
721 sprintf (filename, "%s/help/%s", settings.datadir, params);
722 if (stat (filename, &st) || !S_ISREG (st.st_mode))
723 {
724 if (QUERY_FLAG (op, FLAG_WIZ))
725 {
726 sprintf (filename, "%s/wizhelp/%s", settings.datadir, params);
727 if (stat (filename, &st) || !S_ISREG (st.st_mode))
728 goto nohelp;
729 }
730 else
731 goto nohelp;
732 }
733 }
734 }
735
736 /*
737 * Found that. Just cat it to screen.
738 */
739 if ((fp = fopen (filename, "r")) == NULL)
740 {
741 LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
742 return 0;
743 }
744 sprintf (line, "Help about '%s'", params);
745 new_draw_info (NDI_UNIQUE, 0, op, line);
746 while (fgets (line, MAX_BUF, fp))
747 {
748 line[MAX_BUF - 1] = '\0';
749 len = strlen (line) - 1;
750 if (line[len] == '\n')
751 line[len] = '\0';
752 new_draw_info (NDI_UNIQUE, 0, op, line);
753 }
754 fclose (fp);
755 return 0;
756
757 /*
758 * No_help -escape
759 */
760nohelp:
761 sprintf (line, "No help available on '%s'", params);
762 new_draw_info (NDI_UNIQUE, 0, op, line);
763 return 0;
764}
765
766
767int
768onoff_value (const char *line)
769{
770 int i;
771
772 if (sscanf (line, "%d", &i))
773 return (i != 0);
774 switch (line[0])
775 {
776 case 'o':
777 switch (line[1])
778 {
779 case 'n':
780 return 1; /* on */
781 default:
782 return 0; /* o[ff] */
783 }
784 case 'y': /* y[es] */
785 case 'k': /* k[ylla] */
786 case 's':
787 case 'd':
788 return 1;
789 case 'n': /* n[o] */
790 case 'e': /* e[i] */
791 case 'u':
792 default:
793 return 0;
794 }
795} 261}
796 262
797int 263int
798command_title (object *op, char *params) 264command_title (object *op, char *params)
799{ 265{
804 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title."); 270 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title.");
805 return 1; 271 return 1;
806 } 272 }
807 273
808 /* dragon players cannot change titles */ 274 /* dragon players cannot change titles */
809 if (is_dragon_pl (op)) 275 if (op->is_dragon ())
810 { 276 {
811 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles."); 277 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles.");
812 return 1; 278 return 1;
813 } 279 }
814 280
844command_kill_pets (object *op, char *params) 310command_kill_pets (object *op, char *params)
845{ 311{
846 objectlink *obl, *next; 312 objectlink *obl, *next;
847 int counter = 0, removecount = 0; 313 int counter = 0, removecount = 0;
848 314
849 if (params == NULL) 315 if (!params)
850 { 316 {
851 terminate_all_pets (op); 317 terminate_all_pets (op);
852 new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed."); 318 new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed.");
853 } 319 }
854 else 320 else
855 { 321 {
856 int target = atoi (params); 322 int target = atoi (params);
857 323
858 for (obl = first_friendly_object; obl != NULL; obl = next) 324 for (obl = first_friendly_object; obl; obl = next)
859 { 325 {
860 object *ob = obl->ob; 326 object *ob = obl->ob;
861 327
862 next = obl->next; 328 next = obl->next;
329
863 if (ob->owner == op) 330 if (ob->owner == op)
864 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params))) 331 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
865 { 332 {
866 ob->destroy (); 333 ob->destroy ();
867 removecount++; 334 removecount++;
868 } 335 }
869 } 336 }
337
870 if (removecount != 0) 338 if (removecount != 0)
871 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount); 339 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount);
872 else 340 else
873 new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n"); 341 new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n");
874 } 342 }
343
875 return 0; 344 return 0;
876} 345}

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines