0
|
1 /*
|
|
2 * $Id: rk_vars.c,v 1.2 2001/06/14 18:16:10 ura Exp $
|
|
3 */
|
|
4
|
|
5 /*
|
|
6 * FreeWnn is a network-extensible Kana-to-Kanji conversion system.
|
|
7 * This file is part of FreeWnn.
|
|
8 *
|
|
9 * Copyright Kyoto University Research Institute for Mathematical Sciences
|
|
10 * 1987, 1988, 1989, 1990, 1991, 1992
|
|
11 * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999
|
|
12 * Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992
|
|
13 *
|
|
14 * Author: OMRON SOFTWARE Co., Ltd. <freewnn@rd.kyoto.omronsoft.co.jp>
|
|
15 *
|
|
16 * This program is free software; you can redistribute it and/or modify
|
|
17 * it under the terms of the GNU General Public License as published by
|
|
18 * the Free Software Foundation; either version 2, or (at your option)
|
|
19 * any later version.
|
|
20 *
|
|
21 * This program is distributed in the hope that it will be useful,
|
|
22 * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
23 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
24 * GNU General Public License for more details.
|
|
25 *
|
|
26 * You should have received a copy of the GNU General Public License
|
|
27 * along with GNU Emacs; see the file COPYING. If not, write to the
|
|
28 * Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
29 *
|
|
30 * Commentary:
|
|
31 *
|
|
32 * Change log:
|
|
33 *
|
|
34 * Last modified date: 8,Feb.1999
|
|
35 *
|
|
36 * Code:
|
|
37 *
|
|
38 */
|
|
39 /***********************************************************************
|
|
40 rk_vars.c
|
|
41 87.12. 3 改 正
|
|
42
|
|
43 プログラム内で二つ以上のファイルにまたがって使う変数を
|
|
44 まとめて定義している。
|
|
45 ***********************************************************************/
|
|
46 /* Version 3.1 88/06/14 H.HASHIMOTO
|
|
47 */
|
|
48 #ifndef MULTI
|
|
49 #ifndef OMRON_LIB
|
|
50 #include "rk_header.h"
|
|
51 #endif
|
|
52
|
|
53 char rk_errstat = 0; /* (error)によってエラーが引き起こされた時1(但し
|
|
54 (eofflg)が立っていたため末尾までの強制出力処理が
|
|
55 起こった場合は2)になる。romkan_henkan()実行ごとに
|
|
56 更新される。これはユーザにも開放。 */
|
|
57
|
|
58 #ifdef OMRON_LIB
|
|
59 static
|
|
60 #endif
|
|
61 int flags = 0;
|
|
62 /* 以下のフラグのOR。
|
|
63 RK_CHMOUT モードチェンジを知らせるかのフラグ
|
|
64 RK_KEYACK キーインに対し必ず何か返すかのフラグ
|
|
65 RK_DSPNIL romkan_disp(off)modeの返値のデフォルトが空文字列であるかの
|
|
66 フラグ。立たなければデフォルトはNULL。互換性のためromkan_
|
|
67 init2まではこれが立つ。
|
|
68 RK_NONISE 偽コードを出さないようにするかのフラグ
|
|
69 RK_REDRAW Wnnで使う特殊なフラグ。これが立っている場合、romkan_henkan
|
|
70 の結果としてdisoutにnisedl(偽物のdel)以後が特殊コードのみ
|
|
71 で終わる文字列が返ってきたら、その後ろにREDRAWをつなぐ。Wnn
|
|
72 で変換行のredrawをするために必要な措置。
|
|
73 RK_SIMPLD deleteの動作を単純にするかのフラグ
|
|
74 RK_VERBOS verboseで起こすかのフラグ
|
|
75 */
|
|
76
|
|
77 #ifdef OMRON_LIB
|
|
78 static
|
|
79 #endif
|
|
80 jmp_buf env0;
|
|
81
|
|
82 #ifdef OMRON_LIB
|
|
83 static
|
|
84 #endif
|
|
85 char *dspmod[2][2] = { NULL, NULL, NULL, NULL };
|
|
86 /* 現在及び一つ前の、romkanをそれぞれon・offしている時のモード表示
|
|
87 文字列へのポインタ。romkan_dispmode()で返る値はdspmod[0][0]。 */
|
|
88
|
|
89
|
|
90 /* 88/06/07 V3.1 */
|
|
91 struct modetable
|
|
92 {
|
|
93 int max;
|
|
94 int count;
|
|
95 char **point;
|
|
96 int size;
|
|
97 char *org;
|
|
98 char *next;
|
|
99 };
|
|
100
|
|
101 #ifdef OMRON_LIB
|
|
102 static
|
|
103 #endif
|
|
104 struct modetable rk_defmode;
|
|
105 #ifdef OMRON_LIB
|
|
106 static
|
|
107 #endif
|
|
108 struct modetable rk_dspmode;
|
|
109 #ifdef OMRON_LIB
|
|
110 static
|
|
111 #endif
|
|
112 struct modetable rk_taiouhyo;
|
|
113 #ifdef OMRON_LIB
|
|
114 static
|
|
115 #endif
|
|
116 struct modetable rk_path;
|
|
117
|
|
118
|
|
119 /* モードの状態。各々1か0の値をとる */
|
|
120 struct modeswtable
|
|
121 {
|
|
122 int max;
|
|
123 int count;
|
|
124 int *point;
|
|
125 };
|
|
126 #ifdef OMRON_LIB
|
|
127 static
|
|
128 #endif
|
|
129 struct modeswtable rk_modesw;
|
|
130
|
|
131 /* モード定義表の読み込みのためのバッファ */
|
|
132 struct modebuftable
|
|
133 {
|
|
134 int size;
|
|
135 char *org;
|
|
136 };
|
|
137 #ifdef OMRON_LIB
|
|
138 static
|
|
139 #endif
|
|
140 struct modebuftable rk_modebuf;
|
|
141
|
|
142 /* モード定義表の内部形式のデータ */
|
|
143 struct modenaibutable
|
|
144 {
|
|
145 int size;
|
|
146 int *org;
|
|
147 int *next;
|
|
148 };
|
|
149 #ifdef OMRON_LIB
|
|
150 static
|
|
151 #endif
|
|
152 struct modenaibutable rk_modenaibu;
|
|
153
|
|
154 /* 前・本・後処理表のどれが選択されているかのデータ */
|
|
155 struct usehyotable
|
|
156 {
|
|
157 int size;
|
|
158 int *usemaehyo;
|
|
159 int *usehyo;
|
|
160 int *useatohyo;
|
|
161 };
|
|
162 #ifdef OMRON_LIB
|
|
163 static
|
|
164 #endif
|
|
165 struct usehyotable rk_usehyo;
|
|
166
|
|
167 struct dat /* 入力・出力・バッファ残り部へのポインタ */
|
|
168 {
|
|
169 letter *code[3];
|
|
170 };
|
|
171
|
|
172 /* 一つの対応表の、変換データ及び各変数の変域の、格納場所へのポインタ。 */
|
|
173 struct hyo
|
|
174 {
|
|
175 int hyoshu; /* 表の種別(前・本・後処理表) */
|
|
176 struct dat *data; /* 変換データの開始番地 */
|
|
177 letter **hensudef; /* 変域表の開始番地 */
|
|
178 int size; /* 格納場所のサイズ *//* V3.1 */
|
|
179 letter *memory; /* 格納場所へのポインタ *//* V3.1 */
|
|
180 };
|
|
181
|
|
182 struct hyotable
|
|
183 {
|
|
184 int size;
|
|
185 struct hyo *point;
|
|
186 };
|
|
187 #ifdef OMRON_LIB
|
|
188 static
|
|
189 #endif
|
|
190 struct hyotable rk_hyo;
|
|
191
|
|
192 struct hyobuftable
|
|
193 {
|
|
194 int size;
|
|
195 char *org;
|
|
196 char *next;
|
|
197 };
|
|
198 #ifdef OMRON_LIB
|
|
199 static
|
|
200 #endif
|
|
201 struct hyobuftable rk_hyobuf;
|
|
202
|
|
203 struct henikitable
|
|
204 {
|
|
205 int size;
|
|
206 letter *org;
|
|
207 letter *next;
|
|
208 };
|
|
209 #ifdef OMRON_LIB
|
|
210 static
|
|
211 #endif
|
|
212 struct henikitable rk_heniki;
|
|
213
|
|
214 struct hensuset
|
|
215 {
|
|
216 unsigned regdflg:1; /* 既登録の変数を表す */
|
|
217 unsigned curlinflg:1; /* 現在行に既出の変数を表す */
|
|
218 letter *name;
|
|
219 letter *range;
|
|
220 };
|
|
221
|
|
222 struct hensuutable
|
|
223 {
|
|
224 int max;
|
|
225 int count;
|
|
226 struct hensuset *point;
|
|
227 int size;
|
|
228 letter *org;
|
|
229 letter *next;
|
|
230 };
|
|
231 #ifdef OMRON_LIB
|
|
232 static
|
|
233 #endif
|
|
234 struct hensuutable rk_hensuu;
|
|
235
|
|
236 struct hensuudeftable
|
|
237 {
|
|
238 int max;
|
|
239 int count;
|
|
240 letter **point;
|
|
241 };
|
|
242 #ifdef OMRON_LIB
|
|
243 static
|
|
244 #endif
|
|
245 struct hensuudeftable rk_hensuudef;
|
|
246
|
|
247 /* 現在マッチされている変数の番号と、マッチした文字の組を保持。*/
|
|
248 struct matchpair
|
|
249 {
|
|
250 int hennum;
|
|
251 letter ltrmch;
|
|
252 };
|
|
253 /* 変数のマッチ状況をためておく */
|
|
254 struct matchtable
|
|
255 {
|
|
256 int size;
|
|
257 struct matchpair *point;
|
|
258 };
|
|
259 #ifdef OMRON_LIB
|
|
260 static
|
|
261 #endif
|
|
262 struct matchtable rk_henmatch;
|
|
263 #else /*!MULTI */
|
|
264 #include "rk_header.h"
|
|
265 letter *lptr;
|
|
266 #endif /*!MULTI */
|