/[rdesktop]/sourceforge.net/trunk/rdesktop/bitmap.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/bitmap.c

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

revision 7 by matty, Fri Jul 7 09:40:03 2000 UTC revision 19 by matty, Sun Oct 8 01:59:25 2000 UTC
# Line 18  Line 18 
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19  */  */
20    
21  #include "includes.h"  #include "rdesktop.h"
22    
23  #define CVAL(p)   (*(p++))  #define CVAL(p)   (*(p++))
24  #define SVAL(p)   ((*((p++) + 1) << 8) | CVAL(p))  #define SVAL(p)   ((*((p++) + 1) << 8) | CVAL(p))
25    
26  #define REPEAT(statement) { while ((count > 0) && (x < width)) { statement; count--; x++; } }  #define REPEAT(statement) { while ((count > 0) && (x < width)) { statement; count--; x++; } }
27  #define MASK_UPDATE() { maskpix <<= 1; if (maskpix == 0) { mask = CVAL(input); maskpix = 1; } }  #define MASK_UPDATE() { mixmask <<= 1; if (mixmask == 0) { mask = CVAL(input); mixmask = 1; } }
28    
29  BOOL bitmap_decompress(unsigned char *output, int width, int height,  BOOL bitmap_decompress(unsigned char *output, int width, int height,
30                         unsigned char *input, int size)                         unsigned char *input, int size)
31  {  {
32          unsigned char *end = input + size;          unsigned char *end = input + size;
33          unsigned char *prevline, *line = NULL;          unsigned char *prevline = NULL, *line = NULL;
34          int opcode, count, offset, isfillormix, x = width;          int opcode, count, offset, isfillormix, x = width;
35          uint8 code, mask, maskpix, color1, color2;          int lastopcode = -1, insertmix = False, bicolour = False;
36          uint8 mix = 0xff;          uint8 code, colour1 = 0, colour2 = 0;
37            uint8 mixmask, mask = 0, mix = 0xff;
38    
         dump_data(input, end-input);  
39          while (input < end)          while (input < end)
40          {          {
                 fprintf(stderr, "Offset %d from end\n", end-input);  
41                  code = CVAL(input);                  code = CVAL(input);
42                  opcode = code >> 4;                  opcode = code >> 4;
43    
# Line 85  BOOL bitmap_decompress(unsigned char *ou Line 84  BOOL bitmap_decompress(unsigned char *ou
84                  }                  }
85    
86                  /* Read preliminary data */                  /* Read preliminary data */
87                  maskpix = 0;                  mixmask = 0;
88                  switch (opcode)                  switch (opcode)
89                  {                  {
90                          case 3: /* Color */                          case 0: /* Fill */
91                                  color1 = CVAL(input);                                  if ((lastopcode == opcode)
92                          case 8: /* Bicolor */                                      && !((x == width) && (prevline == NULL)))
93                                  color2 = CVAL(input);                                          insertmix = True;
94                                    break;
95                            case 8: /* Bicolour */
96                                    colour1 = CVAL(input);
97                            case 3: /* Colour */
98                                    colour2 = CVAL(input);
99                                  break;                                  break;
100                          case 6: /* SetMix/Mix */                          case 6: /* SetMix/Mix */
101                          case 7: /* SetMix/FillOrMix */                          case 7: /* SetMix/FillOrMix */
# Line 99  BOOL bitmap_decompress(unsigned char *ou Line 103  BOOL bitmap_decompress(unsigned char *ou
103                                  opcode -= 5;                                  opcode -= 5;
104                                  break;                                  break;
105                  }                  }
106                    lastopcode = opcode;
107    
108                  /* Output body */                  /* Output body */
109                  while (count > 0)                  while (count > 0)
# Line 106  BOOL bitmap_decompress(unsigned char *ou Line 111  BOOL bitmap_decompress(unsigned char *ou
111                          if (x >= width)                          if (x >= width)
112                          {                          {
113                                  if (height <= 0)                                  if (height <= 0)
114                                          return True;                                          return False;
115    
116                                  x = 0;                                  x = 0;
117                                  height--;                                  height--;
# Line 118  BOOL bitmap_decompress(unsigned char *ou Line 123  BOOL bitmap_decompress(unsigned char *ou
123                          switch (opcode)                          switch (opcode)
124                          {                          {
125                                  case 0: /* Fill */                                  case 0: /* Fill */
126                                          fprintf(stderr, "Fill %d\n", count);                                          if (insertmix)
127                                            {
128                                                    if (prevline == NULL)
129                                                            line[x] = mix;
130                                                    else
131                                                            line[x] = prevline[x] ^ mix;
132    
133                                                    insertmix = False;
134                                                    count--;
135                                                    x++;
136                                            }
137    
138                                          if (prevline == NULL)                                          if (prevline == NULL)
139                                                  REPEAT(line[x] = 0)                                                  REPEAT(line[x] = 0)
140                                          else                                          else
# Line 126  BOOL bitmap_decompress(unsigned char *ou Line 142  BOOL bitmap_decompress(unsigned char *ou
142                                          break;                                          break;
143    
144                                  case 1: /* Mix */                                  case 1: /* Mix */
                                         fprintf(stderr, "Mix %d\n", count);  
145                                          if (prevline == NULL)                                          if (prevline == NULL)
146                                                  REPEAT(line[x] = mix)                                                  REPEAT(line[x] = mix)
147                                          else                                          else
148                                                  REPEAT(line[x] = prevline[x] ^ mix)                                                  REPEAT(line[x] = prevline[x] ^ mix)
149                                          break;                                          break;
150    
 #if 0  
151                                  case 2: /* Fill or Mix */                                  case 2: /* Fill or Mix */
                                         REPEAT(line[x] = 0);  
                                         break;  
152                                          if (prevline == NULL)                                          if (prevline == NULL)
153                                              REPEAT(                                              REPEAT(
154                                                     MASK_UPDATE();                                                     MASK_UPDATE();
155    
156                                                     if (mask & maskpix)                                                     if (mask & mixmask)
157                                                          line[x] = mix;                                                          line[x] = mix;
158                                                     else                                                     else
159                                                          line[x] = 0;                                                          line[x] = 0;
# Line 150  BOOL bitmap_decompress(unsigned char *ou Line 162  BOOL bitmap_decompress(unsigned char *ou
162                                              REPEAT(                                              REPEAT(
163                                                     MASK_UPDATE();                                                     MASK_UPDATE();
164    
165                                                     if (mask & maskpix)                                                     if (mask & mixmask)
166                                                          line[x] = prevline[x] ^ mix;                                                          line[x] = prevline[x] ^ mix;
167                                                     else                                                     else
168                                                          line[x] = prevline[x];                                                          line[x] = prevline[x];
169                                              )                                              )
170                                          break;                                          break;
 #endif  
171    
172                                  case 3: /* Colour */                                  case 3: /* Colour */
173                                          fprintf(stderr, "Colour %d\n", count);                                          REPEAT(line[x] = colour2)
                                         REPEAT(line[x] = color2)  
174                                          break;                                          break;
175    
176                                  case 4: /* Copy */                                  case 4: /* Copy */
                                         fprintf(stderr, "Copy %d\n", count);  
177                                          REPEAT(line[x] = CVAL(input))                                          REPEAT(line[x] = CVAL(input))
178                                          break;                                          break;
179    
180  #if 0                                  case 8: /* Bicolour */
181                                  case 8: /* Bicolor */                                          REPEAT(
182                                          REPEAT(line[x] = color1; line[++x] = color2)                                                  if (bicolour)
183                                                    {
184                                                            line[x] = colour2;
185                                                            bicolour = False;
186                                                    }
187                                                    else
188                                                    {
189                                                            line[x] = colour1;
190                                                            bicolour = True;
191                                                            count++;
192                                                    }
193                                            )
194                                          break;                                          break;
195    
196                                  case 13: /* White */                                  case 13: /* White */
# Line 180  BOOL bitmap_decompress(unsigned char *ou Line 200  BOOL bitmap_decompress(unsigned char *ou
200                                  case 14: /* Black */                                  case 14: /* Black */
201                                          REPEAT(line[x] = 0x00)                                          REPEAT(line[x] = 0x00)
202                                          break;                                          break;
 #endif  
203    
204                                  default:                                  default:
205                                          fprintf(stderr, "Unknown bitmap opcode 0x%x\n", opcode);                                          NOTIMP("bitmap opcode 0x%x\n", opcode);
206                                          return False;                                          return False;
207                          }                          }
208                  }                  }

Legend:
Removed from v.7  
changed lines
  Added in v.19

  ViewVC Help
Powered by ViewVC 1.1.26