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.5 by root, Sun Sep 3 00:18:42 2006 UTC vs.
Revision 1.17 by pippijn, Mon Dec 11 21:06:59 2006 UTC

1/*
2 * static char *rcsid_c_misc_c =
3 * "$Id: c_misc.C,v 1.5 2006/09/03 00:18:42 root Exp $";
4 */
5
6/* 1/*
7 CrossFire, A Multiplayer game for X-windows 2 CrossFire, A Multiplayer game for X-windows
8 3
9 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 4 Copyright (C) 2002 Mark Wedel & Crossfire Development Team
10 Copyright (C) 1992 Frank Tore Johansen 5 Copyright (C) 1992 Frank Tore Johansen
21 16
22 You should have received a copy of the GNU General Public License 17 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software 18 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 20
26 The authors can be reached via e-mail at crossfire-devel@real-time.com 21 The authors can be reached via e-mail at <crossfire@schmorp.de>
27*/ 22*/
28 23
29#include <global.h> 24#include <global.h>
30#include <loader.h> 25#include <loader.h>
31#ifndef __CEXTRACT__ 26#ifndef __CEXTRACT__
32#include <sproto.h> 27# include <sproto.h>
33#endif 28#endif
34 29
35extern weathermap_t **weathermap; 30extern weathermap_t **weathermap;
36 31
37/* Handles misc. input request - things like hash table, malloc, maps, 32/* Handles misc. input request - things like hash table, malloc, maps,
38 * who, etc. 33 * who, etc.
39 */ 34 */
40 35
36void
41void map_info(object *op, char *search) { 37map_info (object *op, char *search)
42 mapstruct *m; 38{
39 maptile *m;
43 char buf[MAX_BUF], map_path[MAX_BUF]; 40 char buf[MAX_BUF], map_path[MAX_BUF];
44 long sec = seconds(); 41 long sec = seconds ();
45 new_draw_info_format(NDI_UNIQUE, 0, op, 42
46 "Current time is: %02ld:%02ld:%02ld.", 43 new_draw_info_format (NDI_UNIQUE, 0, op, "Current time is: %02ld:%02ld:%02ld.", (sec % 86400) / 3600, (sec % 3600) / 60, sec % 60);
47 (sec%86400)/3600,(sec%3600)/60,sec%60);
48 new_draw_info(NDI_UNIQUE, 0,op,"Path Pl PlM IM TO Dif Reset"); 44 new_draw_info (NDI_UNIQUE, 0, op, "Path Pl PlM IM TO Dif Reset");
49 for(m=first_map;m!=NULL;m=m->next) { 45 for (m = first_map; m != NULL; m = m->next)
46 {
50 47
51 if ( search && strstr(m->path,search)==NULL ) continue; /* Skip unwanted maps */ 48 if (search && strstr (m->path, search) == NULL)
49 continue; /* Skip unwanted maps */
52 /* Print out the last 18 characters of the map name... */ 50 /* Print out the last 18 characters of the map name... */
53 if (strlen(m->path)<=18) strcpy(map_path, m->path); 51 if (strlen (m->path) <= 18)
52 strcpy (map_path, m->path);
53 else
54 else strcpy(map_path, m->path + strlen(m->path) - 18); 54 strcpy (map_path, m->path + strlen (m->path) - 18);
55 sprintf(buf,"%-18.18s %2d %2d %1d %4d %2d %02d:%02d:%02d", 55 sprintf (buf, "%-18.18s %2d %2d %1d %4d %2d %02d:%02d:%02d",
56 map_path, m->players,players_on_map(m,FALSE), 56 map_path, m->players, players_on_map (m, FALSE),
57 m->in_memory,m->timeout,m->difficulty, 57 m->in_memory, m->timeout, m->difficulty,
58 (MAP_WHEN_RESET(m)%86400)/3600,(MAP_WHEN_RESET(m)%3600)/60, 58 (MAP_WHEN_RESET (m) % 86400) / 3600, (MAP_WHEN_RESET (m) % 3600) / 60, MAP_WHEN_RESET (m) % 60);
59 MAP_WHEN_RESET(m)%60);
60 new_draw_info(NDI_UNIQUE, 0,op,buf); 59 new_draw_info (NDI_UNIQUE, 0, op, buf);
61 } 60 }
62} 61}
63 62
64/* This command dumps the body information for object *op. 63/* This command dumps the body information for object *op.
65 * it doesn't care what the params are. 64 * it doesn't care what the params are.
66 * This is mostly meant as a debug command. 65 * This is mostly meant as a debug command.
67 */ 66 */
67int
68int command_body(object *op, char *params) 68command_body (object *op, char *params)
69{ 69{
70 int i; 70 int i;
71 71
72 /* Too hard to try and make a header that lines everything up, so just 72 /* Too hard to try and make a header that lines everything up, so just
73 * give a description. 73 * give a description.
74 */ 74 */
75 new_draw_info(NDI_UNIQUE, 0, op, "The first column is the name of the body location."); 75 new_draw_info (NDI_UNIQUE, 0, op, "The first column is the name of the body location.");
76 new_draw_info(NDI_UNIQUE, 0, op, "The second column is how many of those locations your body has."); 76 new_draw_info (NDI_UNIQUE, 0, op, "The second column is how many of those locations your body has.");
77 new_draw_info(NDI_UNIQUE, 0, op, "The third column is how many slots in that location are available."); 77 new_draw_info (NDI_UNIQUE, 0, op, "The third column is how many slots in that location are available.");
78 for (i=0; i<NUM_BODY_LOCATIONS; i++) { 78 for (i = 0; i < NUM_BODY_LOCATIONS; i++)
79 {
79 /* really debugging - normally body_used should not be set to anything 80 /* really debugging - normally body_used should not be set to anything
80 * if body_info isn't also set. 81 * if body_info isn't also set.
81 */ 82 */
82 if (op->body_info[i] || op->body_used[i]) { 83 if (op->body_info[i] || op->body_used[i])
83 new_draw_info_format(NDI_UNIQUE, 0, op, 84 {
84 "%-30s %5d %5d", body_locations[i].use_name, op->body_info[i], op->body_used[i]); 85 new_draw_info_format (NDI_UNIQUE, 0, op, "%-30s %5d %5d", body_locations[i].use_name, op->body_info[i], op->body_used[i]);
85 } 86 }
86 } 87 }
87 if (!QUERY_FLAG(op, FLAG_USE_ARMOUR)) 88 if (!QUERY_FLAG (op, FLAG_USE_ARMOUR))
88 new_draw_info(NDI_UNIQUE, 0, op, "You are not allowed to wear armor"); 89 new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to wear armor");
89 if (!QUERY_FLAG(op, FLAG_USE_WEAPON)) 90 if (!QUERY_FLAG (op, FLAG_USE_WEAPON))
90 new_draw_info(NDI_UNIQUE, 0, op, "You are not allowed to use weapons"); 91 new_draw_info (NDI_UNIQUE, 0, op, "You are not allowed to use weapons");
91 92
92 return 1; 93 return 1;
93} 94}
94 95
95 96
97int
96int command_motd(object *op, char *params) 98command_motd (object *op, char *params)
97{ 99{
98 display_motd(op); 100 display_motd (op);
99 return 1; 101 return 1;
100} 102}
101 103
104int
102int command_bug(object *op, char *params) 105command_bug (object *op, char *params)
103{ 106{
104 char buf[MAX_BUF]; 107 char buf[MAX_BUF];
105 108
106 if (params == NULL) { 109 if (params == NULL)
110 {
107 new_draw_info(NDI_UNIQUE, 0,op,"what bugs?"); 111 new_draw_info (NDI_UNIQUE, 0, op, "what bugs?");
108 return 1; 112 return 1;
109 } 113 }
110 strcpy(buf,op->name); 114 strcpy (buf, op->name);
111 strcat(buf," bug-reports: "); 115 strcat (buf, " bug-reports: ");
112 strncat(buf,++params,MAX_BUF - strlen(buf) ); 116 strncat (buf, ++params, MAX_BUF - strlen (buf));
113 buf[MAX_BUF - 1] = '\0'; 117 buf[MAX_BUF - 1] = '\0';
114 bug_report(buf); 118 bug_report (buf);
115 LOG(llevError,"%s\n",buf); 119 LOG (llevError, "%s\n", buf);
116 new_draw_info(NDI_ALL | NDI_UNIQUE, 1, NULL, buf); 120 new_draw_info (NDI_ALL | NDI_UNIQUE, 1, NULL, buf);
117 new_draw_info(NDI_UNIQUE, 0,op, "OK, thanks!"); 121 new_draw_info (NDI_UNIQUE, 0, op, "OK, thanks!");
118 return 1; 122 return 1;
119}
120
121
122void malloc_info(object *op) {
123 int ob_used=count_used(),ob_free=count_free(),players,nrofmaps;
124 int nrm=0,mapmem=0,anr,anims,sum_alloc=0,sum_used=0,i,tlnr, alnr;
125 treasurelist *tl;
126 player *pl;
127 mapstruct *m;
128 archetype *at;
129 artifactlist *al;
130
131 for(tl=first_treasurelist,tlnr=0;tl!=NULL;tl=tl->next,tlnr++);
132 for(al=first_artifactlist, alnr=0; al!=NULL; al=al->next, alnr++);
133
134 for(at=first_archetype,anr=0,anims=0;at!=NULL;
135 at=at->more==NULL?at->next:at->more,anr++);
136
137 for (i=1; i<num_animations; i++)
138 anims += animations[i].num_animations;
139
140 for(pl=first_player,players=0;pl!=NULL;pl=pl->next,players++);
141 for(m=first_map,nrofmaps=0;m!=NULL;m=m->next,nrofmaps++)
142 if(m->in_memory == MAP_IN_MEMORY) {
143 mapmem+=MAP_WIDTH(m)*MAP_HEIGHT(m)*(sizeof(object *)+sizeof(MapSpace));
144 nrm++;
145 }
146 sprintf(errmsg,"Sizeof: object=%ld player=%ld map=%ld",
147 (long)sizeof(object),(long)sizeof(player),(long)sizeof(mapstruct));
148 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
149 sprintf(errmsg,"%4d used objects: %8d",ob_used,i=(ob_used*sizeof(object)));
150 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
151 sum_used+=i; sum_alloc+=i;
152 sprintf(errmsg,"%4d free objects: %8d",ob_free,i=(ob_free*sizeof(object)));
153 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
154 sprintf(errmsg,"%4d active objects: %8d",count_active(), 0);
155 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
156 sum_alloc+=i;
157 sprintf(errmsg,"%4d players: %8d",players,i=(players*sizeof(player)));
158 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
159 sum_alloc+=i; sum_used+=i;
160
161
162 sprintf(errmsg,"%4d maps allocated: %8d",nrofmaps,
163 i=(nrofmaps*sizeof(mapstruct)));
164 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
165 sum_alloc+=i; sum_used+=nrm*sizeof(mapstruct);
166 sprintf(errmsg,"%4d maps in memory: %8d",nrm,mapmem);
167 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
168 sum_alloc+=mapmem; sum_used+=mapmem;
169 sprintf(errmsg,"%4d archetypes: %8d",anr,i=(anr*sizeof(archetype)));
170 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
171 sum_alloc+=i; sum_used+=i;
172 sprintf(errmsg,"%4d animations: %8d",anims,i=(anims*sizeof(Fontindex)));
173 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
174 sum_alloc+=i; sum_used+=i;
175
176 sprintf(errmsg,"%4d treasurelists %8d",tlnr,i=(tlnr*sizeof(treasurelist)));
177 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
178 sum_alloc+=i; sum_used+=i;
179 sprintf(errmsg,"%4ld treasures %8d",nroftreasures,
180 i=(nroftreasures*sizeof(treasure)));
181 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
182 sum_alloc+=i; sum_used+=i;
183 sprintf(errmsg,"%4ld artifacts %8d", nrofartifacts,
184 i=(nrofartifacts*sizeof(artifact)));
185 new_draw_info(NDI_UNIQUE, 0,op, errmsg);
186 sum_alloc+=i; sum_used +=i;
187 sprintf(errmsg,"%4ld artifacts strngs %8d", nrofallowedstr,
188 i=(nrofallowedstr*sizeof(linked_char)));
189 new_draw_info(NDI_UNIQUE, 0,op, errmsg);
190 sum_alloc += i;sum_used+=i;
191 sprintf(errmsg,"%4d artifactlists %8d",alnr,i=(alnr*sizeof(artifactlist)));
192 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
193 sum_alloc += i; sum_used += i;
194
195 sprintf(errmsg,"Total space allocated:%8d",sum_alloc);
196 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
197 sprintf(errmsg,"Total space used: %8d",sum_used);
198 new_draw_info(NDI_UNIQUE, 0,op,errmsg);
199} 123}
200 124
201/* 125/*
202 * Pretty much identical to current map_info, but on a bigger scale 126 * Pretty much identical to current map_info, but on a bigger scale
203 * This function returns the name of the players current region, and 127 * This function returns the name of the players current region, and
204 * a description of it. It is there merely for flavour text. 128 * a description of it. It is there merely for flavour text.
205 */ 129 */
130void
206void current_region_info(object *op) { 131current_region_info (object *op)
132{
207 /* 133 /*
208 * Ok I /suppose/ I should write a seperate function for this, but it isn't 134 * Ok I /suppose/ I should write a seperate function for this, but it isn't
209 * going to be /that/ slow, and won't get called much 135 * going to be /that/ slow, and won't get called much
210 */ 136 */
211 region *r = get_region_by_name(get_name_of_region_for_map(op->map)); 137 region *r = get_region_by_name (get_name_of_region_for_map (op->map));
212 138
213 if (!r) 139 if (!r)
214 return; 140 return;
215 /* This should only be possible if regions are not operating on this server. */ 141 /* This should only be possible if regions are not operating on this server. */
216 142
217 new_draw_info_format(NDI_UNIQUE, 0,op, 143 new_draw_info_format (NDI_UNIQUE, 0, op, "You are in %s. \n %s", get_region_longname (r), get_region_msg (r));
218 "You are in %s. \n %s", get_region_longname(r), get_region_msg(r));
219} 144}
220 145
146void
221void current_map_info(object *op) { 147current_map_info (object *op)
148{
222 mapstruct *m = op->map; 149 maptile *m = op->map;
223 150
224 if (!m) 151 if (!m)
225 return; 152 return;
226 153
227 new_draw_info_format(NDI_UNIQUE, 0,op,
228 "%s (%s) in %s", m->name, m->path, get_name_of_region_for_map(m)); 154 new_draw_info_format (NDI_UNIQUE, 0, op, "%s (%s) in %s", m->name, m->path, get_name_of_region_for_map (m));
229 155
230 if (QUERY_FLAG(op,FLAG_WIZ)) { 156 if (QUERY_FLAG (op, FLAG_WIZ))
157 {
231 new_draw_info_format(NDI_UNIQUE, 0, op, 158 new_draw_info_format (NDI_UNIQUE, 0, op,
232 "players:%d difficulty:%d size:%dx%d start:%dx%d timeout %ld", 159 "players:%d difficulty:%d size:%dx%d start:%dx%d timeout %ld",
233 m->players, m->difficulty, 160 m->players, m->difficulty, MAP_WIDTH (m), MAP_HEIGHT (m), MAP_ENTER_X (m), MAP_ENTER_Y (m), MAP_TIMEOUT (m));
234 MAP_WIDTH(m), MAP_HEIGHT(m),
235 MAP_ENTER_X(m), MAP_ENTER_Y(m),
236 MAP_TIMEOUT(m));
237 161
238 } 162 }
239 if (m->msg) 163 if (m->msg)
240 new_draw_info(NDI_UNIQUE, NDI_NAVY, op, m->msg); 164 new_draw_info (NDI_UNIQUE, NDI_NAVY, op, m->msg);
241} 165}
242 166
243#ifdef DEBUG_MALLOC_LEVEL 167#ifdef DEBUG_MALLOC_LEVEL
168int
244int command_malloc_verify(object *op, char *parms) 169command_malloc_verify (object *op, char *parms)
245{ 170{
246 extern int malloc_verify(void); 171 extern int malloc_verify (void);
247 172
248 if (!malloc_verify()) 173 if (!malloc_verify ())
249 new_draw_info(NDI_UNIQUE, 0,op,"Heap is corrupted."); 174 new_draw_info (NDI_UNIQUE, 0, op, "Heap is corrupted.");
250 else 175 else
251 new_draw_info(NDI_UNIQUE, 0,op,"Heap checks out OK."); 176 new_draw_info (NDI_UNIQUE, 0, op, "Heap checks out OK.");
252 return 1; 177 return 1;
178}
179#endif
180
181int
182command_whereabouts (object *op, char *params)
183{
184
185 region *reg;
186 player *pl;
187
188 /*
189 * reset the counter on the region, then use it to store the number of
190 * players there.
191 * I don't know how thread-safe this would be, I suspect not very....
192 */
193 for (reg = first_region; reg != NULL; reg = reg->next)
194 {
195 reg->counter = 0;
196 }
197 for (pl = first_player; pl != NULL; pl = pl->next)
198 if (pl->ob->map != NULL)
199 get_region_by_map (pl->ob->map)->counter++;
200
201 /* we only want to print out by places with a 'longname' field... */
202 for (reg = first_region; reg != NULL; reg = reg->next)
203 {
204 if (reg->longname == NULL && reg->counter > 0)
205 {
206 if (reg->parent != NULL)
207 {
208 reg->parent->counter += reg->counter;
209 reg->counter = 0;
210 }
211 else /*uh oh, we shouldn't be here. */
212 LOG (llevError, "command_whereabouts() Region %s with no longname has no parent", reg->name);
253 } 213 }
254#endif
255
256int command_whereabouts(object *op, char *params) {
257
258 region *reg;
259 player *pl;
260 214 }
261 /* 215 new_draw_info_format (NDI_UNIQUE, 0, op, "In the world currently there are:");
262 * reset the counter on the region, then use it to store the number of
263 * players there.
264 * I don't know how thread-safe this would be, I suspect not very....
265 */
266 for (reg=first_region;reg!=NULL;reg=reg->next) { 216 for (reg = first_region; reg != NULL; reg = reg->next)
267 reg->counter=0;
268 }
269 for (pl=first_player;pl!=NULL;pl=pl->next)
270 if (pl->ob->map!=NULL)
271 get_region_by_map(pl->ob->map)->counter++;
272
273 /* we only want to print out by places with a 'longname' field...*/
274 for (reg=first_region;reg!=NULL;reg=reg->next) {
275 if (reg->longname==NULL && reg->counter>0) {
276 if(reg->parent !=NULL) {
277 reg->parent->counter+=reg->counter;
278 reg->counter=0;
279 }
280 else /*uh oh, we shouldn't be here. */
281 LOG(llevError,"command_whereabouts() Region %s with no longname has no parent", reg->name);
282 }
283 }
284 new_draw_info_format(NDI_UNIQUE, 0,op,
285 "In the world currently there are:");
286 for (reg=first_region;reg!=NULL;reg=reg->next)
287 if(reg->counter>0) 217 if (reg->counter > 0)
288 new_draw_info_format(NDI_UNIQUE, 0,op, 218 new_draw_info_format (NDI_UNIQUE, 0, op, "%u players in %s", reg->counter, get_region_longname (reg));
289 "%u players in %s", reg->counter, get_region_longname(reg)); 219 return 1;
220}
221
222typedef struct
223{
224 char namebuf[MAX_BUF];
225 int login_order;
226} chars_names;
227
228int
229command_afk (object *op, char *params)
230{
231 if QUERY_FLAG
232 (op, FLAG_AFK)
233 {
234 CLEAR_FLAG (op, FLAG_AFK);
235 new_draw_info (NDI_UNIQUE, 0, op, "You are no longer AFK");
236 }
237 else
238 {
239 SET_FLAG (op, FLAG_AFK);
240 new_draw_info (NDI_UNIQUE, 0, op, "You are now AFK");
241 }
242 return 1;
243}
244
245int
246command_mapinfo (object *op, char *params)
247{
248 current_map_info (op);
249 return 1;
250}
251
252int
253command_whereami (object *op, char *params)
254{
255 current_region_info (op);
256 return 1;
257}
258
259int
260command_maps (object *op, char *params)
261{
262 map_info (op, params);
263 return 1;
264}
265
266int
267command_time (object *op, char *params)
268{
269 print_tod (op);
270 return 1;
271}
272
273int
274command_weather (object *op, char *params)
275{
276 int wx, wy, temp, sky;
277 char buf[MAX_BUF];
278
279 if (settings.dynamiclevel < 1)
290 return 1; 280 return 1;
291}
292 281
293typedef struct
294 {
295 char namebuf[MAX_BUF];
296 int login_order;
297 } chars_names;
298
299/*local functon for qsort comparison*/
300static int name_cmp (const chars_names *c1, const chars_names *c2)
301 {
302 return strcasecmp (c1->namebuf, c2->namebuf);
303 }
304
305int command_who (object *op, char *params) {
306 player *pl;
307 uint16 i;
308 region *reg;
309 char* format;
310 int num_players = 0;
311 int num_wiz = 0;
312 int num_afk = 0;
313 chars_names *chars = NULL;
314
315 /*
316 * The who formats are defined in config to be blank. They should have been
317 * overridden by the settings file, if there are no entries however, it will
318 * have stayed blank. Since this probably isn't what is wanted, we will check if
319 * new formats have been specified, and if not we will use the old defaults.
320 */
321 if (!strcmp(settings.who_format,""))
322 strcpy(settings.who_format, "%N_%T%t%h%d%n[%m]");
323 if (!strcmp(settings.who_wiz_format,""))
324 strcpy(settings.who_wiz_format, "%N_%T%t%h%d%nLevel %l [%m](@%i)(%c)");
325 if (op == NULL || QUERY_FLAG(op, FLAG_WIZ))
326 format=settings.who_wiz_format;
327 else
328 format=settings.who_format;
329
330 reg=get_region_from_string(params);
331
332 for (pl=first_player;pl!=NULL;pl=pl->next) {
333 if (pl->ob->map == NULL) 282 if (op->map == NULL)
334 continue;
335 if (pl->hidden && !QUERY_FLAG(op, FLAG_WIZ)) continue;
336
337 if(!region_is_child_of_region(get_region_by_map(pl->ob->map),reg)) continue;
338
339 if (pl->state==ST_PLAYING || pl->state==ST_GET_PARTY_PASSWORD) {
340
341 num_players++;
342 chars = (chars_names *) realloc(chars, num_players*sizeof(chars_names));
343 if (chars == NULL) {
344 new_draw_info(NDI_UNIQUE, 0, op, "who failed - out of memory!");
345 return 0;
346 }
347 sprintf(chars[num_players-1].namebuf, "%s", &pl->ob->name);
348 chars[num_players-1].login_order = num_players;
349 /*Check for WIZ's & AFK's*/
350 if (QUERY_FLAG(pl->ob,FLAG_WIZ))
351 num_wiz++;
352 if (QUERY_FLAG(pl->ob,FLAG_AFK))
353 num_afk++;
354 }
355 }
356 if (first_player != (player *) NULL) {
357 if (reg == NULL)
358 new_draw_info_format(NDI_UNIQUE, 0, op, "Total Players (%d) -- WIZ(%d) AFK(%d)",
359 num_players, num_wiz, num_afk);
360 else if (reg->longname == NULL)
361 new_draw_info_format(NDI_UNIQUE, 0, op, "Total Players in %s (%d) -- WIZ(%d) AFK(%d)",
362 reg->name, num_players, num_wiz, num_afk);
363 else
364 new_draw_info_format(NDI_UNIQUE, 0, op, "Total Players in %s (%d) -- WIZ(%d) AFK(%d)",
365 reg->longname, num_players, num_wiz, num_afk);
366 }
367 qsort (chars, num_players, sizeof(chars_names), (int (*)(const void *, const void *))name_cmp);
368 for (i=0;i<num_players;i++)
369 display_who_entry(op, find_player(chars[i].namebuf), format);
370 free(chars);
371 return 1; 283 return 1;
372}
373 284
374/* Display a line of 'who' to op, about pl, using the formatting specified by format */ 285 if (worldmap_to_weathermap (op->x, op->y, &wx, &wy, op->map) != 0)
375void display_who_entry(object *op, player *pl, const char *format) {
376 char tmpbuf[MAX_BUF];
377 char outbuf[MAX_BUF];
378 size_t i;
379 outbuf[0]='\0'; /* we strcat to this, so reset it here. */
380 if (pl==NULL) {
381 LOG(llevError,"display_who_entry(): I was passed a null player");
382 return;
383 }
384 for (i=0;i<=strlen(format);i++) {
385 if (format[i]=='%') {
386 i++;
387 get_who_escape_code_value(tmpbuf,format[i],pl);
388 strcat(outbuf, tmpbuf);
389 }
390 else if (format[i]=='_')
391 strcat(outbuf," "); /* allow '_' to be used in place of spaces */
392 else {
393 sprintf(tmpbuf,"%c",format[i]);
394 strcat(outbuf,tmpbuf);
395 }
396 }
397 new_draw_info(NDI_UNIQUE, 0, op, outbuf);
398}
399
400/* Returns the value of the escape code used in the who format specifier
401 * the values are:
402 * N Name of character
403 * t title of character
404 * T the optional "the " sequence value (depend if player has own_title or not)
405 * c count
406 * n newline
407 * h [Hostile] if character is hostile, nothing otherwise
408 * d [WIZ] if character is a dm, nothing otherwise
409 * a [AFK] if character is afk, nothing otherwise
410 * l the level of the character
411 * m the map path the character is currently on
412 * M the map name of the map the character is currently on
413 * r the region name (eg scorn, wolfsburg)
414 * R the regional title (eg The Kingdom of Scorn, The Port of Wolfsburg)
415 * i player's ip adress
416 * % a literal %
417 * _ a literal underscore
418 */
419
420void get_who_escape_code_value(char *return_val, const char letter, player *pl) {
421
422 switch (letter) {
423 case 'N' : strcpy(return_val, pl->ob->name);
424 break;
425 case 't' : strcpy(return_val,(pl->own_title[0]=='\0'?pl->title:pl->own_title));
426 break;
427 case 'T' : if (pl->own_title[0]=='\0')
428 strcpy(return_val,"the ");
429 else
430 *return_val='\0';
431 break;
432 case 'c' : sprintf(return_val,"%d",pl->ob->count);
433 break;
434 case 'n' : strcpy(return_val, "\n");
435 break;
436 case 'h' : strcpy(return_val,pl->peaceful?"":" [Hostile]");
437 break;
438 case 'l' : sprintf(return_val,"%d",pl->ob->level);
439 break;
440 case 'd' : strcpy(return_val,(QUERY_FLAG(pl->ob,FLAG_WIZ)?" [WIZ]":""));
441 break;
442 case 'a' : strcpy(return_val,(QUERY_FLAG(pl->ob,FLAG_AFK)?" [AFK]":""));
443 break;
444 case 'm' : strcpy(return_val,pl->ob->map->path);
445 break;
446 case 'M' : strcpy(return_val,pl->ob->map->name?pl->ob->map->name:"Untitled");
447 break;
448 case 'r' : strcpy(return_val,get_name_of_region_for_map(pl->ob->map));
449 break;
450 case 'R' : strcpy(return_val,get_region_longname(get_region_by_map(pl->ob->map)));
451 break;
452 case 'i' : strcpy(return_val,pl->socket.host);
453 break;
454 case '%' : strcpy(return_val, "%");
455 break;
456 case '_' : strcpy(return_val, "_");
457 break;
458 }
459
460}
461
462
463int command_afk (object *op, char *params)
464{
465 if QUERY_FLAG(op,FLAG_AFK) {
466 CLEAR_FLAG(op,FLAG_AFK);
467 new_draw_info(NDI_UNIQUE, 0, op, "You are no longer AFK");
468 }
469 else
470 {
471 SET_FLAG(op,FLAG_AFK);
472 new_draw_info(NDI_UNIQUE, 0, op, "You are now AFK");
473 }
474 return 1; 286 return 1;
475}
476 287
477int command_malloc (object *op, char *params)
478{
479 malloc_info(op);
480 return 1;
481 }
482
483int command_mapinfo (object *op, char *params)
484{
485 current_map_info(op);
486 return 1;
487 }
488
489int command_whereami (object *op, char *params)
490{
491 current_region_info(op);
492 return 1;
493}
494
495 int command_maps (object *op, char *params)
496{
497 map_info(op,params);
498 return 1;
499 }
500
501int command_time (object *op, char *params)
502{
503 print_tod (op);
504 return 1;
505}
506
507int command_weather (object *op, char *params)
508{
509 int wx, wy, temp, sky;
510 char buf[MAX_BUF];
511
512 if (settings.dynamiclevel < 1)
513 return 1;
514
515 if (op->map == NULL)
516 return 1;
517
518 if (worldmap_to_weathermap(op->x, op->y, &wx, &wy, op->map) != 0)
519 return 1;
520
521 if (QUERY_FLAG(op, FLAG_WIZ)) { 288 if (QUERY_FLAG (op, FLAG_WIZ))
289 {
522 /* dump the weather, Dm style! Yo! */ 290 /* dump the weather, Dm style! Yo! */
523 new_draw_info_format(NDI_UNIQUE, 0, op, "Real temp: %d", 291 new_draw_info_format (NDI_UNIQUE, 0, op, "Real temp: %d", real_world_temperature (op->x, op->y, op->map));
524 real_world_temperature(op->x, op->y, op->map));
525 new_draw_info_format(NDI_UNIQUE, 0, op, "Base temp: %d", 292 new_draw_info_format (NDI_UNIQUE, 0, op, "Base temp: %d", weathermap[wx][wy].temp);
526 weathermap[wx][wy].temp);
527 new_draw_info_format(NDI_UNIQUE, 0, op, "Humid: %d", 293 new_draw_info_format (NDI_UNIQUE, 0, op, "Humid: %d", weathermap[wx][wy].humid);
528 weathermap[wx][wy].humid); 294 new_draw_info_format (NDI_UNIQUE, 0, op, "Wind: dir=%d speed=%d", weathermap[wx][wy].winddir, weathermap[wx][wy].windspeed);
529 new_draw_info_format(NDI_UNIQUE, 0, op, "Wind: dir=%d speed=%d",
530 weathermap[wx][wy].winddir, weathermap[wx][wy].windspeed);
531 new_draw_info_format(NDI_UNIQUE, 0, op, "Pressure: %d", 295 new_draw_info_format (NDI_UNIQUE, 0, op, "Pressure: %d", weathermap[wx][wy].pressure);
532 weathermap[wx][wy].pressure);
533 new_draw_info_format(NDI_UNIQUE, 0, op, "Avg Elevation: %d", 296 new_draw_info_format (NDI_UNIQUE, 0, op, "Avg Elevation: %d", weathermap[wx][wy].avgelev);
534 weathermap[wx][wy].avgelev); 297 new_draw_info_format (NDI_UNIQUE, 0, op, "Rainfall: %d Water: %d", weathermap[wx][wy].rainfall, weathermap[wx][wy].water);
535 new_draw_info_format(NDI_UNIQUE, 0, op, "Rainfall: %d Water: %d",
536 weathermap[wx][wy].rainfall, weathermap[wx][wy].water);
537 } 298 }
538 299
539 temp = real_world_temperature(op->x, op->y, op->map); 300 temp = real_world_temperature (op->x, op->y, op->map);
540 new_draw_info_format(NDI_UNIQUE, 0, op, "It's currently %d degrees " 301 new_draw_info_format (NDI_UNIQUE, 0, op, "It's currently %d degrees " "Centigrade out.", temp);
541 "Centigrade out.", temp);
542 302
543 /* humid */ 303 /* humid */
544 if (weathermap[wx][wy].humid < 20) 304 if (weathermap[wx][wy].humid < 20)
545 new_draw_info(NDI_UNIQUE, 0, op, "It is very dry."); 305 new_draw_info (NDI_UNIQUE, 0, op, "It is very dry.");
546 else if (weathermap[wx][wy].humid < 40) 306 else if (weathermap[wx][wy].humid < 40)
547 new_draw_info(NDI_UNIQUE, 0, op, "It is very comfortable today."); 307 new_draw_info (NDI_UNIQUE, 0, op, "It is very comfortable today.");
548 else if (weathermap[wx][wy].humid < 60) 308 else if (weathermap[wx][wy].humid < 60)
549 new_draw_info(NDI_UNIQUE, 0, op, "It is a bit muggy."); 309 new_draw_info (NDI_UNIQUE, 0, op, "It is a bit muggy.");
550 else if (weathermap[wx][wy].humid < 80) 310 else if (weathermap[wx][wy].humid < 80)
551 new_draw_info(NDI_UNIQUE, 0, op, "It is muggy."); 311 new_draw_info (NDI_UNIQUE, 0, op, "It is muggy.");
552 else 312 else
553 new_draw_info(NDI_UNIQUE, 0, op, "It is uncomfortably muggy."); 313 new_draw_info (NDI_UNIQUE, 0, op, "It is uncomfortably muggy.");
554 314
555 /* wind */ 315 /* wind */
556 switch (weathermap[wx][wy].winddir) { 316 switch (weathermap[wx][wy].winddir)
557 case 1: sprintf(buf, "north"); break;
558 case 2: sprintf(buf, "northeast"); break;
559 case 3: sprintf(buf, "east"); break;
560 case 4: sprintf(buf, "southeast"); break;
561 case 5: sprintf(buf, "south"); break;
562 case 6: sprintf(buf, "southwest"); break;
563 case 7: sprintf(buf, "west"); break;
564 case 8: sprintf(buf, "northwest"); break;
565 } 317 {
318 case 1:
319 sprintf (buf, "north");
320 break;
321 case 2:
322 sprintf (buf, "northeast");
323 break;
324 case 3:
325 sprintf (buf, "east");
326 break;
327 case 4:
328 sprintf (buf, "southeast");
329 break;
330 case 5:
331 sprintf (buf, "south");
332 break;
333 case 6:
334 sprintf (buf, "southwest");
335 break;
336 case 7:
337 sprintf (buf, "west");
338 break;
339 case 8:
340 sprintf (buf, "northwest");
341 break;
342 }
566 if (weathermap[wx][wy].windspeed < 5) 343 if (weathermap[wx][wy].windspeed < 5)
567 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a mild breeze " 344 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a mild breeze " "coming from the %s.", buf);
568 "coming from the %s.", buf);
569 else if (weathermap[wx][wy].windspeed < 10) 345 else if (weathermap[wx][wy].windspeed < 10)
570 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a strong breeze " 346 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong breeze " "coming from the %s.", buf);
571 "coming from the %s.", buf);
572 else if (weathermap[wx][wy].windspeed < 15) 347 else if (weathermap[wx][wy].windspeed < 15)
573 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a light wind " 348 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a light wind " "coming from the %s.", buf);
574 "coming from the %s.", buf);
575 else if (weathermap[wx][wy].windspeed < 25) 349 else if (weathermap[wx][wy].windspeed < 25)
576 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a strong wind " 350 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a strong wind " "coming from the %s.", buf);
577 "coming from the %s.", buf);
578 else if (weathermap[wx][wy].windspeed < 35) 351 else if (weathermap[wx][wy].windspeed < 35)
579 new_draw_info_format(NDI_UNIQUE, 0, op, "There is a heavy wind " 352 new_draw_info_format (NDI_UNIQUE, 0, op, "There is a heavy wind " "coming from the %s.", buf);
580 "coming from the %s.", buf);
581 else 353 else
582 new_draw_info_format(NDI_UNIQUE, 0, op, "The wind from the %s is " 354 new_draw_info_format (NDI_UNIQUE, 0, op, "The wind from the %s is " "incredibly strong!", buf);
583 "incredibly strong!", buf);
584 355
585 sky = weathermap[wx][wy].sky; 356 sky = weathermap[wx][wy].sky;
586 if (temp <= 0 && sky > SKY_OVERCAST && sky < SKY_FOG) 357 if (temp <= 0 && sky > SKY_OVERCAST && sky < SKY_FOG)
587 sky += 10; /*let it snow*/ 358 sky += 10; /*let it snow */
588 switch (sky) { 359 switch (sky)
360 {
361 case SKY_CLEAR:
589 case SKY_CLEAR: new_draw_info(NDI_UNIQUE, 0, op, "There isn''t a cloud in the sky."); break; 362 new_draw_info (NDI_UNIQUE, 0, op, "There isn''t a cloud in the sky.");
363 break;
364 case SKY_LIGHTCLOUD:
590 case SKY_LIGHTCLOUD: new_draw_info(NDI_UNIQUE, 0, op, "There are a few light clouds in the sky."); break; 365 new_draw_info (NDI_UNIQUE, 0, op, "There are a few light clouds in the sky.");
366 break;
367 case SKY_OVERCAST:
591 case SKY_OVERCAST: new_draw_info(NDI_UNIQUE, 0, op, "The sky is cloudy and dreary."); break; 368 new_draw_info (NDI_UNIQUE, 0, op, "The sky is cloudy and dreary.");
369 break;
370 case SKY_LIGHT_RAIN:
592 case SKY_LIGHT_RAIN: new_draw_info(NDI_UNIQUE, 0, op, "It is raining softly."); break; 371 new_draw_info (NDI_UNIQUE, 0, op, "It is raining softly.");
372 break;
373 case SKY_RAIN:
593 case SKY_RAIN: new_draw_info(NDI_UNIQUE, 0, op, "It is raining."); break; 374 new_draw_info (NDI_UNIQUE, 0, op, "It is raining.");
375 break;
376 case SKY_HEAVY_RAIN:
594 case SKY_HEAVY_RAIN: new_draw_info(NDI_UNIQUE, 0, op, "It is raining heavily."); break; 377 new_draw_info (NDI_UNIQUE, 0, op, "It is raining heavily.");
378 break;
379 case SKY_HURRICANE:
595 case SKY_HURRICANE: new_draw_info(NDI_UNIQUE, 0, op, "There is a heavy storm! You should go inside!"); break; 380 new_draw_info (NDI_UNIQUE, 0, op, "There is a heavy storm! You should go inside!");
381 break;
382 case SKY_FOG:
596 case SKY_FOG: new_draw_info(NDI_UNIQUE, 0, op, "It''s foggy and miserable."); break; 383 new_draw_info (NDI_UNIQUE, 0, op, "It''s foggy and miserable.");
384 break;
385 case SKY_HAIL:
597 case SKY_HAIL: new_draw_info(NDI_UNIQUE, 0, op, "It''s hailing out! Take cover!"); break; 386 new_draw_info (NDI_UNIQUE, 0, op, "It''s hailing out! Take cover!");
387 break;
388 case SKY_LIGHT_SNOW:
598 case SKY_LIGHT_SNOW: new_draw_info(NDI_UNIQUE, 0, op, "Snow is gently falling from the sky."); break; 389 new_draw_info (NDI_UNIQUE, 0, op, "Snow is gently falling from the sky.");
390 break;
391 case SKY_SNOW:
599 case SKY_SNOW: new_draw_info(NDI_UNIQUE, 0, op, "It''s snowing out."); break; 392 new_draw_info (NDI_UNIQUE, 0, op, "It''s snowing out.");
393 break;
394 case SKY_HEAVY_SNOW:
600 case SKY_HEAVY_SNOW: new_draw_info(NDI_UNIQUE, 0, op, "The snow is falling very heavily now."); break; 395 new_draw_info (NDI_UNIQUE, 0, op, "The snow is falling very heavily now.");
396 break;
397 case SKY_BLIZZARD:
601 case SKY_BLIZZARD: new_draw_info(NDI_UNIQUE, 0, op, "A full blown blizzard is in effect. You might want to take cover!"); break; 398 new_draw_info (NDI_UNIQUE, 0, op, "A full blown blizzard is in effect. You might want to take cover!");
399 break;
602 } 400 }
603 return 1; 401 return 1;
604} 402}
605 403
404int
606int command_archs (object *op, char *params) 405command_archs (object *op, char *params)
607{ 406{
608 arch_info(op); 407 arch_info (op);
609 return 1; 408 return 1;
610 } 409}
611 410
411int
612int command_hiscore (object *op, char *params) 412command_hiscore (object *op, char *params)
613{ 413{
614 display_high_score(op,op==NULL?9999:50, params); 414 display_high_score (op, op == NULL ? 9999 : 50, params);
615 return 1; 415 return 1;
616 } 416}
617 417
418int
618int command_debug (object *op, char *params) 419command_debug (object *op, char *params)
619{ 420{
620 int i; 421 int i;
621 char buf[MAX_BUF]; 422 char buf[MAX_BUF];
423
622 if(params==NULL || !sscanf(params, "%d", &i)) { 424 if (params == NULL || !sscanf (params, "%d", &i))
425 {
623 sprintf(buf,"Global debug level is %d.",settings.debug); 426 sprintf (buf, "Global debug level is %d.", settings.debug);
624 new_draw_info(NDI_UNIQUE, 0,op,buf); 427 new_draw_info (NDI_UNIQUE, 0, op, buf);
625 return 1; 428 return 1;
626 } 429 }
627 if(op != NULL && !QUERY_FLAG(op, FLAG_WIZ)) { 430 if (op != NULL && !QUERY_FLAG (op, FLAG_WIZ))
431 {
628 new_draw_info(NDI_UNIQUE, 0,op,"Privileged command."); 432 new_draw_info (NDI_UNIQUE, 0, op, "Privileged command.");
629 return 1; 433 return 1;
630 } 434 }
631 settings.debug = (enum LogLevel) FABS(i); 435 settings.debug = (enum LogLevel) FABS (i);
632 sprintf(buf,"Set debug level to %d.", i); 436 sprintf (buf, "Set debug level to %d.", i);
633 new_draw_info(NDI_UNIQUE, 0,op,buf); 437 new_draw_info (NDI_UNIQUE, 0, op, buf);
634 return 1; 438 return 1;
635 } 439}
636 440
637 441
638/* 442/*
639 * Those dumps should be just one dump with good parser 443 * Those dumps should be just one dump with good parser
640 */ 444 */
641 445
446int
642int command_dumpbelow (object *op, char *params) 447command_dumpbelow (object *op, char *params)
643{ 448{
644 if (op && op->below) { 449 if (op && op->below)
450 {
645 dump_object(op->below); 451 char *dump = dump_object (op->below);
646 new_draw_info(NDI_UNIQUE, 0,op,errmsg); 452 new_draw_info (NDI_UNIQUE, 0, op, dump);
453 free (dump);
647 /* Let's push that item on the dm's stack */ 454 /* Let's push that item on the dm's stack */
648 dm_stack_push( op->contr, op->below->count ); 455 dm_stack_push (op->contr, op->below->count);
649 } 456 }
457 return 0;
458}
459
460int
461command_dumpfriendlyobjects (object *op, char *params)
462{
463 dump_friendly_objects ();
464 return 0;
465}
466
467int
468command_dumpmap (object *op, char *params)
469{
470 if (op)
471 dump_map (op->map);
472 return 0;
473}
474
475int
476command_dumpallmaps (object *op, char *params)
477{
478 dump_all_maps ();
479 return 0;
480}
481
482int
483command_printlos (object *op, char *params)
484{
485 if (op)
486 print_los (op);
487 return 0;
488}
489
490
491int
492command_version (object *op, char *params)
493{
494 version (op);
495 return 0;
496}
497
498
499#ifndef BUG_LOG
500# define BUG_LOG "bug_log"
501#endif
502void
503bug_report (const char *reportstring)
504{
505 FILE *fp;
506
507 if ((fp = fopen (BUG_LOG, "a")) != NULL)
508 {
509 fprintf (fp, "%s\n", reportstring);
510 fclose (fp);
511 }
512 else
513 {
514 LOG (llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror (errno));
515 }
516}
517
518int
519command_output_sync (object *op, char *params)
520{
521 int val;
522
523 if (!params)
524 {
525 new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time is presently %d", op->contr->outputs_sync);
526 return 1;
527 }
528 val = atoi (params);
529 if (val > 0)
530 {
531 op->contr->outputs_sync = val;
532 new_draw_info_format (NDI_UNIQUE, 0, op, "Output sync time now set to %d", op->contr->outputs_sync);
533 }
534 else
535 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_sync.");
536
650 return 0; 537 return 1;
651} 538}
652 539
540int
541command_output_count (object *op, char *params)
542{
543 int val;
544
545 if (!params)
546 {
547 new_draw_info_format (NDI_UNIQUE, 0, op, "Output count is presently %d", op->contr->outputs_count);
548 return 1;
549 }
550 val = atoi (params);
551 if (val > 0)
552 {
553 op->contr->outputs_count = val;
554 new_draw_info_format (NDI_UNIQUE, 0, op, "Output count now set to %d", op->contr->outputs_count);
555 }
556 else
557 new_draw_info (NDI_UNIQUE, 0, op, "Invalid value for output_count.");
558
559 return 1;
560}
561
562int
653int command_wizpass (object *op, char *params) 563command_listen (object *op, char *params)
654{ 564{
655 int i; 565 int i;
656 566
657 if (!op)
658 return 0;
659
660 if (!params)
661 i = (QUERY_FLAG(op, FLAG_WIZPASS)) ? 0 : 1;
662 else
663 i =onoff_value(params);
664
665 if (i) {
666 new_draw_info(NDI_UNIQUE, 0,op, "You will now walk through walls.\n");
667 SET_FLAG(op, FLAG_WIZPASS);
668 } else {
669 new_draw_info(NDI_UNIQUE, 0,op, "You will now be stopped by walls.\n");
670 CLEAR_FLAG(op, FLAG_WIZPASS);
671 }
672 return 0;
673}
674
675int command_wizcast (object *op, char *params)
676{
677 int i;
678
679 if (!op)
680 return 0;
681
682 if (!params)
683 i = (QUERY_FLAG(op, FLAG_WIZCAST)) ? 0 : 1;
684 else
685 i = onoff_value(params);
686
687 if (i) {
688 new_draw_info(NDI_UNIQUE, 0, op, "You can now cast spells anywhere.");
689 SET_FLAG(op, FLAG_WIZCAST);
690 } else {
691 new_draw_info(NDI_UNIQUE, 0, op, "You now cannot cast spells in no-magic areas.");
692 CLEAR_FLAG(op, FLAG_WIZCAST);
693 }
694 return 0;
695}
696
697int command_dumpallobjects (object *op, char *params)
698{
699 dump_all_objects();
700 return 0;
701}
702
703int command_dumpfriendlyobjects (object *op, char *params)
704{
705 dump_friendly_objects();
706 return 0;
707}
708
709int command_dumpallarchetypes (object *op, char *params)
710{
711 dump_all_archetypes();
712 return 0;
713 }
714
715int command_dumpmap (object *op, char *params)
716{
717 if(op)
718 dump_map(op->map);
719 return 0;
720}
721
722int command_dumpallmaps (object *op, char *params)
723{
724 dump_all_maps();
725 return 0;
726}
727
728int command_printlos (object *op, char *params)
729{
730 if (op)
731 print_los(op);
732 return 0;
733}
734
735
736int command_version (object *op, char *params)
737{
738 version(op);
739 return 0;
740}
741
742
743#ifndef BUG_LOG
744#define BUG_LOG "bug_log"
745#endif
746void bug_report(const char * reportstring){
747 FILE * fp;
748 if((fp = fopen( BUG_LOG , "a")) != NULL){
749 fprintf(fp,"%s\n", reportstring);
750 fclose(fp);
751 } else {
752 LOG(llevError, "Cannot write bugs file %s: %s\n", BUG_LOG, strerror(errno));
753 }
754}
755
756int command_output_sync(object *op, char *params)
757{
758 int val;
759
760 if (!params) {
761 new_draw_info_format(NDI_UNIQUE, 0, op,
762 "Output sync time is presently %d", op->contr->outputs_sync);
763 return 1;
764 }
765 val=atoi(params);
766 if (val>0) {
767 op->contr->outputs_sync = val;
768 new_draw_info_format(NDI_UNIQUE, 0, op,
769 "Output sync time now set to %d", op->contr->outputs_sync);
770 }
771 else
772 new_draw_info(NDI_UNIQUE, 0, op,"Invalid value for output_sync.");
773
774 return 1;
775}
776
777int command_output_count(object *op, char *params)
778{
779 int val;
780
781 if (!params) {
782 new_draw_info_format(NDI_UNIQUE, 0, op,
783 "Output count is presently %d", op->contr->outputs_count);
784 return 1;
785 }
786 val=atoi(params);
787 if (val>0) {
788 op->contr->outputs_count = val;
789 new_draw_info_format(NDI_UNIQUE, 0, op,
790 "Output count now set to %d", op->contr->outputs_count);
791 }
792 else
793 new_draw_info(NDI_UNIQUE, 0, op,"Invalid value for output_count.");
794
795 return 1;
796}
797
798int command_listen (object *op, char *params)
799{
800 int i;
801
802 if(params==NULL || !sscanf(params, "%d", &i)) { 567 if (params == NULL || !sscanf (params, "%d", &i))
803 new_draw_info_format(NDI_UNIQUE, 0, op,
804 "Set listen to what (presently %d)?", op->contr->listening);
805 return 1;
806 } 568 {
569 new_draw_info_format (NDI_UNIQUE, 0, op, "Set listen to what (presently %d)?", op->contr->listening);
570 return 1;
571 }
807 op->contr->listening=(char) i; 572 op->contr->listening = (char) i;
808 new_draw_info_format(NDI_UNIQUE, 0, op, 573 new_draw_info_format (NDI_UNIQUE, 0, op, "Your verbose level is now %d.", i);
809 "Your verbose level is now %d.",i);
810 return 1; 574 return 1;
811} 575}
812 576
813/* Prints out some useful information for the character. Everything we print 577/* Prints out some useful information for the character. Everything we print
814 * out can be determined by the docs, so we aren't revealing anything extra - 578 * out can be determined by the docs, so we aren't revealing anything extra -
815 * rather, we are making it convenient to find the values. params have 579 * rather, we are making it convenient to find the values. params have
816 * no meaning here. 580 * no meaning here.
817 */ 581 */
582int
818int command_statistics(object *pl, char *params) 583command_statistics (object *pl, char *params)
819{ 584{
820 if (!pl->contr) return 1; 585 if (!pl->contr)
821#ifndef WIN32
822 new_draw_info_format(NDI_UNIQUE, 0, pl," Experience: %lld",pl->stats.exp);
823 new_draw_info_format(NDI_UNIQUE, 0, pl," Next Level: %lld",level_exp(pl->level+1, pl->expmul));
824#else
825 new_draw_info_format(NDI_UNIQUE, 0, pl," Experience: %I64d",pl->stats.exp);
826 new_draw_info_format(NDI_UNIQUE, 0, pl," Next Level: %I64d",level_exp(pl->level+1, pl->expmul));
827#endif
828 new_draw_info(NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
829
830 new_draw_info_format(NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d",
831 pl->contr->orig_stats.Str, pl->stats.Str, 20+pl->arch->clone.stats.Str);
832 new_draw_info_format(NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d",
833 pl->contr->orig_stats.Dex, pl->stats.Dex, 20+pl->arch->clone.stats.Dex);
834 new_draw_info_format(NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d",
835 pl->contr->orig_stats.Con, pl->stats.Con, 20+pl->arch->clone.stats.Con);
836 new_draw_info_format(NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d",
837 pl->contr->orig_stats.Int, pl->stats.Int, 20+pl->arch->clone.stats.Int);
838 new_draw_info_format(NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d",
839 pl->contr->orig_stats.Wis, pl->stats.Wis, 20+pl->arch->clone.stats.Wis);
840 new_draw_info_format(NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d",
841 pl->contr->orig_stats.Pow, pl->stats.Pow, 20+pl->arch->clone.stats.Pow);
842 new_draw_info_format(NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
843 pl->contr->orig_stats.Cha, pl->stats.Cha, 20+pl->arch->clone.stats.Cha);
844 new_draw_info_format(NDI_UNIQUE, 0, pl, "\nAttack Mode: %s",pl->contr->peaceful? "Peaceful":"Hostile");
845
846 /* Can't think of anything else to print right now */
847 return 0;
848}
849
850int command_fix_me(object *op, char *params)
851{
852 sum_weight(op);
853 fix_player(op);
854 return 1; 586 return 1;
855} 587 new_draw_info_format (NDI_UNIQUE, 0, pl, " Experience: %" I64_PFd, pl->stats.exp);
588 new_draw_info_format (NDI_UNIQUE, 0, pl, " Next Level: %" I64_PFd, level_exp (pl->level + 1, pl->expmul));
589 new_draw_info (NDI_UNIQUE, 0, pl, "\nStat Nat/Real/Max");
856 590
591 new_draw_info_format (NDI_UNIQUE, 0, pl, "Str %2d/ %3d/%3d",
592 pl->contr->orig_stats.Str, pl->stats.Str, 20 + pl->arch->clone.stats.Str);
593 new_draw_info_format (NDI_UNIQUE, 0, pl, "Dex %2d/ %3d/%3d",
594 pl->contr->orig_stats.Dex, pl->stats.Dex, 20 + pl->arch->clone.stats.Dex);
595 new_draw_info_format (NDI_UNIQUE, 0, pl, "Con %2d/ %3d/%3d",
596 pl->contr->orig_stats.Con, pl->stats.Con, 20 + pl->arch->clone.stats.Con);
597 new_draw_info_format (NDI_UNIQUE, 0, pl, "Int %2d/ %3d/%3d",
598 pl->contr->orig_stats.Int, pl->stats.Int, 20 + pl->arch->clone.stats.Int);
599 new_draw_info_format (NDI_UNIQUE, 0, pl, "Wis %2d/ %3d/%3d",
600 pl->contr->orig_stats.Wis, pl->stats.Wis, 20 + pl->arch->clone.stats.Wis);
601 new_draw_info_format (NDI_UNIQUE, 0, pl, "Pow %2d/ %3d/%3d",
602 pl->contr->orig_stats.Pow, pl->stats.Pow, 20 + pl->arch->clone.stats.Pow);
603 new_draw_info_format (NDI_UNIQUE, 0, pl, "Cha %2d/ %3d/%3d",
604 pl->contr->orig_stats.Cha, pl->stats.Cha, 20 + pl->arch->clone.stats.Cha);
605 new_draw_info_format (NDI_UNIQUE, 0, pl, "\nAttack Mode: %s", pl->contr->peaceful ? "Peaceful" : "Hostile");
606
607 /* Can't think of anything else to print right now */
608 return 0;
609}
610
611int
612command_fix_me (object *op, char *params)
613{
614 sum_weight (op);
615 fix_player (op);
616 return 1;
617}
618
619int
857int command_players(object *op, char *paramss) 620command_players (object *op, char *paramss)
858{ 621{
859 char buf[MAX_BUF]; 622 char buf[MAX_BUF];
860 char *t; 623 char *t;
861 DIR *Dir; 624 DIR *Dir;
862 625
863 sprintf(buf,"%s/%s/",settings.localdir,settings.playerdir); 626 sprintf (buf, "%s/%s/", settings.localdir, settings.playerdir);
864 t=buf+strlen(buf); 627 t = buf + strlen (buf);
865 if ((Dir=opendir(buf))!=NULL) { 628 if ((Dir = opendir (buf)) != NULL)
629 {
866 const struct dirent *Entry; 630 const struct dirent *Entry;
867 631
868 while ((Entry=readdir(Dir))!=NULL) { 632 while ((Entry = readdir (Dir)) != NULL)
633 {
869 /* skip '.' , '..' */ 634 /* skip '.' , '..' */
870 if (!((Entry->d_name[0]=='.' && Entry->d_name[1]=='\0') || 635 if (!((Entry->d_name[0] == '.' && Entry->d_name[1] == '\0') ||
871 (Entry->d_name[0]=='.' && Entry->d_name[1]=='.' && Entry->d_name[2]=='\0'))) 636 (Entry->d_name[0] == '.' && Entry->d_name[1] == '.' && Entry->d_name[2] == '\0')))
872 { 637 {
873 struct stat Stat; 638 struct stat Stat;
874 639
875 strcpy(t,Entry->d_name); 640 strcpy (t, Entry->d_name);
876 if (stat(buf,&Stat)==0) { 641 if (stat (buf, &Stat) == 0)
642 {
877 /* This was not posix compatible 643 /* This was not posix compatible
878 * if ((Stat.st_mode & S_IFMT)==S_IFDIR) { 644 * if ((Stat.st_mode & S_IFMT)==S_IFDIR) {
879 */ 645 */
880 if (S_ISDIR(Stat.st_mode)){ 646 if (S_ISDIR (Stat.st_mode))
647 {
881 char buf2[MAX_BUF]; 648 char buf2[MAX_BUF];
882 struct tm *tm=localtime(&Stat.st_mtime); 649 struct tm *tm = localtime (&Stat.st_mtime);
650
883 sprintf(buf2,"%s\t%04d %02d %02d %02d %02d %02d", 651 sprintf (buf2, "%s\t%04d %02d %02d %02d %02d %02d",
884 Entry->d_name, 652 Entry->d_name, 1900 + tm->tm_year, 1 + tm->tm_mon, tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec);
885 1900+tm->tm_year,
886 1+tm->tm_mon,
887 tm->tm_mday,
888 tm->tm_hour,
889 tm->tm_min,
890 tm->tm_sec);
891 new_draw_info(NDI_UNIQUE, 0, op, buf2); 653 new_draw_info (NDI_UNIQUE, 0, op, buf2);
892 } 654 }
893 } 655 }
894 } 656 }
895 } 657 }
896 } 658 }
897 closedir(Dir); 659 closedir (Dir);
898 return 0; 660 return 0;
899} 661}
900 662
901 663
902 664
665int
903int command_logs (object *op, char *params) 666command_logs (object *op, char *params)
904{ 667{
905 int i; 668 new_draw_info (NDI_UNIQUE, 0, op, "Nobody is currently logging kills.");
906 int first;
907 669
908 first=1; 670 return 1;
909 for(i=2; i<socket_info.allocated_sockets; i++) { 671}
910 if (init_sockets[i].old_mode == Old_Listen) { 672
911 if (first) { 673int
674command_applymode (object *op, char *params)
675{
676 unapplymode unapply = op->contr->unapply;
677 static const char *const types[] = { "nochoice", "never", "always" };
678
679 if (!params)
680 {
681 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode is set to %s", types[op->contr->unapply]);
682 return 1;
683 }
684
685 if (!strcmp (params, "nochoice"))
686 op->contr->unapply = unapply_nochoice;
687 else if (!strcmp (params, "never"))
688 op->contr->unapply = unapply_never;
689 else if (!strcmp (params, "always"))
690 op->contr->unapply = unapply_always;
691 else
692 {
693 new_draw_info_format (NDI_UNIQUE, 0, op, "applymode: Unknown options %s, valid options are nochoice, never, always", params);
694 return 0;
695 }
696 new_draw_info_format (NDI_UNIQUE, 0, op, "Applymode %s set to %s",
697 (unapply == op->contr->unapply ? "" : " now"), types[op->contr->unapply]);
698 return 1;
699}
700
701int
702command_bowmode (object *op, char *params)
703{
704 bowtype_t oldtype = op->contr->bowtype;
705 static const char *const types[] = { "normal", "threewide", "spreadshot", "firenorth",
706 "firene", "fireeast", "firese", "firesouth",
707 "firesw", "firewest", "firenw", "bestarrow"
708 };
709 char buf[MAX_BUF];
710 int i, found;
711
712 if (!params)
713 {
714 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode is set to %s", types[op->contr->bowtype]);
715 return 1;
716 }
717
718 for (i = 0, found = 0; i <= bow_bestarrow; i++)
719 {
720 if (!strcmp (params, types[i]))
721 {
722 found++;
723 op->contr->bowtype = (bowtype_t) i;
724 break;
725 }
726 }
727 if (!found)
728 {
729 sprintf (buf, "bowmode: Unknown options %s, valid options are:", params);
730 for (i = 0; i <= bow_bestarrow; i++)
731 {
732 strcat (buf, " ");
733 strcat (buf, types[i]);
734 if (i < bow_nw)
735 strcat (buf, ",");
736 else
737 strcat (buf, ".");
738 }
739 new_draw_info_format (NDI_UNIQUE, 0, op, buf);
740 return 0;
741 }
742 new_draw_info_format (NDI_UNIQUE, 0, op, "bowmode %s set to %s", (oldtype == op->contr->bowtype ? "" : "now"), types[op->contr->bowtype]);
743 return 1;
744}
745
746int
747command_petmode (object *op, char *params)
748{
749 petmode_t oldtype = op->contr->petmode;
750 static const char *const types[] = { "normal", "sad", "defend", "arena" };
751
752 if (!params)
753 {
754 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode is set to %s", types[op->contr->petmode]);
755 return 1;
756 }
757
758 if (!strcmp (params, "normal"))
759 op->contr->petmode = pet_normal;
760 else if (!strcmp (params, "sad"))
761 op->contr->petmode = pet_sad;
762 else if (!strcmp (params, "defend"))
763 op->contr->petmode = pet_defend;
764 else if (!strcmp (params, "arena"))
765 op->contr->petmode = pet_arena;
766 else
767 {
768 new_draw_info_format (NDI_UNIQUE, 0, op,
769 "petmode: Unknown options %s, valid options are normal," "sad (seek and destroy), defend, arena", params);
770 return 0;
771 }
772 new_draw_info_format (NDI_UNIQUE, 0, op, "petmode %s set to %s", (oldtype == op->contr->petmode ? "" : "now"), types[op->contr->petmode]);
773 return 1;
774}
775
776int
777command_showpets (object *op, char *params)
778{
779 objectlink *obl, *next;
780 int counter = 0, target = 0;
781 int have_shown_pet = 0;
782
783 if (params != NULL)
784 target = atoi (params);
785 for (obl = first_friendly_object; obl != NULL; obl = next)
786 {
787 object *ob = obl->ob;
788
789 next = obl->next;
790 if (get_owner (ob) == op)
791 {
792 if (target == 0)
793 {
794 if (counter == 0)
912 new_draw_info(NDI_UNIQUE,0,op,"Kill-logs are sent to:"); 795 new_draw_info (NDI_UNIQUE, 0, op, "Pets:");
913 first=0; 796 new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level);
914 } 797 }
915 new_draw_info_format(NDI_UNIQUE, 0, op, "%s: %s",
916 init_sockets[i].host,init_sockets[i].comment);
917 }
918 }
919 if (first) {
920 new_draw_info(NDI_UNIQUE,0,op,"Nobody is currently logging kills.");
921 }
922 return 1;
923}
924
925int command_applymode(object *op, char *params)
926{
927 unapplymode unapply = op->contr->unapply;
928 static const char* const types[]={"nochoice", "never", "always"};
929
930 if (!params) {
931 new_draw_info_format(NDI_UNIQUE, 0, op, "applymode is set to %s",
932 types[op->contr->unapply]);
933 return 1;
934 }
935
936 if (!strcmp(params,"nochoice"))
937 op->contr->unapply=unapply_nochoice;
938 else if (!strcmp(params,"never"))
939 op->contr->unapply=unapply_never;
940 else if (!strcmp(params,"always"))
941 op->contr->unapply=unapply_always;
942 else {
943 new_draw_info_format(NDI_UNIQUE, 0, op,
944 "applymode: Unknown options %s, valid options are nochoice, never, always",
945 params);
946 return 0;
947 }
948 new_draw_info_format(NDI_UNIQUE, 0, op, "Applymode %s set to %s",
949 (unapply==op->contr->unapply?"":" now"),
950 types[op->contr->unapply]);
951 return 1;
952}
953
954int command_bowmode(object *op, char *params)
955{
956 bowtype_t oldtype=op->contr->bowtype;
957 static const char* const types[] =
958 {"normal", "threewide", "spreadshot", "firenorth",
959 "firene", "fireeast", "firese", "firesouth",
960 "firesw", "firewest", "firenw", "bestarrow"};
961 char buf[MAX_BUF];
962 int i, found;
963
964 if (!params) {
965 new_draw_info_format(NDI_UNIQUE, 0, op, "bowmode is set to %s",
966 types[op->contr->bowtype]);
967 return 1;
968 }
969
970 for (i=0,found=0; i<=bow_bestarrow; i++) {
971 if (!strcmp(params, types[i])) {
972 found++;
973 op->contr->bowtype= (bowtype_t) i;
974 break;
975 }
976 }
977 if (!found) {
978 sprintf(buf, "bowmode: Unknown options %s, valid options are:", params);
979 for (i=0; i<=bow_bestarrow; i++) {
980 strcat(buf, " ");
981 strcat(buf, types[i]);
982 if (i < bow_nw)
983 strcat(buf, ",");
984 else
985 strcat(buf, ".");
986 }
987 new_draw_info_format(NDI_UNIQUE, 0, op, buf);
988 return 0;
989 }
990 new_draw_info_format(NDI_UNIQUE, 0, op, "bowmode %s set to %s",
991 (oldtype==op->contr->bowtype?"":"now"),
992 types[op->contr->bowtype]);
993 return 1;
994}
995
996int command_petmode(object *op, char *params)
997{
998 petmode_t oldtype=op->contr->petmode;
999 static const char* const types[]={"normal", "sad", "defend", "arena"};
1000
1001 if (!params) {
1002 new_draw_info_format(NDI_UNIQUE, 0, op, "petmode is set to %s",
1003 types[op->contr->petmode]);
1004 return 1;
1005 }
1006
1007 if (!strcmp(params,"normal"))
1008 op->contr->petmode=pet_normal;
1009 else if (!strcmp(params,"sad"))
1010 op->contr->petmode=pet_sad;
1011 else if (!strcmp(params,"defend"))
1012 op->contr->petmode=pet_defend;
1013 else if (!strcmp(params,"arena"))
1014 op->contr->petmode=pet_arena;
1015 else {
1016 new_draw_info_format(NDI_UNIQUE, 0, op,
1017 "petmode: Unknown options %s, valid options are normal,"
1018 "sad (seek and destroy), defend, arena", params);
1019 return 0;
1020 }
1021 new_draw_info_format(NDI_UNIQUE, 0, op, "petmode %s set to %s",
1022 (oldtype==op->contr->petmode?"":"now"),
1023 types[op->contr->petmode]);
1024 return 1;
1025}
1026
1027int command_showpets(object *op, char *params)
1028{
1029 objectlink *obl, *next;
1030 int counter=0, target=0;
1031 int have_shown_pet=0;
1032 if (params !=NULL) target= atoi(params);
1033 for (obl = first_friendly_object; obl != NULL; obl = next) {
1034 object *ob = obl->ob;
1035 next = obl->next;
1036 if (get_owner(ob) == op) {
1037 if (target ==0) {
1038 if (counter==0)
1039 new_draw_info(NDI_UNIQUE, 0, op, "Pets:");
1040 new_draw_info_format(NDI_UNIQUE, 0, op, "%d %s - level %d", ++counter, &ob->name, ob->level );
1041 }
1042 else if (!have_shown_pet && ++counter==target) { 798 else if (!have_shown_pet && ++counter == target)
799 {
1043 new_draw_info_format(NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name); 800 new_draw_info_format (NDI_UNIQUE, 0, op, "level %d %s", ob->level, &ob->name);
1044 new_draw_info_format(NDI_UNIQUE, 0, op, "%d/%d HP, %d/%d SP", 801 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);
1045 ob->stats.hp, ob->stats.maxhp, ob->stats.sp, ob->stats.maxsp);
1046 /* this is not a nice way to do this, it should be made to be more like the statistics command */ 802 /* this is not a nice way to do this, it should be made to be more like the statistics command */
1047 new_draw_info_format(NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str); 803 new_draw_info_format (NDI_UNIQUE, 0, op, "Str %d", ob->stats.Str);
1048 new_draw_info_format(NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex); 804 new_draw_info_format (NDI_UNIQUE, 0, op, "Dex %d", ob->stats.Dex);
1049 new_draw_info_format(NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con); 805 new_draw_info_format (NDI_UNIQUE, 0, op, "Con %d", ob->stats.Con);
1050 new_draw_info_format(NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int); 806 new_draw_info_format (NDI_UNIQUE, 0, op, "Int %d", ob->stats.Int);
1051 new_draw_info_format(NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis); 807 new_draw_info_format (NDI_UNIQUE, 0, op, "Wis %d", ob->stats.Wis);
1052 new_draw_info_format(NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha); 808 new_draw_info_format (NDI_UNIQUE, 0, op, "Cha %d", ob->stats.Cha);
1053 new_draw_info_format(NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow); 809 new_draw_info_format (NDI_UNIQUE, 0, op, "Pow %d", ob->stats.Pow);
1054 new_draw_info_format(NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", 810 new_draw_info_format (NDI_UNIQUE, 0, op, "wc %d damage %d ac %d ", ob->stats.wc, ob->stats.dam, ob->stats.ac);
1055 ob->stats.wc, ob->stats.dam, ob->stats.ac);
1056 have_shown_pet=1; 811 have_shown_pet = 1;
1057 } 812 }
1058 } 813 }
1059 } 814 }
1060 if (counter == 0) 815 if (counter == 0)
1061 new_draw_info(NDI_UNIQUE, 0, op, "you have no pets."); 816 new_draw_info (NDI_UNIQUE, 0, op, "you have no pets.");
1062 else if (target !=0 && have_shown_pet==0) 817 else if (target != 0 && have_shown_pet == 0)
1063 new_draw_info(NDI_UNIQUE, 0, op, "no such pet."); 818 new_draw_info (NDI_UNIQUE, 0, op, "no such pet.");
819 return 0;
820}
821
822int
823command_usekeys (object *op, char *params)
824{
825 usekeytype oldtype = op->contr->usekeys;
826 static const char *const types[] = { "inventory", "keyrings", "containers" };
827
828 if (!params)
829 {
830 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys is set to %s", types[op->contr->usekeys]);
831 return 1;
832 }
833
834 if (!strcmp (params, "inventory"))
835 op->contr->usekeys = key_inventory;
836 else if (!strcmp (params, "keyrings"))
837 op->contr->usekeys = keyrings;
838 else if (!strcmp (params, "containers"))
839 op->contr->usekeys = containers;
840 else
841 {
842 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys: Unknown options %s, valid options are inventory, keyrings, containers", params);
843 return 0;
844 }
845 new_draw_info_format (NDI_UNIQUE, 0, op, "usekeys %s set to %s", (oldtype == op->contr->usekeys ? "" : "now"), types[op->contr->usekeys]);
846 return 1;
847}
848
849int
850command_resistances (object *op, char *params)
851{
852 int i;
853
854 if (!op)
1064 return 0; 855 return 0;
1065}
1066 856
1067int command_usekeys(object *op, char *params)
1068{
1069 usekeytype oldtype=op->contr->usekeys;
1070 static const char* const types[]={"inventory", "keyrings", "containers"};
1071
1072 if (!params) {
1073 new_draw_info_format(NDI_UNIQUE, 0, op, "usekeys is set to %s",
1074 types[op->contr->usekeys]);
1075 return 1;
1076 }
1077
1078 if (!strcmp(params,"inventory"))
1079 op->contr->usekeys=key_inventory;
1080 else if (!strcmp(params,"keyrings"))
1081 op->contr->usekeys=keyrings;
1082 else if (!strcmp(params,"containers"))
1083 op->contr->usekeys=containers;
1084 else {
1085 new_draw_info_format(NDI_UNIQUE, 0, op,
1086 "usekeys: Unknown options %s, valid options are inventory, keyrings, containers",
1087 params);
1088 return 0;
1089 }
1090 new_draw_info_format(NDI_UNIQUE, 0, op, "usekeys %s set to %s",
1091 (oldtype==op->contr->usekeys?"":"now"),
1092 types[op->contr->usekeys]);
1093 return 1;
1094}
1095
1096int command_resistances(object *op, char *params)
1097{
1098 int i;
1099 if (!op)
1100 return 0;
1101
1102 for (i=0; i<NROFATTACKS; i++) { 857 for (i = 0; i < NROFATTACKS; i++)
1103 if (i==ATNR_INTERNAL) continue;
1104
1105 new_draw_info_format(NDI_UNIQUE, 0, op, "%-20s %+5d",
1106 attacktype_desc[i], op->resist[i]);
1107 } 858 {
859 if (i == ATNR_INTERNAL)
860 continue;
1108 861
862 new_draw_info_format (NDI_UNIQUE, 0, op, "%-20s %+5d", attacktype_desc[i], op->resist[i]);
863 }
864
1109 /* If dragon player, let's display natural resistances */ 865 /* If dragon player, let's display natural resistances */
1110 if ( is_dragon_pl( op ) ) 866 if (is_dragon_pl (op))
867 {
868 int attack;
869 object *tmp;
870
871 for (tmp = op->inv; tmp != NULL; tmp = tmp->below)
1111 { 872 {
1112 int attack; 873 if ((tmp->type == FORCE) && (strcmp (tmp->arch->name, "dragon_skin_force") == 0))
1113 object* tmp;
1114 for ( tmp = op->inv; tmp != NULL; tmp = tmp->below )
1115 { 874 {
1116 if ( ( tmp->type == FORCE ) && ( strcmp( tmp->arch->name, "dragon_skin_force" )== 0 ) ) 875 new_draw_info (NDI_UNIQUE, 0, op, "\nNatural skin resistances:");
876 for (attack = 0; attack < NROFATTACKS; attack++)
1117 { 877 {
1118 new_draw_info( NDI_UNIQUE, 0, op, "\nNatural skin resistances:" ); 878 if (atnr_is_dragon_enabled (attack))
1119 for ( attack = 0; attack < NROFATTACKS; attack++ )
1120 { 879 {
1121 if ( atnr_is_dragon_enabled( attack ) )
1122 {
1123 new_draw_info_format( NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[ attack ], tmp->resist[ attack ] ); 880 new_draw_info_format (NDI_UNIQUE, 0, op, "%s: %d", change_resist_msg[attack], tmp->resist[attack]);
1124 }
1125 } 881 }
1126 break;
1127 } 882 }
883 break;
1128 } 884 }
1129 } 885 }
886 }
1130 887
1131return 0; 888 return 0;
1132} 889}
890
1133/* 891/*
1134 * Actual commands. 892 * Actual commands.
1135 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...) 893 * Those should be in small separate files (c_object.c, c_wiz.c, cmove.c,...)
1136 */ 894 */
1137 895
1138 896
897static void
1139static void help_topics(object *op, int what) 898help_topics (object *op, int what)
1140{ 899{
1141 DIR *dirp; 900 DIR *dirp;
1142 struct dirent *de; 901 struct dirent *de;
1143 char filename[MAX_BUF], line[80]; 902 char filename[MAX_BUF], line[80];
1144 int namelen, linelen=0; 903 int namelen, linelen = 0;
1145 904
1146 switch (what) { 905 switch (what)
906 {
1147 case 1: 907 case 1:
1148 sprintf(filename, "%s/wizhelp", settings.datadir); 908 sprintf (filename, "%s/wizhelp", settings.datadir);
1149 new_draw_info(NDI_UNIQUE, 0,op, " Wiz commands:"); 909 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
1150 break; 910 break;
1151 case 3: 911 case 3:
1152 sprintf(filename, "%s/mischelp", settings.datadir); 912 sprintf (filename, "%s/mischelp", settings.datadir);
1153 new_draw_info(NDI_UNIQUE, 0,op, " Misc help:"); 913 new_draw_info (NDI_UNIQUE, 0, op, " Misc help:");
1154 break; 914 break;
1155 default: 915 default:
1156 sprintf(filename, "%s/help", settings.datadir); 916 sprintf (filename, "%s/help", settings.datadir);
1157 new_draw_info(NDI_UNIQUE, 0,op, " Commands:"); 917 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
1158 break; 918 break;
1159 } 919 }
1160 if (!(dirp=opendir(filename))) 920 if (!(dirp = opendir (filename)))
1161 return; 921 return;
1162 922
1163 line[0] ='\0'; 923 line[0] = '\0';
1164 for (de = readdir(dirp); de; de = readdir(dirp)) { 924 for (de = readdir (dirp); de; de = readdir (dirp))
925 {
1165 namelen = NAMLEN(de); 926 namelen = NAMLEN (de);
1166 if (namelen <= 2 && *de->d_name == '.' && 927 if (namelen <= 2 && *de->d_name == '.' && (namelen == 1 || de->d_name[1] == '.'))
1167 (namelen == 1 || de->d_name[1] == '.' ) )
1168 continue; 928 continue;
1169 linelen +=namelen+1; 929 linelen += namelen + 1;
1170 if (linelen > 42) { 930 if (linelen > 42)
931 {
1171 new_draw_info(NDI_UNIQUE, 0,op, line); 932 new_draw_info (NDI_UNIQUE, 0, op, line);
1172 sprintf(line, " %s", de->d_name); 933 sprintf (line, " %s", de->d_name);
1173 linelen =namelen+1; 934 linelen = namelen + 1;
1174 continue; 935 continue;
1175 } 936 }
1176 strcat(line, " "); 937 strcat (line, " ");
1177 strcat(line, de->d_name); 938 strcat (line, de->d_name);
1178 } 939 }
1179 new_draw_info(NDI_UNIQUE, 0,op, line); 940 new_draw_info (NDI_UNIQUE, 0, op, line);
1180 closedir(dirp); 941 closedir (dirp);
1181} 942}
1182 943
944static void
1183static void show_commands(object *op, int what) 945show_commands (object *op, int what)
1184{ 946{
1185 char line[80]; 947 char line[80];
1186 int i, size, namelen, linelen=0; 948 int i, size, namelen, linelen = 0;
1187 CommArray_s *ap; 949 CommArray_s *ap;
1188 extern CommArray_s Commands[], WizCommands[]; 950 extern CommArray_s Commands[], WizCommands[];
1189 extern const int CommandsSize, WizCommandsSize; 951 extern const int CommandsSize, WizCommandsSize;
1190 952
1191 switch (what) { 953 switch (what)
954 {
1192 case 1: 955 case 1:
1193 ap =WizCommands; 956 ap = WizCommands;
1194 size =WizCommandsSize; 957 size = WizCommandsSize;
1195 new_draw_info(NDI_UNIQUE, 0,op, " Wiz commands:"); 958 new_draw_info (NDI_UNIQUE, 0, op, " Wiz commands:");
1196 break; 959 break;
1197 case 2: 960 case 2:
1198 ap= CommunicationCommands; 961 ap = CommunicationCommands;
1199 size= CommunicationCommandSize; 962 size = CommunicationCommandSize;
1200 new_draw_info(NDI_UNIQUE, 0, op, " Communication commands:"); 963 new_draw_info (NDI_UNIQUE, 0, op, " Communication commands:");
1201 break; 964 break;
1202 default: 965 default:
1203 ap =Commands; 966 ap = Commands;
1204 size =CommandsSize; 967 size = CommandsSize;
1205 new_draw_info(NDI_UNIQUE, 0,op, " Commands:"); 968 new_draw_info (NDI_UNIQUE, 0, op, " Commands:");
1206 break; 969 break;
1207 } 970 }
1208 971
1209 line[0] ='\0'; 972 line[0] = '\0';
1210 for (i=0; i<size; i++) { 973 for (i = 0; i < size; i++)
974 {
1211 namelen = strlen(ap[i].name); 975 namelen = strlen (ap[i].name);
1212 linelen +=namelen+1; 976 linelen += namelen + 1;
1213 if (linelen > 42) { 977 if (linelen > 42)
978 {
1214 new_draw_info(NDI_UNIQUE, 0,op, line); 979 new_draw_info (NDI_UNIQUE, 0, op, line);
1215 sprintf(line, " %s", ap[i].name); 980 sprintf (line, " %s", ap[i].name);
1216 linelen =namelen+1; 981 linelen = namelen + 1;
1217 continue; 982 continue;
1218 } 983 }
1219 strcat(line, " "); 984 strcat (line, " ");
1220 strcat(line, ap[i].name); 985 strcat (line, ap[i].name);
1221 } 986 }
1222 new_draw_info(NDI_UNIQUE, 0,op, line); 987 new_draw_info (NDI_UNIQUE, 0, op, line);
1223} 988}
1224 989
1225 990
991int
1226int command_help (object *op, char *params) 992command_help (object *op, char *params)
1227{ 993{
1228 struct stat st; 994 struct stat st;
1229 FILE *fp; 995 FILE *fp;
1230 char filename[MAX_BUF], line[MAX_BUF]; 996 char filename[MAX_BUF], line[MAX_BUF];
1231 int len; 997 int len;
1232 998
1233 if(op != NULL) 999 if (op != NULL)
1234 clear_win_info(op); 1000 clear_win_info (op);
1235 1001
1236/* 1002/*
1237 * Main help page? 1003 * Main help page?
1238 */ 1004 */
1239 if (!params) { 1005 if (!params)
1006 {
1240 sprintf(filename, "%s/def_help", settings.datadir); 1007 sprintf (filename, "%s/def_help", settings.datadir);
1241 if ((fp=fopen(filename, "r")) == NULL) { 1008 if ((fp = fopen (filename, "r")) == NULL)
1009 {
1242 LOG(llevError, "Cannot open help file %s: %s\n", filename, strerror(errno)); 1010 LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
1011 return 0;
1012 }
1013 while (fgets (line, MAX_BUF, fp))
1014 {
1015 line[MAX_BUF - 1] = '\0';
1016 len = strlen (line) - 1;
1017 if (line[len] == '\n')
1018 line[len] = '\0';
1019 new_draw_info (NDI_UNIQUE, 0, op, line);
1020 }
1021 fclose (fp);
1243 return 0; 1022 return 0;
1244 } 1023 }
1245 while (fgets(line, MAX_BUF, fp)) {
1246 line[MAX_BUF-1] ='\0';
1247 len =strlen(line)-1;
1248 if (line[len] == '\n')
1249 line[len] ='\0';
1250 new_draw_info(NDI_UNIQUE, 0,op, line);
1251 }
1252 fclose(fp);
1253 return 0;
1254 }
1255 1024
1256 /* 1025 /*
1257 * Topics list 1026 * Topics list
1258 */ 1027 */
1259 if (!strcmp(params, "topics")) { 1028 if (!strcmp (params, "topics"))
1029 {
1260 help_topics(op, 3); 1030 help_topics (op, 3);
1261 help_topics(op, 0); 1031 help_topics (op, 0);
1262 if (QUERY_FLAG(op, FLAG_WIZ)) 1032 if (QUERY_FLAG (op, FLAG_WIZ))
1263 help_topics(op, 1); 1033 help_topics (op, 1);
1264 return 0; 1034 return 0;
1265 } 1035 }
1266 1036
1267 /* 1037 /*
1268 * Commands list 1038 * Commands list
1269 */ 1039 */
1270 if (!strcmp(params, "commands")) { 1040 if (!strcmp (params, "commands"))
1041 {
1271 show_commands(op, 0); 1042 show_commands (op, 0);
1272 show_commands(op, 2); /* show comm commands */ 1043 show_commands (op, 2); /* show comm commands */
1273 if (QUERY_FLAG(op, FLAG_WIZ)) 1044 if (QUERY_FLAG (op, FLAG_WIZ))
1274 show_commands(op, 1); 1045 show_commands (op, 1);
1275 return 0; 1046 return 0;
1276 } 1047 }
1277 1048
1278 /* 1049 /*
1279 * User wants info about command 1050 * User wants info about command
1280 */ 1051 */
1281 if (strchr(params, '.') || strchr(params, ' ') || strchr(params, '/')) { 1052 if (strchr (params, '.') || strchr (params, ' ') || strchr (params, '/'))
1053 {
1282 sprintf(line, "Illegal characters in '%s'", params); 1054 sprintf (line, "Illegal characters in '%s'", params);
1283 new_draw_info(NDI_UNIQUE, 0,op, line); 1055 new_draw_info (NDI_UNIQUE, 0, op, line);
1284 return 0; 1056 return 0;
1285 } 1057 }
1286 1058
1287 sprintf(filename, "%s/mischelp/%s", settings.datadir, params); 1059 sprintf (filename, "%s/mischelp/%s", settings.datadir, params);
1288 if (stat(filename, &st) || !S_ISREG(st.st_mode)) { 1060 if (stat (filename, &st) || !S_ISREG (st.st_mode))
1061 {
1289 if (op) { 1062 if (op)
1290 sprintf(filename, "%s/help/%s", settings.datadir, params); 1063 {
1291 if (stat(filename, &st) || !S_ISREG(st.st_mode)) {
1292 if (QUERY_FLAG(op, FLAG_WIZ)) {
1293 sprintf(filename, "%s/wizhelp/%s", settings.datadir, params); 1064 sprintf (filename, "%s/help/%s", settings.datadir, params);
1294 if (stat(filename, &st) || !S_ISREG(st.st_mode)) 1065 if (stat (filename, &st) || !S_ISREG (st.st_mode))
1066 {
1067 if (QUERY_FLAG (op, FLAG_WIZ))
1068 {
1069 sprintf (filename, "%s/wizhelp/%s", settings.datadir, params);
1070 if (stat (filename, &st) || !S_ISREG (st.st_mode))
1071 goto nohelp;
1072 }
1073 else
1295 goto nohelp; 1074 goto nohelp;
1296 } else 1075 }
1297 goto nohelp;
1298 } 1076 }
1299 } 1077 }
1300 }
1301 1078
1302 /* 1079 /*
1303 * Found that. Just cat it to screen. 1080 * Found that. Just cat it to screen.
1304 */ 1081 */
1305 if ((fp=fopen(filename, "r")) == NULL) { 1082 if ((fp = fopen (filename, "r")) == NULL)
1083 {
1306 LOG(llevError, "Cannot open help file %s: %s\n", filename, strerror(errno)); 1084 LOG (llevError, "Cannot open help file %s: %s\n", filename, strerror (errno));
1307 return 0; 1085 return 0;
1308 } 1086 }
1309 sprintf(line, "Help about '%s'", params); 1087 sprintf (line, "Help about '%s'", params);
1310 new_draw_info(NDI_UNIQUE, 0,op, line); 1088 new_draw_info (NDI_UNIQUE, 0, op, line);
1311 while (fgets(line, MAX_BUF, fp)) { 1089 while (fgets (line, MAX_BUF, fp))
1090 {
1312 line[MAX_BUF-1] ='\0'; 1091 line[MAX_BUF - 1] = '\0';
1313 len =strlen(line)-1; 1092 len = strlen (line) - 1;
1314 if (line[len] == '\n') 1093 if (line[len] == '\n')
1315 line[len] ='\0'; 1094 line[len] = '\0';
1316 new_draw_info(NDI_UNIQUE, 0,op, line); 1095 new_draw_info (NDI_UNIQUE, 0, op, line);
1317 } 1096 }
1318 fclose(fp); 1097 fclose (fp);
1319 return 0; 1098 return 0;
1320 1099
1321 /* 1100 /*
1322 * No_help -escape 1101 * No_help -escape
1323 */ 1102 */
1324 nohelp: 1103nohelp:
1325 sprintf(line, "No help available on '%s'", params); 1104 sprintf (line, "No help available on '%s'", params);
1326 new_draw_info(NDI_UNIQUE, 0,op, line); 1105 new_draw_info (NDI_UNIQUE, 0, op, line);
1327 return 0; 1106 return 0;
1328} 1107}
1329 1108
1330 1109
1110int
1331int onoff_value(const char *line) 1111onoff_value (const char *line)
1332{ 1112{
1333 int i; 1113 int i;
1334 1114
1335 if (sscanf(line, "%d", &i)) 1115 if (sscanf (line, "%d", &i))
1336 return (i != 0); 1116 return (i != 0);
1337 switch (line[0]) { 1117 switch (line[0])
1118 {
1338 case 'o': 1119 case 'o':
1339 switch (line[1]) { 1120 switch (line[1])
1340 case 'n': return 1; /* on */ 1121 {
1341 default: return 0; /* o[ff] */ 1122 case 'n':
1342 } 1123 return 1; /* on */
1343 case 'y': /* y[es] */ 1124 default:
1344 case 'k': /* k[ylla] */ 1125 return 0; /* o[ff] */
1126 }
1127 case 'y': /* y[es] */
1128 case 'k': /* k[ylla] */
1345 case 's': 1129 case 's':
1346 case 'd': 1130 case 'd':
1347 return 1; 1131 return 1;
1348 case 'n': /* n[o] */ 1132 case 'n': /* n[o] */
1349 case 'e': /* e[i] */ 1133 case 'e': /* e[i] */
1350 case 'u': 1134 case 'u':
1351 default: 1135 default:
1352 return 0; 1136 return 0;
1353 } 1137 }
1354} 1138}
1355 1139
1140int
1356int command_quit (object *op, char *params) 1141command_quit (object *op, char *params)
1357{ 1142{
1143 new_draw_info (NDI_UNIQUE, 0, op,
1358 new_draw_info(NDI_UNIQUE, 0, op, "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit."); 1144 "Quitting will delete your character PERMANENTLY. If you are sure you want to do this, then use the quit_character command instead of quit.");
1359 return 1; 1145 return 1;
1360} 1146}
1361 1147
1148int
1362int command_real_quit (object *op, char *params) 1149command_real_quit (object *op, char *params)
1363{ 1150{
1364 send_query(&op->contr->socket,CS_QUERY_SINGLECHAR, 1151 send_query (&op->contr->socket, CS_QUERY_SINGLECHAR, "Quitting will delete your character.\nAre you sure you want to quit (y/n):");
1365 "Quitting will delete your character.\nAre you sure you want to quit (y/n):");
1366 1152
1367 op->contr->state = ST_CONFIRM_QUIT; 1153 op->contr->state = ST_CONFIRM_QUIT;
1368 return 1; 1154 return 1;
1369 } 1155}
1370 1156
1371/* 1157/*
1372 * don't allow people to exit explore mode. It otherwise becomes 1158 * don't allow people to exit explore mode. It otherwise becomes
1373 * really easy to abuse this. 1159 * really easy to abuse this.
1374 */ 1160 */
1161int
1375int command_explore (object *op, char *params) 1162command_explore (object *op, char *params)
1376{ 1163{
1377 if (settings.explore_mode == FALSE) 1164 if (settings.explore_mode == FALSE)
1378 return 1; 1165 return 1;
1379 /* 1166 /*
1380 * I guess this is the best way to see if we are solo or not. Actually, 1167 * I guess this is the best way to see if we are solo or not. Actually,
1381 * are there any cases when first_player->next==NULL and we are not solo? 1168 * are there any cases when first_player->next==NULL and we are not solo?
1382 */ 1169 */
1383 if ((first_player!=op->contr) || (first_player->next!=NULL)) { 1170 if ((first_player != op->contr) || (first_player->next != NULL))
1171 {
1384 new_draw_info(NDI_UNIQUE, 0,op,"You can not enter explore mode if you are in a party"); 1172 new_draw_info (NDI_UNIQUE, 0, op, "You can not enter explore mode if you are in a party");
1173 }
1385 } else if (op->contr->explore) 1174 else if (op->contr->explore)
1386 new_draw_info(NDI_UNIQUE, 0,op, "There is no return from explore mode"); 1175 new_draw_info (NDI_UNIQUE, 0, op, "There is no return from explore mode");
1387 else { 1176 else
1177 {
1388 op->contr->explore=1; 1178 op->contr->explore = 1;
1389 new_draw_info(NDI_UNIQUE, 0,op, "You are now in explore mode"); 1179 new_draw_info (NDI_UNIQUE, 0, op, "You are now in explore mode");
1390 } 1180 }
1391 return 1; 1181 return 1;
1392} 1182}
1393 1183
1184int
1394int command_sound (object *op, char *params) 1185command_sound (object *op, char *params)
1395{ 1186{
1396 if (op->contr->socket.sound) { 1187 if (op->contr->socket.sound)
1188 {
1397 op->contr->socket.sound=0; 1189 op->contr->socket.sound = 0;
1398 new_draw_info(NDI_UNIQUE, 0,op, "Silence is golden..."); 1190 new_draw_info (NDI_UNIQUE, 0, op, "Silence is golden...");
1191 }
1192 else
1399 } 1193 {
1400 else {
1401 op->contr->socket.sound=1; 1194 op->contr->socket.sound = 1;
1402 new_draw_info(NDI_UNIQUE, 0,op, "The sounds are enabled."); 1195 new_draw_info (NDI_UNIQUE, 0, op, "The sounds are enabled.");
1403 } 1196 }
1404 return 1; 1197 return 1;
1405} 1198}
1406 1199
1407/* Perhaps these should be in player.c, but that file is 1200/* Perhaps these should be in player.c, but that file is
1408 * already a bit big. 1201 * already a bit big.
1409 */ 1202 */
1410 1203
1204void
1411void receive_player_name(object *op,char k) { 1205receive_player_name (object *op, char k)
1206{
1412 1207
1413 if(!check_name(op->contr,op->contr->write_buf+1)) { 1208 if (!check_name (op->contr, op->contr->write_buf + 1))
1414 get_name(op);
1415 return;
1416 } 1209 {
1417 op->name = op->contr->write_buf + 1;
1418 op->name_pl = op->contr->write_buf + 1;
1419 new_draw_info(NDI_UNIQUE, 0,op,op->contr->write_buf);
1420 op->contr->name_changed=1;
1421 get_password(op);
1422}
1423
1424void receive_player_password(object *op,char k) {
1425
1426 unsigned int pwd_len=strlen(op->contr->write_buf);
1427 if(pwd_len<=1||pwd_len>17) {
1428 get_name(op);
1429 return;
1430 }
1431 new_draw_info(NDI_UNIQUE, 0,op," "); /* To hide the password better */
1432
1433 if (checkbanned(op->name, op->contr->socket.host)) {
1434 LOG(llevInfo, "Banned player tried to add: [%s@%s]\n", &op->name, op->contr->socket.host);
1435 new_draw_info(NDI_UNIQUE|NDI_RED, 0, op, "You are not allowed to play.");
1436 get_name(op);
1437 return;
1438 }
1439
1440 if(op->contr->state==ST_CONFIRM_PASSWORD) {
1441 if(!check_password(op->contr->write_buf+1,op->contr->password)) {
1442 new_draw_info(NDI_UNIQUE, 0,op,"The passwords did not match.");
1443 get_name(op); 1210 get_name (op);
1444 return; 1211 return;
1445 } 1212 }
1213 op->name = op->contr->write_buf + 1;
1214 op->name_pl = op->contr->write_buf + 1;
1215 new_draw_info (NDI_UNIQUE, 0, op, op->contr->write_buf);
1216 op->contr->name_changed = 1;
1217 get_password (op);
1218}
1219
1220void
1221receive_player_password (object *op, char k)
1222{
1223
1224 unsigned int pwd_len = strlen (op->contr->write_buf);
1225
1226 if (pwd_len <= 1 || pwd_len > 17)
1227 {
1228 get_name (op);
1229 return;
1230 }
1231 new_draw_info (NDI_UNIQUE, 0, op, " "); /* To hide the password better */
1232
1233 if (checkbanned (op->name, op->contr->socket.host))
1234 {
1235 LOG (llevInfo, "Banned player tried to add: [%s@%s]\n", &op->name, op->contr->socket.host);
1236 new_draw_info (NDI_UNIQUE | NDI_RED, 0, op, "You are not allowed to play.");
1237 get_name (op);
1238 return;
1239 }
1240
1241 if (op->contr->state == ST_CONFIRM_PASSWORD)
1242 {
1243 if (!check_password (op->contr->write_buf + 1, op->contr->password))
1244 {
1245 new_draw_info (NDI_UNIQUE, 0, op, "The passwords did not match.");
1246 get_name (op);
1247 return;
1248 }
1446 clear_win_info(op); 1249 clear_win_info (op);
1447 display_motd(op); 1250 display_motd (op);
1448 new_draw_info(NDI_UNIQUE, 0,op," "); 1251 new_draw_info (NDI_UNIQUE, 0, op, " ");
1449 new_draw_info(NDI_UNIQUE, 0,op,"Welcome, Brave New Warrior!"); 1252 new_draw_info (NDI_UNIQUE, 0, op, "Welcome, Brave New Warrior!");
1450 new_draw_info(NDI_UNIQUE, 0,op," "); 1253 new_draw_info (NDI_UNIQUE, 0, op, " ");
1451 Roll_Again(op); 1254 Roll_Again (op);
1452 op->contr->state=ST_ROLL_STAT; 1255 op->contr->state = ST_ROLL_STAT;
1453 return; 1256 return;
1454 } 1257 }
1455 strcpy(op->contr->password,crypt_string(op->contr->write_buf+1,NULL)); 1258 strcpy (op->contr->password, crypt_string (op->contr->write_buf + 1, NULL));
1456 op->contr->state=ST_ROLL_STAT; 1259 op->contr->state = ST_ROLL_STAT;
1457 check_login(op); 1260 check_login (op);
1458 return; 1261 return;
1459} 1262}
1460 1263
1461 1264
1265int
1462int explore_mode(void) { 1266explore_mode (void)
1267{
1463 player *pl; 1268 player *pl;
1464 1269
1465 if (settings.explore_mode == TRUE) { 1270 if (settings.explore_mode == TRUE)
1271 {
1466 for (pl = first_player; pl != (player *) NULL; pl = pl->next) 1272 for (pl = first_player; pl != (player *) NULL; pl = pl->next)
1467 if (pl->explore) 1273 if (pl->explore)
1468 return 1; 1274 return 1;
1469 } 1275 }
1470 return 0; 1276 return 0;
1471} 1277}
1472 1278
1473 1279
1280int
1474int command_title (object *op, char *params) 1281command_title (object *op, char *params)
1475{ 1282{
1476 char buf[MAX_BUF]; 1283 char buf[MAX_BUF];
1477 1284
1478 if (settings.set_title == FALSE) { 1285 if (settings.set_title == FALSE)
1286 {
1479 new_draw_info(NDI_UNIQUE, 0, op, "You cannot change your title."); 1287 new_draw_info (NDI_UNIQUE, 0, op, "You cannot change your title.");
1480 return 1; 1288 return 1;
1481 } 1289 }
1482 1290
1483 /* dragon players cannot change titles */ 1291 /* dragon players cannot change titles */
1484 if (is_dragon_pl(op)) { 1292 if (is_dragon_pl (op))
1293 {
1485 new_draw_info(NDI_UNIQUE, 0, op, "Dragons cannot change titles."); 1294 new_draw_info (NDI_UNIQUE, 0, op, "Dragons cannot change titles.");
1486 return 1; 1295 return 1;
1487 }
1488 1296 }
1297
1489 if(params == NULL) { 1298 if (params == NULL)
1299 {
1490 if(op->contr->own_title[0]=='\0') 1300 if (op->contr->own_title[0] == '\0')
1491 sprintf(buf,"Your title is '%s'.", op->contr->title); 1301 sprintf (buf, "Your title is '%s'.", op->contr->title);
1492 else 1302 else
1493 sprintf(buf,"Your title is '%s'.", op->contr->own_title); 1303 sprintf (buf, "Your title is '%s'.", op->contr->own_title);
1494 new_draw_info(NDI_UNIQUE, 0,op,buf); 1304 new_draw_info (NDI_UNIQUE, 0, op, buf);
1495 return 1; 1305 return 1;
1496 } 1306 }
1497 if(strcmp(params, "clear")==0 || strcmp(params, "default")==0) { 1307 if (strcmp (params, "clear") == 0 || strcmp (params, "default") == 0)
1308 {
1498 if(op->contr->own_title[0]=='\0') 1309 if (op->contr->own_title[0] == '\0')
1499 new_draw_info(NDI_UNIQUE, 0,op,"Your title is the default title."); 1310 new_draw_info (NDI_UNIQUE, 0, op, "Your title is the default title.");
1500 else 1311 else
1501 new_draw_info(NDI_UNIQUE, 0,op,"Title set to default."); 1312 new_draw_info (NDI_UNIQUE, 0, op, "Title set to default.");
1502 op->contr->own_title[0]='\0'; 1313 op->contr->own_title[0] = '\0';
1503 return 1; 1314 return 1;
1504 } 1315 }
1505 1316
1506 if((int)strlen(params) >= MAX_NAME) { 1317 if ((int) strlen (params) >= MAX_NAME)
1318 {
1507 new_draw_info(NDI_UNIQUE, 0,op,"Title too long."); 1319 new_draw_info (NDI_UNIQUE, 0, op, "Title too long.");
1508 return 1; 1320 return 1;
1509 } 1321 }
1510 strcpy(op->contr->own_title, params); 1322 strcpy (op->contr->own_title, params);
1511 return 1; 1323 return 1;
1512} 1324}
1513 1325
1326int
1514int command_save (object *op, char *params) 1327command_save (object *op, char *params)
1515{ 1328{
1516// if (get_map_flags(op->map, NULL, op->x, op->y, NULL, NULL) & P_NO_CLERIC) { 1329// if (get_map_flags(op->map, NULL, op->x, op->y, NULL, NULL) & P_NO_CLERIC) {
1517// new_draw_info(NDI_UNIQUE, 0, op, "You can not save on unholy ground"); 1330// new_draw_info(NDI_UNIQUE, 0, op, "You can not save on unholy ground");
1518// } else 1331// } else
1519 if (!op->stats.exp) { 1332 if (!op->stats.exp)
1333 {
1520 new_draw_info(NDI_UNIQUE, 0, op, "You don't deserve to save yet."); 1334 new_draw_info (NDI_UNIQUE, 0, op, "You don't deserve to save yet.");
1521 } else { 1335 }
1336 else
1337 {
1522 if(save_player(op,1)) 1338 if (save_player (op, 1))
1523 new_draw_info(NDI_UNIQUE, 0,op,"You have been saved."); 1339 new_draw_info (NDI_UNIQUE, 0, op, "You have been saved.");
1524 else 1340 else
1525 new_draw_info(NDI_UNIQUE, 0,op,"SAVE FAILED!"); 1341 new_draw_info (NDI_UNIQUE, 0, op, "SAVE FAILED!");
1526 } 1342 }
1527 return 1; 1343 return 1;
1528} 1344}
1529 1345
1530 1346
1347int
1531int command_peaceful (object *op, char *params) 1348command_peaceful (object *op, char *params)
1532{ 1349{
1533 new_draw_info(NDI_UNIQUE, 0, op, 1350 new_draw_info (NDI_UNIQUE, 0, op,
1534 "You cannot change your peaceful setting with this command." 1351 "You cannot change your peaceful setting with this command."
1535 " Please speak to the priest in the temple of Gorokh" 1352 " Please speak to the priest in the temple of Gorokh"
1536 " if you want to become hostile or in temple of Valriel" 1353 " if you want to become hostile or in temple of Valriel" " if you want to become peaceful again.");
1537 " if you want to become peaceful again."
1538 );
1539 1354
1540/* 1355/*
1541 if((op->contr->peaceful=!op->contr->peaceful)) 1356 if((op->contr->peaceful=!op->contr->peaceful))
1542 new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players."); 1357 new_draw_info(NDI_UNIQUE, 0,op,"You will not attack other players.");
1543 else 1358 else
1544 new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players."); 1359 new_draw_info(NDI_UNIQUE, 0,op,"You will attack other players.");
1545*/ 1360*/
1546 return 1; 1361 return 1;
1547} 1362}
1548 1363
1549 1364
1550 1365
1366int
1551int command_wimpy (object *op, char *params) 1367command_wimpy (object *op, char *params)
1552{ 1368{
1553 int i; 1369 int i;
1554 char buf[MAX_BUF]; 1370 char buf[MAX_BUF];
1555 1371
1556 if (params==NULL || !sscanf(params, "%d", &i)) { 1372 if (params == NULL || !sscanf (params, "%d", &i))
1373 {
1557 sprintf(buf, "Your current wimpy level is %d.", op->run_away); 1374 sprintf (buf, "Your current wimpy level is %d.", op->run_away);
1558 new_draw_info(NDI_UNIQUE, 0,op, buf); 1375 new_draw_info (NDI_UNIQUE, 0, op, buf);
1559 return 1; 1376 return 1;
1560 } 1377 }
1561 sprintf(buf, "Your new wimpy level is %d.", i); 1378 sprintf (buf, "Your new wimpy level is %d.", i);
1562 new_draw_info(NDI_UNIQUE, 0,op, buf); 1379 new_draw_info (NDI_UNIQUE, 0, op, buf);
1563 op->run_away = i; 1380 op->run_away = i;
1564 return 1; 1381 return 1;
1565} 1382}
1566 1383
1567 1384
1385int
1568int command_brace (object *op, char *params) 1386command_brace (object *op, char *params)
1569{ 1387{
1570 if (!params) 1388 if (!params)
1571 op->contr->braced =!op->contr->braced; 1389 op->contr->braced = !op->contr->braced;
1572 else 1390 else
1573 op->contr->braced =onoff_value(params); 1391 op->contr->braced = onoff_value (params);
1574 1392
1575 if(op->contr->braced) 1393 if (op->contr->braced)
1576 new_draw_info(NDI_UNIQUE, 0,op, "You are braced."); 1394 new_draw_info (NDI_UNIQUE, 0, op, "You are braced.");
1577 else 1395 else
1578 new_draw_info(NDI_UNIQUE, 0,op, "Not braced."); 1396 new_draw_info (NDI_UNIQUE, 0, op, "Not braced.");
1579 1397
1580 fix_player(op); 1398 fix_player (op);
1581 return 0; 1399 return 0;
1582} 1400}
1583 1401
1402int
1584int command_style_map_info(object *op, char *params) 1403command_style_map_info (object *op, char *params)
1585{ 1404{
1586 extern mapstruct *styles; 1405 extern maptile *styles;
1587 mapstruct *mp; 1406 maptile *mp;
1588 int maps_used=0, mapmem=0, objects_used=0, x,y; 1407 int maps_used = 0, mapmem = 0, objects_used = 0, x, y;
1589 object *tmp; 1408 object *tmp;
1590 1409
1591 for (mp = styles; mp!=NULL; mp=mp->next) { 1410 for (mp = styles; mp != NULL; mp = mp->next)
1411 {
1592 maps_used++; 1412 maps_used++;
1593 mapmem += MAP_WIDTH(mp)*MAP_HEIGHT(mp)*(sizeof(object *)+sizeof(MapSpace)) + sizeof(mapstruct); 1413 mapmem += MAP_WIDTH (mp) * MAP_HEIGHT (mp) * (sizeof (object *) + sizeof (MapSpace)) + sizeof (maptile);
1594 for (x=0; x<MAP_WIDTH(mp); x++) { 1414 for (x = 0; x < MAP_WIDTH (mp); x++)
1415 {
1595 for (y=0; y<MAP_HEIGHT(mp); y++) { 1416 for (y = 0; y < MAP_HEIGHT (mp); y++)
1417 {
1596 for (tmp=get_map_ob(mp, x, y); tmp!=NULL; tmp=tmp->above) 1418 for (tmp = get_map_ob (mp, x, y); tmp != NULL; tmp = tmp->above)
1597 objects_used++; 1419 objects_used++;
1598 } 1420 }
1599 } 1421 }
1600 } 1422 }
1601 new_draw_info_format(NDI_UNIQUE, 0, op, "Style maps loaded: %d", maps_used); 1423 new_draw_info_format (NDI_UNIQUE, 0, op, "Style maps loaded: %d", maps_used);
1602 new_draw_info(NDI_UNIQUE, 0, op, "Memory used, not"); 1424 new_draw_info (NDI_UNIQUE, 0, op, "Memory used, not");
1603 new_draw_info_format(NDI_UNIQUE, 0, op, "including objects: %d", mapmem); 1425 new_draw_info_format (NDI_UNIQUE, 0, op, "including objects: %d", mapmem);
1604 new_draw_info_format(NDI_UNIQUE, 0, op, "Style objects: %d", objects_used); 1426 new_draw_info_format (NDI_UNIQUE, 0, op, "Style objects: %d", objects_used);
1605 new_draw_info_format(NDI_UNIQUE, 0, op, "Mem for objects: %d", objects_used * sizeof(object)); 1427 new_draw_info_format (NDI_UNIQUE, 0, op, "Mem for objects: %d", objects_used * sizeof (object));
1606 return 0; 1428 return 0;
1607} 1429}
1608 1430
1431int
1609int command_kill_pets(object *op, char *params) 1432command_kill_pets (object *op, char *params)
1610{ 1433{
1611 objectlink *obl, *next; 1434 objectlink *obl, *next;
1612 int counter=0, removecount=0; 1435 int counter = 0, removecount = 0;
1436
1613 if (params == NULL) { 1437 if (params == NULL)
1438 {
1614 terminate_all_pets(op); 1439 terminate_all_pets (op);
1615 new_draw_info(NDI_UNIQUE, 0, op, "Your pets have been killed."); 1440 new_draw_info (NDI_UNIQUE, 0, op, "Your pets have been killed.");
1441 }
1442 else
1616 } 1443 {
1617 else {
1618 int target = atoi(params); 1444 int target = atoi (params);
1445
1619 for(obl = first_friendly_object; obl != NULL; obl = next) { 1446 for (obl = first_friendly_object; obl != NULL; obl = next)
1447 {
1620 object *ob = obl->ob; 1448 object *ob = obl->ob;
1449
1621 next = obl->next; 1450 next = obl->next;
1622 if (get_owner(ob) == op) 1451 if (get_owner (ob) == op)
1623 if (++counter==target || (target==0 && !strcasecmp(ob->name, params))) { 1452 if (++counter == target || (target == 0 && !strcasecmp (ob->name, params)))
1453 {
1624 if (!QUERY_FLAG(ob, FLAG_REMOVED)) 1454 if (!QUERY_FLAG (ob, FLAG_REMOVED))
1625 remove_ob(ob); 1455 remove_ob (ob);
1626 remove_friendly_object(ob); 1456 remove_friendly_object (ob);
1627 free_object(ob); 1457 free_object (ob);
1628 removecount++; 1458 removecount++;
1629 } 1459 }
1630 } 1460 }
1631 if (removecount!=0) 1461 if (removecount != 0)
1632 new_draw_info_format(NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount); 1462 new_draw_info_format (NDI_UNIQUE, 0, op, "killed %d pets.\n", removecount);
1633 else 1463 else
1634 new_draw_info(NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n"); 1464 new_draw_info (NDI_UNIQUE, 0, op, "Couldn't find any suitable pets to kill.\n");
1635 } 1465 }
1636 return 0; 1466 return 0;
1637} 1467}
1638

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines