(chise-tex-encode-region-for-gb): Renamed from
[chise/omega.git] / chise2otf / elisp / chise-tex.el
1 ;;; chise-tex.el --- Coding-system based chise2otf like tool
2
3 ;; Copyright (C) 2004 MORIOKA Tomohiko
4
5 ;; Author: MORIOKA Tomohiko <tomo@kanji.zinbun.kyoto-u.ac.jp>
6 ;; Keywords: OTF package, pTeX, CHISE, Multiscript, Multilingual
7
8 ;; This file is a part of Omega/CHISE.
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 ;;; Code:
26
27 (defvar chise-tex-coded-charset-expression-alist
28   '((=ucs@gb    "UCSgb"         4 X)
29     (=ucs@jis   "UCSjis"        4 X)
30     (=gt-pj-1   "GTpj1"         4 X)
31     (=gt-pj-2   "GTpj2"         4 X)
32     (=gt-pj-3   "GTpj3"         4 X)
33     (=gt-pj-4   "GTpj4"         4 X)
34     (=gt-pj-5   "GTpj5"         4 X)
35     (=gt-pj-6   "GTpj6"         4 X)
36     (=gt-pj-7   "GTpj7"         4 X)
37     (=gt-pj-8   "GTpj8"         4 X)
38     (=gt-pj-9   "GTpj9"         4 X)
39     (=gt-pj-10  "GTpj10"        4 X)
40     (=gt-pj-11  "GTpj11"        4 X)
41     (=ucs@ks    "UCSks"         4 X)
42     (=ucs@cns   "UCScns"        4 X)))
43
44 (defun chise-tex-encode-region-for-gb (start end)
45   (interactive "r")
46   (save-excursion
47     (save-restriction
48       (narrow-to-region start end)
49       (goto-char start)
50       (let (chr ret rest spec)
51         (while (and (skip-chars-forward "\x00-\xFF")
52                     (not (eobp)))
53           (setq chr (char-after))
54           (cond ((memq chr '(?\e$(O#@\e(B))
55                  (delete-char)
56                  (insert (format "\\UCSjis{%04X}"
57                                  (encode-char chr '=ucs@jis)))
58                  )
59                 ((and (setq ret (encode-char chr '=jis-x0208-1983))
60                       (< ret #x3021))
61                  (forward-char))
62                 ;; ((setq ret (encode-char chr '=jis-x0208-1990))
63                 ;;  (delete-char)
64                 ;;  (insert (decode-char '=jis-x0208-1983 ret)))
65                 ((catch 'tag
66                    (setq rest chise-tex-coded-charset-expression-alist)
67                    (while (setq spec (car rest))
68                      (if (setq ret (encode-char chr (car spec)))
69                          (throw 'tag ret))
70                      (setq rest (cdr rest))))
71                  (delete-char)
72                  ;; (if (eq (char-before) ?\e$B!T\e(B)
73                  ;;     (insert " "))
74                  (insert (format (format "\\%s{%%0%d%s}"
75                                          (nth 1 spec)
76                                          (nth 2 spec)
77                                          (nth 3 spec))
78                                  ret)))
79                 (t
80                  (forward-char))))))))
81
82 (defun chise-tex-decode-region (start end)
83   (interactive "r")
84   (save-excursion
85     (save-restriction
86       (narrow-to-region start end)
87       (goto-char start)
88       (let (macro code ret ms me)
89         (while (re-search-forward "\\\\\\([a-zA-Z0-9]+\\){\\([0-9A-Fa-f]+\\)}"
90                                   nil t)
91           (setq macro (match-string 1)
92                 code (match-string 2)
93                 ms (match-beginning 0)
94                 me (match-end 0))
95           (if (and (catch 'tag
96                      (setq rest chise-tex-coded-charset-expression-alist)
97                      (while (setq spec (car rest))
98                        (if (string= (nth 1 spec) macro)
99                            (throw 'tag spec))
100                        (setq rest (cdr rest))))
101                    (setq ret (decode-char (car spec)
102                                           (string-to-int
103                                            code
104                                            (if (eq (nth 3 spec) 'X)
105                                                16)))))
106               (progn
107                 (delete-region (match-beginning 0)(match-end 0))
108                 (insert ret))
109             (goto-char me)))))))
110
111 (make-coding-system
112  'iso-2022-jp-tex-gb 'iso2022
113  "ISO-2022-JP with TeX representation for GB fonts."
114  '(charset-g0 ascii
115    short t
116    seven t
117    input-charset-conversion ((latin-jisx0201 ascii)
118                              (japanese-jisx0208-1978 japanese-jisx0208))
119    pre-write-conversion chise-tex-encode-region-for-gb
120    post-read-conversion chise-tex-decode-region
121    mnemonic "pTeX(GB)/7bit"
122    ))
123
124
125 ;;; @ End.
126 ;;;
127
128 (provide 'chise-tex)
129
130 ;;; chise-tex.el ends here