2016-04-25 18:20:57 +02:00
|
|
|
|
/*
|
|
|
|
|
* Copyright © 2016 Google, Inc.
|
2018-02-27 20:26:17 +01:00
|
|
|
|
* Copyright © 2018 Ebrahim Byagowi
|
2016-04-25 18:20:57 +02:00
|
|
|
|
*
|
|
|
|
|
* 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): Sascha Brawer
|
|
|
|
|
*/
|
|
|
|
|
|
2018-03-03 20:13:23 +01:00
|
|
|
|
#ifndef HB_OT_COLOR_CPAL_TABLE_HH
|
|
|
|
|
#define HB_OT_COLOR_CPAL_TABLE_HH
|
2016-04-25 18:20:57 +02:00
|
|
|
|
|
|
|
|
|
#include "hb-open-type-private.hh"
|
|
|
|
|
|
2018-03-07 15:51:42 +01:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Following parts to be moved to a public header.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* hb_ot_color_t:
|
|
|
|
|
* ARGB data type for holding color values.
|
|
|
|
|
*
|
|
|
|
|
* Since: REPLACEME
|
|
|
|
|
*/
|
|
|
|
|
typedef uint32_t hb_ot_color_t;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* hb_ot_color_palette_flags_t:
|
|
|
|
|
* @HB_OT_COLOR_PALETTE_FLAG_DEFAULT: default indicating that there is nothing special to note about a color palette.
|
|
|
|
|
* @HB_OT_COLOR_PALETTE_FLAG_FOR_LIGHT_BACKGROUND: flag indicating that the color palette is suitable for rendering text on light background.
|
|
|
|
|
* @HB_OT_COLOR_PALETTE_FLAG_FOR_DARK_BACKGROUND: flag indicating that the color palette is suitable for rendering text on dark background.
|
|
|
|
|
*
|
|
|
|
|
* Since: REPLACEME
|
|
|
|
|
*/
|
|
|
|
|
typedef enum { /*< flags >*/
|
|
|
|
|
HB_OT_COLOR_PALETTE_FLAG_DEFAULT = 0x00000000u,
|
|
|
|
|
HB_OT_COLOR_PALETTE_FLAG_FOR_LIGHT_BACKGROUND = 0x00000001u,
|
|
|
|
|
HB_OT_COLOR_PALETTE_FLAG_FOR_DARK_BACKGROUND = 0x00000002u,
|
|
|
|
|
} hb_ot_color_palette_flags_t;
|
|
|
|
|
|
|
|
|
|
// HB_EXTERN unsigned int
|
|
|
|
|
// hb_ot_color_get_palette_count (hb_face_t *face);
|
|
|
|
|
|
|
|
|
|
// HB_EXTERN unsigned int
|
|
|
|
|
// hb_ot_color_get_palette_name_id (hb_face_t *face, unsigned int palette);
|
|
|
|
|
|
|
|
|
|
// HB_EXTERN hb_ot_color_palette_flags_t
|
|
|
|
|
// hb_ot_color_get_palette_flags (hb_face_t *face, unsigned int palette);
|
|
|
|
|
|
|
|
|
|
// HB_EXTERN unsigned int
|
|
|
|
|
// hb_ot_color_get_palette_colors (hb_face_t *face,
|
|
|
|
|
// unsigned int palette, /* default=0 */
|
|
|
|
|
// unsigned int start_offset,
|
|
|
|
|
// unsigned int *color_count /* IN/OUT */,
|
|
|
|
|
// hb_ot_color_t *colors /* OUT */);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2016-04-25 18:20:57 +02:00
|
|
|
|
/*
|
|
|
|
|
* Color Palette
|
|
|
|
|
* http://www.microsoft.com/typography/otspec/cpal.htm
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define HB_OT_TAG_CPAL HB_TAG('C','P','A','L')
|
|
|
|
|
|
2018-02-28 10:49:40 +01:00
|
|
|
|
namespace OT {
|
|
|
|
|
|
|
|
|
|
|
2016-04-25 18:20:57 +02:00
|
|
|
|
struct CPALV1Tail
|
|
|
|
|
{
|
2018-02-27 20:26:17 +01:00
|
|
|
|
friend struct CPAL;
|
|
|
|
|
|
2018-04-09 22:23:50 +02:00
|
|
|
|
inline bool
|
|
|
|
|
sanitize (hb_sanitize_context_t *c, const void *base, unsigned int palettes) const
|
2016-04-25 18:20:57 +02:00
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
2018-04-09 22:23:50 +02:00
|
|
|
|
return_trace (c->check_struct (this) &&
|
|
|
|
|
(base+paletteFlagsZ).sanitize (c, palettes) &&
|
|
|
|
|
(base+paletteLabelZ).sanitize (c, palettes) &&
|
|
|
|
|
(base+paletteEntryLabelZ).sanitize (c, palettes));
|
2018-02-27 20:26:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
inline hb_ot_color_palette_flags_t
|
|
|
|
|
get_palette_flags (const void *base, unsigned int palette) const
|
|
|
|
|
{
|
2018-04-09 22:23:50 +02:00
|
|
|
|
// range checked at the CPAL caller
|
|
|
|
|
return (hb_ot_color_palette_flags_t) (uint32_t) (base+paletteFlagsZ)[palette];
|
2018-02-27 20:26:17 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline unsigned int
|
|
|
|
|
get_palette_name_id (const void *base, unsigned int palette) const
|
|
|
|
|
{
|
2018-04-09 22:23:50 +02:00
|
|
|
|
// range checked at the CPAL caller
|
|
|
|
|
return (base+paletteLabelZ)[palette];
|
2016-04-25 18:20:57 +02:00
|
|
|
|
}
|
2018-02-27 20:26:17 +01:00
|
|
|
|
|
|
|
|
|
protected:
|
2018-04-09 22:23:50 +02:00
|
|
|
|
LOffsetTo<UnsizedArrayOf<HBUINT32> >
|
|
|
|
|
paletteFlagsZ; /* Offset from the beginning of CPAL table to
|
|
|
|
|
* the Palette Type Array. Set to 0 if no array
|
|
|
|
|
* is provided. */
|
|
|
|
|
LOffsetTo<UnsizedArrayOf<HBUINT16> >
|
|
|
|
|
paletteLabelZ; /* Offset from the beginning of CPAL table to
|
|
|
|
|
* the Palette Labels Array. Set to 0 if no
|
|
|
|
|
* array is provided. */
|
|
|
|
|
LOffsetTo<UnsizedArrayOf<HBUINT16> >
|
|
|
|
|
paletteEntryLabelZ; /* Offset from the beginning of CPAL table to
|
|
|
|
|
* the Palette Entry Label Array. Set to 0
|
|
|
|
|
* if no array is provided. */
|
2016-04-25 18:20:57 +02:00
|
|
|
|
public:
|
2018-02-27 20:26:17 +01:00
|
|
|
|
DEFINE_SIZE_STATIC (12);
|
2016-04-25 18:20:57 +02:00
|
|
|
|
};
|
|
|
|
|
|
2018-03-06 14:11:08 +01:00
|
|
|
|
typedef HBUINT32 BGRAColor;
|
|
|
|
|
|
2016-04-25 18:20:57 +02:00
|
|
|
|
struct CPAL
|
|
|
|
|
{
|
|
|
|
|
static const hb_tag_t tableTag = HB_OT_TAG_CPAL;
|
|
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
|
{
|
|
|
|
|
TRACE_SANITIZE (this);
|
2018-04-09 22:23:50 +02:00
|
|
|
|
if (!(c->check_struct (this) && // it checks colorRecordIndices also, see #get_size
|
2018-04-11 14:43:20 +02:00
|
|
|
|
(this+colorRecordsZ).sanitize (c, numColorRecords)))
|
2018-02-27 20:26:17 +01:00
|
|
|
|
return_trace (false);
|
|
|
|
|
|
2018-03-06 14:11:08 +01:00
|
|
|
|
// Check for indices sanity so no need for doing it runtime
|
|
|
|
|
for (unsigned int i = 0; i < numPalettes; ++i)
|
2018-04-09 22:23:50 +02:00
|
|
|
|
if (colorRecordIndicesZ[i] + numPaletteEntries > numColorRecords)
|
2018-04-11 14:43:20 +02:00
|
|
|
|
return_trace (false);
|
2018-02-27 20:26:17 +01:00
|
|
|
|
|
2018-03-01 07:57:18 +01:00
|
|
|
|
// If version is zero, we are done here; otherwise we need to check tail also
|
|
|
|
|
if (version == 0)
|
2016-04-25 18:20:57 +02:00
|
|
|
|
return_trace (true);
|
2018-03-01 07:57:18 +01:00
|
|
|
|
|
|
|
|
|
const CPALV1Tail &v1 = StructAfter<CPALV1Tail> (*this);
|
2018-04-09 22:23:50 +02:00
|
|
|
|
return_trace (v1.sanitize (c, this, numPalettes));
|
2016-04-25 18:20:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-27 20:26:17 +01:00
|
|
|
|
inline unsigned int get_size (void) const
|
|
|
|
|
{
|
2018-03-06 14:11:08 +01:00
|
|
|
|
return min_size + numPalettes * sizeof (HBUINT16);
|
2016-04-25 18:20:57 +02:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-27 20:26:17 +01:00
|
|
|
|
inline hb_ot_color_palette_flags_t get_palette_flags (unsigned int palette) const
|
|
|
|
|
{
|
|
|
|
|
if (version == 0 || palette >= numPalettes)
|
|
|
|
|
return HB_OT_COLOR_PALETTE_FLAG_DEFAULT;
|
|
|
|
|
|
|
|
|
|
const CPALV1Tail& cpal1 = StructAfter<CPALV1Tail> (*this);
|
|
|
|
|
return cpal1.get_palette_flags (this, palette);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline unsigned int get_palette_name_id (unsigned int palette) const
|
|
|
|
|
{
|
|
|
|
|
if (version == 0 || palette >= numPalettes)
|
|
|
|
|
return 0xFFFF;
|
|
|
|
|
|
|
|
|
|
const CPALV1Tail& cpal1 = StructAfter<CPALV1Tail> (*this);
|
|
|
|
|
return cpal1.get_palette_name_id (this, palette);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline unsigned int get_palette_count () const
|
|
|
|
|
{
|
|
|
|
|
return numPalettes;
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-09 22:23:50 +02:00
|
|
|
|
inline hb_ot_color_t
|
|
|
|
|
get_color_record_argb (unsigned int color_index, unsigned int palette) const
|
2018-03-03 19:30:29 +01:00
|
|
|
|
{
|
2018-03-06 14:11:08 +01:00
|
|
|
|
if (color_index >= numPaletteEntries || palette >= numPalettes)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
// No need for more range check as it is already done on #sanitize
|
2018-04-09 22:23:50 +02:00
|
|
|
|
return (this+colorRecordsZ)[colorRecordIndicesZ[palette] + color_index];
|
2018-03-03 19:30:29 +01:00
|
|
|
|
}
|
|
|
|
|
|
2018-02-27 20:26:17 +01:00
|
|
|
|
protected:
|
2018-04-09 22:23:50 +02:00
|
|
|
|
HBUINT16 version; /* Table version number */
|
2016-04-25 18:20:57 +02:00
|
|
|
|
/* Version 0 */
|
2018-04-09 22:23:50 +02:00
|
|
|
|
HBUINT16 numPaletteEntries; /* Number of palette entries in each palette. */
|
|
|
|
|
HBUINT16 numPalettes; /* Number of palettes in the table. */
|
|
|
|
|
HBUINT16 numColorRecords; /* Total number of color records, combined for
|
|
|
|
|
* all palettes. */
|
|
|
|
|
LOffsetTo<UnsizedArrayOf<BGRAColor> >
|
|
|
|
|
colorRecordsZ; /* Offset from the beginning of CPAL table to
|
|
|
|
|
* the first ColorRecord. */
|
|
|
|
|
UnsizedArrayOf<HBUINT16>
|
|
|
|
|
colorRecordIndicesZ; /* Index of each palette’s first color record in
|
|
|
|
|
* the combined color record array. */
|
|
|
|
|
/*CPALV1Tail v1;*/
|
2016-04-25 18:20:57 +02:00
|
|
|
|
public:
|
2018-04-09 22:23:50 +02:00
|
|
|
|
DEFINE_SIZE_ARRAY (12, colorRecordIndicesZ);
|
2016-04-25 18:20:57 +02:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} /* namespace OT */
|
|
|
|
|
|
|
|
|
|
|
2018-03-03 20:13:23 +01:00
|
|
|
|
#endif /* HB_OT_COLOR_CPAL_TABLE_HH */
|