ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/socket/request.C
(Generate patch)

Comparing deliantra/server/socket/request.C (file contents):
Revision 1.53 by root, Mon Dec 25 11:25:50 2006 UTC vs.
Revision 1.60 by root, Sun Jan 7 02:39:15 2007 UTC

1/* 1/*
2 CrossFire, A Multiplayer game for X-windows 2 CrossFire, A Multiplayer game for X-windows
3 3
4 Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team
4 Copyright (C) 2001 Mark Wedel 5 Copyright (C) 2001 Mark Wedel
5 Copyright (C) 1992 Frank Tore Johansen 6 Copyright (C) 1992 Frank Tore Johansen
6 7
7 This program is free software; you can redistribute it and/or modify 8 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by 9 it under the terms of the GNU General Public License as published by
176 flags |= 4; 177 flags |= 4;
177 if (ob->map->tile_path[3]) 178 if (ob->map->tile_path[3])
178 flags |= 8; 179 flags |= 8;
179 180
180 snprintf (buf, MAX_BUF, "mapinfo - spatial %d %d %d %d %d %s", 181 snprintf (buf, MAX_BUF, "mapinfo - spatial %d %d %d %d %d %s",
181 flags, socket.mapx / 2 - ob->x, socket.mapy / 2 - ob->y, ob->map->width, ob->map->height, ob->map->path); 182 flags, socket.mapx / 2 - ob->x, socket.mapy / 2 - ob->y, ob->map->width, ob->map->height, &ob->map->path);
182 } 183 }
183 else 184 else
184 snprintf (buf, MAX_BUF, "mapinfo current"); 185 snprintf (buf, MAX_BUF, "mapinfo current");
185 186
186 socket.send_packet (buf); 187 socket.send_packet (buf);
290 { 291 {
291 int dir = *buf++; 292 int dir = *buf++;
292 293
293 switch (dir) 294 switch (dir)
294 { 295 {
295 case '1': 296 case '1':
296 dx = 0; 297 dx = 0;
297 dy = -1; 298 dy = -1;
298 map = get_map_from_coord (map, &dx, &dy); 299 map = map->xy_find (dx, dy);
299 map && (mapy -= map->height); 300 map && (mapy -= map->height);
300 break; 301 break;
301 case '2': 302 case '2':
302 mapx += map->width; 303 mapx += map->width;
303 dx = map->width; 304 dx = map->width;
304 dy = 0; 305 dy = 0;
305 map = get_map_from_coord (map, &dx, &dy); 306 map = map->xy_find (dx, dy);
306 break; 307 break;
307 case '3': 308 case '3':
308 mapy += map->height; 309 mapy += map->height;
309 dx = 0; 310 dx = 0;
310 dy = map->height; 311 dy = map->height;
311 map = get_map_from_coord (map, &dx, &dy); 312 map = map->xy_find (dx, dy);
312 break; 313 break;
313 case '4': 314 case '4':
314 dx = -1; 315 dx = -1;
315 dy = 0; 316 dy = 0;
316 map = get_map_from_coord (map, &dx, &dy); 317 map = map->xy_find (dx, dy);
317 map && (mapx -= map->width); 318 map && (mapx -= map->width);
318 break; 319 break;
319 } 320 }
320 321
321 --max_distance; 322 --max_distance;
322 } 323 }
323 324
334 if (map->tile_path[2]) 335 if (map->tile_path[2])
335 flags |= 4; 336 flags |= 4;
336 if (map->tile_path[3]) 337 if (map->tile_path[3])
337 flags |= 8; 338 flags |= 8;
338 339
339 snprintf (bigbuf, MAX_BUF, "mapinfo %s spatial %d %d %d %d %d %s", token, flags, mapx, mapy, map->width, map->height, map->path); 340 snprintf (bigbuf, MAX_BUF, "mapinfo %s spatial %d %d %d %d %d %s", token, flags, mapx, mapy, map->width, map->height, &map->path);
340 } 341 }
341 else 342 else
342 snprintf (bigbuf, MAX_BUF, "mapinfo %s nomap", token); 343 snprintf (bigbuf, MAX_BUF, "mapinfo %s nomap", token);
343 } 344 }
344 else 345 else
845 846
846 case ST_CHANGE_CLASS: 847 case ST_CHANGE_CLASS:
847 key_change_class (pl->ob, buf[0]); 848 key_change_class (pl->ob, buf[0]);
848 break; 849 break;
849 850
850 case ST_CONFIRM_QUIT:
851 key_confirm_quit (pl->ob, buf[0]);
852 break;
853
854 case ST_GET_PARTY_PASSWORD: /* Get password for party */ 851 case ST_GET_PARTY_PASSWORD: /* Get password for party */
855 receive_party_password (pl->ob, 13); 852 receive_party_password (pl->ob, 13);
856 break; 853 break;
857 854
858 default: 855 default:
914{ 911{
915 ns->sound = atoi (buf); 912 ns->sound = atoi (buf);
916} 913}
917 914
918/** client wants the map resent */ 915/** client wants the map resent */
919
920void 916void
921MapRedrawCmd (char *buf, int len, player *pl) 917MapRedrawCmd (char *buf, int len, player *pl)
922{ 918{
923/* This function is currently disabled; just clearing the map state results in 919/* This function is currently disabled; just clearing the map state results in
924 * display errors. It should clear the cache and send a newmap command. 920 * display errors. It should clear the cache and send a newmap command.
1506 ob = GET_MAP_FACE_OBJ (mp, mx, my, layer); 1502 ob = GET_MAP_FACE_OBJ (mp, mx, my, layer);
1507 1503
1508 /* If there is no object for this space, or if the face for the object 1504 /* If there is no object for this space, or if the face for the object
1509 * is the blank face, set the smoothlevel to zero. 1505 * is the blank face, set the smoothlevel to zero.
1510 */ 1506 */
1511 if (!ob || ob->face == blank_face || MAP_NOSMOOTH (mp)) 1507 if (!ob || ob->face == blank_face)
1512 smoothlevel = 0; 1508 smoothlevel = 0;
1513 else 1509 else
1514 { 1510 {
1515 smoothlevel = ob->smoothlevel; 1511 smoothlevel = ob->smoothlevel;
1516 if (smoothlevel && !(ns.faces_sent[ob->face->number] & NS_FACESENT_SMOOTH)) 1512 if (smoothlevel && !(ns.faces_sent[ob->face->number] & NS_FACESENT_SMOOTH))
1589 uint8 extendedinfos; 1585 uint8 extendedinfos;
1590 maptile *m; 1586 maptile *m;
1591 1587
1592 client &socket = *pl->contr->ns; 1588 client &socket = *pl->contr->ns;
1593 1589
1590 if (!pl->active)
1591 return;
1592
1594 check_map_change (pl->contr); 1593 check_map_change (pl->contr);
1595 1594
1596 packet sl (socket.mapmode == Map1Cmd ? "map1" : "map1a"); 1595 packet sl (socket.mapmode == Map1Cmd ? "map1" : "map1a");
1597 packet esl; 1596 packet esl;
1598 1597
1718 map_clearcell (&lastcell, 0, 0, 0, -1); 1717 map_clearcell (&lastcell, 0, 0, 0, -1);
1719 } 1718 }
1720 } 1719 }
1721 else if (d > 3) 1720 else if (d > 3)
1722 { 1721 {
1722 m->touch ();
1723
1723 int need_send = 0, count; 1724 int need_send = 0, count;
1724 1725
1725 /* This block deals with spaces that are not visible for whatever 1726 /* This block deals with spaces that are not visible for whatever
1726 * reason. Still may need to send the head for this space. 1727 * reason. Still may need to send the head for this space.
1727 */ 1728 */
1760 else 1761 else
1761 sl.reset (oldlen); 1762 sl.reset (oldlen);
1762 } 1763 }
1763 else 1764 else
1764 { 1765 {
1766 m->touch ();
1767
1765 /* In this block, the space is visible or there are head objects 1768 /* In this block, the space is visible or there are head objects
1766 * we need to send. 1769 * we need to send.
1767 */ 1770 */
1768 1771
1769 /* Rather than try to figure out what everything that we might 1772 /* Rather than try to figure out what everything that we might

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines