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.6 by root, Wed Dec 13 21:27:09 2006 UTC vs.
Revision 1.12 by root, Thu Dec 14 22:45:41 2006 UTC

229 if (len >= MAX_FACE_SETS) 229 if (len >= MAX_FACE_SETS)
230 { 230 {
231 LOG (llevError, "To high a setnum in image_info file: %d > %d\n", len, MAX_FACE_SETS); 231 LOG (llevError, "To high a setnum in image_info file: %d > %d\n", len, MAX_FACE_SETS);
232 abort (); 232 abort ();
233 } 233 }
234 facesets[len].prefix = strdup_local (cps[1]); 234 facesets[len].prefix = strdup (cps[1]);
235 facesets[len].fullname = strdup_local (cps[2]); 235 facesets[len].fullname = strdup (cps[2]);
236 facesets[len].fallback = atoi (cps[3]); 236 facesets[len].fallback = atoi (cps[3]);
237 facesets[len].size = strdup_local (cps[4]); 237 facesets[len].size = strdup (cps[4]);
238 facesets[len].extension = strdup_local (cps[5]); 238 facesets[len].extension = strdup (cps[5]);
239 facesets[len].comment = strdup_local (cps[6]); 239 facesets[len].comment = strdup (cps[6]);
240 } 240 }
241 } 241 }
242 close_and_delete (infile, compressed); 242 close_and_delete (infile, compressed);
243 for (i = 0; i < MAX_FACE_SETS; i++) 243 for (i = 0; i < MAX_FACE_SETS; i++)
244 { 244 {
312 * the caching attribute. 312 * the caching attribute.
313 * 313 *
314 */ 314 */
315 315
316void 316void
317SetFaceMode (char *buf, int len, NewSocket * ns) 317SetFaceMode (char *buf, int len, client_socket *ns)
318{ 318{
319 char tmp[256];
320
321 int mask = (atoi (buf) & CF_FACE_CACHE), mode = (atoi (buf) & ~CF_FACE_CACHE); 319 int mask = (atoi (buf) & CF_FACE_CACHE), mode = (atoi (buf) & ~CF_FACE_CACHE);
322 320
323 if (mode == CF_FACE_NONE) 321 if (mode == CF_FACE_NONE)
324 {
325 ns->facecache = 1; 322 ns->facecache = 1;
326 }
327 else if (mode != CF_FACE_PNG) 323 else if (mode != CF_FACE_PNG)
328 { 324 {
325 packet sl;
329 sprintf (tmp, "drawinfo %d %s", NDI_RED, "Warning - send unsupported face mode. Will use Png"); 326 sl.printf ("drawinfo %d %s", NDI_RED, "Warning - send unsupported face mode. Will use Png");
330 Write_String_To_Socket (ns, tmp, strlen (tmp)); 327 ns->send_packet (sl);
331#ifdef ESRV_DEBUG
332 LOG (llevDebug, "SetFaceMode: Invalid mode from client: %d\n", mode);
333#endif
334 } 328 }
329
335 if (mask) 330 if (mask)
336 {
337 ns->facecache = 1; 331 ns->facecache = 1;
338 }
339} 332}
340 333
341/** 334/**
342 * Client has requested pixmap that it somehow missed getting. 335 * Client has requested pixmap that it somehow missed getting.
343 * This will be called often if the client is 336 * This will be called often if the client is
344 * caching images. 337 * caching images.
345 */ 338 */
346 339
347void 340void
348SendFaceCmd (char *buff, int len, NewSocket * ns) 341SendFaceCmd (char *buff, int len, client_socket * ns)
349{ 342{
350 long tmpnum = atoi (buff); 343 long tmpnum = atoi (buff);
351 short facenum = tmpnum & 0xffff; 344 short facenum = tmpnum & 0xffff;
352 345
353 if (facenum != 0) 346 if (facenum != 0)
362 * face (and askface is the only place that should be setting it). Otherwise, 355 * face (and askface is the only place that should be setting it). Otherwise,
363 * we look at the facecache, and if set, send the image name. 356 * we look at the facecache, and if set, send the image name.
364 */ 357 */
365 358
366void 359void
367esrv_send_face (NewSocket *ns, short face_num, int nocache) 360esrv_send_face (client_socket *ns, short face_num, int nocache)
368{ 361{
369 char fallback; 362 char fallback;
370 363
371 if (face_num <= 0 || face_num >= nrofpixmaps) 364 if (face_num <= 0 || face_num >= nrofpixmaps)
372 { 365 {
373 LOG (llevError, "esrv_send_face (%d) out of bounds??\n", face_num); 366 LOG (llevError, "esrv_send_face (%d) out of bounds??\n", face_num);
374 return; 367 return;
375 } 368 }
376 369
377 SockList sl (MAXSOCKBUF); 370 packet sl;
378 fallback = get_face_fallback (ns->faceset, face_num); 371 fallback = get_face_fallback (ns->faceset, face_num);
379 372
380 if (facesets[fallback].faces[face_num].data == NULL) 373 if (facesets[fallback].faces[face_num].data == NULL)
381 { 374 {
382 LOG (llevError, "esrv_send_face: faces[%d].data == NULL\n", face_num); 375 LOG (llevError, "esrv_send_face: faces[%d].data == NULL\n", face_num);
392 sl << uint8 (fallback); 385 sl << uint8 (fallback);
393 386
394 sl << uint32 (facesets[fallback].faces[face_num].checksum) 387 sl << uint32 (facesets[fallback].faces[face_num].checksum)
395 << new_faces[face_num].name; 388 << new_faces[face_num].name;
396 389
397 Send_With_Handling (ns, &sl); 390 ns->send_packet (sl);
398 } 391 }
399 else 392 else
400 { 393 {
401 sl << (ns->image2 ? "image2 " : "image ") 394 sl << (ns->image2 ? "image2 " : "image ")
402 << uint32 (face_num); 395 << uint32 (face_num);
405 sl << uint8 (fallback); 398 sl << uint8 (fallback);
406 399
407 sl << uint32 (facesets[fallback].faces[face_num].datalen) 400 sl << uint32 (facesets[fallback].faces[face_num].datalen)
408 << data (facesets[fallback].faces[face_num].data, facesets[fallback].faces[face_num].datalen); 401 << data (facesets[fallback].faces[face_num].data, facesets[fallback].faces[face_num].datalen);
409 402
410 Send_With_Handling (ns, &sl); 403 ns->send_packet (sl);
411 } 404 }
412 405
413 ns->faces_sent[face_num] |= NS_FACESENT_FACE; 406 ns->faces_sent[face_num] |= NS_FACESENT_FACE;
414 sl.free ();
415} 407}
416 408
417/** 409/**
418 * Sends the number of images, checksum of the face file, 410 * Sends the number of images, checksum of the face file,
419 * and the image_info file information. See the doc/Developers/protocol 411 * and the image_info file information. See the doc/Developers/protocol
420 * if you want further detail. 412 * if you want further detail.
421 */ 413 */
422 414
423void 415void
424send_image_info (NewSocket * ns, char *params) 416send_image_info (client_socket * ns, char *params)
425{ 417{
426 SockList sl (MAXSOCKBUF); 418 packet sl;
427 419
428 sl.printf ("replyinfo image_info\n%d\n%d\n", nrofpixmaps - 1, bmaps_checksum); 420 sl.printf ("replyinfo image_info\n%d\n%d\n", nrofpixmaps - 1, bmaps_checksum);
429 421
430 for (int i = 0; i < MAX_FACE_SETS; i++) 422 for (int i = 0; i < MAX_FACE_SETS; i++)
431 if (facesets[i].prefix) 423 if (facesets[i].prefix)
432 sl.printf ("%d:%s:%s:%d:%s:%s:%s", 424 sl.printf ("%d:%s:%s:%d:%s:%s:%s",
433 i, facesets[i].prefix, facesets[i].fullname, facesets[i].fallback, 425 i, facesets[i].prefix, facesets[i].fullname, facesets[i].fallback,
434 facesets[i].size, facesets[i].extension, facesets[i].comment); 426 facesets[i].size, facesets[i].extension, facesets[i].comment);
435 427
436 Send_With_Handling (ns, &sl); 428 ns->send_packet (sl);
437 sl.free ();
438} 429}
439 430
440/** 431/**
441 * Sends requested face information. 432 * Sends requested face information.
442 * \param ns socket to send to 433 * \param ns socket to send to
445 * For each image in [start..stop] sends 436 * For each image in [start..stop] sends
446 * - checksum 437 * - checksum
447 * - name 438 * - name
448 */ 439 */
449void 440void
450send_image_sums (NewSocket * ns, char *params) 441send_image_sums (client_socket * ns, char *params)
451{ 442{
452 int start, stop; 443 int start, stop;
453 char *cp, buf[MAX_BUF]; 444 char *cp, buf[MAX_BUF];
454 445
455 SockList sl (MAXSOCKBUF); 446 packet sl;
456 447
457 start = atoi (params); 448 start = atoi (params);
458 for (cp = params; *cp != '\0'; cp++) 449 for (cp = params; *cp != '\0'; cp++)
459 if (*cp == ' ') 450 if (*cp == ' ')
460 break; 451 break;
461 452
462 stop = atoi (cp); 453 stop = atoi (cp);
463 if (stop < start || *cp == '\0' || (stop - start) > 1000 || stop >= nrofpixmaps) 454 if (stop < start || *cp == '\0' || (stop - start) > 1000 || stop >= nrofpixmaps)
464 { 455 {
465 sprintf (buf, "replyinfo image_sums %d %d", start, stop); 456 sl.printf ("replyinfo image_sums %d %d", start, stop);
466 cs_write_string (ns, buf, strlen (buf)); 457 ns->send_packet (sl);
458 sl.reset ();
467 return; 459 return;
468 } 460 }
469 461
470 sl.printf ("replyinfo image_sums %d %d ", start, stop); 462 sl.printf ("replyinfo image_sums %d %d ", start, stop);
471 463
484 /* It would make more sense to catch this pre-emptively in the code above. 476 /* It would make more sense to catch this pre-emptively in the code above.
485 * however, if this really happens, we probably just want to cut down the 477 * however, if this really happens, we probably just want to cut down the
486 * size to less than 1000, since that is what we claim the protocol would 478 * size to less than 1000, since that is what we claim the protocol would
487 * support. 479 * support.
488 */ 480 */
489 if (sl.len >= MAXSOCKBUF) 481 if (sl.length () >= MAXSOCKBUF)
490 { 482 {
491 LOG (llevError, "send_image_send: buffer overrun, %d > %d\n", sl.len, MAXSOCKBUF); 483 LOG (llevError, "send_image_send: buffer overrun, %d > %d\n", sl.length (), MAXSOCKBUF);
492 abort (); 484 abort ();
493 } 485 }
494 486
495 Send_With_Handling (ns, &sl); 487 ns->send_packet (sl);
496 sl.free ();
497} 488}
498 489

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines