/[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 10 by matty, Tue Aug 15 10:23:24 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  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 cache_get_bitmap(uint8 cache_id, uint16 cache_idx)
31  {  {
32          HBITMAP bitmap;          HBITMAP bitmap;
33    
34          if ((cache_id < NUM_ELEMENTS(conn->bmpcache))          if ((cache_id < NUM_ELEMENTS(bmpcache))
35                          && (cache_idx < NUM_ELEMENTS(conn->bmpcache[0])))                          && (cache_idx < NUM_ELEMENTS(bmpcache[0])))
36          {          {
37                  bitmap = conn->bmpcache[cache_id][cache_idx];                  bitmap = bmpcache[cache_id][cache_idx];
38                  if (bitmap != NULL)                  if (bitmap != NULL)
39                          return bitmap;                          return bitmap;
40          }          }
41    
42          ERROR("Bitmap %d:%d not found\n", cache_id, cache_idx);          ERROR("get bitmap %d:%d\n", cache_id, cache_idx);
43          return NULL;          return NULL;
44  }  }
45    
46  void cache_put_bitmap(HCONN conn, uint8 cache_id, uint16 cache_idx, HBITMAP bitmap)  /* Store a bitmap in the cache */
47    void cache_put_bitmap(uint8 cache_id, uint16 cache_idx, HBITMAP bitmap)
48  {  {
49          HBITMAP old;          HBITMAP old;
50    
51          if ((cache_id < NUM_ELEMENTS(conn->bmpcache))          if ((cache_id < NUM_ELEMENTS(bmpcache))
52                          && (cache_idx < NUM_ELEMENTS(conn->bmpcache[0])))                          && (cache_idx < NUM_ELEMENTS(bmpcache[0])))
53          {          {
54                  old = conn->bmpcache[cache_id][cache_idx];                  old = bmpcache[cache_id][cache_idx];
55                  if (old != NULL)                  if (old != NULL)
56                          ui_destroy_bitmap(conn->wnd, old);                          ui_destroy_bitmap(old);
57    
58                  conn->bmpcache[cache_id][cache_idx] = bitmap;                  bmpcache[cache_id][cache_idx] = bitmap;
59          }          }
60          else          else
61          {          {
62                  ERROR("Bitmap %d:%d past end of cache\n", cache_id, cache_idx);                  ERROR("put bitmap %d:%d\n", cache_id, cache_idx);
63          }          }
64  }  }
65    
66  FONT_GLYPH *cache_get_font(HCONN conn, uint8 font, uint16 character)  
67    /* FONT CACHE */
68    static FONTGLYPH fontcache[12][256];
69    
70    /* Retrieve a glyph from the font cache */
71    FONTGLYPH *cache_get_font(uint8 font, uint16 character)
72  {  {
73          FONT_GLYPH *glyph;          FONTGLYPH *glyph;
74    
75          if ((font < NUM_ELEMENTS(conn->fontcache))          if ((font < NUM_ELEMENTS(fontcache))
76                          && (character < NUM_ELEMENTS(conn->fontcache[0])))                          && (character < NUM_ELEMENTS(fontcache[0])))
77          {          {
78                  glyph = &conn->fontcache[font][character];                  glyph = &fontcache[font][character];
79                  if (glyph->pixmap != NULL)                  if (glyph->pixmap != NULL)
80                          return glyph;                          return glyph;
81          }          }
82    
83          ERROR("Font %d character %d not found\n", font, character);          ERROR("get font %d:%d\n", font, character);
84          return NULL;          return NULL;
85  }  }
86    
87  void cache_put_font(HCONN conn, uint8 font, uint32 character, uint16 baseline,  /* Store a glyph in the font cache */
88    void cache_put_font(uint8 font, uint32 character, uint16 baseline,
89                      uint16 width, uint16 height, HGLYPH pixmap)                      uint16 width, uint16 height, HGLYPH pixmap)
90  {  {
91          FONT_GLYPH *glyph;          FONTGLYPH *glyph;
92    
93          if ((font < NUM_ELEMENTS(conn->fontcache))          if ((font < NUM_ELEMENTS(fontcache))
94                          && (character < NUM_ELEMENTS(conn->fontcache[0])))                          && (character < NUM_ELEMENTS(fontcache[0])))
95          {          {
96                  glyph = &conn->fontcache[font][character];                  glyph = &fontcache[font][character];
97                  if (glyph->pixmap != NULL)                  if (glyph->pixmap != NULL)
98                          ui_destroy_glyph(conn->wnd, glyph->pixmap);                          ui_destroy_glyph(glyph->pixmap);
99    
100                  glyph->baseline = baseline;                  glyph->baseline = baseline;
101                  glyph->width = width;                  glyph->width = width;
# Line 90  void cache_put_font(HCONN conn, uint8 fo Line 104  void cache_put_font(HCONN conn, uint8 fo
104          }          }
105          else          else
106          {          {
107                  ERROR("Font %d character %d past end of cache\n",                  ERROR("put font %d:%d\n", font, character);
                       font, character);  
108          }          }
109  }  }
110    
111  BLOB *cache_get_text(HCONN conn, uint8 cache_id)  
112    /* TEXT CACHE */
113    static DATABLOB textcache[256];
114    
115    /* Retrieve a text item from the cache */
116    DATABLOB *cache_get_text(uint8 cache_id)
117  {  {
118          BLOB *text;          DATABLOB *text;
119    
120          if (cache_id < NUM_ELEMENTS(conn->textcache))          if (cache_id < NUM_ELEMENTS(textcache))
121          {          {
122                  text = &conn->textcache[cache_id];                  text = &textcache[cache_id];
123                  if (text->data != NULL)                  if (text->data != NULL)
124                          return text;                          return text;
125          }          }
126    
127          ERROR("Text cache id %d not found\n", cache_id);          ERROR("get text %d\n", cache_id);
128          return NULL;          return NULL;
129  }  }
130    
131  void cache_put_text(HCONN conn, uint8 cache_id, void *data, int length)  /* Store a text item in the cache */
132    void cache_put_text(uint8 cache_id, void *data, int length)
133  {  {
134          BLOB *text;          DATABLOB *text;
135    
136          if (cache_id < NUM_ELEMENTS(conn->textcache))          if (cache_id < NUM_ELEMENTS(textcache))
137          {          {
138                  text = &conn->textcache[cache_id];                  text = &textcache[cache_id];
139                  if (text->data != NULL)                  if (text->data != NULL)
140                          free(text->data);                          xfree(text->data);
141    
142                  text->data = malloc(length);                  text->data = xmalloc(length);
143                  text->size = length;                  text->size = length;
144                  memcpy(text->data, data, length);                  memcpy(text->data, data, length);
145          }          }
146          else          else
147          {          {
148                  ERROR("Text cache id %d past end of cache\n", cache_id);                  ERROR("put text %d\n", cache_id);
149          }          }
150  }  }
151    
152    
153    /* DESKTOP CACHE */
154    static uint8 deskcache[0x38400];
155    
156    /* Retrieve desktop data from the cache */
157    uint8 *cache_get_desktop(uint32 offset, uint32 length)
158    {
159            if ((offset + length) <= sizeof(deskcache))
160            {
161                    return &deskcache[offset];
162            }
163    
164            ERROR("get desktop %d:%d\n", offset, length);
165            return NULL;
166    }
167    
168    /* Store desktop data in the cache */
169    void cache_put_desktop(uint32 offset, uint32 length, uint8 *data)
170    {
171            if ((offset + length) <= sizeof(deskcache))
172            {
173                    memcpy(&deskcache[offset], data, length);
174            }
175            else
176            {
177                    ERROR("put desktop %d:%d\n", offset, length);
178            }
179    }
180    

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

  ViewVC Help
Powered by ViewVC 1.1.26