hb-aat-layout.cc 4.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 27
/*
 * 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
 */

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

29
#include "hb-ot-layout-private.hh"
30
#include "hb-ot-layout-gsubgpos-private.hh"
31

32
#include "hb-aat-layout-private.hh"
E
Ebrahim Byagowi 已提交
33
#include "hb-aat-layout-ankr-table.hh"
34
#include "hb-aat-layout-bsln-table.hh" // Just so we compile it; unused otherwise.
35
#include "hb-aat-layout-feat-table.hh" // Just so we compile it; unused otherwise.
E
Ebrahim Byagowi 已提交
36
#include "hb-aat-layout-kerx-table.hh"
E
Ebrahim Byagowi 已提交
37
#include "hb-aat-layout-morx-table.hh"
E
Ebrahim Byagowi 已提交
38
#include "hb-aat-layout-trak-table.hh"
39
#include "hb-aat-fmtx-table.hh" // Just so we compile it; unused otherwise.
40
#include "hb-aat-gcid-table.hh" // Just so we compile it; unused otherwise.
41
#include "hb-aat-ltag-table.hh" // Just so we compile it; unused otherwise.
42 43

/*
E
Ebrahim Byagowi 已提交
44
 * morx/kerx/trak
45 46
 */

47
#if 0
E
Ebrahim Byagowi 已提交
48 49
static inline const AAT::ankr&
_get_ankr (hb_face_t *face, hb_blob_t **blob = nullptr)
50
{
51 52
  if (unlikely (!hb_ot_shaper_face_data_ensure (face)))
  {
53 54
    if (blob)
      *blob = hb_blob_get_empty ();
B
Behdad Esfahbod 已提交
55
    return Null(AAT::ankr);
56
  }
57
  hb_ot_layout_t * layout = hb_ot_layout_from_face (face);
E
Ebrahim Byagowi 已提交
58
  const AAT::ankr& ankr = *(layout->ankr.get ());
59
  if (blob)
E
Ebrahim Byagowi 已提交
60 61
    *blob = layout->ankr.blob;
  return ankr;
62
}
B
Behdad Esfahbod 已提交
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 ();
B
Behdad Esfahbod 已提交
71
    return Null(AAT::kerx);
72 73 74 75 76 77 78 79 80
  }
  hb_ot_layout_t * layout = hb_ot_layout_from_face (face);
  /* XXX this doesn't call set_num_glyphs on sanitizer. */
  const AAT::kerx& kerx = *(layout->kerx.get ());
  if (blob)
    *blob = layout->kerx.blob;
  return kerx;
}

E
Ebrahim Byagowi 已提交
81 82 83 84 85 86 87
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 已提交
88
    return Null(AAT::morx);
E
Ebrahim Byagowi 已提交
89 90 91 92 93 94 95 96 97
  }
  hb_ot_layout_t * layout = hb_ot_layout_from_face (face);
  /* XXX this doesn't call set_num_glyphs on sanitizer. */
  const AAT::morx& morx = *(layout->morx.get ());
  if (blob)
    *blob = layout->morx.blob;
  return morx;
}

98 99 100 101 102 103 104
static inline const AAT::trak&
_get_trak (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 已提交
105
    return Null(AAT::trak);
106 107 108 109 110 111 112
  }
  hb_ot_layout_t * layout = hb_ot_layout_from_face (face);
  const AAT::trak& trak = *(layout->trak.get ());
  if (blob)
    *blob = layout->trak.blob;
  return trak;
}
113
#endif
114

115 116 117 118 119
// static inline void
// _hb_aat_layout_create (hb_face_t *face)
// {
//   OT::Sanitizer<AAT::morx> sanitizer;
//   sanitizer.set_num_glyphs (face->get_num_glyphs ());
120
//   hb_blob_t *morx_blob = sanitizer.sanitize (face->reference_table (HB_AAT_TAG_morx));
121
//   morx_blob->as<AAT::morx> ();
B
Behdad Esfahbod 已提交
122

123 124
//   if (0)
//   {
125
//     morx_blob->as<AAT::Lookup<OT::GlyphID> > ()->get_value (1, face->get_num_glyphs ());
126 127
//   }
// }
128 129

void
130
hb_aat_layout_substitute (hb_font_t *font, hb_buffer_t *buffer)
131
{
132
#if 0
133 134
  hb_blob_t *blob;
  const AAT::morx& morx = _get_morx (font->face, &blob);
135

136
  AAT::hb_aat_apply_context_t c (font, buffer, blob);
137
  morx.apply (&c);
138
#endif
139
}
140 141 142 143

void
hb_aat_layout_position (hb_font_t *font, hb_buffer_t *buffer)
{
144
#if 0
145
  hb_blob_t *blob;
E
Ebrahim Byagowi 已提交
146
  const AAT::ankr& ankr = _get_ankr (font->face, &blob);
147 148 149 150
  const AAT::kerx& kerx = _get_kerx (font->face, &blob);
  const AAT::trak& trak = _get_trak (font->face, &blob);

  AAT::hb_aat_apply_context_t c (font, buffer, blob);
E
Ebrahim Byagowi 已提交
151
  kerx.apply (&c, &ankr);
152
  trak.apply (&c);
153
#endif
154
}