harfbuzz/src/hb-ot-color-cpal-table.hh

210 lines
7.0 KiB
C++
Raw Normal View History

2016-04-25 18:20:57 +02:00
/*
* Copyright © 2016 Google, Inc.
* 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_COLOR_CPAL_TABLE_HH
#define HB_OT_COLOR_CPAL_TABLE_HH
2016-04-25 18:20:57 +02:00
#include "hb-open-type.hh"
2018-05-01 17:16:46 +02:00
#include "hb-ot-color.h"
#include "hb-ot-name.h"
2016-04-25 18:20:57 +02:00
/*
* CPAL -- Color Palette
* https://docs.microsoft.com/en-us/typography/opentype/spec/cpal
*/
#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
{
friend struct CPAL;
private:
inline hb_ot_color_palette_flags_t
2018-10-22 23:51:40 +02:00
get_palette_flags (const void *base,
unsigned int palette_index,
unsigned int palette_count) const
{
if (!paletteFlagsZ) return HB_OT_COLOR_PALETTE_FLAG_DEFAULT;
return (hb_ot_color_palette_flags_t) (uint32_t)
hb_array_t<const HBUINT32> ((base+paletteFlagsZ).arrayZ, palette_count)[palette_index];
}
inline unsigned int
2018-10-22 23:51:40 +02:00
get_palette_name_id (const void *base,
unsigned int palette_index,
unsigned int palette_count) const
{
/* XXX the Null(NameID) returned by hb_array_t is wrong. Figure out why
* and remove the explicit bound check. */
if (!paletteLabelsZ || palette_index >= palette_count) return HB_NAME_ID_INVALID;
return hb_array_t<const NameID> ((base+paletteLabelsZ).arrayZ, palette_count)[palette_index];
2016-04-25 18:20:57 +02:00
}
inline unsigned int
2018-10-22 23:51:40 +02:00
get_color_name_id (const void *base,
unsigned int color_index,
unsigned int color_count) const
{
/* XXX the Null(NameID) returned by hb_array_t is wrong. Figure out why
* and remove the explicit bound check. */
if (!colorLabelsZ || color_index >= color_count) return HB_NAME_ID_INVALID;
return hb_array_t<const NameID> ((base+colorLabelsZ).arrayZ, color_count)[color_index];
2018-10-22 23:51:40 +02:00
}
public:
inline bool sanitize (hb_sanitize_context_t *c,
const void *base,
unsigned int palette_count,
unsigned int color_count) const
2018-10-22 23:51:40 +02:00
{
TRACE_SANITIZE (this);
return_trace (c->check_struct (this) &&
(!paletteFlagsZ || (base+paletteFlagsZ).sanitize (c, palette_count)) &&
(!paletteLabelsZ || (base+paletteLabelsZ).sanitize (c, palette_count)) &&
(!colorLabelsZ || (base+colorLabelsZ).sanitize (c, color_count)));
}
protected:
LOffsetTo<UnsizedArrayOf<HBUINT32>, false>
paletteFlagsZ; /* Offset from the beginning of CPAL table to
* the Palette Type Array. Set to 0 if no array
* is provided. */
LOffsetTo<UnsizedArrayOf<NameID>, false>
paletteLabelsZ; /* Offset from the beginning of CPAL table to
* the palette labels array. Set to 0 if no
* array is provided. */
LOffsetTo<UnsizedArrayOf<NameID>, false>
colorLabelsZ; /* Offset from the beginning of CPAL table to
* the color labels array. Set to 0
* if no array is provided. */
2016-04-25 18:20:57 +02:00
public:
DEFINE_SIZE_STATIC (12);
2016-04-25 18:20:57 +02: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 has_data (void) const { return numPalettes; }
inline unsigned int get_size (void) const
2018-10-22 23:51:40 +02:00
{ return min_size + numPalettes * sizeof (colorRecordIndicesZ[0]); }
inline unsigned int get_palette_count () const { return numPalettes; }
inline unsigned int get_color_count () const { return numColors; }
2016-04-25 18:20:57 +02:00
2018-10-22 23:43:12 +02:00
inline hb_ot_color_palette_flags_t get_palette_flags (unsigned int palette_index) const
{
if (unlikely (version == 0))
return HB_OT_COLOR_PALETTE_FLAG_DEFAULT;
const CPALV1Tail& cpal1 = StructAfter<CPALV1Tail> (*this);
2018-10-22 23:43:12 +02:00
return cpal1.get_palette_flags (this, palette_index, numPalettes);
}
2018-10-22 23:43:12 +02:00
inline unsigned int get_palette_name_id (unsigned int palette_index) const
{
if (unlikely (version == 0))
return HB_NAME_ID_INVALID;
const CPALV1Tail& cpal1 = StructAfter<CPALV1Tail> (*this);
2018-10-22 23:43:12 +02:00
return cpal1.get_palette_name_id (this, palette_index, numPalettes);
}
2018-10-22 23:51:40 +02:00
inline unsigned int get_color_name_id (unsigned int color_index) const
{
if (unlikely (version == 0))
return HB_NAME_ID_INVALID;
const CPALV1Tail& cpal1 = StructAfter<CPALV1Tail> (*this);
2018-10-22 23:51:40 +02:00
return cpal1.get_color_name_id (this, color_index, numColors);
}
2018-05-01 17:16:46 +02:00
bool
2018-10-22 23:43:12 +02:00
get_color_record_argb (unsigned int color_index, unsigned int palette_index, hb_color_t* color) const
{
2018-10-22 23:46:21 +02:00
if (unlikely (color_index >= numColors || palette_index >= numPalettes))
2018-05-01 17:16:46 +02:00
return false;
2018-10-21 10:16:51 +02:00
/* No need for more range check as it is already done on #sanitize */
const UnsizedArrayOf<BGRAColor>& color_records = this+colorRecordsZ;
2018-05-01 17:16:46 +02:00
if (color)
2018-10-22 23:43:12 +02:00
*color = color_records[colorRecordIndicesZ[palette_index] + color_index];
2018-05-01 17:16:46 +02:00
return true;
}
2018-10-22 23:51:40 +02:00
inline bool sanitize (hb_sanitize_context_t *c) const
{
TRACE_SANITIZE (this);
if (unlikely (!(c->check_struct (this) && /* it checks colorRecordIndices also
* See #get_size */
(this+colorRecordsZ).sanitize (c, numColorRecords))))
return_trace (false);
/* Check for indices sanity so no need for doing it runtime */
for (unsigned int i = 0; i < numPalettes; ++i)
if (unlikely (colorRecordIndicesZ[i] + numColors > numColorRecords))
return_trace (false);
/* If version is zero, we are done here; otherwise we need to check tail also */
if (version == 0)
return_trace (true);
const CPALV1Tail &v1 = StructAfter<CPALV1Tail> (*this);
return_trace (likely (v1.sanitize (c, this, numPalettes, numColors)));
}
protected:
HBUINT16 version; /* Table version number */
2016-04-25 18:20:57 +02:00
/* Version 0 */
2018-10-22 23:46:21 +02:00
HBUINT16 numColors; /* Number of colors 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>, false>
colorRecordsZ; /* Offset from the beginning of CPAL table to
* the first ColorRecord. */
UnsizedArrayOf<HBUINT16>
colorRecordIndicesZ; /* Index of each palettes first color record in
* the combined color record array. */
/*CPALV1Tail v1;*/
2016-04-25 18:20:57 +02:00
public:
DEFINE_SIZE_ARRAY (12, colorRecordIndicesZ);
2016-04-25 18:20:57 +02:00
};
} /* namespace OT */
#endif /* HB_OT_COLOR_CPAL_TABLE_HH */