harfbuzz/src/hb-types-private.cc

224 lines
5.4 KiB
C++
Raw Normal View History

2006-12-22 04:30:38 +01:00
#include <stdint.h>
#include <glib.h>
2006-12-22 04:30:38 +01:00
/*
*
* The OpenType Font File
*
*/
/*
* Data Types
*/
/* "The following data types are used in the OpenType font file.
* All OpenType fonts use Motorola-style byte ordering (Big Endian):" */
/* Macros to convert to/from BigEndian */
#define hb_be_uint8_t
#define hb_be_int8_t
#define hb_be_uint16_t GUINT16_TO_BE
#define hb_be_int16_t GINT16_TO_BE
#define hb_be_uint32_t GUINT32_TO_BE
#define hb_be_int32_t GINT32_TO_BE
#define hb_be_uint64_t GUINT64_TO_BE
#define hb_be_int64_t GINT64_TO_BE
#define DEFINE_INT_TYPE1(NAME, TYPE, BIG_ENDIAN) \
struct NAME { \
inline NAME (TYPE i) { v = BIG_ENDIAN(i); } \
inline TYPE operator = (TYPE i) { v = BIG_ENDIAN(i); return i; } \
inline operator TYPE(void) { return BIG_ENDIAN(v); } \
private: TYPE v; \
}
#define DEFINE_INT_TYPE0(NAME, type) DEFINE_INT_TYPE1 (NAME, type, hb_be_##type)
#define DEFINE_INT_TYPE(NAME, u, w) DEFINE_INT_TYPE0 (NAME, u##int##w##_t)
2006-12-22 04:31:31 +01:00
DEFINE_INT_TYPE (BYTE, u, 8); /* 8-bit unsigned integer. */
DEFINE_INT_TYPE (CHAR, , 8); /* 8-bit signed integer. */
DEFINE_INT_TYPE (USHORT, u, 16); /* 16-bit unsigned integer. */
DEFINE_INT_TYPE (SHORT, , 16); /* 16-bit signed integer. */
DEFINE_INT_TYPE (ULONG, u, 32); /* 32-bit unsigned integer. */
DEFINE_INT_TYPE (LONG, , 32); /* 32-bit signed integer. */
/* Date represented in number of seconds since 12:00 midnight, January 1,
* 1904. The value is represented as a signed 64-bit integer. */
2006-12-22 04:31:31 +01:00
DEFINE_INT_TYPE (LONGDATETIME, , 64);
/* 32-bit signed fixed-point number (16.16) */
2006-12-22 04:31:31 +01:00
struct Fixed : LONG {
inline operator double(void) { return (uint32_t) this / 65536.; }
inline int16_t int_part (void) { return (uint32_t) this >> 16; }
inline int16_t frac_part (void) { return (uint32_t) this & 0xffff; }
};
/* Smallest measurable distance in the em space. */
2006-12-22 04:31:31 +01:00
struct FUNIT;
/* 16-bit signed integer (SHORT) that describes a quantity in FUnits. */
2006-12-22 04:31:31 +01:00
struct FWORD : SHORT {
};
/* 16-bit unsigned integer (USHORT) that describes a quantity in FUnits. */
2006-12-22 04:31:31 +01:00
struct UFWORD : USHORT {
};
/* 16-bit signed fixed number with the low 14 bits of fraction (2.14). */
2006-12-22 04:31:31 +01:00
struct F2DOT14 : SHORT {
inline operator double() { return (uint32_t) this / 16384.; }
};
/* Array of four uint8s (length = 32 bits) used to identify a script, language
* system, feature, or baseline */
2006-12-22 04:31:31 +01:00
struct Tag : public ULONG {
inline Tag (char *c) : ULONG(c ? *(uint32_t*)c : 0) {}
};
/* Glyph index number, same as uint16 (length = 16 bits) */
2006-12-22 04:31:31 +01:00
struct GlyphID : USHORT {
};
/* Offset to a table, same as uint16 (length = 16 bits), NULL offset = 0x0000 */
2006-12-22 04:31:31 +01:00
struct Offset : USHORT {
};
/* CheckSum */
2006-12-22 04:31:31 +01:00
struct CheckSum : ULONG {
static uint32_t CalcTableChecksum (ULONG *Table, uint32_t Length) {
uint32_t Sum = 0L;
2006-12-22 04:31:31 +01:00
ULONG *EndPtr = Table+((Length+3) & ~3) / sizeof(ULONG);
while (Table < EndPtr)
Sum += *Table++;
return Sum;
}
};
/*
* Version Numbers
*/
2006-12-22 04:31:31 +01:00
struct USHORT_Version : USHORT {
};
2006-12-22 04:31:31 +01:00
struct Fixed_Version : Fixed {
inline int16_t major (void) { return this->int_part(); }
inline int16_t minor (void) { return this->frac_part(); }
};
/*
* Organization of an OpenType Font
*/
/* Offset Table */
2006-12-22 04:31:31 +01:00
struct OffsetTable {
Fixed_Version sfnt_version; /* 0x00010000 for version 1.0. */
USHORT numTables; /* Number of tables. */
USHORT searchRange; /* (Maximum power of 2 <= numTables) x 16 */
USHORT entrySelector; /* Log2(maximum power of 2 <= numTables). */
USHORT rangeShift; /* NumTables x 16-searchRange. */
};
/* Table Directory */
2006-12-22 04:31:31 +01:00
struct TableDirectory {
Tag tag; /* 4-byte identifier. */
CheckSum checkSum; /* CheckSum for this table. */
ULONG offset; /* Offset from beginning of TrueType font
* file. */
2006-12-22 04:31:31 +01:00
ULONG length; /* Length of this table. */
};
/*
* TrueType Collections
*/
/* TTC Header Version 1.0 */
2006-12-22 04:31:31 +01:00
struct TTCHeader {
Tag TTCTag; /* TrueType Collection ID string: 'ttcf' */
ULONG version; /* Version of the TTC Header (1.0 or 2.0),
* 0x00010000 or 0x00020000 */
2006-12-22 04:31:31 +01:00
ULONG numFonts; /* Number of fonts in TTC */
ULONG offsetTable[0]; /* Array of offsets to the OffsetTable for each font
* from the beginning of the file.
* numFonts entries long. */
2006-12-22 04:31:31 +01:00
inline int len(void) { return sizeof (TTCHeader)
+ sizeof (ULONG) * numFonts; }
};
/* TTC Header Version 2.0 tail
2006-12-22 04:31:31 +01:00
* Follows after TTCHeader with appropriate size for the offsetTable. */
struct TTCHeaderVersion2Tail {
ULONG ulDsigTag; /* Tag indicating that a DSIG table exists,
* 0x44534947 ('DSIG') (null if no signature) */
ULONG ulDsigLength; /* The length (in bytes) of the DSIG table (null if
* no signature) */
ULONG ulDsigOffset; /* The offset (in bytes) of the DSIG table from the
* beginning of the TTC file (null if no signature) */
};
/*
*
* OpenType Layout Common Table Formats
*
*/
2006-12-22 04:30:38 +01:00
/*
* Script List Table and Script Record
2006-12-22 04:30:38 +01:00
*/
struct ScriptRecord {
Tag scriptTag; /* 4-byte ScriptTag identifier */
Offset scriptOffset; /* Offset to Script table--from beginning of
* ScriptList */
};
struct ScriptList {
USHORT scriptCount; /* Number of ScriptRecords */
ScriptRecord scriptRecord[]; /* Array of ScriptRecords--listed alphabetically
* by ScriptTag. scriptCount entries long */
inline int len(void) { return sizeof (ScriptList)
+ sizeof (ScriptRecord) * scriptCount; }
};
2006-12-22 04:30:38 +01:00
#include <stdio.h>
int
main (void)
{
2006-12-22 04:31:31 +01:00
Tag y("abcd");
Tag &x = y;
BYTE b(0);
2006-12-22 04:30:38 +01:00
printf ("%d %04x %04x\n", sizeof (x), x+0, y+0);
2006-12-22 04:30:38 +01:00
return 0;
}