ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/include/client.h
(Generate patch)

Comparing deliantra/server/include/client.h (file contents):
Revision 1.19 by root, Sat Dec 23 09:41:55 2006 UTC vs.
Revision 1.21 by root, Mon Dec 25 11:25:49 2006 UTC

162}; 162};
163 163
164/* how many times we are allowed to give the wrong password before being kicked. */ 164/* how many times we are allowed to give the wrong password before being kicked. */
165#define MAX_PASSWORD_FAILURES 5 165#define MAX_PASSWORD_FAILURES 5
166 166
167ACC_CLASS (client) // should become player when newsocket is a baseclass of player 167INTERFACE_CLASS (client) // should become player when newsocket is a baseclass of player
168struct client : zero_initialised, attachable<client> 168struct client : zero_initialised, attachable
169{ 169{
170 int ACC (RW, fd); 170 int ACC (RW, fd);
171 unsigned int inbuf_len; // number of bytes valid in inbuf 171 unsigned int inbuf_len; // number of bytes valid in inbuf
172 uint8 *faces_sent; // This is a bitmap on sent face status 172 uint8 *faces_sent; // This is a bitmap on sent face status
173 statsinfo stats; 173 statsinfo stats;
174 174
175 client_container cc_inv, cc_other; 175 client_container cc_inv, cc_other;
176 Buffer outputbuffer; 176 Buffer outputbuffer;
177 177
178 char *ACC (RW, host); /* Which host it is connected from (ip address) */ 178 char *ACC (RW, host); /* Which host it is connected from (ip address) */
179 uint8 ACC (RW, state); /* Input state of the player (name, password, etc */ 179 uint8 ACC (RW, state); /* Input state of the player (name, password, etc */
180 uint8 ACC (RW, password_fails); /* how many times the player has failed to give the right password */ 180 uint8 ACC (RW, password_fails); /* how many times the player has failed to give the right password */
181 181
182 bool ACC (RW, afk); /* player is afk */
182 bool ACC (RW, facecache); /* If true, client is caching images */ 183 bool ACC (RW, facecache); /* If true, client is caching images */
183 bool ACC (RW, sent_scroll); 184 bool ACC (RW, sent_scroll);
184 bool ACC (RW, sound); /* does the client want sound */ 185 bool ACC (RW, sound); /* does the client want sound */
185 bool ACC (RW, newmapcmd); /* Send newmap command when entering new map SMACFIGGEN */ 186 bool ACC (RW, newmapcmd); /* Send newmap command when entering new map SMACFIGGEN */
186 bool ACC (RW, plugincmd); /* CF+ extend the protocol through a plug-in */ 187 bool ACC (RW, plugincmd); /* CF+ extend the protocol through a plug-in */
215 216
216 int ACC (RW, rtt), ACC (RW, rttvar); /* round-trip time and -variance, if known */ 217 int ACC (RW, rtt), ACC (RW, rttvar); /* round-trip time and -variance, if known */
217 218
218 client (int fd, const char *from_ip); 219 client (int fd, const char *from_ip);
219 ~client (); 220 ~client ();
220 void destroy (); 221 void do_destroy ();
221 bool destroyed () const { return state == ST_DEAD; } 222 void gather_callbacks (AV *&callbacks, event_type event) const;
222 223
223 iw cmd_ev; void cmd_cb (iw &w); 224 iw cmd_ev; void cmd_cb (iw &w);
224 iow socket_ev; void socket_cb (iow &w, int got); 225 iow socket_ev; void socket_cb (iow &w, int got);
225 226
226 std::deque< command, slice_allocator<command> > cmd_queue; 227 std::deque< command, slice_allocator<command> > cmd_queue;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines