forked from hime-ime/hime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpin-juyin.c
73 lines (57 loc) · 1.93 KB
/
pin-juyin.c
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
/* Copyright (C) 2011 Edward Der-Hua Liu, Hsin-Chu, Taiwan
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation version 2.1
* of the License.
*
* 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
#include "hime.h"
#include "pho.h"
int main () {
FILE *fp;
char fnamein[] = "pin-juyin.src";
PIN_JUYIN pinju[1024] = {0};
short pinjuN = 0;
if ((fp = fopen (fnamein, "r")) == NULL)
p_err ("cannot open %s", fnamein);
while (!feof (fp)) {
char tt[128];
tt[0] = 0;
fgets (tt, sizeof (tt), fp);
if (strlen (tt) < 3)
break;
char pin[16], ju[64];
memset (pin, 0, sizeof (pin));
sscanf (tt, "%s %s", pin, ju);
phokey_t kk = 0;
int len = strlen (ju);
int i = 0;
while (i < len) {
kk |= lookup ((u_char *) &ju[i]);
i += utf8_sz (&ju[i]);
}
// dbg("%s '%s' %d\n", pin, ju, kk);
memcpy (pinju[pinjuN].pinyin, pin, sizeof (pinju[0].pinyin));
pinju[pinjuN].key = kk;
pinjuN++;
}
fclose (fp);
dbg ("zz pinjuN:%d\n", pinjuN);
char fnameout[] = "pin-juyin.xlt";
if ((fp = fopen (fnameout, "wb")) == NULL)
p_err ("cannot create %s", fnameout);
fwrite (&pinjuN, sizeof (pinjuN), 1, fp);
fwrite (pinju, sizeof (PIN_JUYIN), pinjuN, fp);
fclose (fp);
return 0;
}