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.72 by root, Fri Dec 19 22:47:29 2008 UTC vs.
Revision 1.81 by root, Sat Jan 16 13:41:37 2010 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,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010 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 <sproto.h> 26#include <sproto.h>
27 27
28/* Handles misc. input request - things like hash table, malloc, maps, etc */ 28/* 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 29
37typedef struct 30typedef struct
38{ 31{
39 char namebuf[MAX_BUF]; 32 char namebuf[MAX_BUF];
40 int login_order; 33 int login_order;
64 57
65 sprintf (buf, "Set debug level to %d.", i); 58 sprintf (buf, "Set debug level to %d.", i);
66 new_draw_info (NDI_UNIQUE, 0, op, buf); 59 new_draw_info (NDI_UNIQUE, 0, op, buf);
67 return 1; 60 return 1;
68} 61}
69
70 62
71/* 63/*
72 * Those dumps should be just one dump with good parser 64 * Those dumps should be just one dump with good parser
73 */ 65 */
74 66
85 } 77 }
86 return 0; 78 return 0;
87} 79}
88 80
89int 81int
90command_dumpfriendlyobjects (object *op, char *params)
91{
92 dump_friendly_objects ();
93 return 0;
94}
95
96int
97command_version (object *op, char *params) 82command_version (object *op, char *params)
98{ 83{
99 version (op); 84 version (op);
100 return 0; 85 return 0;
101}
102
103#ifndef BUG_LOG
104# define BUG_LOG "bug_log"
105#endif
106void
107bug_report (const char *reportstring)
108{
109 FILE *fp;
110
111 if ((fp = fopen (BUG_LOG, "a")) != NULL)
112 {
113 fprintf (fp, "%s\n", reportstring);
114 fclose (fp);
115 }
116 else
117 {
118 LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno));
119 }
120} 86}
121 87
122/* Prints out some useful information for the character. Everything we print 88/* Prints out some useful information for the character. Everything we print
123 * out can be determined by the docs, so we aren't revealing anything extra - 89 * out can be determined by the docs, so we aren't revealing anything extra -
124 * rather, we are making it convenient to find the values. params have 90 * rather, we are making it convenient to find the values. params have
127int 93int
128command_statistics (object *pl, char *params) 94command_statistics (object *pl, char *params)
129{ 95{
130 if (!pl->contr) 96 if (!pl->contr)
131 return 1; 97 return 1;
132 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %" PRId64, pl->stats.exp);
133 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %" PRId64, level_exp (pl->level + 1, pl->expmul));
134 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
135 98
136 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d", 99 dynbuf_text &msg = msg_dynbuf; msg.clear ();
137 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->stats.Str); 100
138 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d", 101 msg << " Experience: " << pl->stats.exp << '\n'
139 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->stats.Dex); 102 << " Next Level: " << level_exp (pl->level + 1, pl->expmul) << '\n'
140 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d", 103 << "\n Stat Nat/Real/Max\n";
141 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->stats.Con); 104
142 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d", 105 for (int i = 0; i < NUM_STATS; ++i)
143 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->stats.Int); 106 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));
144 new_draw_info_format (NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d", 107
145 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->stats.Wis); 108 msg << "\nYou are " << (pl->contr->peaceful ? "peaceful" : "hostile") << '.';
146 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d", 109
147 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->stats.Pow); 110 pl->contr->infobox (MSG_CHANNEL ("statistics"), msg);
148 new_draw_info_format (NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
149 pl->contr->orig_stats.Cha, pl->stats.Cha, 20 + pl->arch->stats.Cha);
150 new_draw_info_format (NDI_UNIQUE, 0, pl, "\nAttack Mode: %s", pl->contr->peaceful ? "Peaceful" : "Hostile");
151 111
152 /* Can't think of anything else to print right now */ 112 /* Can't think of anything else to print right now */
153 return 0; 113 return 0;
154} 114}
155 115
165 125
166int 126int
167command_bowmode (object *op, char *params) 127command_bowmode (object *op, char *params)
168{ 128{
169 bowtype_t oldtype = op->contr->bowtype; 129 bowtype_t oldtype = op->contr->bowtype;
170 static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth", 130 static const char *const types[] = {
131 "normal", "threewide", "spreadshot", "firenorth",
171 "firene", "fireeast", "firese", "firesouth", 132 "firene", "fireeast", "firese", "firesouth",
172 "firesw", "firewest", "firenw", "bestarrow" 133 "firesw", "firewest", "firenw", "bestarrow"
173 }; 134 };
174 char buf[MAX_BUF]; 135 char buf[MAX_BUF];
175 int i, found; 136 int i, found;
191 } 152 }
192 153
193 if (!found) 154 if (!found)
194 { 155 {
195 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params); 156 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
157
196 for (i = 0; i <= bow_bestarrow; i++) 158 for (i = 0; i <= bow_bestarrow; i++)
197 { 159 {
198 strcat (buf, " "); 160 strcat (buf, " ");
199 strcat (buf, types[i]); 161 strcat (buf, types[i]);
200 if (i < bow_nw) 162 if (i < bow_nw)
211} 173}
212 174
213int 175int
214command_showpets (object *op, char *params) 176command_showpets (object *op, char *params)
215{ 177{
216 objectlink *obl, *next;
217 int counter = 0, target = 0; 178 int counter = 0, target = 0;
218 int have_shown_pet = 0; 179 int have_shown_pet = 0;
219 180
181 dynbuf_text &msg = msg_dynbuf; msg.clear ();
182
220 if (params != NULL) 183 if (params)
221 target = atoi (params); 184 target = atoi (params);
185
222 for (obl = first_friendly_object; obl != NULL; obl = next) 186 for (objectlink *obl = first_friendly_object; obl; obl = obl->next)
223 { 187 {
224 object *ob = obl->ob; 188 object *ob = obl->ob;
225 189
226 next = obl->next;
227 if (ob->owner == op) 190 if (ob->owner == op)
228 { 191 {
229 if (target == 0) 192 if (target == 0)
230 { 193 {
231 if (counter == 0) 194 if (counter == 0)
232 new_draw_info (NDI_UNIQUE, 0, op, "Pets:"); 195 msg << "T<Pets>\n\n";
196
233 new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level); 197 msg.printf (" %3d %s, level %d\n", ++counter, &ob->name, ob->level);
234 } 198 }
235 else if (!have_shown_pet && ++counter == target) 199 else if (!have_shown_pet && ++counter == target)
236 { 200 {
237 new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name); 201 msg.printf ("T<%s>\n\n"
238 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); 202 " level %d\n"
239 /* this is not a nice way to do this, it should be made to be more like the statistics command */ 203 " %d/%d HP, %d/%d SP\n"
240 new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str); 204 " Str %2d\n"
241 new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex); 205 " Dex %2d\n"
242 new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con); 206 " Con %2d\n"
243 new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int); 207 " Int %2d\n"
244 new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis); 208 " Wis %2d\n"
245 new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha); 209 " Cha %2d\n"
246 new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow); 210 " Pow %2d\n"
247 new_draw_info_format (NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", ob->stats.wc, ob->stats.dam, ob->stats.ac); 211 " wc %d damage %d ac %d\n",
212 &ob->name,
213 ob->level,
214 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp,
215 ob->stats.Str,
216 ob->stats.Dex,
217 ob->stats.Con,
218 ob->stats.Int,
219 ob->stats.Wis,
220 ob->stats.Cha,
221 ob->stats.Pow,
222 ob->stats.wc, ob->stats.dam, ob->stats.ac);
223
248 have_shown_pet = 1; 224 have_shown_pet = 1;
249 } 225 }
250 } 226 }
251 } 227 }
228
252 if (counter == 0) 229 if (counter == 0)
253 new_draw_info (NDI_UNIQUE, 0, op, "you have no pets."); 230 msg << "you have no pets.";
254 else if (target != 0 && have_shown_pet == 0) 231 else if (target != 0 && have_shown_pet == 0)
255 new_draw_info (NDI_UNIQUE, 0, op, "no such pet."); 232 msg << "no such pet.";
233
234 op->contr->infobox (MSG_CHANNEL ("pets"), msg);
235
256 return 0; 236 return 0;
257} 237}
258 238
259int 239int
260command_resistances (object *op, char *params) 240command_resistances (object *op, char *params)
261{ 241{
262 int i; 242 dynbuf_text &msg = msg_dynbuf; msg.clear ();
263 243
264 if (!op) 244 msg << "Resistances:\n\n";
265 return 0;
266 245
267 for (i = 0; i < NROFATTACKS; i++) 246 for (int i = 0; i < NROFATTACKS; i++)
268 {
269 if (i == ATNR_INTERNAL) 247 if (i != ATNR_INTERNAL)
270 continue; 248 msg.printf (" %-20s %+4d\n", attacktype_desc [i], op->resist [i]);
271
272 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
273 }
274 249
275 /* If dragon player, let's display natural resistances */ 250 /* If dragon player, let's display natural resistances */
276 if (is_dragon_pl (op)) 251 if (is_dragon_pl (op))
277 {
278 int attack;
279 object *tmp;
280
281 for (tmp = op->inv; tmp != NULL; tmp = tmp->below) 252 for (object *tmp = op->inv; tmp; tmp = tmp->below)
282 {
283 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force) 253 if ((tmp->type == FORCE) && tmp->arch->archname == shstr_dragon_skin_force)
284 { 254 {
285 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:"); 255 msg << "\nOf those, these are natural skin resistances:\n\n";
256
286 for (attack = 0; attack < NROFATTACKS; attack++) 257 for (int attack = 0; attack < NROFATTACKS; attack++)
287 {
288 if (atnr_is_dragon_enabled (attack)) 258 if (atnr_is_dragon_enabled (attack))
289 { 259 msg.printf (" %-20s %+4d\n", change_resist_msg [attack], tmp->resist [attack]);
290 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]); 260
291 }
292 }
293 break; 261 break;
294 } 262 }
295 }
296 }
297 263
298 return 0; 264 op->contr->infobox (MSG_CHANNEL ("resistances"), msg);
299}
300 265
301/* 266 return 0;
302 * Actual commands.
303 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
304 */
305
306int
307onoff_value (const char *line)
308{
309 int i;
310
311 if (sscanf (line, "%d", &i))
312 return (i != 0);
313 switch (line[0])
314 {
315 case 'o':
316 switch (line[1])
317 {
318 case 'n':
319 return 1; /* on */
320 default:
321 return 0; /* o[ff] */
322 }
323 case 'y': /* y[es] */
324 case 'k': /* k[ylla] */
325 case 's':
326 case 'd':
327 return 1;
328 case 'n': /* n[o] */
329 case 'e': /* e[i] */
330 case 'u':
331 default:
332 return 0;
333 }
334} 267}
335 268
336int 269int
337command_title (object *op, char *params) 270command_title (object *op, char *params)
338{ 271{

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines