--- deliantra/server/include/client.h 2007/03/12 01:13:10 1.33 +++ deliantra/server/include/client.h 2007/03/14 00:04:58 1.35 @@ -195,6 +195,8 @@ bool ACC (RW, extcmd); /* CF+ call into extensions/plugins */ bool ACC (RW, extmap); /* CF+ extend map comamnd with extra data */ bool ACC (RW, buggy_mapscroll); /* CF+ client crashes on large mapscrolls */ + bool ACC (RW, force_face0); /* CF+ client workaround for buggy checksum calculation in gcfclient */ + bool ACC (RW, force_bad_checksum); /* CF+ client workaround for buggy checksum calculation in gcfclient */ bool ACC (RW, darkness); /* True if client wants darkness information */ bool ACC (RW, image2); /* Client wants image2/face2 commands */ bool ACC (RW, update_look); /* If true, we need to send the look window */ @@ -263,6 +265,12 @@ void send_packet_printf (const char *format, ...); void send_packet (packet &sl); + void send_drawinfo (const char *msg, int flags = NDI_BLACK); + MTH void send_face (faceidx facenum, bool nocache = false); + MTH void send_faces (object *ob); + MTH void send_smooth (faceidx facenum); + MTH void send_animation (short anim_num); + // called when something under the player changes MTH void floorbox_update () { update_look = 1; } // called when the player has been moved