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.70 by root, Mon Sep 29 10:20:49 2008 UTC vs.
Revision 1.89 by root, Sat Nov 17 23:40:03 2018 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2017,2018 Marc Alexander Lehmann / the Deliantra team
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 5 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team 6 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 7 * Copyright (©) 1992 Frank Tore Johansen
7 * 8 *
8 * Deliantra is free software: you can redistribute it and/or modify 9 * Deliantra is free software: you can redistribute it and/or modify it under
9 * it under the terms of the GNU General Public License as published by 10 * the terms of the Affero GNU General Public License as published by the
10 * the Free Software Foundation, either version 3 of the License, or 11 * Free Software Foundation, either version 3 of the License, or (at your
11 * (at your option) any later version. 12 * option) any later version.
12 * 13 *
13 * This program is distributed in the hope that it will be useful, 14 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 17 * GNU General Public License for more details.
17 * 18 *
18 * You should have received a copy of the GNU General Public License 19 * You should have received a copy of the Affero GNU General Public License
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. 20 * and the GNU General Public License along with this program. If not, see
21 * <http://www.gnu.org/licenses/>.
20 * 22 *
21 * The authors can be reached via e-mail to <support@deliantra.net> 23 * The authors can be reached via e-mail to <support@deliantra.net>
22 */ 24 */
23 25
24#include <global.h> 26#include <global.h>
25#include <loader.h>
26#include <sproto.h> 27#include <sproto.h>
27 28
28/* Handles misc. input request - things like hash table, malloc, maps, etc */ 29/* Handles misc. input request - things like hash table, malloc, maps, etc */
29
30int
31command_motd (object *op, char *params)
32{
33 display_motd (op);
34 return 1;
35}
36
37typedef struct
38{
39 char namebuf[MAX_BUF];
40 int login_order;
41} chars_names;
42 30
43int 31int
44command_time (object *op, char *params) 32command_time (object *op, char *params)
45{ 33{
46 print_tod (op); 34 print_tod (op);
64 52
65 sprintf (buf, "Set debug level to %d.", i); 53 sprintf (buf, "Set debug level to %d.", i);
66 new_draw_info (NDI_UNIQUE, 0, op, buf); 54 new_draw_info (NDI_UNIQUE, 0, op, buf);
67 return 1; 55 return 1;
68} 56}
69
70 57
71/* 58/*
72 * Those dumps should be just one dump with good parser 59 * Those dumps should be just one dump with good parser
73 */ 60 */
74 61
85 } 72 }
86 return 0; 73 return 0;
87} 74}
88 75
89int 76int
90command_dumpfriendlyobjects (object *op, char *params)
91{
92 dump_friendly_objects ();
93 return 0;
94}
95
96int
97command_printlos (object *op, char *params)
98{
99 if (op)
100 print_los (op);
101 return 0;
102}
103
104
105int
106command_version (object *op, char *params) 77command_version (object *op, char *params)
107{ 78{
108 version (op); 79 version (op);
109 return 0; 80 return 0;
110}
111
112#ifndef BUG_LOG
113# define BUG_LOG "bug_log"
114#endif
115void
116bug_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 }
129} 81}
130 82
131/* Prints out some useful information for the character. Everything we print 83/* 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 - 84 * 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 85 * rather, we are making it convenient to find the values. params have
136int 88int
137command_statistics (object *pl, char *params) 89command_statistics (object *pl, char *params)
138{ 90{
139 if (!pl->contr) 91 if (!pl->contr)
140 return 1; 92 return 1;
141 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 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
144 93
145 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d", 94 dynbuf_text &msg = msg_dynbuf; msg.clear ();
146 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->stats.Str); 95
147 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d", 96 msg << " Experience: " << pl->stats.exp << '\n'
148 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->stats.Dex); 97 << " Next Level: " << level_exp (pl->level + 1, pl->expmul) << '\n'
149 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d", 98 << "\n Stat Nat/Real/Max\n";
150 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->stats.Con); 99
151 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d", 100 for (int i = 0; i < NUM_STATS; ++i)
152 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->stats.Int); 101 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));
153 new_draw_info_format (NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d", 102
154 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->stats.Wis); 103 msg << "\nYou are " << (pl->contr->peaceful ? "peaceful" : "hostile") << '.';
155 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d", 104
156 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->stats.Pow); 105 pl->contr->infobox (MSG_CHANNEL ("statistics"), msg);
157 new_draw_info_format (NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
158 pl->contr->orig_stats.Cha, pl->stats.Cha, 20 + pl->arch->stats.Cha);
159 new_draw_info_format (NDI_UNIQUE, 0, pl, "\nAttack Mode: %s", pl->contr->peaceful ? "Peaceful" : "Hostile");
160 106
161 /* Can't think of anything else to print right now */ 107 /* Can't think of anything else to print right now */
162 return 0; 108 return 0;
163} 109}
164 110
174 120
175int 121int
176command_bowmode (object *op, char *params) 122command_bowmode (object *op, char *params)
177{ 123{
178 bowtype_t oldtype = op->contr->bowtype; 124 bowtype_t oldtype = op->contr->bowtype;
179 static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth", 125 static const char *const types[] = {
126 "normal", "threewide", "spreadshot", "firenorth",
180 "firene", "fireeast", "firese", "firesouth", 127 "firene", "fireeast", "firese", "firesouth",
181 "firesw", "firewest", "firenw", "bestarrow" 128 "firesw", "firewest", "firenw", "bestarrow"
182 }; 129 };
183 char buf[MAX_BUF]; 130 char buf[MAX_BUF];
184 int i, found; 131 int i, found;
200 } 147 }
201 148
202 if (!found) 149 if (!found)
203 { 150 {
204 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params); 151 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
152
205 for (i = 0; i <= bow_bestarrow; i++) 153 for (i = 0; i <= bow_bestarrow; i++)
206 { 154 {
207 strcat (buf, " "); 155 strcat (buf, " ");
208 strcat (buf, types[i]); 156 strcat (buf, types[i]);
209 if (i < bow_nw) 157 if (i < bow_nw)
220} 168}
221 169
222int 170int
223command_showpets (object *op, char *params) 171command_showpets (object *op, char *params)
224{ 172{
225 objectlink *obl, *next;
226 int counter = 0, target = 0; 173 int counter = 0, target = 0;
227 int have_shown_pet = 0; 174 int have_shown_pet = 0;
228 175
176 dynbuf_text &msg = msg_dynbuf; msg.clear ();
177
229 if (params != NULL) 178 if (params)
230 target = atoi (params); 179 target = atoi (params);
180
231 for (obl = first_friendly_object; obl != NULL; obl = next) 181 for (objectlink *obl = first_friendly_object; obl; obl = obl->next)
232 { 182 {
233 object *ob = obl->ob; 183 object *ob = obl->ob;
234 184
235 next = obl->next;
236 if (ob->owner == op) 185 if (ob->owner == op)
237 { 186 {
238 if (target == 0) 187 if (target == 0)
239 { 188 {
240 if (counter == 0) 189 if (counter == 0)
241 new_draw_info (NDI_UNIQUE, 0, op, "Pets:"); 190 msg << "T<Pets>\n\n";
191
242 new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level); 192 msg.printf (" %3d %s, level %d\n", ++counter, &ob->name, ob->level);
243 } 193 }
244 else if (!have_shown_pet && ++counter == target) 194 else if (!have_shown_pet && ++counter == target)
245 { 195 {
246 new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name); 196 msg.printf ("T<%s>\n\n"
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); 197 " level %d\n"
248 /* this is not a nice way to do this, it should be made to be more like the statistics command */ 198 " %d/%d HP, %d/%d SP\n"
249 new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str); 199 " Str %2d\n"
250 new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex); 200 " Dex %2d\n"
251 new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con); 201 " Con %2d\n"
252 new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int); 202 " Int %2d\n"
253 new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis); 203 " Wis %2d\n"
254 new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha); 204 " Cha %2d\n"
255 new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow); 205 " Pow %2d\n"
256 new_draw_info_format (NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", ob->stats.wc, ob->stats.dam, ob->stats.ac); 206 " wc %d damage %d ac %d\n",
207 &ob->name,
208 ob->level,
209 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp,
210 ob->stats.Str,
211 ob->stats.Dex,
212 ob->stats.Con,
213 ob->stats.Int,
214 ob->stats.Wis,
215 ob->stats.Cha,
216 ob->stats.Pow,
217 ob->stats.wc, ob->stats.dam, ob->stats.ac);
218
257 have_shown_pet = 1; 219 have_shown_pet = 1;
258 } 220 }
259 } 221 }
260 } 222 }
223
261 if (counter == 0) 224 if (counter == 0)
262 new_draw_info (NDI_UNIQUE, 0, op, "you have no pets."); 225 msg << "you have no pets.";
263 else if (target != 0 && have_shown_pet == 0) 226 else if (target != 0 && have_shown_pet == 0)
264 new_draw_info (NDI_UNIQUE, 0, op, "no such pet."); 227 msg << "no such pet.";
228
229 op->contr->infobox (MSG_CHANNEL ("pets"), msg);
230
265 return 0; 231 return 0;
266} 232}
267 233
268int 234int
269command_resistances (object *op, char *params) 235command_resistances (object *op, char *params)
270{ 236{
271 int i; 237 dynbuf_text &msg = msg_dynbuf; msg.clear ();
272 238
273 if (!op) 239 msg << "Resistances:\n\n";
274 return 0;
275 240
276 for (i = 0; i < NROFATTACKS; i++) 241 for (int i = 0; i < NROFATTACKS; i++)
277 {
278 if (i == ATNR_INTERNAL) 242 if (i != ATNR_INTERNAL)
279 continue; 243 msg.printf (" %-20s %+4d\n", attacktype_desc [i], op->resist [i]);
280
281 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
282 }
283 244
284 /* If dragon player, let's display natural resistances */ 245 /* If dragon player, let's display natural resistances */
285 if (is_dragon_pl (op)) 246 if (op->is_dragon ())
286 {
287 int attack;
288 object *tmp;
289
290 for (tmp = op->inv; tmp != NULL; tmp = tmp->below) 247 for (object *tmp = op->inv; tmp; tmp = tmp->below)
291 {
292 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force) 248 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force)
293 { 249 {
294 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:"); 250 msg << "\nOf those, these are natural skin resistances:\n\n";
251
295 for (attack = 0; attack < NROFATTACKS; attack++) 252 for (int attack = 0; attack < NROFATTACKS; attack++)
296 {
297 if (atnr_is_dragon_enabled (attack)) 253 if (atnr_is_dragon_enabled (attack))
298 { 254 msg.printf (" %-20s %+4d\n", change_resist_msg [attack], tmp->resist [attack]);
299 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]); 255
300 }
301 }
302 break; 256 break;
303 } 257 }
304 }
305 }
306 258
307 return 0; 259 op->contr->infobox (MSG_CHANNEL ("resistances"), msg);
308}
309 260
310/* 261 return 0;
311 * Actual commands.
312 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
313 */
314
315int
316onoff_value (const char *line)
317{
318 int i;
319
320 if (sscanf (line, "%d", &i))
321 return (i != 0);
322 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} 262}
344 263
345int 264int
346command_title (object *op, char *params) 265command_title (object *op, char *params)
347{ 266{
352 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title."); 271 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title.");
353 return 1; 272 return 1;
354 } 273 }
355 274
356 /* dragon players cannot change titles */ 275 /* dragon players cannot change titles */
357 if (is_dragon_pl (op)) 276 if (op->is_dragon ())
358 { 277 {
359 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles."); 278 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles.");
360 return 1; 279 return 1;
361 } 280 }
362 281
410 next = obl->next; 329 next = obl->next;
411 330
412 if (ob->owner == op) 331 if (ob->owner == op)
413 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params))) 332 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
414 { 333 {
415 ob->destroy (true); 334 ob->destroy ();
416 removecount++; 335 removecount++;
417 } 336 }
418 } 337 }
419 338
420 if (removecount != 0) 339 if (removecount != 0)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines