Add code to convert `=>>adobe-japan1' to `=>>adobe-japan1-{0..6}'.
[chise/xemacs-chise.git.1] / lisp / utf-2000 / maps-conf.el
1 (require 'read-maps)
2
3 (dolist (file '("J90-to-UCS.txt" "JSP-to-UCS.txt"
4                 "JX1-to-UCS.txt" "JX2-to-UCS.txt"
5                 "K0-to-UCS.txt"
6                 "G0-to-UCS.txt"
7                 "C2-to-UCS.txt"
8                 "C3-to-UCS.txt" "C4-to-UCS.txt"
9                 "C5-to-UCS.txt" "C6-to-UCS.txt"
10                 "B-to-UCS.txt" "JC3-to-UCS.txt"))
11   (mapping-table-read-file (expand-file-name file "../etc/char-data/")))
12
13 (ucs-compat-read-file "../etc/char-data/UCS-compat.txt")
14
15 (jp-jouyou-read-file "../etc/char-data/jp-jouyou.txt")
16
17 (let ((ucs #xE000)
18       big5 chr
19       ret)
20   (while (<= ucs #xF848)
21     (setq chr (decode-char 'ucs ucs))
22     (when (setq big5 (get-char-attribute chr '=big5-pua))
23       (when (setq chr (decode-char '=big5-cdp big5))
24         (unless (get-char-attribute chr '=big5-cdp)
25           (put-char-attribute chr '=big5-cdp big5))))
26     (setq ucs (1+ ucs))))
27
28
29 (setq gt-pj-1-and-jis-x0208-1990-different-code-points
30       '(#x5C37 #x5C52 #x3521 #x5D62 #x5F4A
31         #x5F5B #x6062 #x4849 #x6173 #x306B
32         #x6328 #x6352 #x6362 #x6471 #x6524
33         #x6530 #x6549 #x6628 #x4356 #x665C
34         #x665D #x6661 #x6660 #x6663 #x4F38
35         #x666B #x4C2E #x6724 #x3D58 #x682B
36         #x427B #x4978 #x694A #x303A #x6A44
37         #x6B43 #x6B78 #x6C2E #x6C57 #x6D36
38         #x6D3A #x3D34 #x4A56 #x3063 #x3D3F
39         #x6E60 #x6F52 #x6F5C #x3458 #x4262
40         #x4E59 #x6F58 #x7051 #x7056 #x375B
41         #x7123 #x712A #x3142 #x3B41 #x7149
42         #x7165 #x7227 #x7233 #x733B #x4E6F
43         #x7366 #x7367 #x7368 #x736C #x5423
44         #x342A #x3476 #x5877 #x592D #x5A61
45         #x3522 #x334C #x657D #x657E #x6621
46         #x335C #x6D7D #x507C #x417C #x5371
47         #x3766 #x3E7D #x555D #x5739 #x5831
48         #x3F78 #x5973 #x5A33 #x5970 #x5A49
49         #x3F22 #x6026 #x4D32 #x612E #x4D63
50         #x4E57 #x316A #x4A43 #x723C #x6A64
51         #x6B36 #x6E43 #x3D36 #x6E44 #x3C60
52         #x6E45 #x6E46 #x6E48 #x6E4B #x6E4A
53         #x6E4F #x6E52 #x6E51 #x4830 #x6E54
54         #x6E55 #x395A #x724D #x737D #x3973
55         #x5379 #x5879 #x3D5D #x3C21 #x4C60
56         #x5267 #x722F #x3C39 #x3848 #x5578
57         #x4742 #x6950 #x697C #x6A24 #x5350
58         #x3326 #x5575 #x5A4B #x3647 #x343F
59         #x4337 #x492D #x3F6C #x6E4D #x4F3F
60         #x353D #x4324 #x475B #x6E47 #x4371
61         #x3F5D #x6E49 #x4D6F #x3C72 #x3D37
62         #x6E4C #x3B44 #x734E #x5567 #x545A
63         #x3071 #x332A #x516A #x476D #x3675
64         #x5734 #x552D #x565A #x564B #x5B79
65         #x5C74 #x5C27 #x5B5E #x3564 #x3823
66         #x6131 #x4A4D #x632E #x635E #x3729
67         #x3951 #x6967 #x704B #x3C38 #x6B26
68         #x4749 #x4428 #x3A47 #x6E4E #x4269
69         #x4043 #x6E56 #x6132 #x5C54 #x3557
70         #x5827 #x4C68 #x505B #x514A #x5D27
71         #x5563 #x5D7A #x4575 #x5F7C #x3B38
72         #x3237 #x3B51 #x596E #x5B5B #x6640
73         #x6D75 #x4D2C))
74
75 (map-char-attribute
76  (lambda (c v)
77    (unless (memq v gt-pj-1-and-jis-x0208-1990-different-code-points)
78      (put-char-attribute (decode-char 'japanese-jisx0208-1990 v)
79                          '=gt-pj-1 v))
80    nil)
81  '=gt-pj-1)
82
83 (let ((default-coded-charset-priority-list
84         '(=gt-pj-1
85           =gt-pj-2
86           =gt-pj-3
87           =gt-pj-4
88           =gt-pj-5
89           =gt-pj-6
90           =gt-pj-7
91           =gt-pj-8
92           =gt-pj-9
93           =gt-pj-10
94           =gt-pj-11
95           =gt-pj-k1
96           =gt-pj-k2))
97       (i 1)
98       chr ret)
99   (while (<= i 12000)
100     (when (and (setq ret (decode-char '=gt-k i))
101                (setq ret (split-char ret))
102                (memq (car ret) default-coded-charset-priority-list))
103       (when (setq chr (apply (function make-char) ret))
104         (put-char-attribute chr '=gt-k i)))
105     (setq i (1+ i))))
106
107 ;; (let (gt ret)
108 ;;   (dolist (ccs '(=gt-pj-1
109 ;;                  =gt-pj-2
110 ;;                  =gt-pj-3
111 ;;                  =gt-pj-4
112 ;;                  =gt-pj-5
113 ;;                  =gt-pj-6
114 ;;                  =gt-pj-7
115 ;;                  =gt-pj-8
116 ;;                  =gt-pj-9
117 ;;                  =gt-pj-10
118 ;;                  =gt-pj-11))
119 ;;     (map-char-attribute
120 ;;      (lambda (c v)
121 ;;        (when (setq gt (encode-char c '=gt))
122 ;;          (put-char-attribute c '=gt gt)
123 ;;          (put-char-attribute (decode-char ccs v) '=gt gt))
124 ;;        nil)
125 ;;      ccs)))
126
127 ;; (let (ret)
128 ;;   (dolist (feature
129 ;;            (let (dest)
130 ;;              (dolist (feature (char-attribute-list))
131 ;;                (when (string-match "\\*sources\\($\\|@[^\\*]+$\\)"
132 ;;                                    (symbol-name feature))
133 ;;                  (setq dest (cons feature dest))))
134 ;;              dest))
135 ;;     (map-char-attribute
136 ;;      (lambda (c v)
137 ;;        (when (setq ret (memq 'shinjigen-1 v))
138 ;;          (setcar ret 'shinjigen@1ed))
139 ;;        (when (setq ret (memq 'shinjigen-2 v))
140 ;;          (setcar ret 'shinjigen@rev))
141 ;;        nil)
142 ;;      feature)))
143
144 ;; (map-char-attribute
145 ;;  (lambda (c v)
146 ;;    (when (eq (encode-char c '=shinjigen@rev) v)
147 ;;      (put-char-attribute c '=shinjigen v)
148 ;;      (remove-char-attribute c '=shinjigen@1ed)
149 ;;      (remove-char-attribute c '=shinjigen@rev)
150 ;;      )
151 ;;    nil)
152 ;;  '=shinjigen@1ed)
153
154 ;; (let (ret)
155 ;;   (dolist (feature
156 ;;            (let (dest)
157 ;;              (dolist (feature (char-attribute-list))
158 ;;                (when (string-match "\\*sources\\($\\|@[^\\*]+$\\)"
159 ;;                                    (symbol-name feature))
160 ;;                  (setq dest (cons feature dest))))
161 ;;              dest))
162 ;;     (map-char-attribute
163 ;;      (lambda (c v)
164 ;;        (cond ((setq ret (memq 'shinjigen@1ed v))
165 ;;               (when (memq 'shinjigen@rev ret)
166 ;;                 (setcar ret 'shinjigen)
167 ;;                 (delq 'shinjigen@rev ret)
168 ;;                 ))
169 ;;              ((setq ret (memq 'shinjigen@rev v))
170 ;;               (when (memq 'shinjigen@1ed ret)
171 ;;                 (setcar ret 'shinjigen)
172 ;;                 (delq 'shinjigen@1ed ret)
173 ;;                 )))
174 ;;        nil)
175 ;;      feature)))
176
177 (dolist (ccs '(=jis-x0208 =jis-x0208@1990))
178   (map-char-attribute
179    (lambda (c v)
180      (unless (eq (encode-char c '=jis-x0213-1@2000) v)
181        (put-char-attribute c '=jis-x0213-1 v))
182      nil)
183    ccs))
184
185 (with-temp-buffer
186   (buffer-disable-undo)
187   (insert-file-contents "../etc/char-data/JX3-JX1-rep-diff.txt")
188   (goto-char (point-min))
189   (let (ku ten char code ucs)
190     (while (re-search-forward "^1-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+" nil t)
191       (setq ku (string-to-number (match-string 1))
192             ten (string-to-number (match-string 2)))
193       (setq char (make-char '=jis-x0213-1@2000 (+ ku 32)(+ ten 32)))
194       (setq code (encode-char char '=jis-x0213-1@2000))
195       (put-char-attribute char '=jis-x0213-1@2000 code)
196       (remove-char-attribute char '=jis-x0213-1)
197       (remove-char-attribute char '=jis-x0213-1@2004)
198       (setq ucs (encode-char char '=ucs@jis/2000))
199       (remove-char-attribute char '=ucs@jis)
200       (remove-char-attribute char '=ucs@jis/2004)
201       (when (setq char (decode-char '=jis-x0213-1@2004 code))
202         (unless (eq (encode-char char '=ucs@jis/2004) ucs)
203           (put-char-attribute char '=ucs@jis/2004 ucs)))
204       (unless (eq code #x332A)
205         (when (setq char (decode-char '=>jis-x0208@1997 code 'defined-only))
206           (unless (eq (encode-char char '=>>jis-x0208) code)
207             (unless (eq (encode-char char '=+>jis-x0208) code)
208               (put-char-attribute char '=>jis-x0208 code)
209               (remove-char-attribute char '=>jis-x0208@1997)))))
210       )))
211
212 (map-char-attribute
213  (lambda (c v)
214    (unless (eq (encode-char c '=>jis-x0213-1) v)
215      (put-char-attribute c '=>jis-x0213-1 v))
216    nil)
217  '=>jis-x0208)
218
219 (dolist (aj1-f '(=>>>adobe-japan1 =>>adobe-japan1))
220   (map-char-attribute
221    (lambda (c v)
222      (cond
223       ((<= v 8283)
224        (remove-char-attribute c aj1-f)
225        (put-char-attribute c (intern (format "%s-0" aj1-f)) v)
226        )
227       ((<= v 8358)
228        (remove-char-attribute c aj1-f)
229        (put-char-attribute c (intern (format "%s-1" aj1-f)) v)
230        )
231       ((<= v 8719)
232        (remove-char-attribute c aj1-f)
233        (put-char-attribute c (intern (format "%s-2" aj1-f)) v)
234        )
235       ((<= v 9353)
236        (remove-char-attribute c aj1-f)
237        (put-char-attribute c (intern (format "%s-3" aj1-f)) v)
238        )
239       ((<= v 15443)
240        (remove-char-attribute c aj1-f)
241        (put-char-attribute c (intern (format "%s-4" aj1-f)) v)
242        )
243       ((<= v 20316)
244        (remove-char-attribute c aj1-f)
245        (put-char-attribute c (intern (format "%s-5" aj1-f)) v)
246        )
247       ((<= v 23057)
248        (remove-char-attribute c aj1-f)
249        (put-char-attribute c (intern (format "%s-6" aj1-f)) v)
250        ))
251      nil)
252    aj1-f))