Mercurial > emacs
annotate src/cm.c @ 107538:75e87467a0db
Merge from `emacs-23'.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Wed, 24 Mar 2010 14:02:56 -0400 |
parents | 5a46c741f65e |
children | 2bc9a0c04c87 |
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. */ |
30915
10dd42348df3
[HAVE_TERMCAP_H]: Include <termcap.h>.
Dave Love <fx@gnu.org>
parents:
29909
diff
changeset
|
36 extern void tputs P_ ((const char *, int, int (*)(int))); |
10dd42348df3
[HAVE_TERMCAP_H]: Include <termcap.h>.
Dave Love <fx@gnu.org>
parents:
29909
diff
changeset
|
37 extern char *tgoto P_ ((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 |
484 | 48 evalcost (c) |
49 char c; | |
50 { | |
51 cost++; | |
8985
2825665b8352
(evalcost, cmputc): They now return their arguments.
Richard M. Stallman <rms@gnu.org>
parents:
7107
diff
changeset
|
52 return c; |
484 | 53 } |
54 | |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
55 /* 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
|
56 struct tty_display_info *current_tty; |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
57 |
21514 | 58 int |
484 | 59 cmputc (c) |
60 char c; | |
61 { | |
83065
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
62 if (current_tty->termscript) |
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
63 putc (c & 0177, current_tty->termscript); |
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
64 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
|
65 return c; |
484 | 66 } |
67 | |
68 /* NEXT TWO ARE DONE WITH MACROS */ | |
69 #if 0 | |
70 /* | |
71 * Assume the cursor is at row row, column col. Normally used only after | |
72 * clearing the screen, when the cursor is at (0, 0), but what the heck, | |
73 * let's let the guy put it anywhere. | |
74 */ | |
75 | |
76 static | |
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
77 at (tty, row, col) { |
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
78 curY (tty) = row; |
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
79 curX (tty) = col; |
484 | 80 } |
81 | |
82 /* | |
83 * Add n columns to the current cursor position. | |
84 */ | |
85 | |
86 static | |
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
87 addcol (tty, n) { |
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
88 curX (tty) += n; |
484 | 89 |
90 /* | |
91 * If cursor hit edge of screen, what happened? | |
92 * N.B.: DO NOT!! write past edge of screen. If you do, you | |
93 * deserve what you get. Furthermore, on terminals with | |
94 * autowrap (but not magicwrap), don't write in the last column | |
95 * of the last line. | |
96 */ | |
97 | |
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
98 if (curX (tty) == tty->Wcm->cm_cols) { |
484 | 99 /* |
100 * Well, if magicwrap, still there, past the edge of the | |
101 * screen (!). If autowrap, on the col 0 of the next line. | |
102 * Otherwise on last column. | |
103 */ | |
104 | |
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
105 if (tty->Wcm->cm_magicwrap) |
484 | 106 ; /* "limbo" */ |
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
107 else if (tty->Wcm->cm_autowrap) { |
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
108 curX (tty) = 0; |
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
109 curY (tty) ++; /* Beware end of screen! */ |
484 | 110 } |
111 else | |
53233
fe9b37bee5f7
Fully eliminated global tty state variables.
Karoly Lorentey <lorentey@elte.hu>
parents:
53232
diff
changeset
|
112 curX (tty)--; |
484 | 113 } |
114 } | |
115 #endif | |
116 | |
117 /* | |
10437 | 118 * Terminals with magicwrap (xn) don't all behave identically. |
119 * The VT100 leaves the cursor in the last column but will wrap before | |
120 * printing the next character. I hear that the Concept terminal does | |
121 * the wrap immediately but ignores the next newline it sees. And some | |
122 * terminals just have buggy firmware, and think that the cursor is still | |
123 * in limbo if we use direct cursor addressing from the phantom column. | |
124 * The only guaranteed safe thing to do is to emit a CRLF immediately | |
125 * after we reach the last column; this takes us to a known state. | |
126 */ | |
127 void | |
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
128 cmcheckmagic (struct tty_display_info *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 (curX (tty) == FrameCols (tty)) |
10437 | 131 { |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
132 if (!MagicWrap (tty) || curY (tty) >= FrameRows (tty) - 1) |
10437 | 133 abort (); |
83065
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
134 if (tty->termscript) |
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
135 putc ('\r', tty->termscript); |
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
136 putc ('\r', tty->output); |
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
137 if (tty->termscript) |
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
138 putc ('\n', tty->termscript); |
a871be7b26a5
Implemented suspending of emacsclient frames.
Karoly Lorentey <lorentey@elte.hu>
parents:
83027
diff
changeset
|
139 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
|
140 curX (tty) = 0; |
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
141 curY (tty)++; |
10437 | 142 } |
143 } | |
144 | |
145 | |
146 /* | |
484 | 147 * (Re)Initialize the cost factors, given the output speed of the terminal |
148 * in the variable ospeed. (Note: this holds B300, B9600, etc -- ie stuff | |
149 * out of <sgtty.h>.) | |
150 */ | |
151 | |
21514 | 152 void |
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
153 cmcostinit (struct tty_display_info *tty) |
484 | 154 { |
155 char *p; | |
156 | |
157 #define COST(x,e) (x ? (cost = 0, tputs (x, 1, e), cost) : BIG) | |
158 #define CMCOST(x,e) ((x == 0) ? BIG : (p = tgoto(x, 0, 0), COST(p ,e))) | |
159 | |
53232
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_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
|
161 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
|
162 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
|
163 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
|
164 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
|
165 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
|
166 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
|
167 tty->Wcm->cc_tab = tty->Wcm->cm_tabwidth ? COST (tty->Wcm->cm_tab, evalcost) : BIG; |
484 | 168 |
169 /* | |
170 * These last three are actually minimum costs. When (if) they are | |
171 * candidates for the least-cost motion, the real cost is computed. | |
172 * (Note that "0" is the assumed to generate the minimum cost. | |
173 * While this is not necessarily true, I have yet to see a terminal | |
174 * for which is not; all the terminals that have variable-cost | |
175 * cursor motion seem to take straight numeric values. --ACT) | |
176 */ | |
177 | |
53232
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_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
|
179 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
|
180 tty->Wcm->cc_vabs = CMCOST (tty->Wcm->cm_vabs, evalcost); |
484 | 181 |
182 #undef CMCOST | |
183 #undef COST | |
184 } | |
185 | |
186 /* | |
187 * Calculate the cost to move from (srcy, srcx) to (dsty, dstx) using | |
188 * up and down, and left and right, motions, and tabs. If doit is set | |
189 * actually perform the motion. | |
190 */ | |
191 | |
21514 | 192 static int |
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
193 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
|
194 int srcy, int srcx, int dsty, int dstx, int doit) |
484 | 195 { |
196 register int deltay, | |
197 deltax, | |
198 c, | |
199 totalcost; | |
200 int ntabs, | |
201 n2tabs, | |
202 tabx, | |
203 tab2x, | |
204 tabcost; | |
205 register char *p; | |
206 | |
207 /* If have just wrapped on a terminal with xn, | |
208 don't believe the cursor position: give up here | |
209 and force use of absolute positioning. */ | |
210 | |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
211 if (curX (tty) == tty->Wcm->cm_cols) |
484 | 212 goto fail; |
213 | |
214 totalcost = 0; | |
215 if ((deltay = dsty - srcy) == 0) | |
216 goto x; | |
217 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
|
218 p = tty->Wcm->cm_up, c = tty->Wcm->cc_up, deltay = -deltay; |
484 | 219 else |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
220 p = tty->Wcm->cm_down, c = tty->Wcm->cc_down; |
484 | 221 if (c == BIG) { /* caint get thar from here */ |
222 if (doit) | |
223 printf ("OOPS"); | |
224 return c; | |
225 } | |
226 totalcost = c * deltay; | |
227 if (doit) | |
228 while (--deltay >= 0) | |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
229 emacs_tputs (tty, p, 1, cmputc); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
230 x: |
484 | 231 if ((deltax = dstx - srcx) == 0) |
232 goto done; | |
233 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
|
234 p = tty->Wcm->cm_left, c = tty->Wcm->cc_left, deltax = -deltax; |
484 | 235 goto dodelta; /* skip all the tab junk */ |
236 } | |
237 /* 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
|
238 if (tty->Wcm->cc_tab >= BIG || !tty->Wcm->cm_usetabs) |
484 | 239 goto olddelta; /* forget it! */ |
240 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
241 /* |
484 | 242 * ntabs is # tabs towards but not past dstx; n2tabs is one more |
243 * (ie past dstx), but this is only valid if that is not past the | |
244 * right edge of the screen. We can check that at the same time | |
245 * as we figure out where we would be if we use the tabs (which | |
246 * we will put into tabx (for ntabs) and tab2x (for n2tabs)). | |
247 */ | |
248 | |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
249 ntabs = (deltax + srcx % tty->Wcm->cm_tabwidth) / tty->Wcm->cm_tabwidth; |
484 | 250 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
|
251 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
|
252 tab2x = tabx + tty->Wcm->cm_tabwidth; |
484 | 253 |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
254 if (tab2x >= tty->Wcm->cm_cols) /* too far (past edge) */ |
484 | 255 n2tabs = 0; |
256 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
257 /* |
484 | 258 * Now set tabcost to the cost for using ntabs, and c to the cost |
259 * for using n2tabs, then pick the minimum. | |
260 */ | |
261 | |
83027 | 262 /* 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
|
263 tabcost = ntabs ? ntabs * tty->Wcm->cc_tab + (dstx - tabx) * tty->Wcm->cc_right |
484 | 264 : BIG; |
265 | |
83027 | 266 /* 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
|
267 c = n2tabs ? n2tabs * tty->Wcm->cc_tab + (tab2x - dstx) * tty->Wcm->cc_left |
484 | 268 : BIG; |
269 | |
270 if (c < tabcost) /* then cheaper to overshoot & back up */ | |
271 ntabs = n2tabs, tabcost = c, tabx = tab2x; | |
272 | |
273 if (tabcost >= BIG) /* caint use tabs */ | |
274 goto newdelta; | |
275 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
276 /* |
484 | 277 * See if tabcost is less than just moving right |
278 */ | |
279 | |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
280 if (tabcost < (deltax * tty->Wcm->cc_right)) { |
484 | 281 totalcost += tabcost; /* use the tabs */ |
282 if (doit) | |
283 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
|
284 emacs_tputs (tty, tty->Wcm->cm_tab, 1, cmputc); |
484 | 285 srcx = tabx; |
286 } | |
287 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
288 /* |
484 | 289 * Now might as well just recompute the delta. |
290 */ | |
291 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
292 newdelta: |
484 | 293 if ((deltax = dstx - srcx) == 0) |
294 goto done; | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
295 olddelta: |
484 | 296 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
|
297 p = tty->Wcm->cm_right, c = tty->Wcm->cc_right; |
484 | 298 else |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
299 p = tty->Wcm->cm_left, c = tty->Wcm->cc_left, deltax = -deltax; |
484 | 300 |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
301 dodelta: |
484 | 302 if (c == BIG) { /* caint get thar from here */ |
303 fail: | |
304 if (doit) | |
305 printf ("OOPS"); | |
306 return BIG; | |
307 } | |
308 totalcost += c * deltax; | |
309 if (doit) | |
310 while (--deltax >= 0) | |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
311 emacs_tputs (tty, p, 1, cmputc); |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
312 done: |
484 | 313 return totalcost; |
314 } | |
315 | |
316 #if 0 | |
317 losecursor () | |
318 { | |
319 curY = -1; | |
320 } | |
321 #endif | |
322 | |
323 #define USEREL 0 | |
324 #define USEHOME 1 | |
325 #define USELL 2 | |
326 #define USECR 3 | |
327 | |
21514 | 328 void |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
329 cmgoto (tty, row, col) |
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
330 struct tty_display_info *tty; |
48318
5c1be14cbcac
(calccost, cmgoto): Declare all args (per C99).
Dave Love <fx@gnu.org>
parents:
33672
diff
changeset
|
331 int row, col; |
484 | 332 { |
333 int homecost, | |
334 crcost, | |
335 llcost, | |
336 relcost, | |
337 directcost; | |
338 int use; | |
339 char *p, | |
340 *dcm; | |
341 | |
342 /* 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
|
343 if (row == curY (tty) && col == curX (tty)) /* already there */ |
484 | 344 return; |
345 | |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
346 if (curY (tty) >= 0 && curX (tty) >= 0) |
484 | 347 { |
348 /* We may have quick ways to go to the upper-left, bottom-left, | |
349 * start-of-line, or start-of-next-line. Or it might be best to | |
350 * start where we are. Examine the options, and pick the cheapest. | |
351 */ | |
352 | |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
353 relcost = calccost (tty, curY (tty), curX (tty), row, col, 0); |
484 | 354 use = USEREL; |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
355 if ((homecost = tty->Wcm->cc_home) < BIG) |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
356 homecost += calccost (tty, 0, 0, row, col, 0); |
484 | 357 if (homecost < relcost) |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
358 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
|
359 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
|
360 llcost += calccost (tty, tty->Wcm->cm_rows - 1, 0, row, col, 0); |
484 | 361 if (llcost < relcost) |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
362 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
|
363 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
|
364 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
|
365 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
|
366 crcost = BIG; |
484 | 367 else |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
368 crcost += calccost (tty, curY (tty) + 1, 0, row, col, 0); |
484 | 369 else |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
370 crcost += calccost (tty, curY (tty), 0, row, col, 0); |
484 | 371 } |
372 if (crcost < relcost) | |
373 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
|
374 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
|
375 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
|
376 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
|
377 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
|
378 directcost = tty->Wcm->cc_vabs, dcm = tty->Wcm->cm_vabs; |
484 | 379 } |
380 else | |
381 { | |
382 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
|
383 dcm = tty->Wcm->cm_abs; |
484 | 384 } |
385 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
386 /* |
484 | 387 * In the following comparison, the = in <= is because when the costs |
388 * are the same, it looks nicer (I think) to move directly there. | |
389 */ | |
390 if (directcost <= relcost) | |
391 { | |
392 /* compute REAL direct cost */ | |
393 cost = 0; | |
83027 | 394 p = (dcm == tty->Wcm->cm_habs |
395 ? tgoto (dcm, row, col) | |
396 : tgoto (dcm, col, row)); | |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
397 emacs_tputs (tty, p, 1, evalcost); |
484 | 398 if (cost <= relcost) |
399 { /* really is cheaper */ | |
53226
dd3018b4785b
Implemented multiple tty support.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
400 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
|
401 curY (tty) = row, curX (tty) = col; |
484 | 402 return; |
403 } | |
404 } | |
405 | |
406 switch (use) | |
407 { | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
408 case USEHOME: |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
409 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
|
410 curY (tty) = 0, curX (tty) = 0; |
484 | 411 break; |
412 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
413 case USELL: |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
414 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
|
415 curY (tty) = tty->Wcm->cm_rows - 1, curX (tty) = 0; |
484 | 416 break; |
417 | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48318
diff
changeset
|
418 case USECR: |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
419 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
|
420 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
|
421 curY (tty)++; |
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
422 curX (tty) = 0; |
484 | 423 break; |
424 } | |
425 | |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
426 (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
|
427 curY (tty) = row, curX (tty) = col; |
484 | 428 } |
429 | |
430 /* Clear out all terminal info. | |
431 Used before copying into it the info on the actual terminal. | |
432 */ | |
433 | |
21514 | 434 void |
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
435 Wcm_clear (struct tty_display_info *tty) |
484 | 436 { |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
437 bzero (tty->Wcm, sizeof (struct cm)); |
484 | 438 UP = 0; |
439 BC = 0; | |
440 } | |
441 | |
442 /* | |
443 * Initialized stuff | |
444 * Return 0 if can do CM. | |
445 * Return -1 if cannot. | |
446 * Return -2 if size not specified. | |
447 */ | |
448 | |
21514 | 449 int |
82989
f3845715a5f6
Separate frame-local, tty-dependent parameters from tty-local parameters.
Karoly Lorentey <lorentey@elte.hu>
parents:
53343
diff
changeset
|
450 Wcm_init (struct tty_display_info *tty) |
484 | 451 { |
452 #if 0 | |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
453 if (tty->Wcm->cm_abs && !tty->Wcm->cm_ds) |
484 | 454 return 0; |
455 #endif | |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
456 if (tty->Wcm->cm_abs) |
484 | 457 return 0; |
458 /* 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
|
459 if (!tty->Wcm->cm_up || !tty->Wcm->cm_left) |
484 | 460 return - 1; |
53232
22aaf1e5fbe6
Full support for multiple terminal I/O (with some rough edges).
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
461 if (!tty->Wcm->cm_abs && (!tty->Wcm->cm_down || !tty->Wcm->cm_right)) |
484 | 462 return - 1; |
463 /* 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
|
464 if (tty->Wcm->cm_rows <= 0 || tty->Wcm->cm_cols <= 0) |
484 | 465 return - 2; |
466 return 0; | |
467 } | |
52401 | 468 |
469 /* arch-tag: bcf64c02-00f6-44ef-94b6-c56eab5b3dc4 | |
470 (do not change this comment) */ |