wineps.drv: Make the rectangle an optional parameter to get_bbox().
[wine.git] / dlls / wineps.drv / download.c
blobbf9cb091d39b565f48f1007b203e76e2aa4a0403
1 /*
2 * PostScript driver downloadable font functions
4 * Copyright 2002 Huw D M Davies for CodeWeavers
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library 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 GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 #include <string.h>
21 #include <stdlib.h>
22 #include <assert.h>
23 #include <stdarg.h>
24 #include <stdio.h>
26 #include "windef.h"
27 #include "winbase.h"
28 #include "wingdi.h"
29 #include "winnls.h"
31 #include "psdrv.h"
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(psdrv);
36 #define MS_MAKE_TAG( _x1, _x2, _x3, _x4 ) \
37 ( ( (DWORD)_x4 << 24 ) | \
38 ( (DWORD)_x3 << 16 ) | \
39 ( (DWORD)_x2 << 8 ) | \
40 (DWORD)_x1 )
42 #define GET_BE_WORD(ptr) MAKEWORD( ((BYTE *)(ptr))[1], ((BYTE *)(ptr))[0] )
43 #define GET_BE_DWORD(ptr) ((DWORD)MAKELONG( GET_BE_WORD(&((WORD *)(ptr))[1]), \
44 GET_BE_WORD(&((WORD *)(ptr))[0]) ))
46 /****************************************************************************
47 * get_download_name
49 static void get_download_name(PSDRV_PDEVICE *physDev, LPOUTLINETEXTMETRICA
50 potm, char **str)
52 int len;
53 char *p;
54 DWORD size;
56 size = GetFontData(physDev->hdc, MS_MAKE_TAG('n','a','m','e'), 0, NULL, 0);
57 if(size != 0 && size != GDI_ERROR)
59 BYTE *name = HeapAlloc(GetProcessHeap(), 0, size);
60 if(name)
62 USHORT count, i;
63 BYTE *strings;
64 struct
66 USHORT platform_id;
67 USHORT encoding_id;
68 USHORT language_id;
69 USHORT name_id;
70 USHORT length;
71 USHORT offset;
72 } *name_record;
74 GetFontData(physDev->hdc, MS_MAKE_TAG('n','a','m','e'), 0, name, size);
75 count = GET_BE_WORD(name + 2);
76 strings = name + GET_BE_WORD(name + 4);
77 name_record = (typeof(name_record))(name + 6);
78 for(i = 0; i < count; i++, name_record++)
80 name_record->platform_id = GET_BE_WORD(&name_record->platform_id);
81 name_record->encoding_id = GET_BE_WORD(&name_record->encoding_id);
82 name_record->language_id = GET_BE_WORD(&name_record->language_id);
83 name_record->name_id = GET_BE_WORD(&name_record->name_id);
84 name_record->length = GET_BE_WORD(&name_record->length);
85 name_record->offset = GET_BE_WORD(&name_record->offset);
87 if(name_record->platform_id == 1 && name_record->encoding_id == 0 &&
88 name_record->language_id == 0 && name_record->name_id == 6)
90 TRACE("Got Mac PS name %s\n", debugstr_an((char*)strings + name_record->offset, name_record->length));
91 *str = HeapAlloc(GetProcessHeap(), 0, name_record->length + 1);
92 memcpy(*str, strings + name_record->offset, name_record->length);
93 *(*str + name_record->length) = '\0';
94 HeapFree(GetProcessHeap(), 0, name);
95 return;
97 if(name_record->platform_id == 3 && name_record->encoding_id == 1 &&
98 name_record->language_id == 0x409 && name_record->name_id == 6)
100 WCHAR *unicode = HeapAlloc(GetProcessHeap(), 0, name_record->length + 2);
101 DWORD len;
102 int c;
104 for(c = 0; c < name_record->length / 2; c++)
105 unicode[c] = GET_BE_WORD(strings + name_record->offset + c * 2);
106 unicode[c] = 0;
107 TRACE("Got Windows PS name %s\n", debugstr_w(unicode));
108 len = WideCharToMultiByte(1252, 0, unicode, -1, NULL, 0, NULL, NULL);
109 *str = HeapAlloc(GetProcessHeap(), 0, len);
110 WideCharToMultiByte(1252, 0, unicode, -1, *str, len, NULL, NULL);
111 HeapFree(GetProcessHeap(), 0, unicode);
112 HeapFree(GetProcessHeap(), 0, name);
113 return;
116 TRACE("Unable to find PostScript name\n");
117 HeapFree(GetProcessHeap(), 0, name);
121 len = strlen((char*)potm + (ptrdiff_t)potm->otmpFullName) + 1;
122 *str = HeapAlloc(GetProcessHeap(),0,len);
123 strcpy(*str, (char*)potm + (ptrdiff_t)potm->otmpFullName);
125 p = *str;
126 while((p = strchr(p, ' ')))
127 *p = '_';
129 return;
132 /****************************************************************************
133 * is_font_downloaded
135 static DOWNLOAD *is_font_downloaded(PSDRV_PDEVICE *physDev, char *ps_name)
137 DOWNLOAD *pdl;
139 for(pdl = physDev->downloaded_fonts; pdl; pdl = pdl->next)
140 if(!strcmp(pdl->ps_name, ps_name))
141 break;
142 return pdl;
145 /****************************************************************************
146 * is_room_for_font
148 static BOOL is_room_for_font(PSDRV_PDEVICE *physDev)
150 DOWNLOAD *pdl;
151 int count = 0;
153 /* FIXME: should consider vm usage of each font and available printer memory.
154 For now we allow up to two fonts to be downloaded at a time */
155 for(pdl = physDev->downloaded_fonts; pdl; pdl = pdl->next)
156 count++;
158 if(count > 1)
159 return FALSE;
160 return TRUE;
163 /****************************************************************************
164 * get_bbox
166 * This retrieves the bounding box of the font in font units as well as
167 * the size of the emsquare. To avoid having to worry about mapping mode and
168 * the font size we'll get the data directly from the TrueType HEAD table rather
169 * than using GetOutlineTextMetrics.
171 static BOOL get_bbox(HDC hdc, RECT *rc, UINT *emsize)
173 BYTE head[54]; /* the head table is 54 bytes long */
175 if(GetFontData(hdc, MS_MAKE_TAG('h','e','a','d'), 0, head, sizeof(head)) == GDI_ERROR)
177 ERR("Can't retrieve head table\n");
178 return FALSE;
180 *emsize = GET_BE_WORD(head + 18); /* unitsPerEm */
181 if(rc)
183 rc->left = (signed short)GET_BE_WORD(head + 36); /* xMin */
184 rc->bottom = (signed short)GET_BE_WORD(head + 38); /* yMin */
185 rc->right = (signed short)GET_BE_WORD(head + 40); /* xMax */
186 rc->top = (signed short)GET_BE_WORD(head + 42); /* yMax */
188 return TRUE;
191 /****************************************************************************
192 * PSDRV_SelectDownloadFont
194 * Set up physDev->font for a downloadable font
197 BOOL PSDRV_SelectDownloadFont(PSDRV_PDEVICE *physDev)
199 char *ps_name;
200 LPOUTLINETEXTMETRICA potm;
201 DWORD len = GetOutlineTextMetricsA(physDev->hdc, 0, NULL);
203 if(!len) return FALSE;
204 potm = HeapAlloc(GetProcessHeap(), 0, len);
205 GetOutlineTextMetricsA(physDev->hdc, len, potm);
206 get_download_name(physDev, potm, &ps_name);
208 physDev->font.fontloc = Download;
209 physDev->font.fontinfo.Download = is_font_downloaded(physDev, ps_name);
211 physDev->font.size = abs(PSDRV_YWStoDS(physDev, /* ppem */
212 potm->otmTextMetrics.tmAscent +
213 potm->otmTextMetrics.tmDescent -
214 potm->otmTextMetrics.tmInternalLeading));
215 physDev->font.underlineThickness = potm->otmsUnderscoreSize;
216 physDev->font.underlinePosition = potm->otmsUnderscorePosition;
217 physDev->font.strikeoutThickness = potm->otmsStrikeoutSize;
218 physDev->font.strikeoutPosition = potm->otmsStrikeoutPosition;
220 HeapFree(GetProcessHeap(), 0, ps_name);
221 HeapFree(GetProcessHeap(), 0, potm);
222 return TRUE;
225 /****************************************************************************
226 * PSDRV_WriteSetDownloadFont
228 * Write setfont for download font.
231 BOOL PSDRV_WriteSetDownloadFont(PSDRV_PDEVICE *physDev)
233 char *ps_name;
234 LPOUTLINETEXTMETRICA potm;
235 DWORD len = GetOutlineTextMetricsA(physDev->hdc, 0, NULL);
236 DOWNLOAD *pdl;
238 assert(physDev->font.fontloc == Download);
240 potm = HeapAlloc(GetProcessHeap(), 0, len);
241 GetOutlineTextMetricsA(physDev->hdc, len, potm);
243 get_download_name(physDev, potm, &ps_name);
245 if(physDev->font.fontinfo.Download == NULL) {
246 RECT bbox;
247 UINT emsize;
249 if (!get_bbox(physDev->hdc, &bbox, &emsize)) {
250 HeapFree(GetProcessHeap(), 0, potm);
251 return FALSE;
253 if(!is_room_for_font(physDev))
254 PSDRV_EmptyDownloadList(physDev, TRUE);
256 pdl = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*pdl));
257 pdl->ps_name = HeapAlloc(GetProcessHeap(), 0, strlen(ps_name)+1);
258 strcpy(pdl->ps_name, ps_name);
259 pdl->next = NULL;
261 if(physDev->pi->ppd->TTRasterizer == RO_Type42) {
262 pdl->typeinfo.Type42 = T42_download_header(physDev, ps_name, &bbox, emsize);
263 pdl->type = Type42;
265 if(pdl->typeinfo.Type42 == NULL) {
266 pdl->typeinfo.Type1 = T1_download_header(physDev, ps_name, &bbox, emsize);
267 pdl->type = Type1;
269 pdl->next = physDev->downloaded_fonts;
270 physDev->downloaded_fonts = pdl;
271 physDev->font.fontinfo.Download = pdl;
273 if(pdl->type == Type42) {
274 char g_name[MAX_G_NAME + 1];
275 get_glyph_name(physDev->hdc, 0, g_name);
276 T42_download_glyph(physDev, pdl, 0, g_name);
281 PSDRV_WriteSetFont(physDev, ps_name, physDev->font.size,
282 physDev->font.escapement);
284 HeapFree(GetProcessHeap(), 0, ps_name);
285 HeapFree(GetProcessHeap(), 0, potm);
286 return TRUE;
289 void get_glyph_name(HDC hdc, WORD index, char *name)
291 /* FIXME */
292 sprintf(name, "g%04x", index);
293 return;
296 /****************************************************************************
297 * PSDRV_WriteDownloadGlyphShow
299 * Download and write out a number of glyphs
302 BOOL PSDRV_WriteDownloadGlyphShow(PSDRV_PDEVICE *physDev, WORD *glyphs,
303 UINT count)
305 UINT i;
306 char g_name[MAX_G_NAME + 1];
307 assert(physDev->font.fontloc == Download);
309 switch(physDev->font.fontinfo.Download->type) {
310 case Type42:
311 for(i = 0; i < count; i++) {
312 get_glyph_name(physDev->hdc, glyphs[i], g_name);
313 T42_download_glyph(physDev, physDev->font.fontinfo.Download,
314 glyphs[i], g_name);
315 PSDRV_WriteGlyphShow(physDev, g_name);
317 break;
319 case Type1:
320 for(i = 0; i < count; i++) {
321 get_glyph_name(physDev->hdc, glyphs[i], g_name);
322 T1_download_glyph(physDev, physDev->font.fontinfo.Download,
323 glyphs[i], g_name);
324 PSDRV_WriteGlyphShow(physDev, g_name);
326 break;
328 default:
329 ERR("Type = %d\n", physDev->font.fontinfo.Download->type);
330 assert(0);
332 return TRUE;
335 /****************************************************************************
336 * PSDRV_EmptyDownloadList
338 * Clear the list of downloaded fonts
341 BOOL PSDRV_EmptyDownloadList(PSDRV_PDEVICE *physDev, BOOL write_undef)
343 DOWNLOAD *pdl, *old;
344 static const char undef[] = "/%s findfont 40 scalefont setfont /%s undefinefont\n";
345 char buf[sizeof(undef) + 200];
346 const char *default_font = physDev->pi->ppd->DefaultFont ?
347 physDev->pi->ppd->DefaultFont : "Courier";
349 if(physDev->font.fontloc == Download) {
350 physDev->font.set = FALSE;
351 physDev->font.fontinfo.Download = NULL;
354 pdl = physDev->downloaded_fonts;
355 physDev->downloaded_fonts = NULL;
356 while(pdl) {
357 if(write_undef) {
358 sprintf(buf, undef, default_font, pdl->ps_name);
359 PSDRV_WriteSpool(physDev, buf, strlen(buf));
362 switch(pdl->type) {
363 case Type42:
364 T42_free(pdl->typeinfo.Type42);
365 break;
367 case Type1:
368 T1_free(pdl->typeinfo.Type1);
369 break;
371 default:
372 ERR("Type = %d\n", pdl->type);
373 assert(0);
376 HeapFree(GetProcessHeap(), 0, pdl->ps_name);
377 old = pdl;
378 pdl = pdl->next;
379 HeapFree(GetProcessHeap(), 0, old);
381 return TRUE;