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.108 by root, Sat Jun 9 20:51:45 2007 UTC vs.
Revision 1.118 by root, Sun Jul 29 19:11:47 2007 UTC

1/* 1/*
2 * This file is part of Crossfire TRT, the Multiplayer Online Role Playing Game. 2 * This file is part of Crossfire TRT, the Roguelike Realtime MORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team 4 * Copyright (©) 2005,2006,2007 Marc Alexander Lehmann / Robin Redeker / the Crossfire TRT team
5 * Copyright (©) 2001,2007 Mark Wedel 5 * Copyright (©) 2001,2007 Mark Wedel
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992,2007 Frank Tore Johansen
7 * 7 *
8 * Crossfire TRT is free software; you can redistribute it and/or modify it 8 * Crossfire TRT is free software: you can redistribute it and/or modify
9 * under the terms of the GNU General Public License as published by the Free 9 * it under the terms of the GNU General Public License as published by
10 * Software Foundation; either version 2 of the License, or (at your option) 10 * the Free Software Foundation, either version 3 of the License, or
11 * any later version. 11 * (at your option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, but 13 * This program is distributed in the hope that it will be useful,
14 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the GNU General Public License along 18 * You should have received a copy of the GNU General Public License
19 * with Crossfire TRT; if not, write to the Free Software Foundation, Inc. 51 19 * along with this program. If not, see <http://www.gnu.org/licenses/>.
20 * Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 * 20 *
22 * The authors can be reached via e-mail to <crossfire@schmorp.de> 21 * The authors can be reached via e-mail to <crossfire@schmorp.de>
23 */ 22 */
24 23
25/** 24/**
191 socket.current_y = ob->y; 190 socket.current_y = ob->y;
192 191
193 region *reg = ob->region (); 192 region *reg = ob->region ();
194 if (socket.current_region != reg) 193 if (socket.current_region != reg)
195 { 194 {
195 INVOKE_PLAYER (REGION_CHANGE, pl, ARG_REGION (reg), ARG_REGION (socket.current_region));
196 socket.current_region = reg; 196 socket.current_region = reg;
197 socket.send_packet_printf ("drawinfo 0 You are now %s.\n(use whereami for more details)", &reg->longname);
198 } 197 }
199} 198}
200 199
201/** 200/**
202 * RequestInfo is sort of a meta command. There is some specific 201 * RequestInfo is sort of a meta command. There is some specific
203 * request of information, but we call other functions to provide 202 * request of information, but we call other functions to provide
204 * that information. 203 * that information.
205 */ 204 */
206void 205void
207RequestInfo (char *buf, int len, client * ns) 206RequestInfo (char *buf, int len, client *ns)
208{ 207{
209 char *params = NULL, *cp; 208 char *params;
210
211 /* No match */
212 char bigbuf[MAX_BUF];
213 int slen;
214
215 /* Set up replyinfo before we modify any of the buffers - this is used
216 * if we don't find a match.
217 */
218 strcpy (bigbuf, "replyinfo ");
219 slen = strlen (bigbuf);
220 safe_strcat (bigbuf, buf, &slen, MAX_BUF);
221 209
222 /* find the first space, make it null, and update the 210 /* find the first space, make it null, and update the
223 * params pointer. 211 * params pointer.
224 */ 212 */
225 for (cp = buf; *cp != '\0'; cp++) 213 for (params = buf; *params; params++)
226 if (*cp == ' ') 214 if (*params == ' ')
227 { 215 {
228 *cp = '\0';
229 params = cp + 1; 216 *params++ = 0;
230 break; 217 break;
231 } 218 }
232 219
233 if (!strcmp (buf, "image_info")) 220 if (!strcmp (buf, "image_info"))
234 send_image_info (ns, params); 221 send_image_info (ns, params);
237 else if (!strcmp (buf, "skill_info")) 224 else if (!strcmp (buf, "skill_info"))
238 send_skill_info (ns, params); 225 send_skill_info (ns, params);
239 else if (!strcmp (buf, "spell_paths")) 226 else if (!strcmp (buf, "spell_paths"))
240 send_spell_paths (ns, params); 227 send_spell_paths (ns, params);
241 else 228 else
242 ns->send_packet (bigbuf, len); 229 {
230 // undo tokenisation above and send replyinfo with the request unchanged
231 if (*params)
232 *--params = ' ';
233
234 ns->send_packet_printf ("replyinfo %s", buf);
235 }
243} 236}
244 237
245void 238void
246ExtCmd (char *buf, int len, player *pl) 239ExtCmd (char *buf, int len, player *pl)
247{ 240{
471 464
472 ns->send_packet (cmdback); 465 ns->send_packet (cmdback);
473} 466}
474 467
475/** 468/**
476 * client requested an image. send it rate-limited
477 * before flushing.
478 */
479void
480AskFaceCmd (char *buf, int len, client *ns)
481{
482 ns->askface.push_back (atoi (buf));
483}
484
485/**
486 * Tells client the picture it has to use
487 * to smooth a picture number given as argument.
488 */
489void
490AskSmooth (char *buf, int len, client *ns)
491{
492 ns->send_face (atoi (buf));
493 ns->flush_fx ();
494}
495
496/**
497 * This handles the general commands from the client (ie, north, fire, cast, 469 * This handles the general commands from the client (ie, north, fire, cast,
498 * etc.) 470 * etc.)
499 */ 471 */
500void 472void
501PlayerCmd (char *buf, int len, player *pl) 473PlayerCmd (char *buf, int len, player *pl)
533void 505void
534NewPlayerCmd (char *buf, int len, player *pl) 506NewPlayerCmd (char *buf, int len, player *pl)
535{ 507{
536 if (len <= 6) 508 if (len <= 6)
537 { 509 {
538 LOG (llevDebug, "Corrupt ncom command <%s> not long enough - discarding\n", buf); 510 LOG (llevDebug, "%s: corrupt ncom command <%s>: not long enough (%d) - discarding\n", pl->ns->host, buf, len);
539 return; 511 return;
540 } 512 }
541 513
542 uint16 cmdid = net_uint16 ((uint8 *)buf); 514 uint16 cmdid = net_uint16 ((uint8 *)buf);
543 sint32 repeat = net_sint32 ((uint8 *)buf + 2); 515 sint32 repeat = net_sint32 ((uint8 *)buf + 2);
747 719
748 //TODO: maybe golem should become the current_weapon, quite simply? 720 //TODO: maybe golem should become the current_weapon, quite simply?
749 if (pl->golem) 721 if (pl->golem)
750 buf << " Golem*: " << pl->golem->name; 722 buf << " Golem*: " << pl->golem->name;
751 723
724 buf << '\0';
752 buf.linearise (obuf); 725 buf.linearise (obuf);
753 obuf [buf.size ()] = 0;
754} 726}
755 727
756#define AddIfInt64(Old,New,Type) if (Old != New) {\ 728#define AddIfInt64(Old,New,Type) if (Old != New) {\
757 Old = New; \ 729 Old = New; \
758 sl << uint8 (Type) << uint64 (New); \ 730 sl << uint8 (Type) << uint64 (New); \
959 931
960 if (!ns.faces_sent[face_num]) 932 if (!ns.faces_sent[face_num])
961 if (ob) 933 if (ob)
962 ns.send_faces (ob); 934 ns.send_faces (ob);
963 else 935 else
964 ns.send_face (face_num); 936 ns.send_face (face_num, 10);
965 937
966 sl << uint16 (face_num); 938 sl << uint16 (face_num);
967 return 1; 939 return 1;
968 } 940 }
969 941
1416 sl << "replyinfo skill_info\n"; 1388 sl << "replyinfo skill_info\n";
1417 1389
1418 for (int i = 1; i < NUM_SKILLS; i++) 1390 for (int i = 1; i < NUM_SKILLS; i++)
1419 sl.printf ("%d:%s\n", i + CS_STAT_SKILLINFO, &skill_names[i]); 1391 sl.printf ("%d:%s\n", i + CS_STAT_SKILLINFO, &skill_names[i]);
1420 1392
1421 if (sl.length () >= MAXSOCKBUF) 1393 if (sl.length () > MAXSOCKBUF)
1422 { 1394 {
1423 LOG (llevError, "Buffer overflow in send_skill_info!\n"); 1395 LOG (llevError, "Buffer overflow in send_skill_info!\n");
1424 fatal (0); 1396 fatal (0);
1425 } 1397 }
1426 1398
1439 sl << "replyinfo spell_paths\n"; 1411 sl << "replyinfo spell_paths\n";
1440 1412
1441 for (int i = 0; i < NRSPELLPATHS; i++) 1413 for (int i = 0; i < NRSPELLPATHS; i++)
1442 sl.printf ("%d:%s\n", 1 << i, spellpathnames[i]); 1414 sl.printf ("%d:%s\n", 1 << i, spellpathnames[i]);
1443 1415
1444 if (sl.length () >= MAXSOCKBUF) 1416 if (sl.length () > MAXSOCKBUF)
1445 { 1417 {
1446 LOG (llevError, "Buffer overflow in send_spell_paths!\n"); 1418 LOG (llevError, "Buffer overflow in send_spell_paths!\n");
1447 fatal (0); 1419 fatal (0);
1448 } 1420 }
1449 1421
1557 if (!spell->face) 1529 if (!spell->face)
1558 { 1530 {
1559 LOG (llevError, "%s: spell has no face, but face is mandatory.\n", &spell->name); 1531 LOG (llevError, "%s: spell has no face, but face is mandatory.\n", &spell->name);
1560 spell->face = face_find ("burnout.x11", blank_face); 1532 spell->face = face_find ("burnout.x11", blank_face);
1561 } 1533 }
1534
1535 pl->ns->send_face (spell->face);
1562 1536
1563 /* send the current values */ 1537 /* send the current values */
1564 sl << uint32 (spell->count) 1538 sl << uint32 (spell->count)
1565 << uint16 (spell->level) 1539 << uint16 (spell->level)
1566 << uint16 (spell->casting_time) 1540 << uint16 (spell->casting_time)
1602 * bytes and 3 strings (because that is the spec) so we need to 1576 * bytes and 3 strings (because that is the spec) so we need to
1603 * check that the length of those 3 strings, plus the 23 bytes, 1577 * check that the length of those 3 strings, plus the 23 bytes,
1604 * won't take us over the length limit for the socket, if it does, 1578 * won't take us over the length limit for the socket, if it does,
1605 * we need to send what we already have, and restart packet formation 1579 * we need to send what we already have, and restart packet formation
1606 */ 1580 */
1581 if (spell->type != SPELL)
1582 continue;
1583
1607 /* Seeing crashes by overflowed buffers. Quick arithemetic seems 1584 /* Seeing crashes by overflowed buffers. Quick arithemetic seems
1608 * to show add_spell is 26 bytes + 2 strings. However, the overun 1585 * to show add_spell is 26 bytes + 2 strings. However, the overun
1609 * is hundreds of bytes off, so correcting 22 vs 26 doesn't seem 1586 * is hundreds of bytes off, so correcting 22 vs 26 doesn't seem
1610 * like it will fix this 1587 * like it will fix this
1611 */ 1588 */
1612 if (spell->type != SPELL)
1613 continue;
1614
1615 if (sl.length () >= (MAXSOCKBUF - (26 + strlen (spell->name) + (spell->msg ? strlen (spell->msg) : 0)))) 1589 if (sl.length () > (MAXSOCKBUF - (26 + strlen (spell->name) + (spell->msg ? strlen (spell->msg) : 0))))
1616 { 1590 {
1591 pl->ns->flush_fx ();
1617 pl->ns->send_packet (sl); 1592 pl->ns->send_packet (sl);
1618 1593
1619 sl.reset (); 1594 sl.reset ();
1620 sl << "addspell "; 1595 sl << "addspell ";
1621 } 1596 }
1629 return; 1604 return;
1630 } 1605 }
1631 else 1606 else
1632 append_spell (pl, sl, spell); 1607 append_spell (pl, sl, spell);
1633 1608
1634 if (sl.length () >= MAXSOCKBUF) 1609 if (sl.length () > MAXSOCKBUF)
1635 { 1610 {
1636 LOG (llevError, "Buffer overflow in esrv_add_spells!\n"); 1611 LOG (llevError, "Buffer overflow in esrv_add_spells!\n");
1637 fatal (0); 1612 fatal (0);
1638 } 1613 }
1639 1614
1640 /* finally, we can send the packet */ 1615 /* finally, we can send the packet */
1616 pl->ns->flush_fx ();
1641 pl->ns->send_packet (sl); 1617 pl->ns->send_packet (sl);
1642} 1618}
1643 1619

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines