1 /* Cursor motion subroutines for GNU Emacs.
2 Copyright (C) 1985, 1995, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007, 2008, 2009, 2010, 2011 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/>. */
29 #include "termhooks.h"
33 /* For now, don't try to include termcap.h. On some systems,
34 configure finds a non-standard termcap.h that the main build
36 extern void tputs (const char *, int, int (*)(int));
37 extern char *tgoto (const char *, int, int);
39 #define BIG 9999 /* 9999 good on VAXen. For 16 bit machines
44 int cost
; /* sums up costs */
54 /* The terminal to use for low-level output. */
55 struct tty_display_info
*current_tty
;
60 if (current_tty
->termscript
)
61 putc (c
& 0177, current_tty
->termscript
);
62 putc (c
& 0177, current_tty
->output
);
66 /* NEXT TWO ARE DONE WITH MACROS */
69 * Assume the cursor is at row row, column col. Normally used only after
70 * clearing the screen, when the cursor is at (0, 0), but what the heck,
71 * let's let the guy put it anywhere.
81 * Add n columns to the current cursor position.
89 * If cursor hit edge of screen, what happened?
90 * N.B.: DO NOT!! write past edge of screen. If you do, you
91 * deserve what you get. Furthermore, on terminals with
92 * autowrap (but not magicwrap), don't write in the last column
96 if (curX (tty
) == tty
->Wcm
->cm_cols
) {
98 * Well, if magicwrap, still there, past the edge of the
99 * screen (!). If autowrap, on the col 0 of the next line.
100 * Otherwise on last column.
103 if (tty
->Wcm
->cm_magicwrap
)
105 else if (tty
->Wcm
->cm_autowrap
) {
107 curY (tty
) ++; /* Beware end of screen! */
116 * Terminals with magicwrap (xn) don't all behave identically.
117 * The VT100 leaves the cursor in the last column but will wrap before
118 * printing the next character. I hear that the Concept terminal does
119 * the wrap immediately but ignores the next newline it sees. And some
120 * terminals just have buggy firmware, and think that the cursor is still
121 * in limbo if we use direct cursor addressing from the phantom column.
122 * The only guaranteed safe thing to do is to emit a CRLF immediately
123 * after we reach the last column; this takes us to a known state.
126 cmcheckmagic (struct tty_display_info
*tty
)
128 if (curX (tty
) == FrameCols (tty
))
130 if (!MagicWrap (tty
) || curY (tty
) >= FrameRows (tty
) - 1)
133 putc ('\r', tty
->termscript
);
134 putc ('\r', tty
->output
);
136 putc ('\n', tty
->termscript
);
137 putc ('\n', tty
->output
);
145 * (Re)Initialize the cost factors, given the output speed of the terminal
146 * in the variable ospeed. (Note: this holds B300, B9600, etc -- ie stuff
151 cmcostinit (struct tty_display_info
*tty
)
155 #define COST(x,e) (x ? (cost = 0, tputs (x, 1, e), cost) : BIG)
156 #define CMCOST(x,e) ((x == 0) ? BIG : (p = tgoto(x, 0, 0), COST(p ,e)))
158 tty
->Wcm
->cc_up
= COST (tty
->Wcm
->cm_up
, evalcost
);
159 tty
->Wcm
->cc_down
= COST (tty
->Wcm
->cm_down
, evalcost
);
160 tty
->Wcm
->cc_left
= COST (tty
->Wcm
->cm_left
, evalcost
);
161 tty
->Wcm
->cc_right
= COST (tty
->Wcm
->cm_right
, evalcost
);
162 tty
->Wcm
->cc_home
= COST (tty
->Wcm
->cm_home
, evalcost
);
163 tty
->Wcm
->cc_cr
= COST (tty
->Wcm
->cm_cr
, evalcost
);
164 tty
->Wcm
->cc_ll
= COST (tty
->Wcm
->cm_ll
, evalcost
);
165 tty
->Wcm
->cc_tab
= tty
->Wcm
->cm_tabwidth
? COST (tty
->Wcm
->cm_tab
, evalcost
) : BIG
;
168 * These last three are actually minimum costs. When (if) they are
169 * candidates for the least-cost motion, the real cost is computed.
170 * (Note that "0" is the assumed to generate the minimum cost.
171 * While this is not necessarily true, I have yet to see a terminal
172 * for which is not; all the terminals that have variable-cost
173 * cursor motion seem to take straight numeric values. --ACT)
176 tty
->Wcm
->cc_abs
= CMCOST (tty
->Wcm
->cm_abs
, evalcost
);
177 tty
->Wcm
->cc_habs
= CMCOST (tty
->Wcm
->cm_habs
, evalcost
);
178 tty
->Wcm
->cc_vabs
= CMCOST (tty
->Wcm
->cm_vabs
, evalcost
);
185 * Calculate the cost to move from (srcy, srcx) to (dsty, dstx) using
186 * up and down, and left and right, motions, and tabs. If doit is set
187 * actually perform the motion.
191 calccost (struct tty_display_info
*tty
,
192 int srcy
, int srcx
, int dsty
, int dstx
, int doit
)
205 /* If have just wrapped on a terminal with xn,
206 don't believe the cursor position: give up here
207 and force use of absolute positioning. */
209 if (curX (tty
) == tty
->Wcm
->cm_cols
)
213 if ((deltay
= dsty
- srcy
) == 0)
216 p
= tty
->Wcm
->cm_up
, c
= tty
->Wcm
->cc_up
, deltay
= -deltay
;
218 p
= tty
->Wcm
->cm_down
, c
= tty
->Wcm
->cc_down
;
219 if (c
== BIG
) { /* caint get thar from here */
224 totalcost
= c
* deltay
;
226 while (--deltay
>= 0)
227 emacs_tputs (tty
, p
, 1, cmputc
);
229 if ((deltax
= dstx
- srcx
) == 0)
232 p
= tty
->Wcm
->cm_left
, c
= tty
->Wcm
->cc_left
, deltax
= -deltax
;
233 goto dodelta
; /* skip all the tab junk */
235 /* Tabs (the toughie) */
236 if (tty
->Wcm
->cc_tab
>= BIG
|| !tty
->Wcm
->cm_usetabs
)
237 goto olddelta
; /* forget it! */
240 * ntabs is # tabs towards but not past dstx; n2tabs is one more
241 * (ie past dstx), but this is only valid if that is not past the
242 * right edge of the screen. We can check that at the same time
243 * as we figure out where we would be if we use the tabs (which
244 * we will put into tabx (for ntabs) and tab2x (for n2tabs)).
247 ntabs
= (deltax
+ srcx
% tty
->Wcm
->cm_tabwidth
) / tty
->Wcm
->cm_tabwidth
;
249 tabx
= (srcx
/ tty
->Wcm
->cm_tabwidth
+ ntabs
) * tty
->Wcm
->cm_tabwidth
;
250 tab2x
= tabx
+ tty
->Wcm
->cm_tabwidth
;
252 if (tab2x
>= tty
->Wcm
->cm_cols
) /* too far (past edge) */
256 * Now set tabcost to the cost for using ntabs, and c to the cost
257 * for using n2tabs, then pick the minimum.
260 /* cost for ntabs + cost for right motion */
261 tabcost
= ntabs
? ntabs
* tty
->Wcm
->cc_tab
+ (dstx
- tabx
) * tty
->Wcm
->cc_right
264 /* cost for n2tabs + cost for left motion */
265 c
= n2tabs
? n2tabs
* tty
->Wcm
->cc_tab
+ (tab2x
- dstx
) * tty
->Wcm
->cc_left
268 if (c
< tabcost
) /* then cheaper to overshoot & back up */
269 ntabs
= n2tabs
, tabcost
= c
, tabx
= tab2x
;
271 if (tabcost
>= BIG
) /* caint use tabs */
275 * See if tabcost is less than just moving right
278 if (tabcost
< (deltax
* tty
->Wcm
->cc_right
)) {
279 totalcost
+= tabcost
; /* use the tabs */
282 emacs_tputs (tty
, tty
->Wcm
->cm_tab
, 1, cmputc
);
287 * Now might as well just recompute the delta.
291 if ((deltax
= dstx
- srcx
) == 0)
295 p
= tty
->Wcm
->cm_right
, c
= tty
->Wcm
->cc_right
;
297 p
= tty
->Wcm
->cm_left
, c
= tty
->Wcm
->cc_left
, deltax
= -deltax
;
300 if (c
== BIG
) { /* caint get thar from here */
306 totalcost
+= c
* deltax
;
308 while (--deltax
>= 0)
309 emacs_tputs (tty
, p
, 1, cmputc
);
327 cmgoto (struct tty_display_info
*tty
, int row
, int col
)
338 /* First the degenerate case */
339 if (row
== curY (tty
) && col
== curX (tty
)) /* already there */
342 if (curY (tty
) >= 0 && curX (tty
) >= 0)
344 /* We may have quick ways to go to the upper-left, bottom-left,
345 * start-of-line, or start-of-next-line. Or it might be best to
346 * start where we are. Examine the options, and pick the cheapest.
349 relcost
= calccost (tty
, curY (tty
), curX (tty
), row
, col
, 0);
351 if ((homecost
= tty
->Wcm
->cc_home
) < BIG
)
352 homecost
+= calccost (tty
, 0, 0, row
, col
, 0);
353 if (homecost
< relcost
)
354 relcost
= homecost
, use
= USEHOME
;
355 if ((llcost
= tty
->Wcm
->cc_ll
) < BIG
)
356 llcost
+= calccost (tty
, tty
->Wcm
->cm_rows
- 1, 0, row
, col
, 0);
357 if (llcost
< relcost
)
358 relcost
= llcost
, use
= USELL
;
359 if ((crcost
= tty
->Wcm
->cc_cr
) < BIG
) {
360 if (tty
->Wcm
->cm_autolf
)
361 if (curY (tty
) + 1 >= tty
->Wcm
->cm_rows
)
364 crcost
+= calccost (tty
, curY (tty
) + 1, 0, row
, col
, 0);
366 crcost
+= calccost (tty
, curY (tty
), 0, row
, col
, 0);
368 if (crcost
< relcost
)
369 relcost
= crcost
, use
= USECR
;
370 directcost
= tty
->Wcm
->cc_abs
, dcm
= tty
->Wcm
->cm_abs
;
371 if (row
== curY (tty
) && tty
->Wcm
->cc_habs
< BIG
)
372 directcost
= tty
->Wcm
->cc_habs
, dcm
= tty
->Wcm
->cm_habs
;
373 else if (col
== curX (tty
) && tty
->Wcm
->cc_vabs
< BIG
)
374 directcost
= tty
->Wcm
->cc_vabs
, dcm
= tty
->Wcm
->cm_vabs
;
378 directcost
= 0, relcost
= 100000;
379 dcm
= tty
->Wcm
->cm_abs
;
383 * In the following comparison, the = in <= is because when the costs
384 * are the same, it looks nicer (I think) to move directly there.
386 if (directcost
<= relcost
)
388 /* compute REAL direct cost */
390 p
= (dcm
== tty
->Wcm
->cm_habs
391 ? tgoto (dcm
, row
, col
)
392 : tgoto (dcm
, col
, row
));
393 emacs_tputs (tty
, p
, 1, evalcost
);
395 { /* really is cheaper */
396 emacs_tputs (tty
, p
, 1, cmputc
);
397 curY (tty
) = row
, curX (tty
) = col
;
405 emacs_tputs (tty
, tty
->Wcm
->cm_home
, 1, cmputc
);
406 curY (tty
) = 0, curX (tty
) = 0;
410 emacs_tputs (tty
, tty
->Wcm
->cm_ll
, 1, cmputc
);
411 curY (tty
) = tty
->Wcm
->cm_rows
- 1, curX (tty
) = 0;
415 emacs_tputs (tty
, tty
->Wcm
->cm_cr
, 1, cmputc
);
416 if (tty
->Wcm
->cm_autolf
)
422 (void) calccost (tty
, curY (tty
), curX (tty
), row
, col
, 1);
423 curY (tty
) = row
, curX (tty
) = col
;
426 /* Clear out all terminal info.
427 Used before copying into it the info on the actual terminal.
431 Wcm_clear (struct tty_display_info
*tty
)
433 memset (tty
->Wcm
, 0, sizeof (struct cm
));
440 * Return 0 if can do CM.
441 * Return -1 if cannot.
442 * Return -2 if size not specified.
446 Wcm_init (struct tty_display_info
*tty
)
449 if (tty
->Wcm
->cm_abs
&& !tty
->Wcm
->cm_ds
)
452 if (tty
->Wcm
->cm_abs
)
454 /* Require up and left, and, if no absolute, down and right */
455 if (!tty
->Wcm
->cm_up
|| !tty
->Wcm
->cm_left
)
457 if (!tty
->Wcm
->cm_abs
&& (!tty
->Wcm
->cm_down
|| !tty
->Wcm
->cm_right
))
459 /* Check that we know the size of the screen.... */
460 if (tty
->Wcm
->cm_rows
<= 0 || tty
->Wcm
->cm_cols
<= 0)