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

Comparing deliantra/server/socket/image.C (file contents):
Revision 1.61 by root, Wed Nov 4 13:46:37 2009 UTC vs.
Revision 1.69 by root, Mon Oct 29 23:55:57 2012 UTC

1/* 1/*
2 * This file is part of Deliantra, the Roguelike Realtime MMORPG. 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 * 3 *
4 * Copyright (©) 2005,2006,2007,2008 Marc Alexander Lehmann / Robin Redeker / the Deliantra team 4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
5 * Copyright (©) 2001,2007 Mark Wedel 5 * Copyright (©) 2001 Mark Wedel
6 * Copyright (©) 1992,2007 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
7 * 7 *
8 * Deliantra is free software: you can redistribute it and/or modify it under 8 * Deliantra is free software: you can redistribute it and/or modify it under
9 * the terms of the Affero GNU General Public License as published by the 9 * the terms of the Affero GNU General Public License as published by the
10 * Free Software Foundation, either version 3 of the License, or (at your 10 * Free Software Foundation, either version 3 of the License, or (at your
11 * option) any later version. 11 * option) any later version.
12 * 12 *
13 * This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details. 16 * GNU General Public License for more details.
17 * 17 *
18 * You should have received a copy of the Affero GNU General Public License 18 * You should have received a copy of the Affero GNU General Public License
19 * and the GNU General Public License along with this program. If not, see 19 * and the GNU General Public License along with this program. If not, see
20 * <http://www.gnu.org/licenses/>. 20 * <http://www.gnu.org/licenses/>.
21 * 21 *
22 * The authors can be reached via e-mail to <support@deliantra.net> 22 * The authors can be reached via e-mail to <support@deliantra.net>
23 */ 23 */
24 24
25/** \file 25/** \file
26 * Image related communication 26 * Image related communication
110 { 110 {
111 LOG (llevError | logBacktrace, "client::send_face (%d) out of bounds??\n", facenum); 111 LOG (llevError | logBacktrace, "client::send_face (%d) out of bounds??\n", facenum);
112 return; 112 return;
113 } 113 }
114 114
115 // refuse to send non-image faces 115 // refuse to send non-image faces unless requested
116 if (!fx_want [f->type]) 116 if (!fx_want [f->type])
117 return; 117 return;
118 118
119 if (faces_sent [facenum]) 119 if (faces_sent [facenum])
120 return; 120 return;
121 121
122 faces_sent[facenum] = true; 122 faces_sent [facenum] = true;
123 123
124 fxface.push_back (facenum); 124 fxface.push_back (facenum);
125} 125}
126 126
127void client::flush_fx () 127void client::flush_fx ()
147 } 147 }
148 148
149 const facedata *d = f->data (faceset); 149 const facedata *d = f->data (faceset);
150 150
151 fx << ber32 (facenum) 151 fx << ber32 (facenum)
152 << data8 (d->chksum, CHKSUM_SIZE); 152 << data8 (d->chksum, d->chksum_len);
153 153
154 if (smoothing) 154 if (smoothing)
155 { 155 {
156 faceinfo *f = face_info (facenum); 156 faceinfo *f = face_info (facenum);
157 157
165 } 165 }
166 } 166 }
167 } 167 }
168 } 168 }
169 while (!fxface.empty () 169 while (!fxface.empty ()
170 && fx.room () > ber32::size + CHKSUM_SIZE + 1 + 3 /* type switch */ 170 && fx.room () > ber32::size + CHKSUM_MAXLEN + 1 + 3 /* type switch */
171 && sx.room () > ber32::size * 3); 171 && sx.room () > ber32::size * 3);
172 172
173 send_packet (fx); 173 send_packet (fx);
174 if (sx.length () > 3) send_packet (sx); 174 if (sx.length () > 3) send_packet (sx);
175 } 175 }
230 send_packet (sl); 230 send_packet (sl);
231 231
232 anims_sent[anim_num] = 1; 232 anims_sent[anim_num] = 1;
233} 233}
234 234
235void
236client::invalidate_face (faceidx idx)
237{
238 faces_sent [idx] = false;
239 force_newmap = true;
240}
241
242void
243client::invalidate_all_faces ()
244{
245 faces_sent.reset ();
246 force_newmap = true;
247}
248

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines