2015-04-20 21:29:23 +02:00
|
|
|
from __future__ import print_function, division, absolute_import
|
|
|
|
from fontTools.misc.py23 import *
|
|
|
|
from fontTools.misc import sstruct
|
|
|
|
from fontTools.misc.fixedTools import fixedToFloat
|
|
|
|
from fontTools.misc.textTools import safeEval
|
|
|
|
from . import DefaultTable
|
|
|
|
import array
|
|
|
|
import sys
|
|
|
|
import struct
|
|
|
|
|
|
|
|
# Apple's documentation of 'gvar':
|
|
|
|
# https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6gvar.html
|
|
|
|
#
|
|
|
|
# TrueType source code for parsing 'gvar':
|
|
|
|
# http://git.savannah.gnu.org/cgit/freetype/freetype2.git/tree/src/truetype/ttgxvar.c
|
|
|
|
|
2015-04-23 10:32:05 +02:00
|
|
|
GVAR_HEADER_FORMAT = b"""
|
2015-04-20 21:29:23 +02:00
|
|
|
> # big endian
|
|
|
|
version: H
|
|
|
|
reserved: H
|
|
|
|
axisCount: H
|
|
|
|
sharedCoordCount: H
|
|
|
|
offsetToCoord: I
|
|
|
|
glyphCount: H
|
|
|
|
flags: H
|
|
|
|
offsetToData: I
|
|
|
|
"""
|
|
|
|
|
2015-04-23 10:32:05 +02:00
|
|
|
GVAR_HEADER_SIZE = sstruct.calcsize(GVAR_HEADER_FORMAT)
|
2015-04-20 21:29:23 +02:00
|
|
|
|
|
|
|
TUPLES_SHARE_POINT_NUMBERS = 0x8000
|
|
|
|
TUPLE_COUNT_MASK = 0x0fff
|
|
|
|
|
|
|
|
EMBEDDED_TUPLE_COORD = 0x8000
|
|
|
|
INTERMEDIATE_TUPLE = 0x4000
|
|
|
|
PRIVATE_POINT_NUMBERS = 0x2000
|
|
|
|
TUPLE_INDEX_MASK = 0x0fff
|
|
|
|
|
|
|
|
class table__g_v_a_r(DefaultTable.DefaultTable):
|
|
|
|
|
|
|
|
dependencies = ["fvar", "glyf"]
|
|
|
|
|
|
|
|
def decompile(self, data, ttFont):
|
2015-04-23 11:44:52 +02:00
|
|
|
data = buffer(data) # We do a lot of slicing; no need to copy all those sub-buffers.
|
2015-04-20 21:29:23 +02:00
|
|
|
axisTags = [axis.AxisTag for axis in ttFont['fvar'].table.VariationAxis]
|
|
|
|
glyphs = ttFont.getGlyphOrder()
|
2015-04-23 10:32:05 +02:00
|
|
|
sstruct.unpack(GVAR_HEADER_FORMAT, data[0:GVAR_HEADER_SIZE], self)
|
2015-04-20 21:29:23 +02:00
|
|
|
assert len(glyphs) == self.glyphCount
|
|
|
|
assert len(axisTags) == self.axisCount
|
2015-04-23 10:32:05 +02:00
|
|
|
offsets = self.decompileOffsets_(data[GVAR_HEADER_SIZE:],
|
|
|
|
format=(self.flags & 1), glyphCount=self.glyphCount)
|
2015-04-20 21:29:23 +02:00
|
|
|
sharedCoords = self.decompileSharedCoords_(axisTags, data)
|
|
|
|
self.variations = {}
|
|
|
|
for i in range(self.glyphCount):
|
|
|
|
glyphName = glyphs[i]
|
|
|
|
glyph = ttFont["glyf"][glyphName]
|
|
|
|
if glyph.isComposite():
|
|
|
|
numPoints = len(glyph.components) + 4
|
|
|
|
else:
|
|
|
|
# Empty glyphs (eg. space, nonmarkingreturn) have no "coordinates" attribute.
|
|
|
|
numPoints = len(getattr(glyph, "coordinates", [])) + 4
|
|
|
|
gvarData = data[self.offsetToData + offsets[i] : self.offsetToData + offsets[i + 1]]
|
|
|
|
self.variations[glyphName] = self.decompileVariations_(numPoints, sharedCoords, axisTags, gvarData)
|
|
|
|
|
|
|
|
def decompileSharedCoords_(self, axisTags, data):
|
|
|
|
result = []
|
|
|
|
pos = self.offsetToCoord
|
|
|
|
stride = len(axisTags) * 2
|
|
|
|
for i in range(self.sharedCoordCount):
|
|
|
|
coord = self.decompileCoord_(axisTags, data[pos:pos+stride])
|
|
|
|
result.append(coord)
|
|
|
|
pos += stride
|
|
|
|
return result
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def decompileCoord_(axisTags, data):
|
|
|
|
coord = {}
|
|
|
|
pos = 0
|
|
|
|
for axis in axisTags:
|
|
|
|
coord[axis] = fixedToFloat(struct.unpack(b">h", data[pos:pos+2])[0], 14)
|
|
|
|
pos += 2
|
|
|
|
return coord
|
|
|
|
|
2015-04-23 10:32:05 +02:00
|
|
|
@staticmethod
|
|
|
|
def decompileOffsets_(data, format, glyphCount):
|
|
|
|
if format == 0:
|
2015-04-20 21:29:23 +02:00
|
|
|
# Short format: array of UInt16
|
|
|
|
offsets = array.array("H")
|
2015-04-23 10:32:05 +02:00
|
|
|
offsetsSize = (glyphCount + 1) * 2
|
2015-04-20 21:29:23 +02:00
|
|
|
else:
|
|
|
|
# Long format: array of UInt32
|
|
|
|
offsets = array.array("I")
|
2015-04-23 10:32:05 +02:00
|
|
|
offsetsSize = (glyphCount + 1) * 4
|
|
|
|
offsets.fromstring(data[0 : offsetsSize])
|
2015-04-20 21:29:23 +02:00
|
|
|
if sys.byteorder != "big":
|
|
|
|
offsets.byteswap()
|
|
|
|
|
|
|
|
# In the short format, offsets need to be multiplied by 2.
|
|
|
|
# This is not documented in Apple's TrueType specification,
|
|
|
|
# but can be inferred from the FreeType implementation, and
|
|
|
|
# we could verify it with two sample GX fonts.
|
2015-04-23 10:32:05 +02:00
|
|
|
if format == 0:
|
2015-04-20 21:29:23 +02:00
|
|
|
offsets = [off * 2 for off in offsets]
|
|
|
|
|
|
|
|
return offsets
|
|
|
|
|
2015-04-23 10:32:05 +02:00
|
|
|
@staticmethod
|
|
|
|
def compileOffsets_(offsets):
|
|
|
|
"""Packs a list of offsets into a 'gvar' offset table.
|
|
|
|
|
|
|
|
Returns a pair (bytestring, flag). Bytestring is the
|
|
|
|
packed offset table. Format indicates whether the table
|
|
|
|
uses short (0) or long (1) integers, and should be stored
|
|
|
|
into the flags field of the 'gvar' header.
|
|
|
|
"""
|
|
|
|
assert len(offsets) >= 2
|
|
|
|
for i in range(1, len(offsets)):
|
|
|
|
assert offsets[i - 1] <= offsets[i]
|
|
|
|
if max(offsets) <= 0xffff * 2:
|
|
|
|
packed = array.array(b"H", [n >> 1 for n in offsets])
|
|
|
|
format = 0
|
|
|
|
else:
|
|
|
|
packed = array.array(b"I", offsets)
|
|
|
|
format = 1
|
|
|
|
if sys.byteorder != "big":
|
|
|
|
packed.byteswap()
|
|
|
|
return (packed.tostring(), format)
|
|
|
|
|
2015-04-20 21:29:23 +02:00
|
|
|
def decompileVariations_(self, numPoints, sharedCoords, axisTags, data):
|
|
|
|
if len(data) < 4:
|
|
|
|
return []
|
2015-04-23 10:32:05 +02:00
|
|
|
tuples = []
|
2015-04-20 21:29:23 +02:00
|
|
|
tupleCount, offsetToData = struct.unpack(b">HH", data[:4])
|
|
|
|
tuplesSharePointNumbers = (tupleCount & TUPLES_SHARE_POINT_NUMBERS) != 0
|
|
|
|
tupleCount = tupleCount & TUPLE_COUNT_MASK
|
|
|
|
tuplePos = 4
|
|
|
|
dataPos = offsetToData
|
|
|
|
for i in range(tupleCount):
|
|
|
|
tupleSize, tupleIndex = struct.unpack(b">HH", data[tuplePos:tuplePos+4])
|
|
|
|
if (tupleIndex & EMBEDDED_TUPLE_COORD) != 0:
|
|
|
|
coord = self.decompileCoord_(axisTags, data[tuplePos+4:])
|
|
|
|
else:
|
2015-04-23 10:32:05 +02:00
|
|
|
coord = sharedCoords[tupleIndex & TUPLE_INDEX_MASK].copy()
|
|
|
|
gvar = GlyphVariation(coord)
|
|
|
|
tuples.append(gvar)
|
|
|
|
tuplePos += self.getTupleSize_(tupleIndex, self.axisCount)
|
2015-04-20 21:29:23 +02:00
|
|
|
return []
|
|
|
|
|
2015-04-23 10:32:05 +02:00
|
|
|
@staticmethod
|
|
|
|
def getTupleSize_(tupleIndex, axisCount):
|
2015-04-20 21:29:23 +02:00
|
|
|
"""Returns the byte size of a tuple given the value of its tupleIndex field."""
|
|
|
|
size = 4
|
|
|
|
if (tupleIndex & EMBEDDED_TUPLE_COORD) != 0:
|
2015-04-23 10:32:05 +02:00
|
|
|
size += axisCount * 2
|
2015-04-20 21:29:23 +02:00
|
|
|
if (tupleIndex & INTERMEDIATE_TUPLE) != 0:
|
2015-04-23 10:32:05 +02:00
|
|
|
size += axisCount * 4
|
2015-04-20 21:29:23 +02:00
|
|
|
return size
|
|
|
|
|
|
|
|
def toXML(self, writer, ttFont):
|
|
|
|
writer.simpletag("Version", value=self.version)
|
|
|
|
writer.newline()
|
|
|
|
writer.simpletag("Reserved", value=self.reserved)
|
|
|
|
writer.newline()
|
|
|
|
|
|
|
|
|
|
|
|
POINTS_ARE_WORDS = 0x80
|
|
|
|
POINT_RUN_COUNT_MASK = 0x7F
|
|
|
|
|
|
|
|
class GlyphVariation:
|
|
|
|
def __init__(self, axes):
|
|
|
|
self.axes = axes
|
|
|
|
self.coordinates = []
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
axes = ','.join(sorted(['%s=%s' % (name, value) for (name, value) in self.axes.items()]))
|
|
|
|
return '<GlyphVariation %s>' % axes
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def decompilePoints(data):
|
|
|
|
pos = 0
|
|
|
|
return None
|
|
|
|
|
|
|
|
#def decompilePackedPoints(self, data):
|
|
|
|
# pos = 0
|
|
|
|
# numPoints = ord(data[pos])
|
|
|
|
# if numPoints >= 0x80:
|
|
|
|
# pos += 1
|
|
|
|
# numPoints = (numPoints & 0x7f) << 8 | ord(data[pos])
|
|
|
|
# pos += 1
|
|
|
|
# points = []
|
|
|
|
# if numPoints == 0:
|
|
|
|
# return (points, data[pos:])
|
|
|
|
# i = 0
|
|
|
|
# while i < numPoints:
|
|
|
|
# controlByte = ord(data[pos])
|
|
|
|
# if (controlByte & 0x80) != 0:
|
|
|
|
#
|
|
|
|
# pos += 1
|
|
|
|
# numPointsInRun = (numPointsInRun & 0x7f) << 8 | ord(data[pos])
|
|
|
|
# print('********************** numPointsInRun: %d' % numPointsInRun)
|
|
|
|
# break
|