ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/c_misc.C
Revision: 1.69
Committed: Fri Aug 29 02:12:25 2008 UTC (15 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_7, rel-2_71
Changes since 1.68: +0 -8 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 elmex 1.1 /*
2 root 1.65 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 pippijn 1.36 *
4 root 1.68 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 root 1.59 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6     * Copyright (©) 1992,2007 Frank Tore Johansen
7 pippijn 1.36 *
8 root 1.65 * Deliantra is free software: you can redistribute it and/or modify
9 root 1.62 * it under the terms of the GNU General Public License as published by
10     * the Free Software Foundation, either version 3 of the License, or
11     * (at your option) any later version.
12 pippijn 1.36 *
13 root 1.62 * This program is distributed in the hope that it will be useful,
14     * but WITHOUT ANY WARRANTY; without even the implied warranty of
15     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16     * GNU General Public License for more details.
17 pippijn 1.36 *
18 root 1.62 * You should have received a copy of the GNU General Public License
19     * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 root 1.59 *
21 root 1.65 * The authors can be reached via e-mail to <support@deliantra.net>
22 pippijn 1.36 */
23 elmex 1.1
24     #include <global.h>
25     #include <loader.h>
26 root 1.21 #include <sproto.h>
27    
28 pippijn 1.55 /* Handles misc. input request - things like hash table, malloc, maps, etc */
29 elmex 1.1
30 root 1.7 int
31     command_motd (object *op, char *params)
32 elmex 1.1 {
33 root 1.7 display_motd (op);
34     return 1;
35 elmex 1.1 }
36    
37     typedef struct
38 root 1.7 {
39     char namebuf[MAX_BUF];
40     int login_order;
41     } chars_names;
42 elmex 1.1
43 root 1.7 int
44     command_time (object *op, char *params)
45 elmex 1.1 {
46 root 1.2 print_tod (op);
47     return 1;
48     }
49 elmex 1.1
50 root 1.7 int
51     command_debug (object *op, char *params)
52 elmex 1.1 {
53 root 1.7 int i;
54     char buf[MAX_BUF];
55    
56     if (params == NULL || !sscanf (params, "%d", &i))
57     {
58     sprintf (buf, "Global debug level is %d.", settings.debug);
59     new_draw_info (NDI_UNIQUE, 0, op, buf);
60 elmex 1.1 return 1;
61     }
62 root 1.58
63     settings.debug = i;
64    
65 root 1.7 sprintf (buf, "Set debug level to %d.", i);
66     new_draw_info (NDI_UNIQUE, 0, op, buf);
67     return 1;
68     }
69 elmex 1.1
70    
71     /*
72     * Those dumps should be just one dump with good parser
73     */
74    
75 root 1.7 int
76     command_dumpbelow (object *op, char *params)
77 elmex 1.1 {
78 root 1.7 if (op && op->below)
79     {
80 root 1.14 char *dump = dump_object (op->below);
81     new_draw_info (NDI_UNIQUE, 0, op, dump);
82     free (dump);
83 elmex 1.1 /* Let's push that item on the dm's stack */
84 root 1.7 dm_stack_push (op->contr, op->below->count);
85     }
86 elmex 1.1 return 0;
87     }
88    
89 root 1.7 int
90     command_dumpfriendlyobjects (object *op, char *params)
91 elmex 1.1 {
92 root 1.7 dump_friendly_objects ();
93 elmex 1.1 return 0;
94     }
95    
96 root 1.7 int
97     command_printlos (object *op, char *params)
98 elmex 1.1 {
99     if (op)
100 root 1.7 print_los (op);
101 elmex 1.1 return 0;
102     }
103    
104    
105 root 1.7 int
106     command_version (object *op, char *params)
107 elmex 1.1 {
108 root 1.7 version (op);
109     return 0;
110 elmex 1.1 }
111    
112     #ifndef BUG_LOG
113 root 1.7 # define BUG_LOG "bug_log"
114 elmex 1.1 #endif
115 root 1.7 void
116     bug_report (const char *reportstring)
117     {
118     FILE *fp;
119    
120     if ((fp = fopen (BUG_LOG, "a")) != NULL)
121     {
122     fprintf (fp, "%s\n", reportstring);
123     fclose (fp);
124     }
125     else
126     {
127     LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno));
128 elmex 1.1 }
129 root 1.7 }
130    
131 elmex 1.1 /* Prints out some useful information for the character. Everything we print
132     * out can be determined by the docs, so we aren't revealing anything extra -
133     * rather, we are making it convenient to find the values. params have
134     * no meaning here.
135     */
136 root 1.7 int
137     command_statistics (object *pl, char *params)
138 elmex 1.1 {
139 root 1.7 if (!pl->contr)
140     return 1;
141 root 1.18 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %" PRId64, pl->stats.exp);
142     new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %" PRId64, level_exp (pl->level + 1, pl->expmul));
143 root 1.7 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
144 elmex 1.1
145 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d",
146 root 1.61 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->stats.Str);
147 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d",
148 root 1.61 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->stats.Dex);
149 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d",
150 root 1.61 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->stats.Con);
151 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d",
152 root 1.61 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->stats.Int);
153 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d",
154 root 1.61 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->stats.Wis);
155 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d",
156 root 1.61 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->stats.Pow);
157 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
158 root 1.61 pl->contr->orig_stats.Cha, pl->stats.Cha, 20 + pl->arch->stats.Cha);
159 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, pl, "\nAttack Mode: %s", pl->contr->peaceful ? "Peaceful" : "Hostile");
160 elmex 1.1
161 root 1.7 /* Can't think of anything else to print right now */
162     return 0;
163 elmex 1.1 }
164    
165 root 1.7 int
166     command_fix_me (object *op, char *params)
167 elmex 1.1 {
168 root 1.67 op->update_weight ();
169 root 1.27 op->update_stats ();
170 pippijn 1.51 new_draw_info (NDI_UNIQUE, 0, op, "Your character was fixed.");
171    
172 root 1.7 return 1;
173 elmex 1.1 }
174    
175 root 1.7 int
176     command_bowmode (object *op, char *params)
177 elmex 1.1 {
178 root 1.7 bowtype_t oldtype = op->contr->bowtype;
179     static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth",
180     "firene", "fireeast", "firese", "firesouth",
181     "firesw", "firewest", "firenw", "bestarrow"
182     };
183     char buf[MAX_BUF];
184     int i, found;
185    
186     if (!params)
187     {
188     new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode is set to %s", types[op->contr->bowtype]);
189     return 1;
190     }
191    
192     for (i = 0, found = 0; i <= bow_bestarrow; i++)
193     {
194     if (!strcmp (params, types[i]))
195     {
196     found++;
197     op->contr->bowtype = (bowtype_t) i;
198     break;
199 root 1.3 }
200 elmex 1.1 }
201 root 1.38
202 root 1.7 if (!found)
203     {
204     sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
205     for (i = 0; i <= bow_bestarrow; i++)
206     {
207     strcat (buf, " ");
208     strcat (buf, types[i]);
209     if (i < bow_nw)
210     strcat (buf, ",");
211     else
212     strcat (buf, ".");
213 root 1.3 }
214 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, buf);
215     return 0;
216 elmex 1.1 }
217 root 1.38
218 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]);
219     return 1;
220 elmex 1.1 }
221    
222 root 1.7 int
223     command_showpets (object *op, char *params)
224 elmex 1.1 {
225 root 1.7 objectlink *obl, *next;
226     int counter = 0, target = 0;
227     int have_shown_pet = 0;
228    
229     if (params != NULL)
230     target = atoi (params);
231     for (obl = first_friendly_object; obl != NULL; obl = next)
232     {
233     object *ob = obl->ob;
234    
235     next = obl->next;
236 root 1.22 if (ob->owner == op)
237 root 1.7 {
238     if (target == 0)
239     {
240     if (counter == 0)
241     new_draw_info (NDI_UNIQUE, 0, op, "Pets:");
242     new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level);
243     }
244     else if (!have_shown_pet && ++counter == target)
245     {
246     new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name);
247     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);
248     /* this is not a nice way to do this, it should be made to be more like the statistics command */
249     new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str);
250     new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex);
251     new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con);
252     new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int);
253     new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis);
254     new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha);
255     new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow);
256     new_draw_info_format (NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", ob->stats.wc, ob->stats.dam, ob->stats.ac);
257     have_shown_pet = 1;
258 root 1.3 }
259     }
260 elmex 1.1 }
261 root 1.7 if (counter == 0)
262     new_draw_info (NDI_UNIQUE, 0, op, "you have no pets.");
263     else if (target != 0 && have_shown_pet == 0)
264     new_draw_info (NDI_UNIQUE, 0, op, "no such pet.");
265     return 0;
266 elmex 1.1 }
267    
268 root 1.7 int
269     command_resistances (object *op, char *params)
270 elmex 1.1 {
271 root 1.7 int i;
272 elmex 1.1
273 root 1.7 if (!op)
274     return 0;
275    
276     for (i = 0; i < NROFATTACKS; i++)
277     {
278     if (i == ATNR_INTERNAL)
279     continue;
280 elmex 1.1
281 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
282 elmex 1.1 }
283    
284 root 1.7 /* If dragon player, let's display natural resistances */
285     if (is_dragon_pl (op))
286     {
287     int attack;
288     object *tmp;
289    
290     for (tmp = op->inv; tmp != NULL; tmp = tmp->below)
291 elmex 1.1 {
292 root 1.64 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force)
293 elmex 1.1 {
294 root 1.7 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:");
295     for (attack = 0; attack < NROFATTACKS; attack++)
296 elmex 1.1 {
297 root 1.7 if (atnr_is_dragon_enabled (attack))
298 elmex 1.1 {
299 root 1.7 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]);
300 elmex 1.1 }
301     }
302 root 1.7 break;
303 elmex 1.1 }
304     }
305 root 1.7 }
306 elmex 1.1
307 root 1.7 return 0;
308 elmex 1.1 }
309 root 1.7
310 elmex 1.1 /*
311     * Actual commands.
312     * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
313     */
314    
315 root 1.7 int
316     onoff_value (const char *line)
317 elmex 1.1 {
318     int i;
319    
320 root 1.7 if (sscanf (line, "%d", &i))
321 elmex 1.1 return (i != 0);
322 root 1.7 switch (line[0])
323     {
324     case 'o':
325     switch (line[1])
326     {
327     case 'n':
328     return 1; /* on */
329     default:
330     return 0; /* o[ff] */
331     }
332     case 'y': /* y[es] */
333     case 'k': /* k[ylla] */
334     case 's':
335     case 'd':
336     return 1;
337     case 'n': /* n[o] */
338     case 'e': /* e[i] */
339     case 'u':
340     default:
341     return 0;
342     }
343 elmex 1.1 }
344    
345 root 1.7 int
346     command_title (object *op, char *params)
347 elmex 1.1 {
348 root 1.7 char buf[MAX_BUF];
349    
350     if (settings.set_title == FALSE)
351     {
352     new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title.");
353     return 1;
354 elmex 1.1 }
355 root 1.7
356     /* dragon players cannot change titles */
357     if (is_dragon_pl (op))
358     {
359     new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles.");
360     return 1;
361     }
362    
363     if (params == NULL)
364     {
365     if (op->contr->own_title[0] == '\0')
366     sprintf (buf, "Your title is '%s'.", op->contr->title);
367     else
368     sprintf (buf, "Your title is '%s'.", op->contr->own_title);
369     new_draw_info (NDI_UNIQUE, 0, op, buf);
370     return 1;
371     }
372     if (strcmp (params, "clear") == 0 || strcmp (params, "default") == 0)
373     {
374     if (op->contr->own_title[0] == '\0')
375     new_draw_info (NDI_UNIQUE, 0, op, "Your title is the default title.");
376     else
377     new_draw_info (NDI_UNIQUE, 0, op, "Title set to default.");
378     op->contr->own_title[0] = '\0';
379     return 1;
380     }
381    
382     if ((int) strlen (params) >= MAX_NAME)
383     {
384     new_draw_info (NDI_UNIQUE, 0, op, "Title too long.");
385     return 1;
386     }
387     strcpy (op->contr->own_title, params);
388     return 1;
389 elmex 1.1 }
390    
391 root 1.7 int
392     command_kill_pets (object *op, char *params)
393 elmex 1.1 {
394 root 1.7 objectlink *obl, *next;
395     int counter = 0, removecount = 0;
396    
397 root 1.57 if (!params)
398 root 1.7 {
399     terminate_all_pets (op);
400     new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed.");
401     }
402     else
403     {
404     int target = atoi (params);
405    
406 root 1.57 for (obl = first_friendly_object; obl; obl = next)
407 root 1.7 {
408     object *ob = obl->ob;
409    
410     next = obl->next;
411 root 1.56
412 root 1.22 if (ob->owner == op)
413 root 1.7 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
414     {
415 root 1.20 ob->destroy ();
416 root 1.3 removecount++;
417 root 1.7 }
418 root 1.3 }
419 root 1.56
420 root 1.7 if (removecount != 0)
421     new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount);
422     else
423     new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n");
424 elmex 1.1 }
425 root 1.56
426 root 1.7 return 0;
427 elmex 1.1 }