/[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 20 by matty, Mon Oct 16 07:37:52 2000 UTC revision 28 by matty, Wed Jun 20 13:54:48 2001 UTC
# 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)
# Line 44  HBITMAP cache_get_bitmap(uint8 cache_id, Line 45  HBITMAP cache_get_bitmap(uint8 cache_id,
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 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)
# Line 85  FONTGLYPH *cache_get_font(uint8 font, ui Line 88  FONTGLYPH *cache_get_font(uint8 font, ui
88  }  }
89    
90  /* Store a glyph in the font cache */  /* Store a glyph in the font cache */
91  void cache_put_font(uint8 font, uint16 character, uint16 offset,  void
92                  uint16 baseline, 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)
# Line 114  void cache_put_font(uint8 font, uint16 c Line 118  void cache_put_font(uint8 font, uint16 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 130  DATABLOB *cache_get_text(uint8 cache_id) Line 135  DATABLOB *cache_get_text(uint8 cache_id)
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 152  void cache_put_text(uint8 cache_id, void Line 158  void cache_put_text(uint8 cache_id, void
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, int cx, int cy)  uint8 *
165    cache_get_desktop(uint32 offset, int cx, int cy, int bytes_per_pixel)
166  {  {
167          int length = cx * cy;          int length = cx * cy * bytes_per_pixel;
168    
169          if ((offset + length) <= sizeof(deskcache))          if ((offset + length) <= sizeof(deskcache))
170          {          {
# Line 169  uint8 *cache_get_desktop(uint32 offset, Line 176  uint8 *cache_get_desktop(uint32 offset,
176  }  }
177    
178  /* Store desktop data in the cache */  /* Store desktop data in the cache */
179  void cache_put_desktop(uint32 offset, int cx, int cy, int scanline, 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;          int length = cx * cy * bytes_per_pixel;
184    
185          if ((offset + length) <= sizeof(deskcache))          if ((offset + length) <= sizeof(deskcache))
186          {          {
187                    cx *= bytes_per_pixel;
188                  while (cy--)                  while (cy--)
189                  {                  {
190                          memcpy(&deskcache[offset], data, cx);                          memcpy(&deskcache[offset], data, cx);
# Line 188  void cache_put_desktop(uint32 offset, in Line 198  void cache_put_desktop(uint32 offset, in
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.20  
changed lines
  Added in v.28

  ViewVC Help
Powered by ViewVC 1.1.26