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