8 out_fn=os.path.splitext(in_fn)[0]+".table"
11 for line in file(in_fn):
15 parts=line.split(None, 3)
16 code=eval(parts[1])-0x2020
17 code2=(code&0xFF)+((code>>8)&0xFF)*94-95
18 data.append((code, eval(parts[2]), code2))
21 out.write("namespace {\n\n")
23 data.sort(lambda x,y: cmp(x[0],y[0]))
24 out.write("const unsigned short jisx0208_to_ucs_table[94*94] =\n{\n\t")
26 for code in xrange(94*94):
29 if (code%94%12)==0 or (code%94)==0:
31 if i<len(data) and data[i][2]==code:
32 out.write("0x%04X"%data[i][1])
38 data.sort(lambda x,y: cmp(x[1],y[1]))
39 out.write("struct UcsToJis\n{\n\tunsigned short ucs;\n\tunsigned short jis;\n};\nconst UcsToJis ucs_to_jisx0208_table[] =\n{\n\t")
40 for i in xrange(len(data)):
45 out.write("{ 0x%04X, 0x%04X }"%(data[i][1], data[i][0]))
48 out.write("unsigned ucs_to_jisx0208_table_size=%d;\n\n"%len(data))