0
|
1 /*
|
|
2 * $Id: rk_spclval.h,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 /* Version 3.0
|
|
40 */
|
|
41 #ifndef EOLTTR
|
|
42
|
|
43 typedef unsigned int letter; /* 文字は一般にこの型で表す */
|
|
44 typedef unsigned char uns_chr;
|
|
45
|
|
46 typedef unsigned char modetyp;
|
|
47 #define LTRHUG (~(0xff000000))
|
|
48 /* 内部表現 及び偽文字を除く、letterの取り得る最大値 */
|
|
49
|
|
50
|
|
51 /* 以下に定義する値は、最上位バイトが255でなければならない。
|
|
52 これらのうち、外に出るのは EOLTTR、CHMSIG、NISEBP、LTREOFと
|
|
53 REDRAW(偽デリートとしてNISEDLを使う場合はNISEDLも)。 */
|
|
54
|
|
55 #define EOLTTR (0xffffffff) /* 文字列の終端を表すコード */
|
|
56 /* キー入力があったら必ず何かコードを返す状態にして
|
|
57 おくと、特に返すべきものがない時はこれを返す。 */
|
|
58 #define ERRCOD (EOLTTR-1) /* (error)を表す内部コード */
|
|
59 #define CHMSIG (EOLTTR-2) /* モードチェンジを表すコード */
|
|
60 #define NISEBP (EOLTTR-3) /* エラー警告用の偽BELコード */
|
|
61 #define VARRNG (EOLTTR-4) /* 変域が二つの文字の間であるのを示す内部コード */
|
|
62 #define UNUSDC (EOLTTR-5) /* マッチを失敗させるための内部コード */
|
|
63 #define REASIG (EOLTTR-6) /* 表の再設定を要求するための内部コード */
|
|
64 #define URBFCL (EOLTTR-7) /* 裏バッファの明示的クリアを要求する内部コード */
|
|
65 #define LTREOF (EOLTTR-8) /* romkan_next()、同getc()がEOFの代わりに返すもの
|
|
66 (できればEOFと同じにしたいが…) */
|
|
67 #define REDRAW (EOLTTR-9) /* Wnnに変換行のredrawを要求する特殊コード */
|
|
68 #define NISEDL (EOLTTR-10) /* 偽デリートとして定数を使いたい人のために準備
|
|
69 された定数(但し、使いたくなければ使わなくても
|
|
70 いい)。変数nisedlにセットして使う */
|
|
71 #define SENDCH (EOLTTR-11) /* 変換バッファが空なら、次の文字を無条件に
|
|
72 上に送るようWnnに要求するエスケープコード。 */
|
|
73
|
|
74
|
|
75 /* romkan_init3()の引数のフラグに使う値 */
|
|
76
|
|
77 #define RK_CHMOUT 01 /* モードチェンジを知らせるコードを返すか? */
|
|
78 #define RK_KEYACK 02 /* キーインに対し必ず何かを返すか */
|
|
79 #define RK_DSPNIL 04 /* モード表示文字列無指定の時に空文字列を返すか(デフ
|
|
80 ォルトはNULL)。互換性保持のため */
|
|
81 #define RK_NONISE 010 /* 偽コードを出さないようにするか */
|
|
82 #define RK_REDRAW 020 /* Wnn用特殊フラグ(redraw用のフラグを出すかどうか) */
|
|
83 #define RK_SIMPLD 040 /* deleteの動作を単純にするか */
|
|
84 #define RK_VERBOS 0100 /* 使用する表の一覧をリポートするか */
|
|
85
|
|
86
|
|
87 /* コードの区別に使うマクロ */
|
|
88
|
|
89 #define HG1BIT (0x80000000) /* 最上位ビットだよ */
|
|
90 #define SHUBET(X) ((letter)(X) >> 24)
|
|
91 /* 内部表現で、上1バイトを種別表現に使ってる */
|
|
92 #define LWRMSK(X) ((X) & ~(0xff000000)) /* 上1バイトを取り除く */
|
|
93 #define LWRCUT(X) ((X) &= ~(0xff000000)) /* 上1バイトを取り除く */
|
|
94
|
|
95 #define is_HON(X) (SHUBET(X) == 0) /* 本物の文字か */
|
|
96 #define NAIBEX(X) ((int)0 < SHUBET(X) && (int)SHUBET(X) < 0x80) /* 内部表現を示す値か */
|
|
97 #define isNISE(X) (SHUBET(X) == 0x80) /* 偽物の文字か(最上位ビットが立つ) */
|
|
98 #define isSPCL(X) (SHUBET(X) == 0xff) /* rk_spcl_val.hで定義される値かどうか */
|
|
99 /* NISEDLなどを含めた偽の文字であるかどうかを判定するには、~is_HON(X) か、
|
|
100 isNISE(X) || isSPCL(X) として判定しないといけない。 */
|
|
101
|
|
102 #define toNISE(X) ((X) | HG1BIT)
|
|
103 #define to_HON(X) ((X) & ~HG1BIT)
|
|
104
|
|
105 /* 互換性のため用意してある別名 */
|
|
106 #define REALCD(X) is_HON(X)
|
|
107 #define NISECD(X) isNISE(X)
|
|
108 #define SPCLCD(X) isSPCL(X)
|
|
109
|
|
110 #ifndef SS2
|
|
111 #define SS2 0x8E
|
|
112 #endif
|
|
113 #ifndef SS3
|
|
114 #define SS3 0x8F
|
|
115 #endif
|
|
116
|
|
117 /** rk_bltinfn.c の補完のためのマクロ
|
|
118 (引数を複数回評価するものも多いので注意)*/
|
|
119
|
|
120 #define HKKBGN (SS2 * 0x100 + 0xA1) /* 半角カナの句点 */
|
|
121 #define HKKEND (SS2 * 0x100 + 0xDF) /* 〃 半濁点 */
|
|
122 #define HIRBGN (0xA4A1) /* ぁ */
|
|
123 #define HIREND (0xA4F3) /* ん */ /* ひらがな:"ぁ"〜"ん" */
|
|
124 #define KATBGN (0xA5A1) /* ァ */
|
|
125 #define KATEND (0xA5F6) /* ヶ */ /* カタカナ:"ァ"〜"ン"〜"ヶ" */
|
|
126
|
|
127 #define _to_kata(l) ((l) + (KATBGN - HIRBGN)) /** カタカナへ(定義域制限)*/
|
|
128 #define _to_hira(l) ((l) - (KATBGN - HIRBGN)) /** ひらがなへ(定義域制限)*/
|
|
129 #define is_hira(l) ((int)HIRBGN <= (int)(l) && (int)(l) <= (int)HIREND) /** ひらがなか? */
|
|
130 #define is_kata(l) ((int)KATBGN <= (int)(l) && (int)(l) <= (int)KATEND) /** カタカナか? */
|
|
131 #define is_kata2(l) ((int)_to_kata(HIRBGN) <= (int)(l) && (int)(l) <= (int)_to_kata(HIREND))
|
|
132 /** 対応するひらがなのあるカタカナか? */
|
|
133 #define to_kata(l) (is_hira(l) ? _to_kata(l) : (l)) /** カタカナへ */
|
|
134 #define to_hira(l) (is_kata2(l) ? _to_hira(l) : (l))
|
|
135 /** ひらがなへ。「ヴヵヶ」はカタカナのまま残る。*/
|
|
136 #define is_hankata(l) ((int)HKKBGN <= (int)(l) && (int)(l) <= (int)HKKEND)
|
|
137 /** 半角カナ(句点などを含む)か? */
|
|
138
|
|
139
|
|
140
|
|
141 /* その他のマクロ関数群(引数を複数回評価するものも多いので注意) */
|
|
142
|
|
143 #define numberof(array) (sizeof(array) / sizeof(*array))
|
|
144
|
|
145 /* ポインタをletterの列の末尾へもっていく。letter *lp */
|
|
146 #define totail(lp) {while(*(lp) != EOLTTR) (lp)++;}
|
|
147
|
|
148 /* 文字列へのポインタをその文字列の最後尾へ。totailのchar版。char *sp */
|
|
149 #define strtail(sp) {while(*(sp)) (sp)++;}
|
|
150
|
|
151 /* 限定版romkan_init3 */
|
|
152 #define romkan_init4(delchr, nisedl, flg) \
|
|
153 romkan_init3(delchr, nisedl, EOLTTR, flg)
|
|
154
|
|
155 #define romkan_init5(delchr, flg) \
|
|
156 romkan_init4(delchr, toNISE(delchr), flg)
|
|
157
|
|
158
|
|
159 #endif /* of ifndef EOLTTR */
|