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.67 by root, Sun Apr 20 23:25:09 2008 UTC vs.
Revision 1.79 by root, Fri Nov 6 13:31:47 2009 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 (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002,2007 Mark Wedel & Crossfire Development Team
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * Deliantra 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 3 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, see <http://www.gnu.org/licenses/>. 19 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>.
20 * 21 *
21 * The authors can be reached via e-mail to <support@deliantra.net> 22 * The authors can be reached via e-mail to <support@deliantra.net>
22 */ 23 */
23 24
24#include <global.h> 25#include <global.h>
25#include <loader.h> 26#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 30
30int
31command_motd (object *op, char *params)
32{
33 display_motd (op);
34 return 1;
35}
36
37typedef struct 31typedef struct
38{ 32{
39 char namebuf[MAX_BUF]; 33 char namebuf[MAX_BUF];
40 int login_order; 34 int login_order;
41} chars_names; 35} chars_names;
64 58
65 sprintf (buf, "Set debug level to %d.", i); 59 sprintf (buf, "Set debug level to %d.", i);
66 new_draw_info (NDI_UNIQUE, 0, op, buf); 60 new_draw_info (NDI_UNIQUE, 0, op, buf);
67 return 1; 61 return 1;
68} 62}
69
70 63
71/* 64/*
72 * Those dumps should be just one dump with good parser 65 * Those dumps should be just one dump with good parser
73 */ 66 */
74 67
85 } 78 }
86 return 0; 79 return 0;
87} 80}
88 81
89int 82int
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) 83command_version (object *op, char *params)
107{ 84{
108 version (op); 85 version (op);
109 return 0; 86 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} 87}
130 88
131/* Prints out some useful information for the character. Everything we print 89/* 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 - 90 * 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 91 * rather, we are making it convenient to find the values. params have
136int 94int
137command_statistics (object *pl, char *params) 95command_statistics (object *pl, char *params)
138{ 96{
139 if (!pl->contr) 97 if (!pl->contr)
140 return 1; 98 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 99
145 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d", 100 dynbuf_text &msg = msg_dynbuf; msg.clear ();
146 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->stats.Str); 101
147 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d", 102 msg << " Experience: " << pl->stats.exp << '\n'
148 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->stats.Dex); 103 << " Next Level: " << level_exp (pl->level + 1, pl->expmul) << '\n'
149 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d", 104 << "\n Stat Nat/Real/Max\n";
150 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->stats.Con); 105
151 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d", 106 for (int i = 0; i < NUM_STATS; ++i)
152 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->stats.Int); 107 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", 108
154 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->stats.Wis); 109 msg << "\nYou are " << (pl->contr->peaceful ? "peaceful" : "hostile") << '.';
155 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d", 110
156 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->stats.Pow); 111 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 112
161 /* Can't think of anything else to print right now */ 113 /* Can't think of anything else to print right now */
162 return 0; 114 return 0;
163} 115}
164 116
171 123
172 return 1; 124 return 1;
173} 125}
174 126
175int 127int
176command_logs (object *op, char *params)
177{
178 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills.");
179
180 return 1;
181}
182
183int
184command_bowmode (object *op, char *params) 128command_bowmode (object *op, char *params)
185{ 129{
186 bowtype_t oldtype = op->contr->bowtype; 130 bowtype_t oldtype = op->contr->bowtype;
187 static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth", 131 static const char *const types[] = {
132 "normal", "threewide", "spreadshot", "firenorth",
188 "firene", "fireeast", "firese", "firesouth", 133 "firene", "fireeast", "firese", "firesouth",
189 "firesw", "firewest", "firenw", "bestarrow" 134 "firesw", "firewest", "firenw", "bestarrow"
190 }; 135 };
191 char buf[MAX_BUF]; 136 char buf[MAX_BUF];
192 int i, found; 137 int i, found;
208 } 153 }
209 154
210 if (!found) 155 if (!found)
211 { 156 {
212 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params); 157 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
158
213 for (i = 0; i <= bow_bestarrow; i++) 159 for (i = 0; i <= bow_bestarrow; i++)
214 { 160 {
215 strcat (buf, " "); 161 strcat (buf, " ");
216 strcat (buf, types[i]); 162 strcat (buf, types[i]);
217 if (i < bow_nw) 163 if (i < bow_nw)
228} 174}
229 175
230int 176int
231command_showpets (object *op, char *params) 177command_showpets (object *op, char *params)
232{ 178{
233 objectlink *obl, *next;
234 int counter = 0, target = 0; 179 int counter = 0, target = 0;
235 int have_shown_pet = 0; 180 int have_shown_pet = 0;
236 181
182 dynbuf_text &msg = msg_dynbuf; msg.clear ();
183
237 if (params != NULL) 184 if (params)
238 target = atoi (params); 185 target = atoi (params);
186
239 for (obl = first_friendly_object; obl != NULL; obl = next) 187 for (objectlink *obl = first_friendly_object; obl; obl = obl->next)
240 { 188 {
241 object *ob = obl->ob; 189 object *ob = obl->ob;
242 190
243 next = obl->next;
244 if (ob->owner == op) 191 if (ob->owner == op)
245 { 192 {
246 if (target == 0) 193 if (target == 0)
247 { 194 {
248 if (counter == 0) 195 if (counter == 0)
249 new_draw_info (NDI_UNIQUE, 0, op, "Pets:"); 196 msg << "T<Pets>\n\n";
197
250 new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level); 198 msg.printf (" %3d %s, level %d\n", ++counter, &ob->name, ob->level);
251 } 199 }
252 else if (!have_shown_pet && ++counter == target) 200 else if (!have_shown_pet && ++counter == target)
253 { 201 {
254 new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name); 202 msg.printf ("T<%s>\n\n"
255 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); 203 " level %d\n"
256 /* this is not a nice way to do this, it should be made to be more like the statistics command */ 204 " %d/%d HP, %d/%d SP\n"
257 new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str); 205 " Str %2d\n"
258 new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex); 206 " Dex %2d\n"
259 new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con); 207 " Con %2d\n"
260 new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int); 208 " Int %2d\n"
261 new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis); 209 " Wis %2d\n"
262 new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha); 210 " Cha %2d\n"
263 new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow); 211 " Pow %2d\n"
264 new_draw_info_format (NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", ob->stats.wc, ob->stats.dam, ob->stats.ac); 212 " wc %d damage %d ac %d\n",
213 &ob->name,
214 &ob->name,
215 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp,
216 ob->stats.Str,
217 ob->stats.Dex,
218 ob->stats.Con,
219 ob->stats.Int,
220 ob->stats.Wis,
221 ob->stats.Cha,
222 ob->stats.Pow,
223 ob->stats.wc, ob->stats.dam, ob->stats.ac);
224
265 have_shown_pet = 1; 225 have_shown_pet = 1;
266 } 226 }
267 } 227 }
268 } 228 }
229
269 if (counter == 0) 230 if (counter == 0)
270 new_draw_info (NDI_UNIQUE, 0, op, "you have no pets."); 231 msg << "you have no pets.";
271 else if (target != 0 && have_shown_pet == 0) 232 else if (target != 0 && have_shown_pet == 0)
272 new_draw_info (NDI_UNIQUE, 0, op, "no such pet."); 233 msg << "no such pet.";
234
235 op->contr->infobox (MSG_CHANNEL ("pets"), msg);
236
273 return 0; 237 return 0;
274} 238}
275 239
276int 240int
277command_resistances (object *op, char *params) 241command_resistances (object *op, char *params)
278{ 242{
279 int i; 243 dynbuf_text &msg = msg_dynbuf; msg.clear ();
280 244
281 if (!op) 245 msg << "Resistances:\n\n";
282 return 0;
283 246
284 for (i = 0; i < NROFATTACKS; i++) 247 for (int i = 0; i < NROFATTACKS; i++)
285 {
286 if (i == ATNR_INTERNAL) 248 if (i != ATNR_INTERNAL)
287 continue; 249 msg.printf (" %-20s %+4d\n", attacktype_desc [i], op->resist [i]);
288
289 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
290 }
291 250
292 /* If dragon player, let's display natural resistances */ 251 /* If dragon player, let's display natural resistances */
293 if (is_dragon_pl (op)) 252 if (is_dragon_pl (op))
294 {
295 int attack;
296 object *tmp;
297
298 for (tmp = op->inv; tmp != NULL; tmp = tmp->below) 253 for (object *tmp = op->inv; tmp; tmp = tmp->below)
299 {
300 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force) 254 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force)
301 { 255 {
302 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:"); 256 msg << "\nOf those, these are natural skin resistances:\n\n";
257
303 for (attack = 0; attack < NROFATTACKS; attack++) 258 for (int attack = 0; attack < NROFATTACKS; attack++)
304 {
305 if (atnr_is_dragon_enabled (attack)) 259 if (atnr_is_dragon_enabled (attack))
306 { 260 msg.printf (" %-20s %+4d\n", change_resist_msg [attack], tmp->resist [attack]);
307 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]); 261
308 }
309 }
310 break; 262 break;
311 } 263 }
312 }
313 }
314 264
315 return 0; 265 op->contr->infobox (MSG_CHANNEL ("resistances"), msg);
316}
317 266
318/* 267 return 0;
319 * Actual commands.
320 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
321 */
322
323int
324onoff_value (const char *line)
325{
326 int i;
327
328 if (sscanf (line, "%d", &i))
329 return (i != 0);
330 switch (line[0])
331 {
332 case 'o':
333 switch (line[1])
334 {
335 case 'n':
336 return 1; /* on */
337 default:
338 return 0; /* o[ff] */
339 }
340 case 'y': /* y[es] */
341 case 'k': /* k[ylla] */
342 case 's':
343 case 'd':
344 return 1;
345 case 'n': /* n[o] */
346 case 'e': /* e[i] */
347 case 'u':
348 default:
349 return 0;
350 }
351} 268}
352 269
353int 270int
354command_title (object *op, char *params) 271command_title (object *op, char *params)
355{ 272{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines