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