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