summaryrefslogtreecommitdiff
path: root/Build/source/texk/ttfdump/libttf/os2.c
blob: 66701e3dc6106c6f63d7f5678d6b3eb95c4d1b1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "ttf.h"
#include "ttfutil.h"

#define __TTF_OS2
#include "os2_P.h"

/* 	$Id: os2.c,v 1.2 1998/07/06 06:07:01 werner Exp $	 */

static void ttfLoadOS2(FILE *fp, OS_2Ptr os2, ULONG offset);

void ttfInitOS2(TTFontPtr font)
{
    ULONG tag = FT_MAKE_TAG ('O', 'S', '/', '2');
    TableDirPtr ptd;

    if ((ptd = ttfLookUpTableDir(tag, font)) != NULL)
	{
	    font->os2 = XCALLOC1 (OS_2);
	    ttfLoadOS2(font->fp, font->os2, ptd->offset);
	}   
}

static void ttfLoadOS2(FILE *fp, OS_2Ptr os2, ULONG offset)
{
    xfseek(fp, offset, SEEK_SET, "ttfLoadOS2");

    os2->version = ttfGetUSHORT(fp);
    os2->xAvgCharWidth = ttfGetSHORT(fp);
    os2->usWeightClass = ttfGetUSHORT(fp);
    os2->usWidthClass = ttfGetUSHORT(fp);
    os2->fsType = ttfGetUSHORT(fp);
    os2->ySubscriptXSize = ttfGetSHORT(fp);
    os2->ySubscriptYSize = ttfGetSHORT(fp);
    os2->ySubscriptXOffset = ttfGetSHORT(fp);
    os2->ySubscriptYOffset = ttfGetSHORT(fp);
    os2->ySuperscriptXSize = ttfGetSHORT(fp);
    os2->ySuperscriptYSize = ttfGetSHORT(fp);
    os2->ySuperscriptXOffset = ttfGetSHORT(fp);
    os2->ySuperscriptYOffset = ttfGetSHORT(fp);
    os2->yStrikeoutSize = ttfGetSHORT(fp);
    os2->yStrikeoutPosition = ttfGetSHORT(fp);
    os2->sFamilyClass = ttfGetSHORT(fp);

    if (fread(os2->panose, sizeof(CHAR), 10, fp) != 10)
	ttfError("Error reading PANOSE\n");

    os2->ulUnicodeRange1 = ttfGetULONG(fp);
    os2->ulUnicodeRange2 = ttfGetULONG(fp);
    os2->ulUnicodeRange3 = ttfGetULONG(fp);
    os2->ulUnicodeRange4 = ttfGetULONG(fp);

    if (fread(os2->achVendID, sizeof(CHAR), 4, fp) != 4)
	ttfError("Error reading achVendID\n");
    os2->achVendID[4] = 0x0;

    os2->fsSelection = ttfGetUSHORT(fp);
    os2->usFirstCharIndex = ttfGetUSHORT(fp);
    os2->usLastCharIndex = ttfGetUSHORT(fp);
    os2->sTypoAscender = ttfGetSHORT(fp);
    os2->sTypoDescender = ttfGetSHORT(fp);
    os2->sTypoLineGap = ttfGetSHORT(fp);
    os2->usWinAscent = ttfGetUSHORT(fp);
    os2->usWinDescent = ttfGetUSHORT(fp);

    if (os2->version < 0x0001)
        return;

    os2->ulCodePageRange1 = ttfGetULONG(fp);
    os2->ulCodePageRange2 = ttfGetULONG(fp);

    if (os2->version < 0x0002)
        return;

    os2->sxHeight = ttfGetSHORT(fp);
    os2->sCapHeight = ttfGetSHORT(fp);
    os2->usDefaultChar = ttfGetUSHORT(fp);
    os2->usBreakChar = ttfGetUSHORT(fp);
    os2->usMaxContext = ttfGetUSHORT(fp);
}

/* Index checking for string array elements.  */
#define StrFromInd(str, ind) StringFromIndex(str, sizeof(str) / sizeof(str[0]), (int)ind)
static inline const char *StringFromIndex(const char **str, size_t sz, int ind)
{
  return ind >= 0 && ind < sz ? str[ind] : "invalid";
}

void ttfPrintOS2(FILE *fp,OS_2Ptr os2)
{
    char buf[80];
    
    fprintf(fp,"'OS/2' Table - OS/2 and Windows Metrics\n");
    fprintf(fp,"---------------------------------------\n");

    fprintf(fp,"\t 'OS/2' version:\t %d\n",os2->version);
    fprintf(fp,"\t xAvgCharWidth:\t\t %d\n",os2->xAvgCharWidth);
    fprintf(fp,"\t usWeightClass:\t\t %d \t '%s'\n",os2->usWeightClass,
	    StrFromInd(WeightClassName,os2->usWeightClass/100 - 1));
    fprintf(fp,"\t usWidthClass:\t\t %d \t '%s'\n",os2->usWidthClass,
	    StrFromInd(WidthClassName,os2->usWidthClass - 1));
    fprintf(fp,"\t fsType:\t\t %d\n",os2->fsType);
    fprintf(fp,"\t ySubscriptXSize:\t %d\n",os2->ySubscriptXSize);
    fprintf(fp,"\t ySubscriptYSize:\t %d\n",os2->ySubscriptYSize);
    fprintf(fp,"\t ySubscriptXOffset:\t %d\n",os2->ySubscriptXOffset);
    fprintf(fp,"\t ySubscriptYOffset:\t %d\n",os2->ySubscriptYOffset);
    fprintf(fp,"\t ySuperscriptXSize:\t %d\n",os2-> ySuperscriptXSize);
    fprintf(fp,"\t ySuperscriptYSize:\t %d\n",os2->ySuperscriptYSize);
    fprintf(fp,"\t ySuperscriptXOffset:\t %d\n",os2->ySuperscriptXOffset);
    fprintf(fp,"\t ySuperscriptYOffset:\t %d\n",os2->ySuperscriptYOffset);
    fprintf(fp,"\t yStrikeoutSize:\t %d\n",os2->yStrikeoutSize);
    fprintf(fp,"\t yStrikeoutPosition\t %d\n",os2->yStrikeoutPosition);
    fprintf(fp,"\t sFamilyClass:\t %d \t subclass = %d\n",
	    (os2->sFamilyClass) >> 8,(os2->sFamilyClass) & 0x00ff);
    fprintf(fp,"\t PANOSE:\n");
    fprintf(fp,"\t\t Family Kind:\t %d \t '%s'\n",os2->panose[0],
	    StrFromInd(PanoseFamily,os2->panose[0]));
    fprintf(fp,"\t\t Serif Style:\t %d \t '%s'\n",os2->panose[1],
	    StrFromInd(PanoseSerif,os2->panose[1]));
    fprintf(fp,"\t\t Weight:\t %d \t '%s'\n",os2->panose[2],
	    StrFromInd(PanoseWeight,os2->panose[2]));
    fprintf(fp,"\t\t Proportion:\t %d \t '%s'\n",os2->panose[3],
	    StrFromInd(PanoseProportion,os2->panose[3]));
    fprintf(fp,"\t\t Contrast:\t %d \t '%s'\n",os2->panose[4],
	    StrFromInd(PanoseContrast,os2->panose[4]));
    fprintf(fp,"\t\t Stroke:\t %d \t '%s'\n",os2->panose[5],
	    StrFromInd(PanoseStroke,os2->panose[5]));
    fprintf(fp,"\t\t Arm Style:\t %d \t '%s'\n",os2->panose[6],
	    StrFromInd(PanoseArm,os2->panose[6]));
    fprintf(fp,"\t\t Lettreform:\t %d \t '%s'\n",os2->panose[7],
	    StrFromInd(PanoseLetterform,os2->panose[7]));
    fprintf(fp,"\t\t Midline:\t %d \t '%s'\n",os2->panose[8],
	    StrFromInd(PanoseMidline,os2->panose[8]));
    fprintf(fp,"\t\t X-height:\t %d \t '%s'\n",os2->panose[9],
	    StrFromInd(PanoseXHeight,os2->panose[9]));
    fprintf(fp,"\t Unicode Range 1( Bits 0 - 31 ): \t 0x%08x\n",
	    os2->ulUnicodeRange1);
    fprintf(fp,"\t Unicode Range 2( Bits 32 - 63 ): \t 0x%08x\n",
	    os2->ulUnicodeRange2);
    fprintf(fp,"\t Unicode Range 3( Bits 64 - 95 ): \t 0x%08x\n",
	    os2->ulUnicodeRange3);
    fprintf(fp,"\t Unicode Range 4( Bits 96 - 128 ): \t 0x%08x\n",
	    os2->ulUnicodeRange4);
  
    fprintf(fp,"\t achVendID:\t\t '%s'\n",os2->achVendID);

    buf[0] = 0x0;
    if (os2->fsSelection & FS_FLAGS_REGULAR)
	{
	    strcat(buf,"Regular ");
	}
    else
	{
	    if (os2->fsSelection & FS_FLAGS_BOLD)
		strcat(buf,"Bold ");
	    if (os2->fsSelection & FS_FLAGS_ITALIC)
		strcat(buf,"Italic ");
	}
    fprintf(fp,"\t fsSelection:\t\t 0x%04x \t '%s'\n",os2->fsSelection,buf);
    fprintf(fp,"\t usFirstCharIndex:\t 0x%04x\n ",os2->usFirstCharIndex);
    fprintf(fp,"\t usLastCharIndex:\t 0x%04x\n",os2->usLastCharIndex);
    fprintf(fp,"\t sTypoAscender:\t\t %d\n",os2->sTypoAscender);
    fprintf(fp,"\t sTypoDescender:\t %d\n",os2->sTypoDescender);
    fprintf(fp,"\t sTypoLineGap:\t\t %d\n",os2->sTypoLineGap);
    fprintf(fp,"\t usWinAscent:\t\t %d\n",os2->usWinAscent);
    fprintf(fp,"\t usWinDescent:\t\t %d\n",os2->usWinDescent);

    if (os2->version < 0x0001)
        return;

    fprintf(fp,"\t CodePage Range 1( Bits 0 - 31 ):\t 0x%08x\n",
	    os2->ulCodePageRange1);
    fprintf(fp,"\t CodePage Range 2( Bits 32- 63 ):\t 0x%08x\n",
	    os2->ulCodePageRange2);

    if (os2->version < 0x0002)
        return;

    fprintf(fp,"\t sxHeight:\t\t %d\n",os2->sxHeight);
    fprintf(fp,"\t sCapHeight:\t\t %d\n",os2->sCapHeight);
    fprintf(fp,"\t usDefaultChar:\t\t 0x%04x\n",os2->usDefaultChar);
    fprintf(fp,"\t usBreakChar:\t\t 0x%04x\n",os2->usBreakChar);
    fprintf(fp,"\t usMaxContext:\t\t %d\n",os2->usMaxContext);
}

void ttfFreeOS2(OS_2Ptr os2)
{
    free(os2);
}