Mercurial > freewnn
view Wnn/uum/screen.c @ 3:ed4bb01eb317
- suppress warnings.
- partially fixed comparison between pointer and 0.
author | Yoshiki Yazawa <yaz@cc.rim.or.jp> |
---|---|
date | Thu, 13 Dec 2007 19:53:14 +0900 |
parents | bbc77ca4def5 |
children |
line wrap: on
line source
/* * $Id: screen.c,v 1.7 2002/06/22 13:26:21 hiroo Exp $ */ /* * FreeWnn is a network-extensible Kana-to-Kanji conversion system. * This file is part of FreeWnn. * * Copyright Kyoto University Research Institute for Mathematical Sciences * 1987, 1988, 1989, 1990, 1991, 1992 * Copyright OMRON Corporation. 1987, 1988, 1989, 1990, 1991, 1992, 1999 * Copyright ASTEC, Inc. 1987, 1988, 1989, 1990, 1991, 1992 * Copyright FreeWnn Project 1999, 2000, 2002 * * Maintainer: FreeWnn Project <freewnn@tomo.gr.jp> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifdef HAVE_CONFIG_H # include <config.h> #endif #include <stdio.h> #if STDC_HEADERS # include <string.h> #else # if HAVE_STRINGS_H # include <strings.h> # endif #endif /* STDC_HEADERS */ #include "commonhd.h" #include "wnn_config.h" #include "sdefine.h" #include "sheader.h" #include "wnn_os.h" #include "buffer.h" /* このファイルは、画面制御部分とのインターフェースを行う関数を 定義している。これらの関数を用いずに、画面を制御してはならない。 このファイルからextern されている関数を示す。 なお、画面の制御は、c_b->buffer の中でのインデックスを用いて 行われる。今、c_b->buffer の中のどの部分が画面に出されている かは意識しなくてよい。 t_move(x) : カーソルを x に飛ばす。リドローが必要 (反転、カセンの ため) な部分も勝手に考えて行って来れる。 t_redraw_move(x , start , end,clr_l) : buffer の中で、start から end までのバッファの内容が 変えられた時に、カーソルをx に飛ばすのに用いる。 print_buf_msg(msg) : メッセージ部分を表示する。 disp_mode(): romkan のモードを表示する。 disp_mode_line(): romkan のモードを表示する。 t_print_l(): 画面をリドローする。 t_throw(): カーソルを飛ばす init_screen(): 画面関係(vst)をイニシャライズし、画面表示を行う。 */ /* 文字の画面上での大きさを返す。*/ static int col = 0; /** startichiからの画面上のカーソル位置 */ static int oldmaxcol = 0; /** redraw sita tokini doko made mae ni kaita data ga nokotteiruka wo simesu */ #define CHAR_BYTE 2 #define w_putchar_move(x) {col += w_putchar(x);} #define putchar_move(x) {col += 1; putchar_norm(x);} #define putchar_move1(x) {col += 1; putchar1(x);} #define throw0(x) throw_c((x) + c_b->start_col) /* #define throw(x) {int tmptmp = (x);if(cs == 0 || col != tmptmp){throw0((col = tmptmp) + 1);}} */ /* カーソルをcol に飛ばすのには、throwを 用いる。 */ #define MARJIN 1 /* カーソルが右端からこれだけの所にくれば、次の画面に行く */ static void t_cont_line_note (); static int find_character_on_that_col (), set_vst (); void throw (x) int x; { throw0 ((col = x) + 1); } int char_len (x) w_char x; { return ((*char_len_func) (x)); } /* vst をセットし直して、リドローする*/ void t_redraw_one_line () { if (c_b->vst) { t_cont_line_note (); } else { t_cont_line_note_delete (); } t_print_line (c_b->vst, c_b->maxlen, 1); } void init_screen () { int tmp; oldmaxcol = 0; tmp = cur_ichi (c_b->t_c_p, 0); if ((tmp >= c_b->vlen - c_b->duplicate) && (tmp % (c_b->vlen - c_b->duplicate)) < c_b->duplicate - 1) { c_b->vst = find_character_on_that_col ((tmp / (c_b->vlen - c_b->duplicate) - 1) * (c_b->vlen - c_b->duplicate), 0); } else { c_b->vst = find_character_on_that_col ((tmp / (c_b->vlen - c_b->duplicate)) * (c_b->vlen - c_b->duplicate), 0); } if (c_b->maxlen || *c_b->buf_msg) t_print_l (); } /* hituyouga areba vst wo settosinaosite, settosinaosita tokiniha 1 wo kaesu */ int check_vst () { int k = -1; if ((c_b->t_c_p < c_b->vst) || (cur_ichi (c_b->t_c_p, c_b->vst) >= (c_b->vlen - MARJIN)) || (cur_ichi (c_b->t_m_start, c_b->vst) > (c_b->vlen - MARJIN))) { k = set_vst (); } if (k == -1) { return (0); } else { return (1); } } int t_redraw_move (x, start, end, clr_l) int x; int start; int end; int clr_l; { (*t_redraw_move_func) (x, start, end, clr_l); return (0); } int t_move (x) int x; { int old_cp = c_b->t_c_p; if (((c_b->hanten >> 2) & 0x3) != ((c_b->hanten >> 4) & 0x3)) { t_redraw_move_normal (x, min (old_cp, x), max (old_cp, x), 0); return (0); } if (x >= c_b->maxlen) x = c_b->maxlen; c_b->t_c_p = x; if (check_vst ()) { t_redraw_one_line (); } throw (cur_ichi (c_b->t_c_p, c_b->vst)); flush (); return (0); } int t_print_l () { (*t_print_l_func) (); return (0); } #define set_screen_reverse(X,Y){set_hanten_ul(c_b->hanten & X, c_b->hanten & Y);} #define reset_screen_reverse(X,Y){flushw_buf(); if(c_b->hanten & X)h_r_off();if(c_b->hanten & Y)u_s_off(); flush();} #define set_screen_bold(X){flushw_buf(); set_bold(c_b->hanten & X);} #define reset_screen_bold(X){flushw_buf(); reset_bold(c_b->hanten & X);flush();} /* st must be bigger than vst */ /* このファイルで一番重要な関数。 c_b->buffer の中で、st から end までで画面に現れている所(vstより先)を 表示し直し、行末処理もする。 リバースの状況は、c_b->hantenによって決められる。 */ void t_print_line (st, end, clr_l) int st, end, clr_l; { register int k; register int col1; register int end_of_line = maxlength - disp_mode_length - 1 - c_b->start_col; int tmp; int mst = min (c_b->t_m_start, c_b->t_c_p); int mend = max (c_b->t_m_start, c_b->t_c_p); int bst = c_b->t_b_st; int bend = c_b->t_b_end; int bold = 0; if (end > c_b->maxlen) end = c_b->maxlen; col1 = cur_ichi (st, c_b->vst); if (col1 == -1) { col1 = 0; k = st = c_b->vst; } else { k = st; } for (; end_of_line <= col1; end_of_line += maxlength); throw (col1); if (mst >= 0) { if (st < mst) { set_screen_reverse (0x01, 0x02); for (k = st; k < mst; k++) { if (bold == 0 && k >= bst && k < bend) { set_screen_bold (0x40); bold = 1; } else if (bold && (k < bst || k >= bend)) { reset_screen_bold (0x40); set_screen_reverse (0x01, 0x02); bold = 0; } if (k >= end) { reset_screen_reverse (0x01, 0x02); reset_screen_bold (0x40); bold = 0; goto normal_out; } tmp = char_len (c_b->buffer[k]); if (tmp + col > c_b->vlen) { reset_screen_reverse (0x01, 0x02); reset_screen_bold (0x40); bold = 0; goto end_syori; } w_putchar_move (c_b->buffer[k]); if (col > end_of_line - CHAR_BYTE) { flushw_buf (); if (col < end_of_line) { reset_screen_reverse (0x01, 0x02); reset_screen_bold (0x40); bold = 0; putchar_move (' '); set_screen_reverse (0x01, 0x02); if (k >= bst && k < bend) { set_screen_bold (0x40); bold = 1; } } throw (end_of_line); end_of_line += maxlength; } } reset_screen_reverse (0x01, 0x02); reset_screen_bold (0x40); bold = 0; } if (k < mend) { set_screen_reverse (0x04, 0x08); for (; k < mend; k++) { if (bold == 0 && k >= bst && k < bend) { set_screen_bold (0x40); bold = 1; } else if (bold && (k < bst || k >= bend)) { reset_screen_bold (0x40); set_screen_reverse (0x04, 0x08); bold = 0; } if (k >= end) { reset_screen_reverse (0x04, 0x08); reset_screen_bold (0x40); bold = 0; goto normal_out; } tmp = char_len (c_b->buffer[k]); if (col + tmp > c_b->vlen) { reset_screen_reverse (0x04, 0x08); reset_screen_bold (0x40); bold = 0; goto end_syori; } w_putchar_move (c_b->buffer[k]); if (col > end_of_line - CHAR_BYTE) { flushw_buf (); if (col < end_of_line) { reset_screen_reverse (0x04, 0x08); reset_screen_bold (0x40); bold = 0; putchar_move (' '); set_screen_reverse (0x04, 0x08); if (k >= bst && k < bend) { set_screen_bold (0x40); bold = 1; } } throw (end_of_line); end_of_line += maxlength; } } reset_screen_reverse (0x04, 0x08); reset_screen_bold (0x40); bold = 0; } } if (k < c_b->maxlen && k < end) { set_screen_reverse (0x10, 0x20); for (; k < c_b->maxlen; k++) { if (bold == 0 && k >= bst && k < bend) { set_screen_bold (0x40); bold = 1; } else if (bold && (k < bst || k >= bend)) { reset_screen_bold (0x40); set_screen_reverse (0x10, 0x20); bold = 0; } if (k >= end) { reset_screen_reverse (0x10, 0x20); reset_screen_bold (0x40); bold = 0; goto normal_out; } tmp = char_len (c_b->buffer[k]); if (col + tmp > c_b->vlen) { reset_screen_reverse (0x10, 0x20); reset_screen_bold (0x40); bold = 0; goto end_syori; } w_putchar_move (c_b->buffer[k]); if (col > end_of_line - CHAR_BYTE) { flushw_buf (); if (col < end_of_line) { reset_screen_reverse (0x10, 0x20); reset_screen_bold (0x40); bold = 0; putchar_move (' '); set_screen_reverse (0x10, 0x20); if (k >= bst && k < bend) { set_screen_bold (0x40); bold = 1; } } throw (end_of_line); end_of_line += maxlength; } } reset_screen_reverse (0x10, 0x20); reset_screen_bold (0x40); bold = 0; } normal_out: if (clr_l == 1) { clr_line (); oldmaxcol = col; } else if (clr_l == 2) { clr_line (); oldmaxcol = col; /* k = oldmaxcol - col; oldmaxcol = col; if(k > 0){ push_hrus(); for(; k > 0 ; k--){ putchar_move1(' '); } pop_hrus(); } */ } else { oldmaxcol = max (oldmaxcol, col); } flush (); return; end_syori: for (k = col; k <= c_b->vlen; k++) { putchar_move ('$'); } oldmaxcol = col; flush (); return; } /* 行の先頭処理 */ static void t_cont_line_note () { throw0 (0); putchar_norm ('$'); } /* 行の先頭処理 */ void t_cont_line_note_delete () { throw0 (0); putchar_norm (' '); } /*画面のコラム0がバッファーのstart_point の時、コラムc にある文字を返す*/ static int find_character_on_that_col (c, start_point) int c; /* colum */ int start_point; /* in_buffer as vst */ { int k; register int end_of_line = maxlength - disp_mode_length - 1 - c_b->start_col; int len = 0; for (k = start_point; k <= c_b->maxlen; k++) { len += char_len (c_b->buffer[k]); if (len >= c) return (k); if (len > end_of_line - CHAR_BYTE) { len = end_of_line; end_of_line += maxlength; } } /*error but default to 0 */ return (0); } /*画面のコラム0がバッファーのstart_point の時、文字cpの画面上の位置を返す。*/ /* static */ int cur_ichi (cp, start_point) register int cp; int start_point; { register int k; register int end_of_line = maxlength - disp_mode_length - 1 - c_b->start_col; register int len = 0; if (cp < start_point) return (-1); if (cp > c_b->maxlen) cp = c_b->maxlen; for (k = start_point; k < cp; k++) { len += char_len (c_b->buffer[k]); if (len > end_of_line - CHAR_BYTE) { len = end_of_line; end_of_line += maxlength; } } return (len); } void print_buf_msg (msg) char *msg; { push_cursor (); throw_c (0); printf (msg); pop_cursor (); flush (); } /* vstをセットする*/ /* returns -1 if not changed else returns new start colum */ static int set_vst () { int tmp; int vst1; tmp = cur_ichi (c_b->t_c_p, 0); vst1 = find_character_on_that_col ((tmp / (c_b->vlen - c_b->duplicate)) * (c_b->vlen - c_b->duplicate), 0); if (cur_ichi (c_b->t_m_start, vst1) >= c_b->vlen) { vst1 = c_b->t_c_p; } c_b->vst = vst1; return (vst1); } static char rk_modes[80]; extern char *romkan_dispmode (), *romkan_offmode (); char * get_rk_modes () { char *p; strcpy (rk_modes, (NULL == (p = romkan_dispmode ())? "[ ]" : p)); if ((p = (char *) strchr (rk_modes, ':')) != NULL && *(p + 1)) { set_cur_env (*(++p)); *p = '\0'; } return (rk_modes); } int disp_mode () { push_cursor (); throw_col (0); printf ("%s", get_rk_modes ()); pop_cursor (); flush (); return (0); } /* cursor status is saved before call it */ void display_henkan_off_mode () { char *p; strcpy (rk_modes, (NULL == (p = romkan_offmode ())? "[---]" : p)); throw_col (0); printf ("%s", rk_modes); kk_restore_cursor (); flush (); } /* カーソルを飛ばす*/ void t_throw () { throw0 (col + 1); flush (); } void clr_line () { clr_end_screen (); }