Mercurial > emacs
annotate src/cm.c @ 110399:e4c19190baef
Fix bug #6933 regarding `half' width fringes.
fringe.el (fringe-mode, fringe-query-style): Use 4 pixels, not
5, for `half' width fringes. (Bug#6933)
| author | Eli Zaretskii <eliz@gnu.org> |
|---|---|
| date | Fri, 17 Sep 2010 23:07:57 +0200 |
| parents | 750db9f3e6d8 |
| children | 417b1e4d63cd |
| rev | line source |
|---|---|
| 484 | 1 /* Cursor motion subroutines for GNU Emacs. |
|
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
68651
diff
changeset
|
2 Copyright (C) 1985, 1995, 2001, 2002, 2003, 2004, |
| 106815 | 3 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
| 484 | 4 based primarily on public domain code written by Chris Torek |
| 5 | |
| 6 This file is part of GNU Emacs. | |
| 7 | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
8 GNU Emacs is free software: you can redistribute it and/or modify |
| 484 | 9 it under the terms of the GNU General Public License as published by |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
10 the Free Software Foundation, either version 3 of the License, or |
|
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
11 (at your option) any later version. |
| 484 | 12 |
| 13 GNU Emacs is distributed in the hope that it will be useful, | |
| 14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 16 GNU General Public License for more details. | |
| 17 | |
| 18 You should have received a copy of the GNU General Public License | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 484 | 20 |
| 21 | |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
484
diff
changeset
|
22 #include <config.h> |
| 484 | 23 #include <stdio.h> |
|
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100951
diff
changeset
|
24 #include <setjmp.h> |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
25 |
|
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
26 #include "lisp.h" |
|
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
27 #include "frame.h" |
| 484 | 28 #include "cm.h" |
| 29 #include "termhooks.h" | |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
30 #include "termchar.h" |
|
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
31 |
| 484 | 32 |
|
33672
a94852aef620
Don't try to include termcap.h; see comment there.
Gerd Moellmann <gerd@gnu.org>
parents:
30915
diff
changeset
|
33 /* For now, don't try to include termcap.h. On some systems, |
|
a94852aef620
Don't try to include termcap.h; see comment there.
Gerd Moellmann <gerd@gnu.org>
parents:
30915
diff
changeset
|
34 configure finds a non-standard termcap.h that the main build |
|
a94852aef620
Don't try to include termcap.h; see comment there.
Gerd Moellmann <gerd@gnu.org>
parents:
30915
diff
changeset
|
35 won't find. */ |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
107376
diff
changeset
|
36 extern void tputs (const char *, int, int (*)(int)); |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
107376
diff
changeset
|
37 extern char *tgoto (const char *, int, int); |
|
25734
0242362bb1fe
(toplevel) [HAVE_TERMCAP_H]: Include termcap.h.
Gerd Moellmann <gerd@gnu.org>
parents:
25333
diff
changeset
|
38 |
| 484 | 39 #define BIG 9999 /* 9999 good on VAXen. For 16 bit machines |
| 40 use about 2000.... */ | |
| 41 | |
| 42 extern char *BC, *UP; | |
| 43 | |
| 44 int cost; /* sums up costs */ | |
| 45 | |
| 46 /* ARGSUSED */ | |
| 21514 | 47 int |
|
109144
7dceae91724c
Convert most remaining function definitions to standard C.
Juanma Barranquero <lekktu@gmail.com>
parents:
109115
diff
changeset
|
48 evalcost (int c) |
| 484 | 49 { |
| 50 cost++; | |
|
8985
2825665b8352
(evalcost, cmputc): They now return their arguments.
Richard M. Stallman <rms@gnu.org>
parents:
7107
diff
changeset
|
51 return c; |
| 484 | 52 } |
| 53 | |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
54 /* The terminal to use for low-level output. */ |
|
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
55 struct tty_display_info *current_tty; |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
56 |
| 21514 | 57 int |
|
109144
7dceae91724c
Convert most remaining function definitions to standard C.
Juanma Barranquero <lekktu@gmail.com>
parents:
109115
diff
changeset
|
58 cmputc (int c) |
| 484 | 59 { |
|
83065
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
60 if (current_tty->termscript) |
|
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
61 putc (c & 0177, current_tty->termscript); |
|
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
62 putc (c & 0177, current_tty->output); |
|
8985
2825665b8352
(evalcost, cmputc): They now return their arguments.
Richard M. Stallman <rms@gnu.org>
parents:
7107
diff
changeset
|
63 return c; |
| 484 | 64 } |
| 65 | |
| 66 /* NEXT TWO ARE DONE WITH MACROS */ | |
| 67 #if 0 | |
| 68 /* | |
| 69 * Assume the cursor is at row row, column col. Normally used only after | |
| 70 * clearing the screen, when the cursor is at (0, 0), but what the heck, | |
| 71 * let's let the guy put it anywhere. | |
| 72 */ | |
| 73 | |
| 74 static | |
|
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
75 at (tty, row, col) { |
|
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
76 curY (tty) = row; |
|
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
77 curX (tty) = col; |
| 484 | 78 } |
| 79 | |
| 80 /* | |
| 81 * Add n columns to the current cursor position. | |
| 82 */ | |
| 83 | |
| 84 static | |
|
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
85 addcol (tty, n) { |
|
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
86 curX (tty) += n; |
| 484 | 87 |
| 88 /* | |
| 89 * If cursor hit edge of screen, what happened? | |
| 90 * N.B.: DO NOT!! write past edge of screen. If you do, you | |
| 91 * deserve what you get. Furthermore, on terminals with | |
| 92 * autowrap (but not magicwrap), don't write in the last column | |
| 93 * of the last line. | |
| 94 */ | |
| 95 | |
|
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
96 if (curX (tty) == tty->Wcm->cm_cols) { |
| 484 | 97 /* |
| 98 * Well, if magicwrap, still there, past the edge of the | |
| 99 * screen (!). If autowrap, on the col 0 of the next line. | |
| 100 * Otherwise on last column. | |
| 101 */ | |
| 102 | |
|
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
103 if (tty->Wcm->cm_magicwrap) |
| 484 | 104 ; /* "limbo" */ |
|
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
105 else if (tty->Wcm->cm_autowrap) { |
|
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
106 curX (tty) = 0; |
|
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
107 curY (tty) ++; /* Beware end of screen! */ |
| 484 | 108 } |
| 109 else | |
|
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
110 curX (tty)--; |
| 484 | 111 } |
| 112 } | |
| 113 #endif | |
| 114 | |
| 115 /* | |
| 10437 | 116 * Terminals with magicwrap (xn) don't all behave identically. |
| 117 * The VT100 leaves the cursor in the last column but will wrap before | |
| 118 * printing the next character. I hear that the Concept terminal does | |
| 119 * the wrap immediately but ignores the next newline it sees. And some | |
| 120 * terminals just have buggy firmware, and think that the cursor is still | |
| 121 * in limbo if we use direct cursor addressing from the phantom column. | |
| 122 * The only guaranteed safe thing to do is to emit a CRLF immediately | |
| 123 * after we reach the last column; this takes us to a known state. | |
| 124 */ | |
| 125 void | |
|
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
126 cmcheckmagic (struct tty_display_info *tty) |
| 10437 | 127 { |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
128 if (curX (tty) == FrameCols (tty)) |
| 10437 | 129 { |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
130 if (!MagicWrap (tty) || curY (tty) >= FrameRows (tty) - 1) |
| 10437 | 131 abort (); |
|
83065
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
132 if (tty->termscript) |
|
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
133 putc ('\r', tty->termscript); |
|
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
134 putc ('\r', tty->output); |
|
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
135 if (tty->termscript) |
|
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
136 putc ('\n', tty->termscript); |
|
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
137 putc ('\n', tty->output); |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
138 curX (tty) = 0; |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
139 curY (tty)++; |
| 10437 | 140 } |
| 141 } | |
| 142 | |
| 143 | |
| 144 /* | |
| 484 | 145 * (Re)Initialize the cost factors, given the output speed of the terminal |
| 146 * in the variable ospeed. (Note: this holds B300, B9600, etc -- ie stuff | |
| 147 * out of <sgtty.h>.) | |
| 148 */ | |
| 149 | |
| 21514 | 150 void |
|
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
151 cmcostinit (struct tty_display_info *tty) |
| 484 | 152 { |
| 153 char *p; | |
| 154 | |
| 155 #define COST(x,e) (x ? (cost = 0, tputs (x, 1, e), cost) : BIG) | |
| 156 #define CMCOST(x,e) ((x == 0) ? BIG : (p = tgoto(x, 0, 0), COST(p ,e))) | |
| 157 | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
158 tty->Wcm->cc_up = COST (tty->Wcm->cm_up, evalcost); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
159 tty->Wcm->cc_down = COST (tty->Wcm->cm_down, evalcost); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
160 tty->Wcm->cc_left = COST (tty->Wcm->cm_left, evalcost); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
161 tty->Wcm->cc_right = COST (tty->Wcm->cm_right, evalcost); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
162 tty->Wcm->cc_home = COST (tty->Wcm->cm_home, evalcost); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
163 tty->Wcm->cc_cr = COST (tty->Wcm->cm_cr, evalcost); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
164 tty->Wcm->cc_ll = COST (tty->Wcm->cm_ll, evalcost); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
165 tty->Wcm->cc_tab = tty->Wcm->cm_tabwidth ? COST (tty->Wcm->cm_tab, evalcost) : BIG; |
| 484 | 166 |
| 167 /* | |
| 168 * These last three are actually minimum costs. When (if) they are | |
| 169 * candidates for the least-cost motion, the real cost is computed. | |
| 170 * (Note that "0" is the assumed to generate the minimum cost. | |
| 171 * While this is not necessarily true, I have yet to see a terminal | |
| 172 * for which is not; all the terminals that have variable-cost | |
| 173 * cursor motion seem to take straight numeric values. --ACT) | |
| 174 */ | |
| 175 | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
176 tty->Wcm->cc_abs = CMCOST (tty->Wcm->cm_abs, evalcost); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
177 tty->Wcm->cc_habs = CMCOST (tty->Wcm->cm_habs, evalcost); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
178 tty->Wcm->cc_vabs = CMCOST (tty->Wcm->cm_vabs, evalcost); |
| 484 | 179 |
| 180 #undef CMCOST | |
| 181 #undef COST | |
| 182 } | |
| 183 | |
| 184 /* | |
| 185 * Calculate the cost to move from (srcy, srcx) to (dsty, dstx) using | |
| 186 * up and down, and left and right, motions, and tabs. If doit is set | |
| 187 * actually perform the motion. | |
| 188 */ | |
| 189 | |
| 21514 | 190 static int |
|
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
191 calccost (struct tty_display_info *tty, |
|
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
192 int srcy, int srcx, int dsty, int dstx, int doit) |
| 484 | 193 { |
| 194 register int deltay, | |
| 195 deltax, | |
| 196 c, | |
| 197 totalcost; | |
| 198 int ntabs, | |
| 199 n2tabs, | |
| 200 tabx, | |
| 201 tab2x, | |
| 202 tabcost; | |
| 203 register char *p; | |
| 204 | |
| 205 /* If have just wrapped on a terminal with xn, | |
| 206 don't believe the cursor position: give up here | |
| 207 and force use of absolute positioning. */ | |
| 208 | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
209 if (curX (tty) == tty->Wcm->cm_cols) |
| 484 | 210 goto fail; |
| 211 | |
| 212 totalcost = 0; | |
| 213 if ((deltay = dsty - srcy) == 0) | |
| 214 goto x; | |
| 215 if (deltay < 0) | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
216 p = tty->Wcm->cm_up, c = tty->Wcm->cc_up, deltay = -deltay; |
| 484 | 217 else |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
218 p = tty->Wcm->cm_down, c = tty->Wcm->cc_down; |
| 484 | 219 if (c == BIG) { /* caint get thar from here */ |
| 220 if (doit) | |
| 221 printf ("OOPS"); | |
| 222 return c; | |
| 223 } | |
| 224 totalcost = c * deltay; | |
| 225 if (doit) | |
| 226 while (--deltay >= 0) | |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
227 emacs_tputs (tty, p, 1, cmputc); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
228 x: |
| 484 | 229 if ((deltax = dstx - srcx) == 0) |
| 230 goto done; | |
| 231 if (deltax < 0) { | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
232 p = tty->Wcm->cm_left, c = tty->Wcm->cc_left, deltax = -deltax; |
| 484 | 233 goto dodelta; /* skip all the tab junk */ |
| 234 } | |
| 235 /* Tabs (the toughie) */ | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
236 if (tty->Wcm->cc_tab >= BIG || !tty->Wcm->cm_usetabs) |
| 484 | 237 goto olddelta; /* forget it! */ |
| 238 | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
239 /* |
| 484 | 240 * ntabs is # tabs towards but not past dstx; n2tabs is one more |
| 241 * (ie past dstx), but this is only valid if that is not past the | |
| 242 * right edge of the screen. We can check that at the same time | |
| 243 * as we figure out where we would be if we use the tabs (which | |
| 244 * we will put into tabx (for ntabs) and tab2x (for n2tabs)). | |
| 245 */ | |
| 246 | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
247 ntabs = (deltax + srcx % tty->Wcm->cm_tabwidth) / tty->Wcm->cm_tabwidth; |
| 484 | 248 n2tabs = ntabs + 1; |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
249 tabx = (srcx / tty->Wcm->cm_tabwidth + ntabs) * tty->Wcm->cm_tabwidth; |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
250 tab2x = tabx + tty->Wcm->cm_tabwidth; |
| 484 | 251 |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
252 if (tab2x >= tty->Wcm->cm_cols) /* too far (past edge) */ |
| 484 | 253 n2tabs = 0; |
| 254 | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
255 /* |
| 484 | 256 * Now set tabcost to the cost for using ntabs, and c to the cost |
| 257 * for using n2tabs, then pick the minimum. | |
| 258 */ | |
| 259 | |
| 83027 | 260 /* cost for ntabs + cost for right motion */ |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
261 tabcost = ntabs ? ntabs * tty->Wcm->cc_tab + (dstx - tabx) * tty->Wcm->cc_right |
| 484 | 262 : BIG; |
| 263 | |
| 83027 | 264 /* cost for n2tabs + cost for left motion */ |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
265 c = n2tabs ? n2tabs * tty->Wcm->cc_tab + (tab2x - dstx) * tty->Wcm->cc_left |
| 484 | 266 : BIG; |
| 267 | |
| 268 if (c < tabcost) /* then cheaper to overshoot & back up */ | |
| 269 ntabs = n2tabs, tabcost = c, tabx = tab2x; | |
| 270 | |
| 271 if (tabcost >= BIG) /* caint use tabs */ | |
| 272 goto newdelta; | |
| 273 | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
274 /* |
| 484 | 275 * See if tabcost is less than just moving right |
| 276 */ | |
| 277 | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
278 if (tabcost < (deltax * tty->Wcm->cc_right)) { |
| 484 | 279 totalcost += tabcost; /* use the tabs */ |
| 280 if (doit) | |
| 281 while (--ntabs >= 0) | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
282 emacs_tputs (tty, tty->Wcm->cm_tab, 1, cmputc); |
| 484 | 283 srcx = tabx; |
| 284 } | |
| 285 | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
286 /* |
| 484 | 287 * Now might as well just recompute the delta. |
| 288 */ | |
| 289 | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
290 newdelta: |
| 484 | 291 if ((deltax = dstx - srcx) == 0) |
| 292 goto done; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
293 olddelta: |
| 484 | 294 if (deltax > 0) |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
295 p = tty->Wcm->cm_right, c = tty->Wcm->cc_right; |
| 484 | 296 else |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
297 p = tty->Wcm->cm_left, c = tty->Wcm->cc_left, deltax = -deltax; |
| 484 | 298 |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
299 dodelta: |
| 484 | 300 if (c == BIG) { /* caint get thar from here */ |
| 301 fail: | |
| 302 if (doit) | |
| 303 printf ("OOPS"); | |
| 304 return BIG; | |
| 305 } | |
| 306 totalcost += c * deltax; | |
| 307 if (doit) | |
| 308 while (--deltax >= 0) | |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
309 emacs_tputs (tty, p, 1, cmputc); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
310 done: |
| 484 | 311 return totalcost; |
| 312 } | |
| 313 | |
| 314 #if 0 | |
| 315 losecursor () | |
| 316 { | |
| 317 curY = -1; | |
| 318 } | |
| 319 #endif | |
| 320 | |
| 321 #define USEREL 0 | |
| 322 #define USEHOME 1 | |
| 323 #define USELL 2 | |
| 324 #define USECR 3 | |
| 325 | |
| 21514 | 326 void |
|
109144
7dceae91724c
Convert most remaining function definitions to standard C.
Juanma Barranquero <lekktu@gmail.com>
parents:
109115
diff
changeset
|
327 cmgoto (struct tty_display_info *tty, int row, int col) |
| 484 | 328 { |
| 329 int homecost, | |
| 330 crcost, | |
| 331 llcost, | |
| 332 relcost, | |
| 333 directcost; | |
| 334 int use; | |
| 335 char *p, | |
| 336 *dcm; | |
| 337 | |
| 338 /* First the degenerate case */ | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
339 if (row == curY (tty) && col == curX (tty)) /* already there */ |
| 484 | 340 return; |
| 341 | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
342 if (curY (tty) >= 0 && curX (tty) >= 0) |
| 484 | 343 { |
| 344 /* We may have quick ways to go to the upper-left, bottom-left, | |
| 345 * start-of-line, or start-of-next-line. Or it might be best to | |
| 346 * start where we are. Examine the options, and pick the cheapest. | |
| 347 */ | |
| 348 | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
349 relcost = calccost (tty, curY (tty), curX (tty), row, col, 0); |
| 484 | 350 use = USEREL; |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
351 if ((homecost = tty->Wcm->cc_home) < BIG) |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
352 homecost += calccost (tty, 0, 0, row, col, 0); |
| 484 | 353 if (homecost < relcost) |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
354 relcost = homecost, use = USEHOME; |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
355 if ((llcost = tty->Wcm->cc_ll) < BIG) |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
356 llcost += calccost (tty, tty->Wcm->cm_rows - 1, 0, row, col, 0); |
| 484 | 357 if (llcost < relcost) |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
358 relcost = llcost, use = USELL; |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
359 if ((crcost = tty->Wcm->cc_cr) < BIG) { |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
360 if (tty->Wcm->cm_autolf) |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
361 if (curY (tty) + 1 >= tty->Wcm->cm_rows) |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
362 crcost = BIG; |
| 484 | 363 else |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
364 crcost += calccost (tty, curY (tty) + 1, 0, row, col, 0); |
| 484 | 365 else |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
366 crcost += calccost (tty, curY (tty), 0, row, col, 0); |
| 484 | 367 } |
| 368 if (crcost < relcost) | |
| 369 relcost = crcost, use = USECR; | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
370 directcost = tty->Wcm->cc_abs, dcm = tty->Wcm->cm_abs; |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
371 if (row == curY (tty) && tty->Wcm->cc_habs < BIG) |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
372 directcost = tty->Wcm->cc_habs, dcm = tty->Wcm->cm_habs; |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
373 else if (col == curX (tty) && tty->Wcm->cc_vabs < BIG) |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
374 directcost = tty->Wcm->cc_vabs, dcm = tty->Wcm->cm_vabs; |
| 484 | 375 } |
| 376 else | |
| 377 { | |
| 378 directcost = 0, relcost = 100000; | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
379 dcm = tty->Wcm->cm_abs; |
| 484 | 380 } |
| 381 | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
382 /* |
| 484 | 383 * In the following comparison, the = in <= is because when the costs |
| 384 * are the same, it looks nicer (I think) to move directly there. | |
| 385 */ | |
| 386 if (directcost <= relcost) | |
| 387 { | |
| 388 /* compute REAL direct cost */ | |
| 389 cost = 0; | |
| 83027 | 390 p = (dcm == tty->Wcm->cm_habs |
| 391 ? tgoto (dcm, row, col) | |
| 392 : tgoto (dcm, col, row)); | |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
393 emacs_tputs (tty, p, 1, evalcost); |
| 484 | 394 if (cost <= relcost) |
| 395 { /* really is cheaper */ | |
|
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
396 emacs_tputs (tty, p, 1, cmputc); |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
397 curY (tty) = row, curX (tty) = col; |
| 484 | 398 return; |
| 399 } | |
| 400 } | |
| 401 | |
| 402 switch (use) | |
| 403 { | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
404 case USEHOME: |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
405 emacs_tputs (tty, tty->Wcm->cm_home, 1, cmputc); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
406 curY (tty) = 0, curX (tty) = 0; |
| 484 | 407 break; |
| 408 | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
409 case USELL: |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
410 emacs_tputs (tty, tty->Wcm->cm_ll, 1, cmputc); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
411 curY (tty) = tty->Wcm->cm_rows - 1, curX (tty) = 0; |
| 484 | 412 break; |
| 413 | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
414 case USECR: |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
415 emacs_tputs (tty, tty->Wcm->cm_cr, 1, cmputc); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
416 if (tty->Wcm->cm_autolf) |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
417 curY (tty)++; |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
418 curX (tty) = 0; |
| 484 | 419 break; |
| 420 } | |
| 421 | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
422 (void) calccost (tty, curY (tty), curX (tty), row, col, 1); |
|
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
423 curY (tty) = row, curX (tty) = col; |
| 484 | 424 } |
| 425 | |
| 426 /* Clear out all terminal info. | |
| 427 Used before copying into it the info on the actual terminal. | |
| 428 */ | |
| 429 | |
| 21514 | 430 void |
|
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
431 Wcm_clear (struct tty_display_info *tty) |
| 484 | 432 { |
|
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109144
diff
changeset
|
433 memset (tty->Wcm, 0, sizeof (struct cm)); |
| 484 | 434 UP = 0; |
| 435 BC = 0; | |
| 436 } | |
| 437 | |
| 438 /* | |
| 439 * Initialized stuff | |
| 440 * Return 0 if can do CM. | |
| 441 * Return -1 if cannot. | |
| 442 * Return -2 if size not specified. | |
| 443 */ | |
| 444 | |
| 21514 | 445 int |
|
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
446 Wcm_init (struct tty_display_info *tty) |
| 484 | 447 { |
| 448 #if 0 | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
449 if (tty->Wcm->cm_abs && !tty->Wcm->cm_ds) |
| 484 | 450 return 0; |
| 451 #endif | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
452 if (tty->Wcm->cm_abs) |
| 484 | 453 return 0; |
| 454 /* Require up and left, and, if no absolute, down and right */ | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
455 if (!tty->Wcm->cm_up || !tty->Wcm->cm_left) |
| 484 | 456 return - 1; |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
457 if (!tty->Wcm->cm_abs && (!tty->Wcm->cm_down || !tty->Wcm->cm_right)) |
| 484 | 458 return - 1; |
| 459 /* Check that we know the size of the screen.... */ | |
|
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
460 if (tty->Wcm->cm_rows <= 0 || tty->Wcm->cm_cols <= 0) |
| 484 | 461 return - 2; |
| 462 return 0; | |
| 463 } | |
| 52401 | 464 |
| 465 /* arch-tag: bcf64c02-00f6-44ef-94b6-c56eab5b3dc4 | |
| 466 (do not change this comment) */ |
