/[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

Contents of /sourceforge.net/trunk/rdesktop/cache.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 20 - (show annotations)
Mon Oct 16 07:37:52 2000 UTC (23 years, 8 months ago) by matty
File MIME type: text/plain
File size: 4128 byte(s)
Respect x offset in font information.

1 /*
2 rdesktop: A Remote Desktop Protocol client.
3 Cache routines
4 Copyright (C) Matthew Chapman 1999-2000
5
6 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
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19 */
20
21 #include "rdesktop.h"
22
23 #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;
33
34 if ((cache_id < NUM_ELEMENTS(bmpcache))
35 && (cache_idx < NUM_ELEMENTS(bmpcache[0])))
36 {
37 bitmap = bmpcache[cache_id][cache_idx];
38 if (bitmap != NULL)
39 return bitmap;
40 }
41
42 ERROR("get bitmap %d:%d\n", cache_id, cache_idx);
43 return NULL;
44 }
45
46 /* Store a bitmap in the cache */
47 void cache_put_bitmap(uint8 cache_id, uint16 cache_idx, HBITMAP bitmap)
48 {
49 HBITMAP old;
50
51 if ((cache_id < NUM_ELEMENTS(bmpcache))
52 && (cache_idx < NUM_ELEMENTS(bmpcache[0])))
53 {
54 old = bmpcache[cache_id][cache_idx];
55 if (old != NULL)
56 ui_destroy_bitmap(old);
57
58 bmpcache[cache_id][cache_idx] = bitmap;
59 }
60 else
61 {
62 ERROR("put bitmap %d:%d\n", cache_id, cache_idx);
63 }
64 }
65
66
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 FONTGLYPH *glyph;
74
75 if ((font < NUM_ELEMENTS(fontcache))
76 && (character < NUM_ELEMENTS(fontcache[0])))
77 {
78 glyph = &fontcache[font][character];
79 if (glyph->pixmap != NULL)
80 return glyph;
81 }
82
83 ERROR("get font %d:%d\n", font, character);
84 return NULL;
85 }
86
87 /* Store a glyph in the font cache */
88 void cache_put_font(uint8 font, uint16 character, uint16 offset,
89 uint16 baseline, uint16 width, uint16 height, HGLYPH pixmap)
90 {
91 FONTGLYPH *glyph;
92
93 if ((font < NUM_ELEMENTS(fontcache))
94 && (character < NUM_ELEMENTS(fontcache[0])))
95 {
96 glyph = &fontcache[font][character];
97 if (glyph->pixmap != NULL)
98 ui_destroy_glyph(glyph->pixmap);
99
100 glyph->offset = offset;
101 glyph->baseline = baseline;
102 glyph->width = width;
103 glyph->height = height;
104 glyph->pixmap = pixmap;
105 }
106 else
107 {
108 ERROR("put font %d:%d\n", font, character);
109 }
110 }
111
112
113 /* TEXT CACHE */
114 static DATABLOB textcache[256];
115
116 /* Retrieve a text item from the cache */
117 DATABLOB *cache_get_text(uint8 cache_id)
118 {
119 DATABLOB *text;
120
121 if (cache_id < NUM_ELEMENTS(textcache))
122 {
123 text = &textcache[cache_id];
124 if (text->data != NULL)
125 return text;
126 }
127
128 ERROR("get text %d\n", cache_id);
129 return NULL;
130 }
131
132 /* Store a text item in the cache */
133 void cache_put_text(uint8 cache_id, void *data, int length)
134 {
135 DATABLOB *text;
136
137 if (cache_id < NUM_ELEMENTS(textcache))
138 {
139 text = &textcache[cache_id];
140 if (text->data != NULL)
141 xfree(text->data);
142
143 text->data = xmalloc(length);
144 text->size = length;
145 memcpy(text->data, data, length);
146 }
147 else
148 {
149 ERROR("put text %d\n", cache_id);
150 }
151 }
152
153
154 /* DESKTOP CACHE */
155 static uint8 deskcache[0x38400];
156
157 /* Retrieve desktop data from the cache */
158 uint8 *cache_get_desktop(uint32 offset, int cx, int cy)
159 {
160 int length = cx * cy;
161
162 if ((offset + length) <= sizeof(deskcache))
163 {
164 return &deskcache[offset];
165 }
166
167 ERROR("get desktop %d:%d\n", offset, length);
168 return NULL;
169 }
170
171 /* Store desktop data in the cache */
172 void cache_put_desktop(uint32 offset, int cx, int cy, int scanline, uint8 *data)
173 {
174 int length = cx * cy;
175
176 if ((offset + length) <= sizeof(deskcache))
177 {
178 while (cy--)
179 {
180 memcpy(&deskcache[offset], data, cx);
181 data += scanline;
182 offset += cx;
183 }
184 }
185 else
186 {
187 ERROR("put desktop %d:%d\n", offset, length);
188 }
189 }
190

  ViewVC Help
Powered by ViewVC 1.1.26