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

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

revision 10 by matty, Tue Aug 15 10:23:24 2000 UTC revision 30 by matty, Fri Sep 14 13:51:38 2001 UTC
# Line 1  Line 1 
1  /*  /*
2     rdesktop: A Remote Desktop Protocol client.     rdesktop: A Remote Desktop Protocol client.
3     Cache routines     Cache routines
4     Copyright (C) Matthew Chapman 1999-2000     Copyright (C) Matthew Chapman 1999-2001
5        
6     This program is free software; you can redistribute it and/or modify     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by     it under the terms of the GNU General Public License as published by
# Line 27  Line 27 
27  static HBITMAP bmpcache[3][600];  static HBITMAP bmpcache[3][600];
28    
29  /* Retrieve a bitmap from the cache */  /* Retrieve a bitmap from the cache */
30  HBITMAP cache_get_bitmap(uint8 cache_id, uint16 cache_idx)  HBITMAP
31    cache_get_bitmap(uint8 cache_id, uint16 cache_idx)
32  {  {
33          HBITMAP bitmap;          HBITMAP bitmap;
34    
35          if ((cache_id < NUM_ELEMENTS(bmpcache))          if ((cache_id < NUM_ELEMENTS(bmpcache))
36                          && (cache_idx < NUM_ELEMENTS(bmpcache[0])))              && (cache_idx < NUM_ELEMENTS(bmpcache[0])))
37          {          {
38                  bitmap = bmpcache[cache_id][cache_idx];                  bitmap = bmpcache[cache_id][cache_idx];
39                  if (bitmap != NULL)                  if (bitmap != NULL)
40                          return bitmap;                          return bitmap;
41          }          }
42    
43          ERROR("get bitmap %d:%d\n", cache_id, cache_idx);          error("get bitmap %d:%d\n", cache_id, cache_idx);
44          return NULL;          return NULL;
45  }  }
46    
47  /* Store a bitmap in the cache */  /* Store a bitmap in the cache */
48  void cache_put_bitmap(uint8 cache_id, uint16 cache_idx, HBITMAP bitmap)  void
49    cache_put_bitmap(uint8 cache_id, uint16 cache_idx, HBITMAP bitmap)
50  {  {
51          HBITMAP old;          HBITMAP old;
52    
53          if ((cache_id < NUM_ELEMENTS(bmpcache))          if ((cache_id < NUM_ELEMENTS(bmpcache))
54                          && (cache_idx < NUM_ELEMENTS(bmpcache[0])))              && (cache_idx < NUM_ELEMENTS(bmpcache[0])))
55          {          {
56                  old = bmpcache[cache_id][cache_idx];                  old = bmpcache[cache_id][cache_idx];
57                  if (old != NULL)                  if (old != NULL)
# Line 59  void cache_put_bitmap(uint8 cache_id, ui Line 61  void cache_put_bitmap(uint8 cache_id, ui
61          }          }
62          else          else
63          {          {
64                  ERROR("put bitmap %d:%d\n", cache_id, cache_idx);                  error("put bitmap %d:%d\n", cache_id, cache_idx);
65          }          }
66  }  }
67    
# Line 68  void cache_put_bitmap(uint8 cache_id, ui Line 70  void cache_put_bitmap(uint8 cache_id, ui
70  static FONTGLYPH fontcache[12][256];  static FONTGLYPH fontcache[12][256];
71    
72  /* Retrieve a glyph from the font cache */  /* Retrieve a glyph from the font cache */
73  FONTGLYPH *cache_get_font(uint8 font, uint16 character)  FONTGLYPH *
74    cache_get_font(uint8 font, uint16 character)
75  {  {
76          FONTGLYPH *glyph;          FONTGLYPH *glyph;
77    
78          if ((font < NUM_ELEMENTS(fontcache))          if ((font < NUM_ELEMENTS(fontcache))
79                          && (character < NUM_ELEMENTS(fontcache[0])))              && (character < NUM_ELEMENTS(fontcache[0])))
80          {          {
81                  glyph = &fontcache[font][character];                  glyph = &fontcache[font][character];
82                  if (glyph->pixmap != NULL)                  if (glyph->pixmap != NULL)
83                          return glyph;                          return glyph;
84          }          }
85    
86          ERROR("get font %d:%d\n", font, character);          error("get font %d:%d\n", font, character);
87          return NULL;          return NULL;
88  }  }
89    
90  /* Store a glyph in the font cache */  /* Store a glyph in the font cache */
91  void cache_put_font(uint8 font, uint32 character, uint16 baseline,  void
92                      uint16 width, uint16 height, HGLYPH pixmap)  cache_put_font(uint8 font, uint16 character, uint16 offset,
93                   uint16 baseline, uint16 width, uint16 height, HGLYPH pixmap)
94  {  {
95          FONTGLYPH *glyph;          FONTGLYPH *glyph;
96    
97          if ((font < NUM_ELEMENTS(fontcache))          if ((font < NUM_ELEMENTS(fontcache))
98                          && (character < NUM_ELEMENTS(fontcache[0])))              && (character < NUM_ELEMENTS(fontcache[0])))
99          {          {
100                  glyph = &fontcache[font][character];                  glyph = &fontcache[font][character];
101                  if (glyph->pixmap != NULL)                  if (glyph->pixmap != NULL)
102                          ui_destroy_glyph(glyph->pixmap);                          ui_destroy_glyph(glyph->pixmap);
103    
104                    glyph->offset = offset;
105                  glyph->baseline = baseline;                  glyph->baseline = baseline;
106                  glyph->width = width;                  glyph->width = width;
107                  glyph->height = height;                  glyph->height = height;
# Line 104  void cache_put_font(uint8 font, uint32 c Line 109  void cache_put_font(uint8 font, uint32 c
109          }          }
110          else          else
111          {          {
112                  ERROR("put font %d:%d\n", font, character);                  error("put font %d:%d\n", font, character);
113          }          }
114  }  }
115    
# Line 113  void cache_put_font(uint8 font, uint32 c Line 118  void cache_put_font(uint8 font, uint32 c
118  static DATABLOB textcache[256];  static DATABLOB textcache[256];
119    
120  /* Retrieve a text item from the cache */  /* Retrieve a text item from the cache */
121  DATABLOB *cache_get_text(uint8 cache_id)  DATABLOB *
122    cache_get_text(uint8 cache_id)
123  {  {
124          DATABLOB *text;          DATABLOB *text;
125    
# Line 124  DATABLOB *cache_get_text(uint8 cache_id) Line 130  DATABLOB *cache_get_text(uint8 cache_id)
130                          return text;                          return text;
131          }          }
132    
133          ERROR("get text %d\n", cache_id);          error("get text %d\n", cache_id);
134          return NULL;          return NULL;
135  }  }
136    
137  /* Store a text item in the cache */  /* Store a text item in the cache */
138  void cache_put_text(uint8 cache_id, void *data, int length)  void
139    cache_put_text(uint8 cache_id, void *data, int length)
140  {  {
141          DATABLOB *text;          DATABLOB *text;
142    
# Line 145  void cache_put_text(uint8 cache_id, void Line 152  void cache_put_text(uint8 cache_id, void
152          }          }
153          else          else
154          {          {
155                  ERROR("put text %d\n", cache_id);                  error("put text %d\n", cache_id);
156          }          }
157  }  }
158    
159    
160  /* DESKTOP CACHE */  /* DESKTOP CACHE */
161  static uint8 deskcache[0x38400];  static uint8 deskcache[0x38400 * 4];
162    
163  /* Retrieve desktop data from the cache */  /* Retrieve desktop data from the cache */
164  uint8 *cache_get_desktop(uint32 offset, uint32 length)  uint8 *
165    cache_get_desktop(uint32 offset, int cx, int cy, int bytes_per_pixel)
166  {  {
167            int length = cx * cy * bytes_per_pixel;
168    
169          if ((offset + length) <= sizeof(deskcache))          if ((offset + length) <= sizeof(deskcache))
170          {          {
171                  return &deskcache[offset];                  return &deskcache[offset];
172          }          }
173    
174          ERROR("get desktop %d:%d\n", offset, length);          error("get desktop %d:%d\n", offset, length);
175          return NULL;          return NULL;
176  }  }
177    
178  /* Store desktop data in the cache */  /* Store desktop data in the cache */
179  void cache_put_desktop(uint32 offset, uint32 length, uint8 *data)  void
180    cache_put_desktop(uint32 offset, int cx, int cy, int scanline,
181                      int bytes_per_pixel, uint8 *data)
182  {  {
183            int length = cx * cy * bytes_per_pixel;
184    
185          if ((offset + length) <= sizeof(deskcache))          if ((offset + length) <= sizeof(deskcache))
186          {          {
187                  memcpy(&deskcache[offset], data, length);                  cx *= bytes_per_pixel;
188                    while (cy--)
189                    {
190                            memcpy(&deskcache[offset], data, cx);
191                            data += scanline;
192                            offset += cx;
193                    }
194          }          }
195          else          else
196          {          {
197                  ERROR("put desktop %d:%d\n", offset, length);                  error("put desktop %d:%d\n", offset, length);
198          }          }
199  }  }
200    
201    
202    /* CURSOR CACHE */
203    static HCURSOR cursorcache[0x20];
204    
205    /* Retrieve cursor from cache */
206    HCURSOR cache_get_cursor(uint16 cache_idx)
207    {
208            HCURSOR cursor;
209    
210            if (cache_idx < NUM_ELEMENTS(cursorcache))
211            {
212                    cursor = cursorcache[cache_idx];
213                    if (cursor != NULL)
214                            return cursor;
215            }
216    
217            error("get cursor %d\n", cache_idx);
218            return NULL;
219    }
220    
221    /* Store cursor in cache */
222    void
223    cache_put_cursor(uint16 cache_idx, HCURSOR cursor)
224    {
225            HCURSOR old;
226    
227            if (cache_idx < NUM_ELEMENTS(cursorcache))
228            {
229                    old = cursorcache[cache_idx];
230                    if (old != NULL)
231                            ui_destroy_cursor(old);
232    
233                    cursorcache[cache_idx] = cursor;
234            }
235            else
236            {
237                    error("put cursor %d\n", cache_idx);
238            }
239    }

Legend:
Removed from v.10  
changed lines
  Added in v.30

  ViewVC Help
Powered by ViewVC 1.1.26