1 ;;; ideograph-util.el --- Ideographic Character Database utility
3 ;; Copyright (C) 1999 MORIOKA Tomohiko.
5 ;; Author: MORIOKA Tomohiko <tomo@m17n.org>
6 ;; Keywords: UTF-2000, ISO/IEC 10646, Unicode, UCS-4, MULE.
8 ;; This file is part of UTF-2000.
10 ;; UTF-2000 is free software; you can redistribute it and/or modify it
11 ;; under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
15 ;; UTF-2000 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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with XEmacs; see the file COPYING. If not, write to the Free
22 ;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
27 (require 'char-db-util)
29 (defvar ideograph-radical-chars-vector
30 (make-vector 215 nil))
32 (defun char-ideograph-radical (char)
33 (or (get-char-attribute char 'ideographic-radical)
35 (or (get-char-attribute char 'daikanwa-radical)
36 (get-char-attribute char 'kangxi-radical)
37 (get-char-attribute char 'japanese-radical)
38 (get-char-attribute char 'korean-radical))))
40 (put-char-attribute char 'ideographic-radical radical)
43 (defun char-ideograph-strokes (char)
44 (or (get-char-attribute char 'ideographic-strokes)
46 (or (get-char-attribute char 'daikanwa-strokes)
47 (get-char-attribute char 'kangxi-strokes)
48 (get-char-attribute char 'japanese-strokes)
49 (get-char-attribute char 'korean-strokes))))
51 (put-char-attribute char 'ideographic-strokes strokes)
55 (defun update-ideograph-radical-table ()
60 (charsets '(japanese-jisx0208-1978
62 japanese-jisx0208-1990
78 (setq char (int-char i))
79 (when (setq radical (char-ideograph-radical char))
80 (or (get-char-attribute char 'ucs)
81 (put-char-attribute char 'ucs i))
84 (aref ideograph-radical-chars-vector radical))))
85 (aset ideograph-radical-chars-vector radical
89 (while (<= i #x10FFFF)
90 (setq char (int-char i))
91 (when (setq radical (char-ideograph-radical char))
94 (aref ideograph-radical-chars-vector radical))))
95 (aset ideograph-radical-chars-vector radical
102 (setq char (make-char 'ideograph-daikanwa i j))
103 (if (and (setq radical (char-ideograph-radical char))
107 (aref ideograph-radical-chars-vector radical)))))
108 (aset ideograph-radical-chars-vector radical
117 (setq char (make-char (car charsets) i j))
118 (if (and (setq radical (char-ideograph-radical char))
121 (aref ideograph-radical-chars-vector
123 (aset ideograph-radical-chars-vector radical
127 (setq charsets (cdr charsets)))
130 (defun ideograph-char< (a b)
133 ((setq ra (or (get-char-attribute a 'morohashi-daikanwa)
134 (get-char-attribute a 'non-morohashi)))
136 ((setq rb (or (get-char-attribute b 'morohashi-daikanwa)
137 (get-char-attribute b 'non-morohashi)))
139 ((= (car ra)(car rb))
140 (cond ((eq (car (cdr ra))(car (cdr rb)))
141 (cond ((< (length ra)(length rb)))
142 ((= (length ra)(length rb))
143 (cond ((integerp (nth 2 ra))
144 (cond ((integerp (nth 2 rb))
145 (< (nth 2 ra)(nth 2 rb)))
148 (cond ((setq ra (get-char-attribute a 'ucs))
150 ((setq rb (get-char-attribute b 'ucs))
154 ((null (car (cdr ra))))
155 ((null (car (cdr rb)))
157 (t (< (car (cdr ra))(car (cdr rb))))))
158 (t (< (car ra)(car rb)))))
159 ((setq ra (get-char-attribute a 'ucs))
161 ((setq rb (get-char-attribute b 'ucs))
165 ((setq ra (char-ideograph-strokes a))
166 (cond ((setq rb (char-ideograph-strokes b))
168 (not (char-ideograph-strokes b)))
172 (defun insert-ideograph-radical-char-data (radical)
174 (sort (copy-list (aref ideograph-radical-chars-vector radical))
175 (function ideograph-char<))))
177 (insert-char-data (car chars))
178 (setq chars (cdr chars)))))
180 (defun write-ideograph-radical-char-data (radical file)
181 (if (file-directory-p file)
182 (let ((name (get-char-attribute (int-char (+ #x2EFF radical)) 'name)))
183 (if (string-match "KANGXI RADICAL " name)
184 (setq name (capitalize (substring name (match-end 0)))))
187 (format "Ideograph-R%03d-%s.el" radical name)
190 (insert-ideograph-radical-char-data radical)
191 (write-region (point-min)(point-max) file)))
193 (provide 'ideograph-util)
195 ;;; ideograph-util.el ends here