1 /* Cursor motion subroutines for GNU Emacs.
2 Copyright (C) 1985, 1995, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 based primarily on public domain code written by Chris Torek
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
28 #include "termhooks.h"
32 /* For now, don't try to include termcap.h. On some systems,
33 configure finds a non-standard termcap.h that the main build
36 #if defined HAVE_TERMCAP_H && 0
39 extern void tputs
P_ ((const char *, int, int (*)(int)));
40 extern char *tgoto
P_ ((const char *, int, int));
43 #define BIG 9999 /* 9999 good on VAXen. For 16 bit machines
48 int cost
; /* sums up costs */
59 /* The terminal to use for low-level output. */
60 struct tty_display_info
*current_tty
;
66 if (current_tty
->termscript
)
67 putc (c
& 0177, current_tty
->termscript
);
68 putc (c
& 0177, current_tty
->output
);
72 /* NEXT TWO ARE DONE WITH MACROS */
75 * Assume the cursor is at row row, column col. Normally used only after
76 * clearing the screen, when the cursor is at (0, 0), but what the heck,
77 * let's let the guy put it anywhere.
87 * Add n columns to the current cursor position.
95 * If cursor hit edge of screen, what happened?
96 * N.B.: DO NOT!! write past edge of screen. If you do, you
97 * deserve what you get. Furthermore, on terminals with
98 * autowrap (but not magicwrap), don't write in the last column
102 if (curX (tty
) == tty
->Wcm
->cm_cols
) {
104 * Well, if magicwrap, still there, past the edge of the
105 * screen (!). If autowrap, on the col 0 of the next line.
106 * Otherwise on last column.
109 if (tty
->Wcm
->cm_magicwrap
)
111 else if (tty
->Wcm
->cm_autowrap
) {
113 curY (tty
) ++; /* Beware end of screen! */
122 * Terminals with magicwrap (xn) don't all behave identically.
123 * The VT100 leaves the cursor in the last column but will wrap before
124 * printing the next character. I hear that the Concept terminal does
125 * the wrap immediately but ignores the next newline it sees. And some
126 * terminals just have buggy firmware, and think that the cursor is still
127 * in limbo if we use direct cursor addressing from the phantom column.
128 * The only guaranteed safe thing to do is to emit a CRLF immediately
129 * after we reach the last column; this takes us to a known state.
132 cmcheckmagic (struct tty_display_info
*tty
)
134 if (curX (tty
) == FrameCols (tty
))
136 if (!MagicWrap (tty
) || curY (tty
) >= FrameRows (tty
) - 1)
139 putc ('\r', tty
->termscript
);
140 putc ('\r', tty
->output
);
142 putc ('\n', tty
->termscript
);
143 putc ('\n', tty
->output
);
151 * (Re)Initialize the cost factors, given the output speed of the terminal
152 * in the variable ospeed. (Note: this holds B300, B9600, etc -- ie stuff
157 cmcostinit (struct tty_display_info
*tty
)
161 #define COST(x,e) (x ? (cost = 0, tputs (x, 1, e), cost) : BIG)
162 #define CMCOST(x,e) ((x == 0) ? BIG : (p = tgoto(x, 0, 0), COST(p ,e)))
164 tty
->Wcm
->cc_up
= COST (tty
->Wcm
->cm_up
, evalcost
);
165 tty
->Wcm
->cc_down
= COST (tty
->Wcm
->cm_down
, evalcost
);
166 tty
->Wcm
->cc_left
= COST (tty
->Wcm
->cm_left
, evalcost
);
167 tty
->Wcm
->cc_right
= COST (tty
->Wcm
->cm_right
, evalcost
);
168 tty
->Wcm
->cc_home
= COST (tty
->Wcm
->cm_home
, evalcost
);
169 tty
->Wcm
->cc_cr
= COST (tty
->Wcm
->cm_cr
, evalcost
);
170 tty
->Wcm
->cc_ll
= COST (tty
->Wcm
->cm_ll
, evalcost
);
171 tty
->Wcm
->cc_tab
= tty
->Wcm
->cm_tabwidth
? COST (tty
->Wcm
->cm_tab
, evalcost
) : BIG
;
174 * These last three are actually minimum costs. When (if) they are
175 * candidates for the least-cost motion, the real cost is computed.
176 * (Note that "0" is the assumed to generate the minimum cost.
177 * While this is not necessarily true, I have yet to see a terminal
178 * for which is not; all the terminals that have variable-cost
179 * cursor motion seem to take straight numeric values. --ACT)
182 tty
->Wcm
->cc_abs
= CMCOST (tty
->Wcm
->cm_abs
, evalcost
);
183 tty
->Wcm
->cc_habs
= CMCOST (tty
->Wcm
->cm_habs
, evalcost
);
184 tty
->Wcm
->cc_vabs
= CMCOST (tty
->Wcm
->cm_vabs
, evalcost
);
191 * Calculate the cost to move from (srcy, srcx) to (dsty, dstx) using
192 * up and down, and left and right, motions, and tabs. If doit is set
193 * actually perform the motion.
197 calccost (struct tty_display_info
*tty
,
198 int srcy
, int srcx
, int dsty
, int dstx
, int doit
)
211 /* If have just wrapped on a terminal with xn,
212 don't believe the cursor position: give up here
213 and force use of absolute positioning. */
215 if (curX (tty
) == tty
->Wcm
->cm_cols
)
219 if ((deltay
= dsty
- srcy
) == 0)
222 p
= tty
->Wcm
->cm_up
, c
= tty
->Wcm
->cc_up
, deltay
= -deltay
;
224 p
= tty
->Wcm
->cm_down
, c
= tty
->Wcm
->cc_down
;
225 if (c
== BIG
) { /* caint get thar from here */
230 totalcost
= c
* deltay
;
232 while (--deltay
>= 0)
233 emacs_tputs (tty
, p
, 1, cmputc
);
235 if ((deltax
= dstx
- srcx
) == 0)
238 p
= tty
->Wcm
->cm_left
, c
= tty
->Wcm
->cc_left
, deltax
= -deltax
;
239 goto dodelta
; /* skip all the tab junk */
241 /* Tabs (the toughie) */
242 if (tty
->Wcm
->cc_tab
>= BIG
|| !tty
->Wcm
->cm_usetabs
)
243 goto olddelta
; /* forget it! */
246 * ntabs is # tabs towards but not past dstx; n2tabs is one more
247 * (ie past dstx), but this is only valid if that is not past the
248 * right edge of the screen. We can check that at the same time
249 * as we figure out where we would be if we use the tabs (which
250 * we will put into tabx (for ntabs) and tab2x (for n2tabs)).
253 ntabs
= (deltax
+ srcx
% tty
->Wcm
->cm_tabwidth
) / tty
->Wcm
->cm_tabwidth
;
255 tabx
= (srcx
/ tty
->Wcm
->cm_tabwidth
+ ntabs
) * tty
->Wcm
->cm_tabwidth
;
256 tab2x
= tabx
+ tty
->Wcm
->cm_tabwidth
;
258 if (tab2x
>= tty
->Wcm
->cm_cols
) /* too far (past edge) */
262 * Now set tabcost to the cost for using ntabs, and c to the cost
263 * for using n2tabs, then pick the minimum.
266 /* cost for ntabs + cost for right motion */
267 tabcost
= ntabs
? ntabs
* tty
->Wcm
->cc_tab
+ (dstx
- tabx
) * tty
->Wcm
->cc_right
270 /* cost for n2tabs + cost for left motion */
271 c
= n2tabs
? n2tabs
* tty
->Wcm
->cc_tab
+ (tab2x
- dstx
) * tty
->Wcm
->cc_left
274 if (c
< tabcost
) /* then cheaper to overshoot & back up */
275 ntabs
= n2tabs
, tabcost
= c
, tabx
= tab2x
;
277 if (tabcost
>= BIG
) /* caint use tabs */
281 * See if tabcost is less than just moving right
284 if (tabcost
< (deltax
* tty
->Wcm
->cc_right
)) {
285 totalcost
+= tabcost
; /* use the tabs */
288 emacs_tputs (tty
, tty
->Wcm
->cm_tab
, 1, cmputc
);
293 * Now might as well just recompute the delta.
297 if ((deltax
= dstx
- srcx
) == 0)
301 p
= tty
->Wcm
->cm_right
, c
= tty
->Wcm
->cc_right
;
303 p
= tty
->Wcm
->cm_left
, c
= tty
->Wcm
->cc_left
, deltax
= -deltax
;
306 if (c
== BIG
) { /* caint get thar from here */
312 totalcost
+= c
* deltax
;
314 while (--deltax
>= 0)
315 emacs_tputs (tty
, p
, 1, cmputc
);
333 cmgoto (tty
, row
, col
)
334 struct tty_display_info
*tty
;
346 /* First the degenerate case */
347 if (row
== curY (tty
) && col
== curX (tty
)) /* already there */
350 if (curY (tty
) >= 0 && curX (tty
) >= 0)
352 /* We may have quick ways to go to the upper-left, bottom-left,
353 * start-of-line, or start-of-next-line. Or it might be best to
354 * start where we are. Examine the options, and pick the cheapest.
357 relcost
= calccost (tty
, curY (tty
), curX (tty
), row
, col
, 0);
359 if ((homecost
= tty
->Wcm
->cc_home
) < BIG
)
360 homecost
+= calccost (tty
, 0, 0, row
, col
, 0);
361 if (homecost
< relcost
)
362 relcost
= homecost
, use
= USEHOME
;
363 if ((llcost
= tty
->Wcm
->cc_ll
) < BIG
)
364 llcost
+= calccost (tty
, tty
->Wcm
->cm_rows
- 1, 0, row
, col
, 0);
365 if (llcost
< relcost
)
366 relcost
= llcost
, use
= USELL
;
367 if ((crcost
= tty
->Wcm
->cc_cr
) < BIG
) {
368 if (tty
->Wcm
->cm_autolf
)
369 if (curY (tty
) + 1 >= tty
->Wcm
->cm_rows
)
372 crcost
+= calccost (tty
, curY (tty
) + 1, 0, row
, col
, 0);
374 crcost
+= calccost (tty
, curY (tty
), 0, row
, col
, 0);
376 if (crcost
< relcost
)
377 relcost
= crcost
, use
= USECR
;
378 directcost
= tty
->Wcm
->cc_abs
, dcm
= tty
->Wcm
->cm_abs
;
379 if (row
== curY (tty
) && tty
->Wcm
->cc_habs
< BIG
)
380 directcost
= tty
->Wcm
->cc_habs
, dcm
= tty
->Wcm
->cm_habs
;
381 else if (col
== curX (tty
) && tty
->Wcm
->cc_vabs
< BIG
)
382 directcost
= tty
->Wcm
->cc_vabs
, dcm
= tty
->Wcm
->cm_vabs
;
386 directcost
= 0, relcost
= 100000;
387 dcm
= tty
->Wcm
->cm_abs
;
391 * In the following comparison, the = in <= is because when the costs
392 * are the same, it looks nicer (I think) to move directly there.
394 if (directcost
<= relcost
)
396 /* compute REAL direct cost */
398 p
= (dcm
== tty
->Wcm
->cm_habs
399 ? tgoto (dcm
, row
, col
)
400 : tgoto (dcm
, col
, row
));
401 emacs_tputs (tty
, p
, 1, evalcost
);
403 { /* really is cheaper */
404 emacs_tputs (tty
, p
, 1, cmputc
);
405 curY (tty
) = row
, curX (tty
) = col
;
413 emacs_tputs (tty
, tty
->Wcm
->cm_home
, 1, cmputc
);
414 curY (tty
) = 0, curX (tty
) = 0;
418 emacs_tputs (tty
, tty
->Wcm
->cm_ll
, 1, cmputc
);
419 curY (tty
) = tty
->Wcm
->cm_rows
- 1, curX (tty
) = 0;
423 emacs_tputs (tty
, tty
->Wcm
->cm_cr
, 1, cmputc
);
424 if (tty
->Wcm
->cm_autolf
)
430 (void) calccost (tty
, curY (tty
), curX (tty
), row
, col
, 1);
431 curY (tty
) = row
, curX (tty
) = col
;
434 /* Clear out all terminal info.
435 Used before copying into it the info on the actual terminal.
439 Wcm_clear (struct tty_display_info
*tty
)
441 bzero (tty
->Wcm
, sizeof (struct cm
));
448 * Return 0 if can do CM.
449 * Return -1 if cannot.
450 * Return -2 if size not specified.
454 Wcm_init (struct tty_display_info
*tty
)
457 if (tty
->Wcm
->cm_abs
&& !tty
->Wcm
->cm_ds
)
460 if (tty
->Wcm
->cm_abs
)
462 /* Require up and left, and, if no absolute, down and right */
463 if (!tty
->Wcm
->cm_up
|| !tty
->Wcm
->cm_left
)
465 if (!tty
->Wcm
->cm_abs
&& (!tty
->Wcm
->cm_down
|| !tty
->Wcm
->cm_right
))
467 /* Check that we know the size of the screen.... */
468 if (tty
->Wcm
->cm_rows
<= 0 || tty
->Wcm
->cm_cols
<= 0)
473 /* arch-tag: bcf64c02-00f6-44ef-94b6-c56eab5b3dc4
474 (do not change this comment) */