(gt-pj-1-and-jis-x0208-1990-different-code-points): New variable; add
[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
72 (map-char-attribute
73  (lambda (c v)
74    (unless (memq v gt-pj-1-and-jis-x0208-1990-different-code-points)
75      (put-char-attribute (decode-char 'japanese-jisx0208-1990 v)
76                          '=gt-pj-1 v))
77    nil)
78  '=gt-pj-1)
79
80 (let ((default-coded-charset-priority-list
81         '(=gt-pj-1
82           =gt-pj-2
83           =gt-pj-3
84           =gt-pj-4
85           =gt-pj-5
86           =gt-pj-6
87           =gt-pj-7
88           =gt-pj-8
89           =gt-pj-9
90           =gt-pj-10
91           =gt-pj-11
92           =gt-pj-k1
93           =gt-pj-k2))
94       (i 1)
95       chr ret)
96   (while (<= i 12000)
97     (when (and (setq ret (decode-char '=gt-k i))
98                (setq ret (split-char ret))
99                (memq (car ret) default-coded-charset-priority-list))
100       (when (setq chr (apply (function make-char) ret))
101         (put-char-attribute chr '=gt-k i)))
102     (setq i (1+ i))))
103
104 (let (gt)
105   (dolist (ccs '(=gt-pj-1
106                  =gt-pj-2
107                  =gt-pj-3
108                  =gt-pj-4
109                  =gt-pj-5
110                  =gt-pj-6
111                  =gt-pj-7
112                  =gt-pj-8
113                  =gt-pj-9
114                  =gt-pj-10
115                  =gt-pj-11))
116     (map-char-attribute
117      (lambda (c v)
118        (when (setq gt (encode-char c '=gt))
119          (put-char-attribute c '=gt gt)
120          (put-char-attribute (decode-char ccs v) '=gt gt))
121        nil)
122      ccs)))
123
124 ;; (let (ret)
125 ;;   (dolist (feature
126 ;;            (let (dest)
127 ;;              (dolist (feature (char-attribute-list))
128 ;;                (when (string-match "\\*sources\\($\\|@[^\\*]+$\\)"
129 ;;                                    (symbol-name feature))
130 ;;                  (setq dest (cons feature dest))))
131 ;;              dest))
132 ;;     (map-char-attribute
133 ;;      (lambda (c v)
134 ;;        (when (setq ret (memq 'shinjigen-1 v))
135 ;;          (setcar ret 'shinjigen@1ed))
136 ;;        (when (setq ret (memq 'shinjigen-2 v))
137 ;;          (setcar ret 'shinjigen@rev))
138 ;;        nil)
139 ;;      feature)))
140
141 ;; (map-char-attribute
142 ;;  (lambda (c v)
143 ;;    (when (eq (encode-char c '=shinjigen@rev) v)
144 ;;      (put-char-attribute c '=shinjigen v)
145 ;;      (remove-char-attribute c '=shinjigen@1ed)
146 ;;      (remove-char-attribute c '=shinjigen@rev)
147 ;;      )
148 ;;    nil)
149 ;;  '=shinjigen@1ed)
150
151 ;; (let (ret)
152 ;;   (dolist (feature
153 ;;            (let (dest)
154 ;;              (dolist (feature (char-attribute-list))
155 ;;                (when (string-match "\\*sources\\($\\|@[^\\*]+$\\)"
156 ;;                                    (symbol-name feature))
157 ;;                  (setq dest (cons feature dest))))
158 ;;              dest))
159 ;;     (map-char-attribute
160 ;;      (lambda (c v)
161 ;;        (cond ((setq ret (memq 'shinjigen@1ed v))
162 ;;               (when (memq 'shinjigen@rev ret)
163 ;;                 (setcar ret 'shinjigen)
164 ;;                 (delq 'shinjigen@rev ret)
165 ;;                 ))
166 ;;              ((setq ret (memq 'shinjigen@rev v))
167 ;;               (when (memq 'shinjigen@1ed ret)
168 ;;                 (setcar ret 'shinjigen)
169 ;;                 (delq 'shinjigen@1ed ret)
170 ;;                 )))
171 ;;        nil)
172 ;;      feature)))
173
174 (dolist (ccs '(=jis-x0208 =jis-x0208@1990))
175   (map-char-attribute
176    (lambda (c v)
177      (unless (eq (encode-char c '=jis-x0213-1@2000) v)
178        (put-char-attribute c '=jis-x0213-1 v))
179      nil)
180    ccs))
181
182 (with-temp-buffer
183   (buffer-disable-undo)
184   (insert-file-contents "../etc/char-data/JX3-JX1-rep-diff.txt")
185   (goto-char (point-min))
186   (let (ku ten char code ucs)
187     (while (re-search-forward "^1-\\([0-9]+\\)-\\([0-9]+\\)[ \t]+" nil t)
188       (setq ku (string-to-number (match-string 1))
189             ten (string-to-number (match-string 2)))
190       (setq char (make-char '=jis-x0213-1@2000 (+ ku 32)(+ ten 32)))
191       (setq code (encode-char char '=jis-x0213-1@2000))
192       (put-char-attribute char '=jis-x0213-1@2000 code)
193       (remove-char-attribute char '=jis-x0213-1)
194       (remove-char-attribute char '=jis-x0213-1@2004)
195       (setq ucs (encode-char char '=ucs@jis/2000))
196       (remove-char-attribute char '=ucs@jis)
197       (remove-char-attribute char '=ucs@jis/2004)
198       (when (setq char (decode-char '=jis-x0213-1@2004 code))
199         (unless (eq (encode-char char '=ucs@jis/2004) ucs)
200           (put-char-attribute char '=ucs@jis/2004 ucs)))
201       (unless (eq code #x332A)
202         (when (setq char (decode-char '=>jis-x0208@1997 code 'defined-only))
203           (put-char-attribute char '=>jis-x0208 code)
204           (remove-char-attribute char '=>jis-x0208@1997)))
205       )))
206
207 (map-char-attribute
208  (lambda (c v)
209    (unless (eq (encode-char c '=>jis-x0213-1) v)
210      (put-char-attribute c '=>jis-x0213-1 v))
211    nil)
212  '=>jis-x0208)