Include vi-base.mim.
[m17n/m17n-db.git] / MIM / vi-telex.mim
1 ;; vi-telex.mim -- Input method for Vietnames with TELEX key sequence
2 ;; Copyright (C) 2003, 2004, 2005, 2006, 2007
3 ;;   National Institute of Advanced Industrial Science and Technology (AIST)
4 ;;   Registration Number H15PRO112
5
6 ;; This file is part of the m17n database; a sub-part of the m17n
7 ;; library.
8
9 ;; The m17n library is free software; you can redistribute it and/or
10 ;; modify it under the terms of the GNU Lesser General Public License
11 ;; as published by the Free Software Foundation; either version 2.1 of
12 ;; the License, or (at your option) any later version.
13
14 ;; The m17n library is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 ;; Lesser General Public License for more details.
18
19 ;; You should have received a copy of the GNU Lesser General Public
20 ;; License along with the m17n library; if not, write to the Free
21 ;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22 ;; Boston, MA 02110-1301, USA.
23
24 (input-method vi telex)
25
26 (description (_"Vietnames input method using the TELEX key sequence.
27 Typing Backslash ('\\') toggles the normal mode and English mode.
28 The following variables are customizable:
29   tone-mark-on-last: control tone mark position in equivocal cases
30   backspace-is-undo: control the action of Backspace key (delete or undo)"))
31
32 (title "Ắ(TLX)")
33
34 (variable
35  (tone-mark-on-last
36   (_"Flag to control tone mark position in equivocal cases.
37 If this variable is 0 (the default), put tone mark on the first vowel
38 in such equivocal cases as \"oa\", \"oe\", \"uy\".
39 Otherwise, put tone mark on the last vowel.")
40   0 0 1)
41
42  (backspace-is-undo
43   (_"Flag to control the action of Backspace key (delete or undo).
44 If this variable is 0 (the default), Backspace key deletes the previous
45 character (e.g. \"q u a i s BS\" => \"quá\").
46 If the value is 1, Backspace key undoes the previous key
47 \(e.g. \"q u a i s BS\" => \"quai\").")
48   0 0 1))
49
50 (include (t nil vi-base) macro)
51 (include (t nil vi-base) map)
52
53 (map
54  (vowel-ext
55   ("aa" ("âấầẩẫậ")) ("AA" ("ÂẤẦẨẪẬ")) ("Aa" ("ÂẤẦẨẪẬ"))
56   ("aw" ("ăắằẳẵặ")) ("AW" ("ĂẮẰẲẴẶ")) ("Aw" ("ĂẮẰẲẴẶ"))
57   ("ee" ("êếềểễệ")) ("EE" ("ÊẾỀỂỄỆ")) ("Ee" ("ÊẾỀỂỄỆ"))
58   ("oo" ("ôốồổỗộ")) ("OO" ("ÔỐỒỔỖỘ")) ("Oo" ("ÔỐỒỔỖỘ"))
59   ("ow" ("ơớờởỡợ")) ("OW" ("ƠỚỜỞỠỢ")) ("Ow" ("ƠỚỜỞỠỢ"))
60   ("uw" ("ưứừửữự")) ("UW" ("ƯỨỪỬỮỰ")) ("Uw" ("ƯỨỪỬỮỰ"))
61   ("w"  ("ưứừửữự")) ("W"  ("ƯỨỪỬỮỰ"))
62   ("ooo" ("oóòỏõọ") ("oóòỏõọ") (set V-2 V-1) (set V-1 ?o))
63   ("OOO" ("OÓÒỎÕỌ") ("OÓÒỎÕỌ") (set V-2 V-1) (set V-1 ?O))
64   ("Ooo" ("OÓÒỎÕỌ") ("oóòỏõọ") (set V-2 V-1) (set V-1 ?O)))
65
66  (consonant
67   ("dd" ?đ) ("DD" ?Đ) ("Dd" ?Đ))
68
69  (tone-mark
70   ("z" (set SELECT 0) ?z) ("Z" (set SELECT 0) ?Z)
71   ("s" (set SELECT 1) ?s) ("S" (set SELECT 1) ?S)
72   ("f" (set SELECT 2) ?f) ("F" (set SELECT 2) ?F)
73   ("r" (set SELECT 3) ?r) ("R" (set SELECT 3) ?R)
74   ("x" (set SELECT 4) ?x) ("X" (set SELECT 4) ?X)
75   ("j" (set SELECT 5) ?j) ("J" (set SELECT 5) ?J))
76
77  (consonant-or-tone-mark
78   ("z" ?z) ("s" ?s) ("f" ?f) ("r" ?r) ("x" ?x) ("j" ?j)
79   ("Z" ?Z) ("S" ?S) ("F" ?F) ("R" ?R) ("X" ?X) ("J" ?J))
80
81  (temporary-escape
82   ("aaa" "aa") ("AAA" "AA") ("Aaa" "Aa")
83   ("eee" "ee") ("EEE" "EE") ("Eee" "Ee")
84   ("ddd" "dd") ("DDD" "DD") ("Ddd" "Dd")
85   ("ww" ?w) ("WW" ?W) ("Ww" ?W)
86   ("zz" ?z) ("ZZ" ?Z) ("Zz" ?Z)
87   ("ss" ?s) ("SS" ?S) ("Ss" ?S)
88   ("ff" ?f) ("FF" ?F) ("Ff" ?F)
89   ("rr" ?r) ("RR" ?R) ("Rr" ?R)
90   ("xx" ?x) ("XX" ?X) ("Xx" ?X)
91   ("jj" ?j) ("JJ" ?J) ("Jj" ?J)))
92
93 (state
94  (init
95   ;; Initialize variables.  C is the initial consonant.  V-N is the
96   ;; (N-1)th vowel from the last.  C-AFTER-V is a number of consonants
97   ;; typed after vowel.
98   (t (set C @-1) (set V-1 0) (set V-2 0) (set V-3 0) (set C-AFTER-V 0)
99      (set SELECT 0))
100
101   (consonant (set C @-1))
102   (consonant-or-tone-mark (set C @-1))
103
104   ;; Mark M remembers the preedit position after the last vowel.
105   (vowel (mark M) (set V-2 V-1) (set V-1 @-1) (shift after-v))
106   (temporary-escape (shift temporary-escape))
107   (permanent-escape (shift escape-in-normal-mode)))
108
109  ;; The state shifted to when a vowel is typed.
110  (after-v
111   (consonant (shift after-vc))
112   (vowel (mark M) (set V-3 V-2) (set V-2 V-1) (set V-1 @-1)
113          (move T) (select 0) (handle-mark) (move M))
114   (consonant-or-tone-mark (delete @-) (pushback 1) (shift after-t))
115   (backspace (delete @-)
116              (cond (V-3 (set V-1 V-2) (set V-2 V-3) (set V-3 0)
117                         (cond ((> TPLACE 2) (set SELECT 0))))
118                    (V-2 (set V-1 V-2) (set V-2 0)
119                         (cond ((> TPLACE 1) (set SELECT 0))))
120                    (1 (shift init)))))
121
122  ;; The state shifted to when a consonant is typed after a vowel.
123  (after-vc
124   (t (set C-AFTER-V 1))
125   (consonant (add C-AFTER-V 1))
126   (consonant-or-tone-mark (delete @-) (pushback 1) (shift after-t))
127   (backspace (delete @-)
128              (sub C-AFTER-V 1)
129              (cond ((= C-AFTER-V 0) (shift after-v)))))
130
131  ;; The state shifted to when a tone-mark is typed.
132  (after-t
133   (t (set CURRENT-SELECT -1))
134   (tone-mark (cond ((= CURRENT-SELECT SELECT) (move T) (select 0) (move @>)
135                     (shift temporary-escape))
136                    (1 (delete @-) (handle-mark) (set CURRENT-SELECT SELECT))))
137   (nil (cond (C-AFTER-V (shift after-vc))
138              (1 (shift after-v)))))
139
140  (temporary-escape
141   "en"
142   (t (commit))
143   (alphabet (commit)))
144
145  (escape-in-normal-mode
146   "EN"
147   (permanent-escape (insert "\\") (shift init))
148   ;; Any other key force shifting to permanent-escape.
149   (nil (shift permanent-escape)))
150
151  (permanent-escape
152   "EN"
153   (t (set ESCAPE 1))
154   (permanent-escape (shift escape-in-permanent-escape))
155   ;; Unhandle any characters.
156   (nil (unhandle)))
157
158  (escape-in-permanent-escape
159   "Ắ"
160   (permanent-escape (insert "\\") (commit) (shift permanent-escape))
161   ;; Any other key force shifting to init
162   ))
163
164 ;; Local Variables:
165 ;; coding: utf-8
166 ;; mode: emacs-lisp
167 ;; End: