1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
/*
* mprefixups.h: Handle left matra placement
*
* Author: Sivaraj Doddannan
* Ported from IBM's ICU engine. Original copyright:
* (C) Copyright IBM Corp. 1998-2003 - All Rights Reserved
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
#include <config.h>
#include <pango/pango-types.h>
#include "mprefixups.h"
#include <stdio.h>
struct _FixupData
{
glong fBaseIndex;
glong fMPreIndex;
};
MPreFixups *indic_mprefixups_new(glong char_count)
{
MPreFixups *mprefixups = g_new (MPreFixups, 1);
mprefixups->fFixupCount = 0;
mprefixups->fFixupData = g_new (FixupData, char_count);
return mprefixups;
}
void indic_mprefixups_free (MPreFixups *mprefixups)
{
g_free (mprefixups->fFixupData);
g_free (mprefixups);
}
void indic_mprefixups_add (MPreFixups *mprefixups, glong baseIndex, glong mpreIndex)
{
/* NOTE: don't add the fixup data if the mpre is right
* before the base consonant glyph.
*/
if (baseIndex - mpreIndex > 1) {
mprefixups->fFixupData[mprefixups->fFixupCount].fBaseIndex = baseIndex;
mprefixups->fFixupData[mprefixups->fFixupCount].fMPreIndex = mpreIndex;
mprefixups->fFixupCount += 1;
}
}
void indic_mprefixups_apply(MPreFixups *mprefixups, PangoOTBuffer *buffer)
{
glong fixup;
for (fixup = 0; fixup < mprefixups->fFixupCount; fixup += 1) {
gulong baseIndex = mprefixups->fFixupData[fixup].fBaseIndex;
gulong mpreIndex = mprefixups->fFixupData[fixup].fMPreIndex;
glong baseGlyph = -1;
glong mpreGlyph = -1;
glong mpreLimit = -1;
glong mpreCount, moveCount, mpreDest;
glong i;
PangoOTGlyph *glyphs;
int n_glyphs;
PangoOTGlyph *mpreSave;
/* determine post GSUB location of baseIndex and mpreIndex */
pango_ot_buffer_get_glyphs (buffer, &glyphs, &n_glyphs);
for (i = 0; i < n_glyphs; i++) {
if (baseGlyph < 0 && glyphs[i].cluster == baseIndex)
baseGlyph = i;
if (glyphs[i].cluster == mpreIndex) {
if (mpreGlyph < 0)
mpreGlyph = i;
mpreLimit = i + 1;
}
}
if (baseGlyph < 0 || mpreGlyph < 0 || mpreLimit >= baseGlyph) {
continue;
}
mpreCount = mpreLimit - mpreGlyph;
moveCount = baseGlyph - mpreLimit;
mpreDest = baseGlyph - mpreCount;
mpreSave = g_new (PangoOTGlyph, mpreCount);
for (i = 0; i < mpreCount; i += 1) {
mpreSave[i] = glyphs[mpreGlyph + i];
}
for (i = 0; i < moveCount; i += 1) {
glyphs[mpreGlyph + i] = glyphs[mpreLimit + i];
}
for (i = 0; i < mpreCount; i += 1) {
glyphs[mpreDest + i] = mpreSave[i];
}
g_free(mpreSave);
}
}
|