2017-08-15 02:24:36 +02:00
|
|
|
/*
|
|
|
|
* 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"
|
2018-01-09 17:55:17 +01:00
|
|
|
|
2017-08-15 02:24:36 +02:00
|
|
|
#include "hb-ot-layout-private.hh"
|
2018-01-09 17:55:17 +01:00
|
|
|
#include "hb-ot-layout-gsubgpos-private.hh"
|
2017-08-15 02:24:36 +02:00
|
|
|
|
2017-08-18 01:55:54 +02:00
|
|
|
#include "hb-aat-layout-private.hh"
|
2018-02-25 22:01:09 +01:00
|
|
|
#include "hb-aat-layout-ankr-table.hh"
|
2018-03-30 17:06:00 +02:00
|
|
|
#include "hb-aat-layout-bsln-table.hh" // Just so we compile it; unused otherwise.
|
2018-04-01 09:46:42 +02:00
|
|
|
#include "hb-aat-layout-feat-table.hh" // Just so we compile it; unused otherwise.
|
2018-02-19 20:57:08 +01:00
|
|
|
#include "hb-aat-layout-kerx-table.hh"
|
2018-02-25 22:01:09 +01:00
|
|
|
#include "hb-aat-layout-morx-table.hh"
|
2018-02-19 20:57:08 +01:00
|
|
|
#include "hb-aat-layout-trak-table.hh"
|
2018-03-30 17:06:00 +02:00
|
|
|
#include "hb-aat-fmtx-table.hh" // Just so we compile it; unused otherwise.
|
2018-03-30 19:27:10 +02:00
|
|
|
#include "hb-aat-gcid-table.hh" // Just so we compile it; unused otherwise.
|
2018-03-26 10:58:26 +02:00
|
|
|
#include "hb-aat-ltag-table.hh" // Just so we compile it; unused otherwise.
|
2017-08-15 02:24:36 +02:00
|
|
|
|
|
|
|
/*
|
2018-02-25 10:00:33 +01:00
|
|
|
* morx/kerx/trak
|
2017-08-15 02:24:36 +02:00
|
|
|
*/
|
|
|
|
|
2018-05-04 03:03:27 +02:00
|
|
|
#if 0
|
2018-02-25 22:01:09 +01:00
|
|
|
static inline const AAT::ankr&
|
|
|
|
_get_ankr (hb_face_t *face, hb_blob_t **blob = nullptr)
|
2017-08-15 02:24:36 +02:00
|
|
|
{
|
2018-01-15 21:37:55 +01:00
|
|
|
if (unlikely (!hb_ot_shaper_face_data_ensure (face)))
|
|
|
|
{
|
2018-01-20 01:52:01 +01:00
|
|
|
if (blob)
|
|
|
|
*blob = hb_blob_get_empty ();
|
2018-02-25 22:01:09 +01:00
|
|
|
return OT::Null(AAT::ankr);
|
2018-01-15 21:37:55 +01:00
|
|
|
}
|
2017-08-15 02:24:36 +02:00
|
|
|
hb_ot_layout_t * layout = hb_ot_layout_from_face (face);
|
2018-02-25 22:01:09 +01:00
|
|
|
const AAT::ankr& ankr = *(layout->ankr.get ());
|
2018-01-20 01:52:01 +01:00
|
|
|
if (blob)
|
2018-02-25 22:01:09 +01:00
|
|
|
*blob = layout->ankr.blob;
|
|
|
|
return ankr;
|
2017-08-15 02:24:36 +02:00
|
|
|
}
|
2018-01-09 15:48:51 +01:00
|
|
|
|
2018-02-24 10:19:42 +01:00
|
|
|
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 OT::Null(AAT::kerx);
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-02-25 22:01:09 +01:00
|
|
|
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 ();
|
|
|
|
return OT::Null(AAT::morx);
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-02-24 10:19:42 +01:00
|
|
|
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 ();
|
|
|
|
return OT::Null(AAT::trak);
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
}
|
2018-05-04 03:03:27 +02:00
|
|
|
#endif
|
2018-02-24 10:19:42 +01:00
|
|
|
|
2018-02-24 11:47:54 +01:00
|
|
|
// static inline void
|
|
|
|
// _hb_aat_layout_create (hb_face_t *face)
|
|
|
|
// {
|
|
|
|
// OT::Sanitizer<AAT::morx> sanitizer;
|
|
|
|
// sanitizer.set_num_glyphs (face->get_num_glyphs ());
|
2018-03-26 09:34:30 +02:00
|
|
|
// hb_blob_t *morx_blob = sanitizer.sanitize (face->reference_table (HB_AAT_TAG_morx));
|
2018-02-24 11:47:54 +01:00
|
|
|
// OT::Sanitizer<AAT::morx>::lock_instance (morx_blob);
|
2018-01-09 15:48:51 +01:00
|
|
|
|
2018-02-24 11:47:54 +01:00
|
|
|
// if (0)
|
|
|
|
// {
|
|
|
|
// OT::Sanitizer<AAT::Lookup<OT::GlyphID> >::lock_instance (morx_blob)->get_value (1, face->get_num_glyphs ());
|
|
|
|
// }
|
|
|
|
// }
|
2018-01-09 17:55:17 +01:00
|
|
|
|
|
|
|
void
|
2018-01-18 01:59:55 +01:00
|
|
|
hb_aat_layout_substitute (hb_font_t *font, hb_buffer_t *buffer)
|
2018-01-09 17:55:17 +01:00
|
|
|
{
|
2018-05-04 03:03:27 +02:00
|
|
|
#if 0
|
2018-01-20 01:52:01 +01:00
|
|
|
hb_blob_t *blob;
|
|
|
|
const AAT::morx& morx = _get_morx (font->face, &blob);
|
2018-01-18 01:59:55 +01:00
|
|
|
|
2018-01-20 01:52:01 +01:00
|
|
|
AAT::hb_aat_apply_context_t c (font, buffer, blob);
|
2018-01-18 01:59:55 +01:00
|
|
|
morx.apply (&c);
|
2018-05-04 03:03:27 +02:00
|
|
|
#endif
|
2018-01-09 17:55:17 +01:00
|
|
|
}
|
2018-02-24 10:19:42 +01:00
|
|
|
|
|
|
|
void
|
|
|
|
hb_aat_layout_position (hb_font_t *font, hb_buffer_t *buffer)
|
|
|
|
{
|
2018-05-04 03:03:27 +02:00
|
|
|
#if 0
|
2018-02-24 10:19:42 +01:00
|
|
|
hb_blob_t *blob;
|
2018-02-25 22:01:09 +01:00
|
|
|
const AAT::ankr& ankr = _get_ankr (font->face, &blob);
|
2018-02-24 10:19:42 +01:00
|
|
|
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);
|
2018-02-25 22:01:09 +01:00
|
|
|
kerx.apply (&c, &ankr);
|
2018-02-24 10:19:42 +01:00
|
|
|
trak.apply (&c);
|
2018-05-04 03:03:27 +02:00
|
|
|
#endif
|
2018-02-24 10:19:42 +01:00
|
|
|
}
|