/[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 9 by matty, Tue Jul 25 12:34:29 2000 UTC revision 28 by matty, Wed Jun 20 13:54:48 2001 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  HBITMAP cache_get_bitmap(HCONN conn, uint8 cache_id, uint16 cache_idx)  #define NUM_ELEMENTS(array) (sizeof(array) / sizeof(array[0]))
24    
25    
26    /* BITMAP CACHE */
27    static HBITMAP bmpcache[3][600];
28    
29    /* Retrieve a bitmap from the cache */
30    HBITMAP
31    cache_get_bitmap(uint8 cache_id, uint16 cache_idx)
32  {  {
33          HBITMAP bitmap;          HBITMAP bitmap;
34    
35          if ((cache_id < NUM_ELEMENTS(conn->bmpcache))          if ((cache_id < NUM_ELEMENTS(bmpcache))
36                          && (cache_idx < NUM_ELEMENTS(conn->bmpcache[0])))              && (cache_idx < NUM_ELEMENTS(bmpcache[0])))
37          {          {
38                  bitmap = conn->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("Bitmap %d:%d not found\n", cache_id, cache_idx);          ERROR("get bitmap %d:%d\n", cache_id, cache_idx);
44          return NULL;          return NULL;
45  }  }
46    
47  void cache_put_bitmap(HCONN conn, uint8 cache_id, uint16 cache_idx, HBITMAP bitmap)  /* Store a bitmap in the cache */
48    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(conn->bmpcache))          if ((cache_id < NUM_ELEMENTS(bmpcache))
54                          && (cache_idx < NUM_ELEMENTS(conn->bmpcache[0])))              && (cache_idx < NUM_ELEMENTS(bmpcache[0])))
55          {          {
56                  old = conn->bmpcache[cache_id][cache_idx];                  old = bmpcache[cache_id][cache_idx];
57                  if (old != NULL)                  if (old != NULL)
58                          ui_destroy_bitmap(conn->wnd, old);                          ui_destroy_bitmap(old);
59    
60                  conn->bmpcache[cache_id][cache_idx] = bitmap;                  bmpcache[cache_id][cache_idx] = bitmap;
61          }          }
62          else          else
63          {          {
64                  ERROR("Bitmap %d:%d past end of cache\n", cache_id, cache_idx);                  ERROR("put bitmap %d:%d\n", cache_id, cache_idx);
65          }          }
66  }  }
67    
68  FONT_GLYPH *cache_get_font(HCONN conn, uint8 font, uint16 character)  
69    /* FONT CACHE */
70    static FONTGLYPH fontcache[12][256];
71    
72    /* Retrieve a glyph from the font cache */
73    FONTGLYPH *
74    cache_get_font(uint8 font, uint16 character)
75  {  {
76          FONT_GLYPH *glyph;          FONTGLYPH *glyph;
77    
78          if ((font < NUM_ELEMENTS(conn->fontcache))          if ((font < NUM_ELEMENTS(fontcache))
79                          && (character < NUM_ELEMENTS(conn->fontcache[0])))              && (character < NUM_ELEMENTS(fontcache[0])))
80          {          {
81                  glyph = &conn->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("Font %d character %d not found\n", font, character);          ERROR("get font %d:%d\n", font, character);
87          return NULL;          return NULL;
88  }  }
89    
90  void cache_put_font(HCONN conn, uint8 font, uint32 character, uint16 baseline,  /* Store a glyph in the font cache */
91                      uint16 width, uint16 height, HGLYPH pixmap)  void
92    cache_put_font(uint8 font, uint16 character, uint16 offset,
93                   uint16 baseline, uint16 width, uint16 height, HGLYPH pixmap)
94  {  {
95          FONT_GLYPH *glyph;          FONTGLYPH *glyph;
96    
97          if ((font < NUM_ELEMENTS(conn->fontcache))          if ((font < NUM_ELEMENTS(fontcache))
98                          && (character < NUM_ELEMENTS(conn->fontcache[0])))              && (character < NUM_ELEMENTS(fontcache[0])))
99          {          {
100                  glyph = &conn->fontcache[font][character];                  glyph = &fontcache[font][character];
101                  if (glyph->pixmap != NULL)                  if (glyph->pixmap != NULL)
102                          ui_destroy_glyph(conn->wnd, 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 90  void cache_put_font(HCONN conn, uint8 fo Line 109  void cache_put_font(HCONN conn, uint8 fo
109          }          }
110          else          else
111          {          {
112                  ERROR("Font %d character %d past end of cache\n",                  ERROR("put font %d:%d\n", font, character);
                       font, character);  
113          }          }
114  }  }
115    
116  BLOB *cache_get_text(HCONN conn, uint8 cache_id)  
117    /* TEXT CACHE */
118    static DATABLOB textcache[256];
119    
120    /* Retrieve a text item from the cache */
121    DATABLOB *
122    cache_get_text(uint8 cache_id)
123  {  {
124          BLOB *text;          DATABLOB *text;
125    
126          if (cache_id < NUM_ELEMENTS(conn->textcache))          if (cache_id < NUM_ELEMENTS(textcache))
127          {          {
128                  text = &conn->textcache[cache_id];                  text = &textcache[cache_id];
129                  if (text->data != NULL)                  if (text->data != NULL)
130                          return text;                          return text;
131          }          }
132    
133          ERROR("Text cache id %d not found\n", cache_id);          ERROR("get text %d\n", cache_id);
134          return NULL;          return NULL;
135  }  }
136    
137  void cache_put_text(HCONN conn, uint8 cache_id, void *data, int length)  /* Store a text item in the cache */
138    void
139    cache_put_text(uint8 cache_id, void *data, int length)
140  {  {
141          BLOB *text;          DATABLOB *text;
142    
143          if (cache_id < NUM_ELEMENTS(conn->textcache))          if (cache_id < NUM_ELEMENTS(textcache))
144          {          {
145                  text = &conn->textcache[cache_id];                  text = &textcache[cache_id];
146                  if (text->data != NULL)                  if (text->data != NULL)
147                          free(text->data);                          xfree(text->data);
148    
149                  text->data = malloc(length);                  text->data = xmalloc(length);
150                  text->size = length;                  text->size = length;
151                  memcpy(text->data, data, length);                  memcpy(text->data, data, length);
152          }          }
153          else          else
154          {          {
155                  ERROR("Text cache id %d past end of cache\n", cache_id);                  ERROR("put text %d\n", cache_id);
156            }
157    }
158    
159    
160    /* DESKTOP CACHE */
161    static uint8 deskcache[0x38400 * 4];
162    
163    /* Retrieve desktop data from the cache */
164    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))
170            {
171                    return &deskcache[offset];
172            }
173    
174            ERROR("get desktop %d:%d\n", offset, length);
175            return NULL;
176    }
177    
178    /* Store desktop data in the cache */
179    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))
186            {
187                    cx *= bytes_per_pixel;
188                    while (cy--)
189                    {
190                            memcpy(&deskcache[offset], data, cx);
191                            data += scanline;
192                            offset += cx;
193                    }
194            }
195            else
196            {
197                    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.9  
changed lines
  Added in v.28

  ViewVC Help
Powered by ViewVC 1.1.26