hb-aat-layout.cc 3.5 KB
Newer Older
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
/*
 * Copyright © 2017  Google, Inc.
 *
 *  This is part of HarfBuzz, a text shaping library.
 *
 * Permission is hereby granted, without written agreement and without
 * license or royalty fees, to use, copy, modify, and distribute this
 * software and its documentation for any purpose, provided that the
 * above copyright notice and the following two paragraphs appear in
 * all copies of this software.
 *
 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
 * DAMAGE.
 *
 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
 * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
 *
 * Google Author(s): Behdad Esfahbod
 */

27
#include "hb-open-type.hh"
28

29
#include "hb-ot-face.hh"
30
#include "hb-aat-layout.hh"
E
Ebrahim Byagowi 已提交
31
#include "hb-aat-layout-ankr-table.hh"
32
#include "hb-aat-layout-bsln-table.hh" // Just so we compile it; unused otherwise.
33
#include "hb-aat-layout-feat-table.hh" // Just so we compile it; unused otherwise.
E
Ebrahim Byagowi 已提交
34
#include "hb-aat-layout-kerx-table.hh"
E
Ebrahim Byagowi 已提交
35
#include "hb-aat-layout-morx-table.hh"
E
Ebrahim Byagowi 已提交
36
#include "hb-aat-layout-trak-table.hh"
37
#include "hb-aat-ltag-table.hh" // Just so we compile it; unused otherwise.
38 39

/*
B
Behdad Esfahbod 已提交
40
 * morx/kerx/trak/ankr
41 42
 */

E
Ebrahim Byagowi 已提交
43 44 45 46 47 48 49
static inline const AAT::morx&
_get_morx (hb_face_t *face, hb_blob_t **blob = nullptr)
{
  if (unlikely (!hb_ot_shaper_face_data_ensure (face)))
  {
    if (blob)
      *blob = hb_blob_get_empty ();
B
Behdad Esfahbod 已提交
50
    return Null(AAT::morx);
E
Ebrahim Byagowi 已提交
51
  }
52
  const AAT::morx& morx = *(hb_ot_face_data (face)->morx.get ());
E
Ebrahim Byagowi 已提交
53
  if (blob)
54
    *blob = hb_ot_face_data (face)->morx.get_blob ();
E
Ebrahim Byagowi 已提交
55 56
  return morx;
}
B
Behdad Esfahbod 已提交
57 58 59 60 61 62 63 64 65 66 67 68 69 70
static inline const AAT::kerx&
_get_kerx (hb_face_t *face, hb_blob_t **blob = nullptr)
{
  if (unlikely (!hb_ot_shaper_face_data_ensure (face)))
  {
    if (blob)
      *blob = hb_blob_get_empty ();
    return Null(AAT::kerx);
  }
  const AAT::kerx& kerx = *(hb_ot_face_data (face)->kerx.get ());
  if (blob)
    *blob = hb_ot_face_data (face)->kerx.get_blob ();
  return kerx;
}
71
static inline const AAT::ankr&
72
_get_ankr (hb_face_t *face, hb_blob_t **blob = nullptr)
73
{
74 75 76 77 78 79 80 81 82 83
  if (unlikely (!hb_ot_shaper_face_data_ensure (face)))
  {
    if (blob)
      *blob = hb_blob_get_empty ();
    return Null(AAT::ankr);
  }
  const AAT::ankr& ankr = *(hb_ot_face_data (face)->ankr.get ());
  if (blob)
    *blob = hb_ot_face_data (face)->ankr.get_blob ();
  return ankr;
84
}
B
Behdad Esfahbod 已提交
85

E
Ebrahim Byagowi 已提交
86

87 88 89 90 91 92
hb_bool_t
hb_aat_layout_has_substitution (hb_face_t *face)
{
  return _get_morx (face).has_data ();
}

93
void
B
Behdad Esfahbod 已提交
94 95 96
hb_aat_layout_substitute (hb_ot_shape_plan_t *plan,
			  hb_font_t *font,
			  hb_buffer_t *buffer)
97
{
98 99
  hb_blob_t *blob;
  const AAT::morx& morx = _get_morx (font->face, &blob);
100

B
Behdad Esfahbod 已提交
101
  AAT::hb_aat_apply_context_t c (plan, font, buffer, blob);
102
  morx.apply (&c);
103
}
104

B
Behdad Esfahbod 已提交
105 106 107 108 109 110 111

hb_bool_t
hb_aat_layout_has_positioning (hb_face_t *face)
{
  return _get_kerx (face).has_data ();
}

112
void
B
Behdad Esfahbod 已提交
113 114 115
hb_aat_layout_position (hb_ot_shape_plan_t *plan,
			hb_font_t *font,
			hb_buffer_t *buffer)
116 117 118 119
{
  hb_blob_t *blob;
  const AAT::kerx& kerx = _get_kerx (font->face, &blob);

120 121 122 123 124
  hb_blob_t *ankr_blob;
  const AAT::ankr& ankr = _get_ankr (font->face, &ankr_blob);

  AAT::hb_aat_apply_context_t c (plan, font, buffer, blob,
				 ankr, ankr_blob->data + ankr_blob->length);
B
Behdad Esfahbod 已提交
125
  kerx.apply (&c);
126
}