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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HB_OT_CPAL_TABLE_HH
|
|
|
|
#define HB_OT_CPAL_TABLE_HH
|
|
|
|
|
|
|
|
#include "hb-open-type-private.hh"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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 ColorRecord
|
|
|
|
{
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c) const
|
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
|
|
|
return_trace (true);
|
|
|
|
}
|
|
|
|
|
2018-02-27 20:26:17 +01:00
|
|
|
HBUINT8 blue;
|
|
|
|
HBUINT8 green;
|
|
|
|
HBUINT8 red;
|
|
|
|
HBUINT8 alpha;
|
2016-04-25 18:20:57 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_STATIC (4);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct CPALV1Tail
|
|
|
|
{
|
2018-02-27 20:26:17 +01:00
|
|
|
friend struct CPAL;
|
|
|
|
|
|
|
|
inline bool sanitize (hb_sanitize_context_t *c, unsigned int palettes) const
|
2016-04-25 18:20:57 +02:00
|
|
|
{
|
|
|
|
TRACE_SANITIZE (this);
|
2018-02-27 20:26:17 +01:00
|
|
|
return_trace (
|
|
|
|
c->check_struct (this) &&
|
|
|
|
c->check_array ((const void*) &paletteFlags, sizeof (HBUINT32), palettes) &&
|
|
|
|
c->check_array ((const void*) &paletteLabel, sizeof (HBUINT16), palettes) &&
|
|
|
|
c->check_array ((const void*) &paletteEntryLabel, sizeof (HBUINT16), palettes));
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
inline hb_ot_color_palette_flags_t
|
|
|
|
get_palette_flags (const void *base, unsigned int palette) const
|
|
|
|
{
|
|
|
|
const HBUINT32* flags = (const HBUINT32*) (const void*) &paletteFlags (base);
|
|
|
|
return (hb_ot_color_palette_flags_t) (uint32_t) flags[palette];
|
|
|
|
}
|
|
|
|
|
|
|
|
inline unsigned int
|
|
|
|
get_palette_name_id (const void *base, unsigned int palette) const
|
|
|
|
{
|
|
|
|
const HBUINT16* name_ids = (const HBUINT16*) (const void*) &paletteLabel (base);
|
|
|
|
return name_ids[palette];
|
2016-04-25 18:20:57 +02:00
|
|
|
}
|
2018-02-27 20:26:17 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
LOffsetTo<HBUINT32> paletteFlags;
|
|
|
|
LOffsetTo<HBUINT16> paletteLabel;
|
|
|
|
LOffsetTo<HBUINT16> paletteEntryLabel;
|
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
|
|
|
};
|
|
|
|
|
|
|
|
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-02-27 20:26:17 +01:00
|
|
|
if (!(c->check_struct (this) &&
|
|
|
|
colorRecords.sanitize (c)))
|
2016-04-25 18:20:57 +02:00
|
|
|
return_trace (false);
|
2018-02-27 20:26:17 +01:00
|
|
|
|
|
|
|
unsigned int palettes = numPalettes;
|
|
|
|
if (!c->check_array (colorRecordIndices, sizeof (HBUINT16), palettes))
|
|
|
|
return_trace (false);
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < palettes; ++i)
|
|
|
|
if (colorRecordIndices[i] + numPaletteEntries > colorRecords.get_size ())
|
|
|
|
return_trace (false);
|
|
|
|
|
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);
|
|
|
|
return_trace (v1.sanitize (c, palettes));
|
2016-04-25 18:20:57 +02:00
|
|
|
}
|
|
|
|
|
2018-02-27 20:26:17 +01:00
|
|
|
inline unsigned int get_size (void) const
|
|
|
|
{
|
2016-04-25 18:20:57 +02:00
|
|
|
return min_size + numPalettes * 2;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
HBUINT16 version;
|
2016-04-25 18:20:57 +02:00
|
|
|
|
|
|
|
/* Version 0 */
|
2018-02-27 20:26:17 +01:00
|
|
|
HBUINT16 numPaletteEntries;
|
|
|
|
HBUINT16 numPalettes;
|
|
|
|
ArrayOf<ColorRecord> colorRecords;
|
|
|
|
HBUINT16 colorRecordIndices[VAR]; // VAR=numPalettes
|
2018-03-01 07:57:18 +01:00
|
|
|
/*CPALV1Tail v1[VAR];*/
|
2016-04-25 18:20:57 +02:00
|
|
|
public:
|
|
|
|
DEFINE_SIZE_ARRAY (12, colorRecordIndices);
|
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace OT */
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* HB_OT_CPAL_TABLE_HH */
|