(morohashi-char-replace-alist): Add new character.
[chise/ids.git] / ids-util.el
1 ;;; ids-util.el --- Utilities about ideographic-structure property
2
3 ;; Copyright (C) 2001 MORIOKA Tomohiko
4
5 ;; Author: MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
6 ;; Keywords: ideographic-structure, UTF-2000, database
7
8 ;; This file is a part of Tomoyo Utilities.
9
10 ;; This program is free software; you can redistribute it and/or
11 ;; modify it under the terms of the GNU General Public License as
12 ;; published by the Free Software Foundation; either version 2, or (at
13 ;; your option) any later version.
14
15 ;; This program is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 ;; General Public License for more details.
19
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with this program; see the file COPYING.  If not, write to
22 ;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 ;;;###autoload
30 (defun ideographic-structure-convert-to-ucs (structure)
31   (let (dest cell ucs ret)
32     (while structure
33       (setq cell (car structure))
34       (setq dest
35             (cons
36              (cond ((characterp cell)
37                     (if (or (get-char-attribute cell 'ucs)
38                             (null
39                              (setq ucs
40                                    (or (get-char-attribute cell '=>ucs)
41                                        (get-char-attribute cell '->ucs)))))
42                         cell
43                       (decode-char 'ucs ucs)))
44                    ((and (consp cell)
45                          (symbolp (car cell)))
46                     cell)
47                    ((setq ret (find-char cell))
48                     (if (or (get-char-attribute ret 'ucs)
49                             (null
50                              (setq ucs
51                                    (or (get-char-attribute ret '=>ucs)
52                                        (get-char-attribute ret '->ucs)))))
53                         cell
54                       (decode-char 'ucs ucs)))
55                    ((setq ret (assq 'ideographic-structure cell))
56                     (put-alist 'ideographic-structure
57                                (ideographic-structure-convert-to-ucs
58                                 (cdr ret))
59                                (copy-alist cell)))
60                    (t cell))
61              dest))
62       (setq structure (cdr structure)))
63     (nreverse dest)))
64
65 (defvar morohashi-char-replace-alist
66   (list
67    (cons (decode-char 'chinese-big5-cdp #x8B42)
68          (decode-char 'chinese-big5-cdp #x8B42))
69    (cons (decode-char 'chinese-big5-cdp #x8AFC)
70          (decode-char 'chinese-big5-cdp #x8AFC))
71    (cons (decode-char 'ucs #x2EBE)
72          (decode-char 'ucs #x2EBF))
73    (cons ?δΊ½ (decode-char 'chinese-big5-cdp #x8AFC))
74    (cons (decode-char 'ucs #x5922)
75          (decode-char 'ideograph-daikanwa 05802))
76    (cons (decode-char 'ucs #x656C)
77          (decode-char 'ideograph-daikanwa 13303))
78    (cons (decode-char 'ucs #x8449)
79          (decode-char 'ideograph-daikanwa 31387))
80    (cons (decode-char 'ucs #x2EA4)
81          (decode-char 'ucs #x722B))
82    (cons (decode-char 'ucs #x5151)
83          (decode-char 'ideograph-daikanwa 01356))
84    (cons (decode-char 'ucs #x544A)
85          (decode-char 'ideograph-daikanwa 03381))
86    (cons (decode-char 'ucs #x5F66)
87          (decode-char 'ideograph-daikanwa 09980))
88    (cons (decode-char 'ucs #x8005)
89          (decode-char 'ideograph-daikanwa 28853))
90    (cons (decode-char 'ucs #x82E5)
91          (decode-char 'ideograph-daikanwa 30796))
92    (cons (decode-char 'ucs #x82F1)
93          (decode-char 'ideograph-daikanwa 30808))
94    (cons (decode-char 'ucs #x9063)
95          (decode-char 'ideograph-daikanwa 39052))
96    (cons (decode-char 'ucs #x4EA0)
97          (decode-char 'chinese-big5-cdp #x8B42))
98    (cons (decode-char 'ucs #x5154)
99          (decode-char 'ideograph-daikanwa 01368))
100    (cons (decode-char 'ucs #x53CA)
101          (decode-char 'ideograph-daikanwa 03118))
102    (cons (decode-char 'ucs #x5468)
103          (decode-char 'ideograph-daikanwa 03441))
104    (cons (decode-char 'ucs #x5C1A)
105          (decode-char 'ucs #x5C19))
106    (cons (decode-char 'ucs #x5D29)
107          (decode-char 'ideograph-daikanwa 08212))
108    (cons (decode-char 'ucs #x670B)
109          (decode-char 'ideograph-daikanwa 14340))
110    (cons (decode-char 'ucs #x7FBD)
111          (decode-char 'ideograph-daikanwa 28614))
112    (cons (decode-char 'ucs #x8096)
113          (decode-char 'ideograph-daikanwa 29263))
114    (cons (decode-char 'ucs #x8981)
115          (decode-char 'ideograph-daikanwa 34768))
116    (cons (decode-char 'ucs #x8AF8)
117          (decode-char 'ideograph-daikanwa 35743))
118    (cons (decode-char 'ucs #x9023)
119          (decode-char 'ideograph-daikanwa 38902))
120    (cons (decode-char 'ucs #x9752)
121          (decode-char 'ucs #x9751))
122    ))
123
124 ;;;###autoload
125 (defun ideographic-structure-convert-to-daikanwa (structure)
126   (let (dest cell morohashi ret)
127     (while structure
128       (setq cell (car structure))
129       (setq dest
130             (cons
131              (cond ((characterp cell)
132                     (cond ((setq ret
133                                  (assq cell morohashi-char-replace-alist))
134                            (cdr ret))
135                           ((get-char-attribute cell 'ideograph-daikanwa)
136                            cell)
137                           ((setq morohashi
138                                  (get-char-attribute
139                                   cell 'morohashi-daikanwa))
140                            (cond ((null (cdr (cdr morohashi)))
141                                   cell)
142                                  ((= (nth 1 morohashi) 0)
143                                   (decode-char 'ideograph-daikanwa
144                                                (car morohashi)))
145                                  (t
146                                   (setq morohashi (list (car morohashi)
147                                                         (nth 1 morohashi)))
148                                   (or (map-char-attribute
149                                        (lambda (char val)
150                                          (if (equal morohashi val)
151                                              char))
152                                        'morohashi-daikanwa)
153                                       cell))))
154                           (t
155                            cell)))
156                    ((and (consp cell)
157                          (symbolp (car cell)))
158                     cell)
159                    ((setq ret (find-char cell))
160                     (if (or (get-char-attribute ret 'ideograph-daikanwa)
161                             (null
162                              (setq morohashi
163                                    (get-char-attribute
164                                     ret 'morohashi-daikanwa)))
165                             (null (cdr (cdr morohashi))))
166                         cell
167                       (if (= (nth 1 morohashi) 0)
168                           (decode-char 'ideograph-daikanwa (car morohashi))
169                         cell)))
170                    ((setq ret (assq 'ideographic-structure cell))
171                     (put-alist 'ideographic-structure
172                                (ideographic-structure-convert-to-daikanwa
173                                 (cdr ret))
174                                (copy-alist cell)))
175                    (t cell))
176              dest))
177       (setq structure (cdr structure)))
178     (nreverse dest)))
179
180
181 ;;; @ End.
182 ;;;
183
184 (provide 'ids-util)
185
186 ;;; ids-util.el ends here