2009-12-20 20:58:26 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Red Hat, Inc.
|
|
|
|
*
|
2010-04-22 06:11:43 +02:00
|
|
|
* This is part of HarfBuzz, a text shaping library.
|
2009-12-20 20:58:26 +01:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Red Hat Author(s): Behdad Esfahbod
|
|
|
|
*/
|
|
|
|
|
2010-05-13 00:23:21 +02:00
|
|
|
#include "hb-ot-shape-private.hh"
|
2009-12-20 20:58:26 +01:00
|
|
|
|
2010-05-13 00:23:21 +02:00
|
|
|
#include "hb-buffer-private.hh"
|
2009-12-20 20:58:26 +01:00
|
|
|
|
|
|
|
#include "hb-ot-layout.h"
|
|
|
|
|
|
|
|
hb_tag_t default_features[] = {
|
|
|
|
/* GSUB */
|
|
|
|
HB_TAG('c','c','m','p'),
|
|
|
|
HB_TAG('l','o','c','l'),
|
|
|
|
HB_TAG('l','i','g','a'),
|
|
|
|
HB_TAG('c','l','i','g'),
|
|
|
|
/* GPOS */
|
|
|
|
HB_TAG('k','e','r','n'),
|
|
|
|
HB_TAG('m','a','r','k'),
|
|
|
|
HB_TAG('m','k','m','k'),
|
|
|
|
};
|
|
|
|
|
2010-05-20 16:14:44 +02:00
|
|
|
struct lookup_map {
|
|
|
|
unsigned int index;
|
|
|
|
hb_mask_t mask;
|
|
|
|
};
|
|
|
|
|
2009-12-20 20:58:26 +01:00
|
|
|
|
|
|
|
static void
|
|
|
|
add_feature (hb_face_t *face,
|
|
|
|
hb_tag_t table_tag,
|
|
|
|
unsigned int feature_index,
|
2010-05-20 16:14:44 +02:00
|
|
|
hb_mask_t mask,
|
|
|
|
lookup_map *lookups,
|
2009-12-20 20:58:26 +01:00
|
|
|
unsigned int *num_lookups,
|
|
|
|
unsigned int room_lookups)
|
|
|
|
{
|
|
|
|
unsigned int i = room_lookups - *num_lookups;
|
2010-05-20 16:14:44 +02:00
|
|
|
lookups += *num_lookups;
|
|
|
|
|
|
|
|
unsigned int *lookup_indices = (unsigned int *) lookups;
|
|
|
|
|
2009-12-20 20:58:26 +01:00
|
|
|
hb_ot_layout_feature_get_lookup_indexes (face, table_tag, feature_index, 0,
|
|
|
|
&i,
|
2010-05-20 16:14:44 +02:00
|
|
|
lookup_indices);
|
|
|
|
|
2009-12-20 20:58:26 +01:00
|
|
|
*num_lookups += i;
|
2010-05-20 16:14:44 +02:00
|
|
|
|
|
|
|
while (i--) {
|
|
|
|
lookups[i].mask = mask;
|
|
|
|
lookups[i].index = lookup_indices[i];
|
|
|
|
}
|
2009-12-20 20:58:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
cmp_lookups (const void *p1, const void *p2)
|
|
|
|
{
|
2010-05-20 16:14:44 +02:00
|
|
|
const lookup_map *a = (const lookup_map *) p1;
|
|
|
|
const lookup_map *b = (const lookup_map *) p2;
|
2009-12-20 20:58:26 +01:00
|
|
|
|
2010-05-20 16:14:44 +02:00
|
|
|
return a->index - b->index;
|
2009-12-20 20:58:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2010-04-23 20:44:55 +02:00
|
|
|
setup_lookups (hb_face_t *face,
|
2009-12-20 20:58:26 +01:00
|
|
|
hb_buffer_t *buffer,
|
|
|
|
hb_feature_t *features,
|
|
|
|
unsigned int num_features,
|
|
|
|
hb_tag_t table_tag,
|
2010-05-20 16:14:44 +02:00
|
|
|
lookup_map *lookups,
|
2009-12-20 20:58:26 +01:00
|
|
|
unsigned int *num_lookups)
|
|
|
|
{
|
|
|
|
unsigned int i, j, script_index, language_index, feature_index, room_lookups;
|
|
|
|
|
|
|
|
room_lookups = *num_lookups;
|
|
|
|
*num_lookups = 0;
|
|
|
|
|
|
|
|
hb_ot_layout_table_choose_script (face, table_tag,
|
|
|
|
hb_ot_tags_from_script (buffer->script),
|
|
|
|
&script_index);
|
|
|
|
hb_ot_layout_script_find_language (face, table_tag, script_index,
|
|
|
|
hb_ot_tag_from_language (buffer->language),
|
|
|
|
&language_index);
|
|
|
|
|
|
|
|
if (hb_ot_layout_language_get_required_feature_index (face, table_tag, script_index, language_index,
|
|
|
|
&feature_index))
|
2010-05-20 16:14:44 +02:00
|
|
|
add_feature (face, table_tag, feature_index, 1, lookups, num_lookups, room_lookups);
|
2009-12-20 20:58:26 +01:00
|
|
|
|
|
|
|
for (i = 0; i < ARRAY_LENGTH (default_features); i++)
|
|
|
|
{
|
|
|
|
if (hb_ot_layout_language_find_feature (face, table_tag, script_index, language_index,
|
|
|
|
default_features[i],
|
|
|
|
&feature_index))
|
2010-05-20 16:14:44 +02:00
|
|
|
add_feature (face, table_tag, feature_index, 1, lookups, num_lookups, room_lookups);
|
2009-12-20 20:58:26 +01:00
|
|
|
}
|
|
|
|
|
2010-05-20 16:40:12 +02:00
|
|
|
/* Clear buffer masks. */
|
|
|
|
unsigned int count = buffer->len;
|
|
|
|
for (unsigned int i = 0; i < count; i++)
|
|
|
|
buffer->info[i].mask = 1;
|
|
|
|
|
|
|
|
unsigned int last_bit_used = 1;
|
2010-05-20 14:40:18 +02:00
|
|
|
for (i = 0; i < num_features; i++)
|
|
|
|
{
|
2010-05-20 16:40:12 +02:00
|
|
|
unsigned int bits_needed = _hb_bit_storage (features[i].value);
|
|
|
|
if (!bits_needed)
|
|
|
|
continue;
|
|
|
|
unsigned int mask = (1 << (last_bit_used + bits_needed)) - (1 << last_bit_used);
|
|
|
|
unsigned int value = features[i].value << last_bit_used;
|
|
|
|
last_bit_used += bits_needed;
|
|
|
|
|
2010-05-20 14:40:18 +02:00
|
|
|
if (hb_ot_layout_language_find_feature (face, table_tag, script_index, language_index,
|
|
|
|
features[i].tag,
|
|
|
|
&feature_index))
|
2010-05-20 16:40:12 +02:00
|
|
|
add_feature (face, table_tag, feature_index, mask, lookups, num_lookups, room_lookups);
|
|
|
|
|
|
|
|
/* Turn mask on in the buffer, the über-slow way! */
|
|
|
|
unsigned int count = buffer->len;
|
2010-05-21 13:55:57 +02:00
|
|
|
for (unsigned int j = 0; j < count; j++) {
|
|
|
|
unsigned int cluster = buffer->info[j].cluster;
|
2010-05-20 16:40:12 +02:00
|
|
|
if (features[i].start <= cluster && cluster < features[i].end)
|
2010-05-21 13:55:57 +02:00
|
|
|
buffer->info[j].mask |= value;
|
2010-05-20 16:40:12 +02:00
|
|
|
}
|
2010-05-20 14:40:18 +02:00
|
|
|
}
|
|
|
|
|
2009-12-20 20:58:26 +01:00
|
|
|
qsort (lookups, *num_lookups, sizeof (lookups[0]), cmp_lookups);
|
|
|
|
|
|
|
|
if (*num_lookups)
|
|
|
|
{
|
|
|
|
for (i = 1, j = 0; i < *num_lookups; i++)
|
2010-05-20 16:14:44 +02:00
|
|
|
if (lookups[i].index != lookups[j].index)
|
2009-12-20 20:58:26 +01:00
|
|
|
lookups[++j] = lookups[i];
|
2010-05-20 16:14:44 +02:00
|
|
|
else
|
|
|
|
lookups[j].mask |= lookups[i].mask;
|
|
|
|
j++;
|
2009-12-20 20:58:26 +01:00
|
|
|
*num_lookups = j;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-12-20 21:03:11 +01:00
|
|
|
hb_bool_t
|
2010-04-29 19:56:44 +02:00
|
|
|
_hb_ot_substitute_complex (hb_font_t *font HB_UNUSED,
|
2009-12-20 20:58:26 +01:00
|
|
|
hb_face_t *face,
|
|
|
|
hb_buffer_t *buffer,
|
|
|
|
hb_feature_t *features,
|
|
|
|
unsigned int num_features)
|
|
|
|
{
|
2010-05-20 16:14:44 +02:00
|
|
|
lookup_map lookups[1000];
|
2009-12-20 20:58:26 +01:00
|
|
|
unsigned int num_lookups = ARRAY_LENGTH (lookups);
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (!hb_ot_layout_has_substitution (face))
|
|
|
|
return FALSE;
|
|
|
|
|
2010-04-23 20:44:55 +02:00
|
|
|
setup_lookups (face, buffer, features, num_features,
|
2009-12-20 20:58:26 +01:00
|
|
|
HB_OT_TAG_GSUB,
|
|
|
|
lookups, &num_lookups);
|
|
|
|
|
|
|
|
for (i = 0; i < num_lookups; i++)
|
2010-05-20 16:14:44 +02:00
|
|
|
hb_ot_layout_substitute_lookup (face, buffer, lookups[i].index, lookups[i].mask);
|
2009-12-20 20:58:26 +01:00
|
|
|
|
2009-12-20 21:26:24 +01:00
|
|
|
return TRUE;
|
2009-12-20 20:58:26 +01:00
|
|
|
}
|
|
|
|
|
2009-12-20 21:03:11 +01:00
|
|
|
hb_bool_t
|
2009-12-20 20:58:26 +01:00
|
|
|
_hb_ot_position_complex (hb_font_t *font,
|
|
|
|
hb_face_t *face,
|
|
|
|
hb_buffer_t *buffer,
|
|
|
|
hb_feature_t *features,
|
|
|
|
unsigned int num_features)
|
|
|
|
{
|
2010-05-20 16:14:44 +02:00
|
|
|
lookup_map lookups[1000];
|
2009-12-20 20:58:26 +01:00
|
|
|
unsigned int num_lookups = ARRAY_LENGTH (lookups);
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (!hb_ot_layout_has_positioning (face))
|
|
|
|
return FALSE;
|
|
|
|
|
2010-04-23 20:44:55 +02:00
|
|
|
setup_lookups (face, buffer, features, num_features,
|
2009-12-20 20:58:26 +01:00
|
|
|
HB_OT_TAG_GPOS,
|
|
|
|
lookups, &num_lookups);
|
|
|
|
|
|
|
|
for (i = 0; i < num_lookups; i++)
|
2010-05-20 16:14:44 +02:00
|
|
|
hb_ot_layout_position_lookup (font, face, buffer, lookups[i].index, lookups[i].mask);
|
2009-12-20 20:58:26 +01:00
|
|
|
|
|
|
|
hb_ot_layout_position_finish (font, face, buffer);
|
|
|
|
|
2009-12-20 21:26:24 +01:00
|
|
|
return TRUE;
|
2009-12-20 20:58:26 +01:00
|
|
|
}
|