blob: badbd5a6981bc6d994176b1e00280c18a1d8ccf0 (
plain)
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
|
#include "XeTeX_ext.h"
#include <map>
#include <iostream>
#include <assert.h>
using namespace std;
typedef pair<int, unsigned int> GlyphId;
typedef map<GlyphId, int> ProtrusionFactor;
ProtrusionFactor leftProt, rightProt;
extern "C" {
void set_cp_code(int fontNum, unsigned int code, int side, int value)
{
GlyphId id(fontNum, code);
switch (side) {
case LEFT_SIDE:
leftProt[id] = value;
break;
case RIGHT_SIDE:
rightProt[id] = value;
break;
default:
assert(0); // we should not reach here
}
}
int get_cp_code(int fontNum, unsigned int code, int side)
{
GlyphId id(fontNum, code);
ProtrusionFactor* container;
switch (side) {
case LEFT_SIDE:
container = &leftProt;
break;
case RIGHT_SIDE:
container = &rightProt;
break;
default:
assert(0); // we should not reach here
}
ProtrusionFactor::iterator it = container->find(id);
if (it == container->end())
return 0;
return it->second;
}
}
|