2022-10-13 19:25:29 +02:00
|
|
|
#ifndef OT_GLYF_VARCOMPOSITEGLYPH_HH
|
|
|
|
#define OT_GLYF_VARCOMPOSITEGLYPH_HH
|
|
|
|
|
|
|
|
|
|
|
|
#include "../../hb-open-type.hh"
|
2022-10-17 20:53:58 +02:00
|
|
|
#include "coord-setter.hh"
|
2022-10-13 19:25:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
namespace OT {
|
|
|
|
namespace glyf_impl {
|
|
|
|
|
|
|
|
|
|
|
|
struct VarCompositeGlyphRecord
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
enum var_composite_glyph_flag_t
|
|
|
|
{
|
2022-10-13 21:12:26 +02:00
|
|
|
USE_MY_METRICS = 0x0001,
|
|
|
|
AXIS_INDICES_ARE_SHORT = 0x0002,
|
|
|
|
UNIFORM_SCALE = 0x0004,
|
|
|
|
HAVE_TRANSLATE_X = 0x0008,
|
|
|
|
HAVE_TRANSLATE_Y = 0x0010,
|
|
|
|
HAVE_ROTATION = 0x0020,
|
|
|
|
HAVE_SCALE_X = 0x0040,
|
|
|
|
HAVE_SCALE_Y = 0x0080,
|
|
|
|
HAVE_SKEW_X = 0x0100,
|
|
|
|
HAVE_SKEW_Y = 0x0200,
|
|
|
|
HAVE_TCENTER_X = 0x0400,
|
|
|
|
HAVE_TCENTER_Y = 0x0800,
|
2022-12-10 07:15:26 +01:00
|
|
|
GID_IS_24 = 0x1000,
|
2022-12-12 21:57:05 +01:00
|
|
|
AXES_HAVE_VARIATION = 0x2000,
|
2023-01-18 22:13:12 +01:00
|
|
|
RESET_UNSPECIFIED_AXES = 0x4000,
|
2022-10-13 19:25:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2022-10-14 01:11:12 +02:00
|
|
|
|
2022-10-13 19:25:29 +02:00
|
|
|
unsigned int get_size () const
|
|
|
|
{
|
|
|
|
unsigned int size = min_size;
|
2022-10-13 21:12:26 +02:00
|
|
|
|
|
|
|
unsigned axis_width = (flags & AXIS_INDICES_ARE_SHORT) ? 4 : 3;
|
2022-12-10 07:15:26 +01:00
|
|
|
size += numAxes * axis_width;
|
|
|
|
|
|
|
|
// gid
|
|
|
|
size += 2;
|
|
|
|
if (flags & GID_IS_24) size += 1;
|
2022-10-13 21:12:26 +02:00
|
|
|
|
|
|
|
if (flags & HAVE_TRANSLATE_X) size += 2;
|
|
|
|
if (flags & HAVE_TRANSLATE_Y) size += 2;
|
|
|
|
if (flags & HAVE_ROTATION) size += 2;
|
|
|
|
if (flags & HAVE_SCALE_X) size += 2;
|
|
|
|
if (flags & HAVE_SCALE_Y) size += 2;
|
|
|
|
if (flags & HAVE_SKEW_X) size += 2;
|
|
|
|
if (flags & HAVE_SKEW_Y) size += 2;
|
|
|
|
if (flags & HAVE_TCENTER_X) size += 2;
|
|
|
|
if (flags & HAVE_TCENTER_Y) size += 2;
|
2022-10-13 19:25:29 +02:00
|
|
|
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2022-10-17 20:12:40 +02:00
|
|
|
bool has_more () const { return true; }
|
|
|
|
|
|
|
|
bool is_use_my_metrics () const { return flags & USE_MY_METRICS; }
|
2023-01-18 22:13:12 +01:00
|
|
|
bool is_reset_unspecified_axes () const { return flags & RESET_UNSPECIFIED_AXES; }
|
2022-10-13 22:15:36 +02:00
|
|
|
|
2022-10-14 01:11:12 +02:00
|
|
|
hb_codepoint_t get_gid () const
|
|
|
|
{
|
2022-12-10 07:15:26 +01:00
|
|
|
if (flags & GID_IS_24)
|
|
|
|
return StructAfter<const HBGlyphID24> (numAxes);
|
|
|
|
else
|
|
|
|
return StructAfter<const HBGlyphID16> (numAxes);
|
2022-10-14 01:11:12 +02:00
|
|
|
}
|
|
|
|
|
2022-12-10 07:15:26 +01:00
|
|
|
unsigned get_numAxes () const
|
2022-10-14 01:11:12 +02:00
|
|
|
{
|
2022-12-10 07:15:26 +01:00
|
|
|
return numAxes;
|
2022-10-14 01:11:12 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned get_num_points () const
|
|
|
|
{
|
2022-12-12 21:57:05 +01:00
|
|
|
unsigned num = 0;
|
|
|
|
if (flags & AXES_HAVE_VARIATION) num += numAxes;
|
|
|
|
if (flags & (HAVE_TRANSLATE_X | HAVE_TRANSLATE_Y)) num++;
|
|
|
|
if (flags & HAVE_ROTATION) num++;
|
|
|
|
if (flags & (HAVE_SCALE_X | HAVE_SCALE_Y)) num++;
|
|
|
|
if (flags & (HAVE_SKEW_X | HAVE_SKEW_Y)) num++;
|
|
|
|
if (flags & (HAVE_TCENTER_X | HAVE_TCENTER_Y)) num++;
|
|
|
|
return num;
|
2022-10-14 01:11:12 +02:00
|
|
|
}
|
|
|
|
|
2022-12-12 21:57:05 +01:00
|
|
|
void transform_points (hb_array_t<contour_point_t> record_points,
|
2022-10-17 20:48:24 +02:00
|
|
|
contour_point_vector_t &points) const
|
2022-10-13 19:25:29 +02:00
|
|
|
{
|
|
|
|
float matrix[4];
|
|
|
|
contour_point_t trans;
|
2022-10-13 21:12:26 +02:00
|
|
|
|
2022-12-12 21:57:05 +01:00
|
|
|
get_transformation_from_points (record_points, matrix, trans);
|
2022-10-17 20:12:40 +02:00
|
|
|
|
2022-10-13 21:12:26 +02:00
|
|
|
points.transform (matrix);
|
|
|
|
points.translate (trans);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void transform (float (&matrix)[4], contour_point_t &trans,
|
|
|
|
float (other)[6])
|
|
|
|
{
|
|
|
|
// https://github.com/fonttools/fonttools/blob/f66ee05f71c8b57b5f519ee975e95edcd1466e14/Lib/fontTools/misc/transform.py#L268
|
|
|
|
float xx1 = other[0];
|
|
|
|
float xy1 = other[1];
|
|
|
|
float yx1 = other[2];
|
|
|
|
float yy1 = other[3];
|
|
|
|
float dx1 = other[4];
|
|
|
|
float dy1 = other[5];
|
|
|
|
float xx2 = matrix[0];
|
|
|
|
float xy2 = matrix[1];
|
|
|
|
float yx2 = matrix[2];
|
|
|
|
float yy2 = matrix[3];
|
|
|
|
float dx2 = trans.x;
|
|
|
|
float dy2 = trans.y;
|
|
|
|
|
|
|
|
matrix[0] = xx1*xx2 + xy1*yx2;
|
|
|
|
matrix[1] = xx1*xy2 + xy1*yy2;
|
|
|
|
matrix[2] = yx1*xx2 + yy1*yx2;
|
|
|
|
matrix[3] = yx1*xy2 + yy1*yy2;
|
|
|
|
trans.x = xx2*dx1 + yx2*dy1 + dx2;
|
|
|
|
trans.y = xy2*dx1 + yy2*dy1 + dy2;
|
2022-10-13 19:25:29 +02:00
|
|
|
}
|
|
|
|
|
2022-10-13 21:12:26 +02:00
|
|
|
static void translate (float (&matrix)[4], contour_point_t &trans,
|
|
|
|
float translateX, float translateY)
|
2022-10-13 19:25:29 +02:00
|
|
|
{
|
2022-10-13 21:12:26 +02:00
|
|
|
// https://github.com/fonttools/fonttools/blob/f66ee05f71c8b57b5f519ee975e95edcd1466e14/Lib/fontTools/misc/transform.py#L213
|
|
|
|
float other[6] = {1.f, 0.f, 0.f, 1.f, translateX, translateY};
|
|
|
|
transform (matrix, trans, other);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void scale (float (&matrix)[4], contour_point_t &trans,
|
|
|
|
float scaleX, float scaleY)
|
|
|
|
{
|
|
|
|
// https://github.com/fonttools/fonttools/blob/f66ee05f71c8b57b5f519ee975e95edcd1466e14/Lib/fontTools/misc/transform.py#L224
|
|
|
|
float other[6] = {scaleX, 0.f, 0.f, scaleY, 0.f, 0.f};
|
|
|
|
transform (matrix, trans, other);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rotate (float (&matrix)[4], contour_point_t &trans,
|
|
|
|
float rotation)
|
|
|
|
{
|
|
|
|
// https://github.com/fonttools/fonttools/blob/f66ee05f71c8b57b5f519ee975e95edcd1466e14/Lib/fontTools/misc/transform.py#L240
|
|
|
|
rotation = rotation * float (M_PI);
|
|
|
|
float c = cosf (rotation);
|
|
|
|
float s = sinf (rotation);
|
|
|
|
float other[6] = {c, s, -s, c, 0.f, 0.f};
|
|
|
|
transform (matrix, trans, other);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void skew (float (&matrix)[4], contour_point_t &trans,
|
|
|
|
float skewX, float skewY)
|
|
|
|
{
|
|
|
|
// https://github.com/fonttools/fonttools/blob/f66ee05f71c8b57b5f519ee975e95edcd1466e14/Lib/fontTools/misc/transform.py#L255
|
|
|
|
skewX = skewX * float (M_PI);
|
|
|
|
skewY = skewY * float (M_PI);
|
2023-01-25 22:37:10 +01:00
|
|
|
float other[6] = {1.f, tanf (skewY), tanf (skewX), 1.f, 0.f, 0.f};
|
2022-10-13 21:12:26 +02:00
|
|
|
transform (matrix, trans, other);
|
|
|
|
}
|
|
|
|
|
2022-10-17 20:48:24 +02:00
|
|
|
bool get_points (contour_point_vector_t &points) const
|
2022-10-13 21:12:26 +02:00
|
|
|
{
|
|
|
|
float translateX = 0.f;
|
|
|
|
float translateY = 0.f;
|
|
|
|
float rotation = 0.f;
|
2022-12-20 01:11:34 +01:00
|
|
|
float scaleX = 1.f * (1 << 10);
|
|
|
|
float scaleY = 1.f * (1 << 10);
|
2022-10-13 21:12:26 +02:00
|
|
|
float skewX = 0.f;
|
|
|
|
float skewY = 0.f;
|
|
|
|
float tCenterX = 0.f;
|
|
|
|
float tCenterY = 0.f;
|
|
|
|
|
2022-10-17 20:48:24 +02:00
|
|
|
if (unlikely (!points.resize (points.length + get_num_points ()))) return false;
|
|
|
|
|
|
|
|
unsigned axis_width = (flags & AXIS_INDICES_ARE_SHORT) ? 2 : 1;
|
2022-12-10 07:15:26 +01:00
|
|
|
unsigned axes_size = numAxes * axis_width;
|
2022-10-17 20:48:24 +02:00
|
|
|
|
|
|
|
const F2DOT14 *q = (const F2DOT14 *) (axes_size +
|
2022-12-10 07:15:26 +01:00
|
|
|
(flags & GID_IS_24 ? 3 : 2) +
|
|
|
|
&StructAfter<const HBUINT8> (numAxes));
|
2022-10-17 20:48:24 +02:00
|
|
|
|
2022-12-12 21:57:05 +01:00
|
|
|
hb_array_t<contour_point_t> rec_points = points.as_array ().sub_array (points.length - get_num_points ());
|
|
|
|
|
2022-12-10 07:15:26 +01:00
|
|
|
unsigned count = numAxes;
|
2022-12-12 21:57:05 +01:00
|
|
|
if (flags & AXES_HAVE_VARIATION)
|
|
|
|
{
|
|
|
|
for (unsigned i = 0; i < count; i++)
|
2023-01-07 22:15:17 +01:00
|
|
|
rec_points[i].x = q++->to_int ();
|
2022-12-12 21:57:05 +01:00
|
|
|
rec_points += count;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
q += count;
|
2022-10-17 20:48:24 +02:00
|
|
|
|
|
|
|
const HBUINT16 *p = (const HBUINT16 *) q;
|
2022-10-13 21:12:26 +02:00
|
|
|
|
|
|
|
if (flags & HAVE_TRANSLATE_X) translateX = * (const FWORD *) p++;
|
|
|
|
if (flags & HAVE_TRANSLATE_Y) translateY = * (const FWORD *) p++;
|
2023-01-07 22:15:17 +01:00
|
|
|
if (flags & HAVE_ROTATION) rotation = ((const F4DOT12 *) p++)->to_int ();
|
|
|
|
if (flags & HAVE_SCALE_X) scaleX = ((const F6DOT10 *) p++)->to_int ();
|
|
|
|
if (flags & HAVE_SCALE_Y) scaleY = ((const F6DOT10 *) p++)->to_int ();
|
|
|
|
if (flags & HAVE_SKEW_X) skewX = ((const F4DOT12 *) p++)->to_int ();
|
|
|
|
if (flags & HAVE_SKEW_Y) skewY = ((const F4DOT12 *) p++)->to_int ();
|
2022-10-13 21:12:26 +02:00
|
|
|
if (flags & HAVE_TCENTER_X) tCenterX = * (const FWORD *) p++;
|
|
|
|
if (flags & HAVE_TCENTER_Y) tCenterY = * (const FWORD *) p++;
|
|
|
|
|
|
|
|
if ((flags & UNIFORM_SCALE) && !(flags & HAVE_SCALE_Y))
|
|
|
|
scaleY = scaleX;
|
|
|
|
|
2022-12-12 21:57:05 +01:00
|
|
|
if (flags & (HAVE_TRANSLATE_X | HAVE_TRANSLATE_Y))
|
|
|
|
{
|
|
|
|
rec_points[0].x = translateX;
|
|
|
|
rec_points[0].y = translateY;
|
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
if (flags & HAVE_ROTATION)
|
|
|
|
{
|
|
|
|
rec_points[0].x = rotation;
|
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
if (flags & (HAVE_SCALE_X | HAVE_SCALE_Y))
|
|
|
|
{
|
|
|
|
rec_points[0].x = scaleX;
|
|
|
|
rec_points[0].y = scaleY;
|
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
if (flags & (HAVE_SKEW_X | HAVE_SKEW_Y))
|
|
|
|
{
|
|
|
|
rec_points[0].x = skewX;
|
|
|
|
rec_points[0].y = skewY;
|
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
if (flags & (HAVE_TCENTER_X | HAVE_TCENTER_Y))
|
|
|
|
{
|
|
|
|
rec_points[0].x = tCenterX;
|
|
|
|
rec_points[0].y = tCenterY;
|
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
assert (!rec_points);
|
2022-10-17 20:48:24 +02:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-12-12 21:57:05 +01:00
|
|
|
void get_transformation_from_points (hb_array_t<contour_point_t> rec_points,
|
2022-10-17 20:48:24 +02:00
|
|
|
float (&matrix)[4], contour_point_t &trans) const
|
|
|
|
{
|
2022-12-12 21:57:05 +01:00
|
|
|
if (flags & AXES_HAVE_VARIATION)
|
|
|
|
rec_points += numAxes;
|
|
|
|
|
2022-10-13 19:25:29 +02:00
|
|
|
matrix[0] = matrix[3] = 1.f;
|
|
|
|
matrix[1] = matrix[2] = 0.f;
|
2022-10-13 21:12:26 +02:00
|
|
|
trans.init (0.f, 0.f);
|
2022-10-13 19:25:29 +02:00
|
|
|
|
2022-12-12 21:57:05 +01:00
|
|
|
float translateX = 0.f;
|
|
|
|
float translateY = 0.f;
|
|
|
|
float rotation = 0.f;
|
|
|
|
float scaleX = 1.f;
|
|
|
|
float scaleY = 1.f;
|
|
|
|
float skewX = 0.f;
|
|
|
|
float skewY = 0.f;
|
|
|
|
float tCenterX = 0.f;
|
|
|
|
float tCenterY = 0.f;
|
2022-10-17 20:48:24 +02:00
|
|
|
|
2022-12-12 21:57:05 +01:00
|
|
|
if (flags & (HAVE_TRANSLATE_X | HAVE_TRANSLATE_Y))
|
|
|
|
{
|
|
|
|
translateX = rec_points[0].x;
|
|
|
|
translateY = rec_points[0].y;
|
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
if (flags & HAVE_ROTATION)
|
|
|
|
{
|
2022-12-20 03:15:44 +01:00
|
|
|
rotation = rec_points[0].x / (1 << 12);
|
2022-12-12 21:57:05 +01:00
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
if (flags & (HAVE_SCALE_X | HAVE_SCALE_Y))
|
|
|
|
{
|
2022-12-20 01:11:34 +01:00
|
|
|
scaleX = rec_points[0].x / (1 << 10);
|
|
|
|
scaleY = rec_points[0].y / (1 << 10);
|
2022-12-12 21:57:05 +01:00
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
if (flags & (HAVE_SKEW_X | HAVE_SKEW_Y))
|
|
|
|
{
|
2022-12-20 03:15:44 +01:00
|
|
|
skewX = rec_points[0].x / (1 << 12);
|
|
|
|
skewY = rec_points[0].y / (1 << 12);
|
2022-12-12 21:57:05 +01:00
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
if (flags & (HAVE_TCENTER_X | HAVE_TCENTER_Y))
|
|
|
|
{
|
|
|
|
tCenterX = rec_points[0].x;
|
|
|
|
tCenterY = rec_points[0].y;
|
|
|
|
rec_points++;
|
|
|
|
}
|
|
|
|
assert (!rec_points);
|
2022-10-17 20:48:24 +02:00
|
|
|
|
2022-10-13 21:12:26 +02:00
|
|
|
translate (matrix, trans, translateX + tCenterX, translateY + tCenterY);
|
|
|
|
rotate (matrix, trans, rotation);
|
|
|
|
scale (matrix, trans, scaleX, scaleY);
|
|
|
|
skew (matrix, trans, -skewX, skewY);
|
|
|
|
translate (matrix, trans, -tCenterX, -tCenterY);
|
2022-10-13 19:25:29 +02:00
|
|
|
}
|
|
|
|
|
2022-10-18 19:00:35 +02:00
|
|
|
void set_variations (coord_setter_t &setter,
|
2022-12-12 21:57:05 +01:00
|
|
|
hb_array_t<contour_point_t> rec_points) const
|
2022-10-17 21:05:22 +02:00
|
|
|
{
|
2022-12-12 21:57:05 +01:00
|
|
|
bool have_variations = flags & AXES_HAVE_VARIATION;
|
2022-10-17 21:05:22 +02:00
|
|
|
unsigned axis_width = (flags & AXIS_INDICES_ARE_SHORT) ? 2 : 1;
|
|
|
|
|
2022-12-10 07:15:26 +01:00
|
|
|
const HBUINT8 *p = (const HBUINT8 *) (((HBUINT8 *) &numAxes) + numAxes.static_size + (flags & GID_IS_24 ? 3 : 2));
|
|
|
|
const HBUINT16 *q = (const HBUINT16 *) (((HBUINT8 *) &numAxes) + numAxes.static_size + (flags & GID_IS_24 ? 3 : 2));
|
2022-10-17 21:05:22 +02:00
|
|
|
|
2022-12-12 21:57:05 +01:00
|
|
|
const F2DOT14 *a = (const F2DOT14 *) ((HBUINT8 *) (axis_width == 1 ? (p + numAxes) : (HBUINT8 *) (q + numAxes)));
|
|
|
|
|
2022-12-10 07:15:26 +01:00
|
|
|
unsigned count = numAxes;
|
2022-10-17 21:05:22 +02:00
|
|
|
for (unsigned i = 0; i < count; i++)
|
|
|
|
{
|
2022-12-13 19:14:20 +01:00
|
|
|
unsigned axis_index = axis_width == 1 ? (unsigned) *p++ : (unsigned) *q++;
|
2022-12-12 21:57:05 +01:00
|
|
|
|
2023-01-07 22:15:17 +01:00
|
|
|
signed v = have_variations ? rec_points[i].x : a++->to_int ();
|
2022-12-12 21:57:05 +01:00
|
|
|
|
2022-10-18 21:38:12 +02:00
|
|
|
v = hb_clamp (v, -(1<<14), (1<<14));
|
2022-12-12 19:39:06 +01:00
|
|
|
setter[axis_index] = v;
|
2022-10-17 21:05:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-13 19:25:29 +02:00
|
|
|
protected:
|
|
|
|
HBUINT16 flags;
|
2022-12-10 07:15:26 +01:00
|
|
|
HBUINT8 numAxes;
|
2022-10-13 19:25:29 +02:00
|
|
|
public:
|
2022-12-10 07:15:26 +01:00
|
|
|
DEFINE_SIZE_MIN (3);
|
2022-10-13 19:25:29 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
using var_composite_iter_t = composite_iter_tmpl<VarCompositeGlyphRecord>;
|
|
|
|
|
|
|
|
struct VarCompositeGlyph
|
|
|
|
{
|
|
|
|
const GlyphHeader &header;
|
|
|
|
hb_bytes_t bytes;
|
|
|
|
VarCompositeGlyph (const GlyphHeader &header_, hb_bytes_t bytes_) :
|
|
|
|
header (header_), bytes (bytes_) {}
|
|
|
|
|
|
|
|
var_composite_iter_t iter () const
|
|
|
|
{ return var_composite_iter_t (bytes, &StructAfter<VarCompositeGlyphRecord, GlyphHeader> (header)); }
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
} /* namespace glyf_impl */
|
|
|
|
} /* namespace OT */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* OT_GLYF_VARCOMPOSITEGLYPH_HH */
|