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

Comparing deliantra/server/socket/info.C (file contents):
Revision 1.17 by root, Thu Dec 14 04:30:33 2006 UTC vs.
Revision 1.20 by root, Fri Dec 15 19:59:20 2006 UTC

43 * much the same thing as the draw_info above, but takes a color 43 * much the same thing as the draw_info above, but takes a color
44 * parameter. the esrv_drawinfo functions should probably be 44 * parameter. the esrv_drawinfo functions should probably be
45 * replaced with this, just using black as the color. 45 * replaced with this, just using black as the color.
46 */ 46 */
47static void 47static void
48esrv_print_msg (client_socket * ns, int color, const char *str) 48esrv_print_msg (client * ns, int color, const char *str)
49{ 49{
50 packet sl; 50 packet sl;
51
52 if (ns->status == Ns_Old)
53 sl.printf ("%s\n", str);
54 else
55 sl.printf ("drawinfo %d %s", color, str); 51 sl.printf ("drawinfo %d %s", color, str);
56
57 ns->send_packet (sl); 52 ns->send_packet (sl);
58} 53}
59 54
60/** 55/**
61 * Draws an extended message on the client. 56 * Draws an extended message on the client.
65 * subtype type and subtype of text message 60 * subtype type and subtype of text message
66 * intro Intro message to send with main message if client does not support the message type 61 * intro Intro message to send with main message if client does not support the message type
67 * message The main message 62 * message The main message
68 */ 63 */
69static void 64static void
70esrv_print_ext_msg (client_socket * ns, int color, uint8 type, uint8 subtype, const char *message) 65esrv_print_ext_msg (client * ns, int color, uint8 type, uint8 subtype, const char *message)
71{ 66{
72 packet sl; 67 packet sl;
73 68
74 sl.printf ("drawextinfo %d %hhu %hhu %s", color, type, subtype, message); 69 sl.printf ("drawextinfo %d %hhu %hhu %s", color, type, subtype, message);
75 ns->send_packet (sl); 70 ns->send_packet (sl);
634 629
635 for (int y = ymin; y <= ymax; y++) 630 for (int y = ymin; y <= ymax; y++)
636 for (int x = xmin; x <= xmax; x++) 631 for (int x = xmin; x <= xmax; x++)
637 sl << uint8 (map_mark[x + MAGIC_MAP_SIZE * y] & ~FACE_FLOOR); 632 sl << uint8 (map_mark[x + MAGIC_MAP_SIZE * y] & ~FACE_FLOOR);
638 633
639 Send_With_Handling (pl->contr->socket, &sl); 634 pl->contr->socket->send_packet (sl);
640 635
641 free (map_mark); 636 free (map_mark);
642} 637}
643 638
644 639

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines