/[rdesktop]/sourceforge.net/trunk/rdesktop/orders.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/orders.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 355 by forsberg, Fri Mar 28 09:09:17 2003 UTC revision 732 by jsorg71, Wed Jun 30 17:59:40 2004 UTC
# Line 21  Line 21 
21  #include "rdesktop.h"  #include "rdesktop.h"
22  #include "orders.h"  #include "orders.h"
23    
24  extern uint8 *next_packet;  extern uint8 *g_next_packet;
25  static RDP_ORDER_STATE order_state;  static RDP_ORDER_STATE g_order_state;
26  extern BOOL use_rdp5;  extern BOOL g_use_rdp5;
27    
28  /* Read field indicating which parameters are present */  /* Read field indicating which parameters are present */
29  static void  static void
# Line 55  rdp_in_present(STREAM s, uint32 * presen Line 55  rdp_in_present(STREAM s, uint32 * presen
55    
56  /* Read a co-ordinate (16-bit, or 8-bit delta) */  /* Read a co-ordinate (16-bit, or 8-bit delta) */
57  static void  static void
58  rdp_in_coord(STREAM s, uint16 * coord, BOOL delta)  rdp_in_coord(STREAM s, sint16 * coord, BOOL delta)
59  {  {
60          sint8 change;          sint8 change;
61    
# Line 269  process_line(STREAM s, LINE_ORDER * os, Line 269  process_line(STREAM s, LINE_ORDER * os,
269    
270          rdp_parse_pen(s, &os->pen, present >> 7);          rdp_parse_pen(s, &os->pen, present >> 7);
271    
272          DEBUG(("LINE(op=0x%x,sx=%d,sy=%d,dx=%d,dx=%d,fg=0x%x)\n",          DEBUG(("LINE(op=0x%x,sx=%d,sy=%d,dx=%d,dy=%d,fg=0x%x)\n",
273                 os->opcode, os->startx, os->starty, os->endx, os->endy, os->pen.colour));                 os->opcode, os->startx, os->starty, os->endx, os->endy, os->pen.colour));
274    
275          if (os->opcode < 0x01 || os->opcode > 0x10)          if (os->opcode < 0x01 || os->opcode > 0x10)
# Line 661  process_raw_bmpcache(STREAM s) Line 661  process_raw_bmpcache(STREAM s)
661          in_uint8p(s, data, bufsize);          in_uint8p(s, data, bufsize);
662    
663          DEBUG(("RAW_BMPCACHE(cx=%d,cy=%d,id=%d,idx=%d)\n", width, height, cache_id, cache_idx));          DEBUG(("RAW_BMPCACHE(cx=%d,cy=%d,id=%d,idx=%d)\n", width, height, cache_id, cache_idx));
664          inverted = xmalloc(width * height * Bpp);          inverted = (uint8 *) xmalloc(width * height * Bpp);
665          for (y = 0; y < height; y++)          for (y = 0; y < height; y++)
666          {          {
667                  memcpy(&inverted[(height - y - 1) * (width * Bpp)], &data[y * (width * Bpp)],                  memcpy(&inverted[(height - y - 1) * (width * Bpp)], &data[y * (width * Bpp)],
# Line 670  process_raw_bmpcache(STREAM s) Line 670  process_raw_bmpcache(STREAM s)
670    
671          bitmap = ui_create_bitmap(width, height, inverted);          bitmap = ui_create_bitmap(width, height, inverted);
672          xfree(inverted);          xfree(inverted);
673          cache_put_bitmap(cache_id, cache_idx, bitmap);          cache_put_bitmap(cache_id, cache_idx, bitmap, 0);
674  }  }
675    
676  /* Process a bitmap cache order */  /* Process a bitmap cache order */
# Line 684  process_bmpcache(STREAM s) Line 684  process_bmpcache(STREAM s)
684          uint16 bufsize, pad2, row_size, final_size;          uint16 bufsize, pad2, row_size, final_size;
685          uint8 pad1;          uint8 pad1;
686    
687            pad2 = row_size = final_size = 0xffff;  /* Shut the compiler up */
688    
689          in_uint8(s, cache_id);          in_uint8(s, cache_id);
690          in_uint8(s, pad1);      /* pad */          in_uint8(s, pad1);      /* pad */
691          in_uint8(s, width);          in_uint8(s, width);
# Line 693  process_bmpcache(STREAM s) Line 695  process_bmpcache(STREAM s)
695          in_uint16_le(s, bufsize);       /* bufsize */          in_uint16_le(s, bufsize);       /* bufsize */
696          in_uint16_le(s, cache_idx);          in_uint16_le(s, cache_idx);
697    
698          if (!use_rdp5) {          if (g_use_rdp5)
699            {
700                    size = bufsize;
701            }
702            else
703            {
704    
705                  /* Begin compressedBitmapData */                  /* Begin compressedBitmapData */
706                  in_uint16_le(s, pad2);  /* pad */                  in_uint16_le(s, pad2);  /* pad */
707                  in_uint16_le(s, size);                  in_uint16_le(s, size);
708                  //      in_uint8s(s, 4);        /* row_size, final_size */                  /*      in_uint8s(s, 4);  *//* row_size, final_size */
709                  in_uint16_le(s, row_size);                  in_uint16_le(s, row_size);
710                  in_uint16_le(s, final_size);                  in_uint16_le(s, final_size);
711    
         } else {  
                 size = bufsize;  
712          }          }
713          in_uint8p(s, data, size);          in_uint8p(s, data, size);
714    
715          DEBUG(("BMPCACHE(cx=%d,cy=%d,id=%d,idx=%d,bpp=%d,size=%d,pad1=%d,bufsize=%d,pad2=%d,rs=%d,fs=%d)\n",          DEBUG(("BMPCACHE(cx=%d,cy=%d,id=%d,idx=%d,bpp=%d,size=%d,pad1=%d,bufsize=%d,pad2=%d,rs=%d,fs=%d)\n", width, height, cache_id, cache_idx, bpp, size, pad1, bufsize, pad2, row_size, final_size));
                width, height,  
                cache_id, cache_idx,  
                bpp, size, pad1, bufsize, pad2, row_size, final_size));  
716    
717          bmpdata = xmalloc(width * height * Bpp);          bmpdata = (uint8 *) xmalloc(width * height * Bpp);
718    
719          if (bitmap_decompress(bmpdata, width, height, data, size, Bpp))          if (bitmap_decompress(bmpdata, width, height, data, size, Bpp))
720          {          {
721                  bitmap = ui_create_bitmap(width, height, bmpdata);                  bitmap = ui_create_bitmap(width, height, bmpdata);
722                  cache_put_bitmap(cache_id, cache_idx, bitmap);                  cache_put_bitmap(cache_id, cache_idx, bitmap, 0);
723          }          }
724          else          else
725          {          {
# Line 727  process_bmpcache(STREAM s) Line 729  process_bmpcache(STREAM s)
729          xfree(bmpdata);          xfree(bmpdata);
730  }  }
731    
732    /* Process a bitmap cache v2 order */
733    static void
734    process_bmpcache2(STREAM s, uint16 flags, BOOL compressed)
735    {
736            HBITMAP bitmap;
737            int y;
738            uint8 cache_id, cache_idx_low, width, height, Bpp;
739            uint16 cache_idx, bufsize;
740            uint8 *data, *bmpdata, *bitmap_id;
741    
742            bitmap_id = NULL;       /* prevent compiler warning */
743            cache_id = flags & ID_MASK;
744            Bpp = ((flags & MODE_MASK) >> MODE_SHIFT) - 2;
745    
746            if (flags & PERSIST)
747            {
748                    in_uint8p(s, bitmap_id, 8);
749            }
750    
751            if (flags & SQUARE)
752            {
753                    in_uint8(s, width);
754                    height = width;
755            }
756            else
757            {
758                    in_uint8(s, width);
759                    in_uint8(s, height);
760            }
761    
762            in_uint16_be(s, bufsize);
763            bufsize &= BUFSIZE_MASK;
764            in_uint8(s, cache_idx);
765    
766            if (cache_idx & LONG_FORMAT)
767            {
768                    in_uint8(s, cache_idx_low);
769                    cache_idx = ((cache_idx ^ LONG_FORMAT) << 8) + cache_idx_low;
770            }
771    
772            in_uint8p(s, data, bufsize);
773    
774            DEBUG(("BMPCACHE2(compr=%d,flags=%x,cx=%d,cy=%d,id=%d,idx=%d,Bpp=%d,bs=%d)\n",
775                            compressed, flags, width, height, cache_id, cache_idx, Bpp, bufsize));
776    
777            bmpdata = (uint8 *) xmalloc(width * height * Bpp);
778    
779            if (compressed)
780            {
781                    if (!bitmap_decompress(bmpdata, width, height, data, bufsize, Bpp))
782                    {
783                            DEBUG(("Failed to decompress bitmap data\n"));
784                            xfree(bmpdata);
785                            return;
786                    }
787            }
788            else
789            {
790                    for (y = 0; y < height; y++)
791                            memcpy(&bmpdata[(height - y - 1) * (width * Bpp)],
792                                            &data[y * (width * Bpp)], width * Bpp);
793            }
794    
795            bitmap = ui_create_bitmap(width, height, bmpdata);
796    
797            if (bitmap)
798            {
799                    cache_put_bitmap(cache_id, cache_idx, bitmap, 0);
800                    if (flags & PERSIST)
801                            pstcache_put_bitmap(cache_id, cache_idx, bitmap_id, width, height,
802                                            width * height * Bpp, bmpdata);
803            }
804            else
805            {
806                    DEBUG(("process_bmpcache2: ui_create_bitmap failed\n"));
807            }
808    
809            xfree(bmpdata);
810    }
811    
812  /* Process a colourmap cache order */  /* Process a colourmap cache order */
813  static void  static void
814  process_colcache(STREAM s)  process_colcache(STREAM s)
# Line 740  process_colcache(STREAM s) Line 822  process_colcache(STREAM s)
822          in_uint8(s, cache_id);          in_uint8(s, cache_id);
823          in_uint16_le(s, map.ncolours);          in_uint16_le(s, map.ncolours);
824    
825          map.colours = xmalloc(3 * map.ncolours);          map.colours = (COLOURENTRY *) xmalloc(sizeof(COLOURENTRY) * map.ncolours);
826    
827          for (i = 0; i < map.ncolours; i++)          for (i = 0; i < map.ncolours; i++)
828          {          {
# Line 794  process_fontcache(STREAM s) Line 876  process_fontcache(STREAM s)
876  static void  static void
877  process_secondary_order(STREAM s)  process_secondary_order(STREAM s)
878  {  {
879            /* The length isn't calculated correctly by the server.
880             * For very compact orders the length becomes negative
881             * so a signed integer must be used. */
882          uint16 length;          uint16 length;
883            uint16 flags;
884          uint8 type;          uint8 type;
885          uint8 *next_order;          uint8 *next_order;
886    
887          in_uint16_le(s, length);          in_uint16_le(s, length);
888          in_uint8s(s, 2);        /* flags */          in_uint16_le(s, flags);         /* used by bmpcache2 */
889          in_uint8(s, type);          in_uint8(s, type);
890    
891          next_order = s->p + length + 7;          next_order = s->p + (sint16)length + 7;
892    
893          switch (type)          switch (type)
894          {          {
# Line 822  process_secondary_order(STREAM s) Line 908  process_secondary_order(STREAM s)
908                          process_fontcache(s);                          process_fontcache(s);
909                          break;                          break;
910    
911                    case RDP_ORDER_RAW_BMPCACHE2:
912                            process_bmpcache2(s, flags, False);     /* uncompressed */
913                            break;
914    
915                    case RDP_ORDER_BMPCACHE2:
916                            process_bmpcache2(s, flags, True);      /* compressed */
917                            break;
918    
919                  default:                  default:
920                          unimpl("secondary order %d\n", type);                          unimpl("secondary order %d\n", type);
921          }          }
# Line 833  process_secondary_order(STREAM s) Line 927  process_secondary_order(STREAM s)
927  void  void
928  process_orders(STREAM s, uint16 num_orders)  process_orders(STREAM s, uint16 num_orders)
929  {  {
930          RDP_ORDER_STATE *os = &order_state;          RDP_ORDER_STATE *os = &g_order_state;
931          uint32 present;          uint32 present;
932          uint8 order_flags;          uint8 order_flags;
933          int size, processed = 0;          int size, processed = 0;
# Line 946  process_orders(STREAM s, uint16 num_orde Line 1040  process_orders(STREAM s, uint16 num_orde
1040    
1041                  processed++;                  processed++;
1042          }          }
1043    #if 0
1044            /* not true when RDP_COMPRESSION is set */
1045            if (s->p != g_next_packet)
1046                    error("%d bytes remaining\n", (int) (g_next_packet - s->p));
1047    #endif
1048    
         if (s->p != next_packet)  
                 error("%d bytes remaining\n", (int) (next_packet - s->p));  
1049  }  }
1050    
1051  /* Reset order state */  /* Reset order state */
1052  void  void
1053  reset_order_state(void)  reset_order_state(void)
1054  {  {
1055          memset(&order_state, 0, sizeof(order_state));          memset(&g_order_state, 0, sizeof(g_order_state));
1056          order_state.order_type = RDP_ORDER_PATBLT;          g_order_state.order_type = RDP_ORDER_PATBLT;
1057  }  }

Legend:
Removed from v.355  
changed lines
  Added in v.732

  ViewVC Help
Powered by ViewVC 1.1.26