public
Description: OpenType Condom
Homepage:
Clone URL: git://github.com/agl/otc.git
Adam Langley (author)
Thu Apr 09 14:55:48 -0700 2009
otc / src / maxp.cc
100644 88 lines (71 sloc) 2.241 kb
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
#include "otc.h"
#include "maxp.h"
 
bool
otc_maxp_parse(OpenTypeFile *file, const uint8_t *data, size_t length) {
  Buffer table(data, length);
 
  OpenTypeMAXP *maxp = new OpenTypeMAXP;
  file->maxp = maxp;
 
  // http://www.microsoft.com/typography/otspec/maxp.htm
  //
  // We actually care rather little about the MAXP table since most of it
  // relates to the limits of the hinting code which we'll be removing anyway.
 
  uint32_t version;
  if (!table.ReadU32(&version))
    return failure();
 
  if (version >> 16 > 1)
    return failure();
 
  if (!table.ReadU16(&maxp->num_glyphs))
    return failure();
 
  if (version >> 16 == 1) {
    maxp->version_1 = true;
    if (!table.ReadU16(&maxp->max_points) ||
        !table.ReadU16(&maxp->max_contours) ||
        !table.ReadU16(&maxp->max_c_points) ||
        !table.ReadU16(&maxp->max_c_contours)) {
      return failure();
    }
 
    // Skip over the fields relating to hinting byte code
    table.Skip(14);
    if (!table.ReadU16(&maxp->max_c_components) ||
        !table.ReadU16(&maxp->max_c_recursion)) {
      return failure();
    }
  } else {
    maxp->version_1 = false;
  }
 
  return true;
}
 
bool
otc_maxp_should_serialise(OpenTypeFile *file) {
  return file->maxp;
}
 
bool
otc_maxp_serialise(OTCStream *out, OpenTypeFile *file) {
  const OpenTypeMAXP *maxp = file->maxp;
 
  if (!out->WriteU32(maxp->version_1 ? 0x00010000 : 0x00005000) ||
      !out->WriteU16(maxp->num_glyphs)) {
    return failure();
  }
 
  if (!maxp->version_1)
    return true;
 
  if (!out->WriteU16(maxp->max_points) ||
      !out->WriteU16(maxp->max_contours) ||
      !out->WriteU16(maxp->max_c_points) ||
      !out->WriteU16(maxp->max_c_contours) ||
      !out->WriteU16(1) || // max zones
      !out->WriteU16(0) || // max twilight points
      !out->WriteU16(0) || // max storage
      !out->WriteU16(0) || // max function defs
      !out->WriteU16(0) || // max instruction defs
      !out->WriteU16(0) || // max stack elements
      !out->WriteU16(0) || // max instruction byte count
      !out->WriteU16(maxp->max_c_components) ||
      !out->WriteU16(maxp->max_c_recursion)) {
    return failure();
  }
 
  return true;
}
 
void
otc_maxp_free(OpenTypeFile *file) {
  delete file->maxp;
}