1 /* Cursor motion subroutines for GNU Emacs.
2 Copyright (C) 1985, 1995, 2001-2012 Free Software Foundation, Inc.
3 based primarily on public domain code written by Chris Torek
5 This file is part of GNU Emacs.
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
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
28 #include "termhooks.h"
32 #define BIG 9999 /* 9999 good on VAXen. For 16 bit machines
35 int cost
; /* sums up costs */
45 /* The terminal to use for low-level output. */
46 struct tty_display_info
*current_tty
;
51 if (current_tty
->termscript
)
52 putc (c
& 0177, current_tty
->termscript
);
53 putc (c
& 0177, current_tty
->output
);
57 /* NEXT TWO ARE DONE WITH MACROS */
60 * Assume the cursor is at row row, column col. Normally used only after
61 * clearing the screen, when the cursor is at (0, 0), but what the heck,
62 * let's let the guy put it anywhere.
72 * Add n columns to the current cursor position.
80 * If cursor hit edge of screen, what happened?
81 * N.B.: DO NOT!! write past edge of screen. If you do, you
82 * deserve what you get. Furthermore, on terminals with
83 * autowrap (but not magicwrap), don't write in the last column
87 if (curX (tty
) == tty
->Wcm
->cm_cols
) {
89 * Well, if magicwrap, still there, past the edge of the
90 * screen (!). If autowrap, on the col 0 of the next line.
91 * Otherwise on last column.
94 if (tty
->Wcm
->cm_magicwrap
)
96 else if (tty
->Wcm
->cm_autowrap
) {
98 curY (tty
) ++; /* Beware end of screen! */
107 * Terminals with magicwrap (xn) don't all behave identically.
108 * The VT100 leaves the cursor in the last column but will wrap before
109 * printing the next character. I hear that the Concept terminal does
110 * the wrap immediately but ignores the next newline it sees. And some
111 * terminals just have buggy firmware, and think that the cursor is still
112 * in limbo if we use direct cursor addressing from the phantom column.
113 * The only guaranteed safe thing to do is to emit a CRLF immediately
114 * after we reach the last column; this takes us to a known state.
117 cmcheckmagic (struct tty_display_info
*tty
)
119 if (curX (tty
) == FrameCols (tty
))
121 if (!MagicWrap (tty
) || curY (tty
) >= FrameRows (tty
) - 1)
124 putc ('\r', tty
->termscript
);
125 putc ('\r', tty
->output
);
127 putc ('\n', tty
->termscript
);
128 putc ('\n', tty
->output
);
136 * (Re)Initialize the cost factors, given the output speed of the terminal
137 * in the variable ospeed. (Note: this holds B300, B9600, etc -- ie stuff
142 cmcostinit (struct tty_display_info
*tty
)
146 #define COST(x,e) (x ? (cost = 0, tputs (x, 1, e), cost) : BIG)
147 #define CMCOST(x,e) ((x == 0) ? BIG : (p = tgoto(x, 0, 0), COST(p ,e)))
149 tty
->Wcm
->cc_up
= COST (tty
->Wcm
->cm_up
, evalcost
);
150 tty
->Wcm
->cc_down
= COST (tty
->Wcm
->cm_down
, evalcost
);
151 tty
->Wcm
->cc_left
= COST (tty
->Wcm
->cm_left
, evalcost
);
152 tty
->Wcm
->cc_right
= COST (tty
->Wcm
->cm_right
, evalcost
);
153 tty
->Wcm
->cc_home
= COST (tty
->Wcm
->cm_home
, evalcost
);
154 tty
->Wcm
->cc_cr
= COST (tty
->Wcm
->cm_cr
, evalcost
);
155 tty
->Wcm
->cc_ll
= COST (tty
->Wcm
->cm_ll
, evalcost
);
156 tty
->Wcm
->cc_tab
= tty
->Wcm
->cm_tabwidth
? COST (tty
->Wcm
->cm_tab
, evalcost
) : BIG
;
159 * These last three are actually minimum costs. When (if) they are
160 * candidates for the least-cost motion, the real cost is computed.
161 * (Note that "0" is the assumed to generate the minimum cost.
162 * While this is not necessarily true, I have yet to see a terminal
163 * for which is not; all the terminals that have variable-cost
164 * cursor motion seem to take straight numeric values. --ACT)
167 tty
->Wcm
->cc_abs
= CMCOST (tty
->Wcm
->cm_abs
, evalcost
);
168 tty
->Wcm
->cc_habs
= CMCOST (tty
->Wcm
->cm_habs
, evalcost
);
169 tty
->Wcm
->cc_vabs
= CMCOST (tty
->Wcm
->cm_vabs
, evalcost
);
176 * Calculate the cost to move from (srcy, srcx) to (dsty, dstx) using
177 * up and down, and left and right, motions, and tabs. If doit is set
178 * actually perform the motion.
182 calccost (struct tty_display_info
*tty
,
183 int srcy
, int srcx
, int dsty
, int dstx
, int doit
)
194 register const char *p
;
196 /* If have just wrapped on a terminal with xn,
197 don't believe the cursor position: give up here
198 and force use of absolute positioning. */
200 if (curX (tty
) == tty
->Wcm
->cm_cols
)
204 if ((deltay
= dsty
- srcy
) == 0)
207 p
= tty
->Wcm
->cm_up
, c
= tty
->Wcm
->cc_up
, deltay
= -deltay
;
209 p
= tty
->Wcm
->cm_down
, c
= tty
->Wcm
->cc_down
;
210 if (c
== BIG
) { /* caint get thar from here */
215 totalcost
= c
* deltay
;
218 emacs_tputs (tty
, p
, 1, cmputc
);
219 while (0 < --deltay
);
221 if ((deltax
= dstx
- srcx
) == 0)
224 p
= tty
->Wcm
->cm_left
, c
= tty
->Wcm
->cc_left
, deltax
= -deltax
;
225 goto dodelta
; /* skip all the tab junk */
227 /* Tabs (the toughie) */
228 if (tty
->Wcm
->cc_tab
>= BIG
|| !tty
->Wcm
->cm_usetabs
)
229 goto olddelta
; /* forget it! */
232 * ntabs is # tabs towards but not past dstx; n2tabs is one more
233 * (ie past dstx), but this is only valid if that is not past the
234 * right edge of the screen. We can check that at the same time
235 * as we figure out where we would be if we use the tabs (which
236 * we will put into tabx (for ntabs) and tab2x (for n2tabs)).
239 ntabs
= (deltax
+ srcx
% tty
->Wcm
->cm_tabwidth
) / tty
->Wcm
->cm_tabwidth
;
241 tabx
= (srcx
/ tty
->Wcm
->cm_tabwidth
+ ntabs
) * tty
->Wcm
->cm_tabwidth
;
242 tab2x
= tabx
+ tty
->Wcm
->cm_tabwidth
;
244 if (tab2x
>= tty
->Wcm
->cm_cols
) /* too far (past edge) */
248 * Now set tabcost to the cost for using ntabs, and c to the cost
249 * for using n2tabs, then pick the minimum.
252 /* cost for ntabs + cost for right motion */
253 tabcost
= ntabs
? ntabs
* tty
->Wcm
->cc_tab
+ (dstx
- tabx
) * tty
->Wcm
->cc_right
256 /* cost for n2tabs + cost for left motion */
257 c
= n2tabs
? n2tabs
* tty
->Wcm
->cc_tab
+ (tab2x
- dstx
) * tty
->Wcm
->cc_left
260 if (c
< tabcost
) /* then cheaper to overshoot & back up */
261 ntabs
= n2tabs
, tabcost
= c
, tabx
= tab2x
;
263 if (tabcost
>= BIG
) /* caint use tabs */
267 * See if tabcost is less than just moving right
270 if (tabcost
< (deltax
* tty
->Wcm
->cc_right
)) {
271 totalcost
+= tabcost
; /* use the tabs */
274 emacs_tputs (tty
, tty
->Wcm
->cm_tab
, 1, cmputc
);
279 * Now might as well just recompute the delta.
283 if ((deltax
= dstx
- srcx
) == 0)
287 p
= tty
->Wcm
->cm_right
, c
= tty
->Wcm
->cc_right
;
289 p
= tty
->Wcm
->cm_left
, c
= tty
->Wcm
->cc_left
, deltax
= -deltax
;
292 if (c
== BIG
) { /* caint get thar from here */
298 totalcost
+= c
* deltax
;
301 emacs_tputs (tty
, p
, 1, cmputc
);
302 while (0 < --deltax
);
321 cmgoto (struct tty_display_info
*tty
, int row
, int col
)
328 int use
IF_LINT (= 0);
332 /* First the degenerate case */
333 if (row
== curY (tty
) && col
== curX (tty
)) /* already there */
336 if (curY (tty
) >= 0 && curX (tty
) >= 0)
338 /* We may have quick ways to go to the upper-left, bottom-left,
339 * start-of-line, or start-of-next-line. Or it might be best to
340 * start where we are. Examine the options, and pick the cheapest.
343 relcost
= calccost (tty
, curY (tty
), curX (tty
), row
, col
, 0);
345 if ((homecost
= tty
->Wcm
->cc_home
) < BIG
)
346 homecost
+= calccost (tty
, 0, 0, row
, col
, 0);
347 if (homecost
< relcost
)
348 relcost
= homecost
, use
= USEHOME
;
349 if ((llcost
= tty
->Wcm
->cc_ll
) < BIG
)
350 llcost
+= calccost (tty
, tty
->Wcm
->cm_rows
- 1, 0, row
, col
, 0);
351 if (llcost
< relcost
)
352 relcost
= llcost
, use
= USELL
;
353 if ((crcost
= tty
->Wcm
->cc_cr
) < BIG
) {
354 if (tty
->Wcm
->cm_autolf
)
355 if (curY (tty
) + 1 >= tty
->Wcm
->cm_rows
)
358 crcost
+= calccost (tty
, curY (tty
) + 1, 0, row
, col
, 0);
360 crcost
+= calccost (tty
, curY (tty
), 0, row
, col
, 0);
362 if (crcost
< relcost
)
363 relcost
= crcost
, use
= USECR
;
364 directcost
= tty
->Wcm
->cc_abs
, dcm
= tty
->Wcm
->cm_abs
;
365 if (row
== curY (tty
) && tty
->Wcm
->cc_habs
< BIG
)
366 directcost
= tty
->Wcm
->cc_habs
, dcm
= tty
->Wcm
->cm_habs
;
367 else if (col
== curX (tty
) && tty
->Wcm
->cc_vabs
< BIG
)
368 directcost
= tty
->Wcm
->cc_vabs
, dcm
= tty
->Wcm
->cm_vabs
;
372 directcost
= 0, relcost
= 100000;
373 dcm
= tty
->Wcm
->cm_abs
;
377 * In the following comparison, the = in <= is because when the costs
378 * are the same, it looks nicer (I think) to move directly there.
380 if (directcost
<= relcost
)
382 /* compute REAL direct cost */
384 p
= (dcm
== tty
->Wcm
->cm_habs
385 ? tgoto (dcm
, row
, col
)
386 : tgoto (dcm
, col
, row
));
387 emacs_tputs (tty
, p
, 1, evalcost
);
389 { /* really is cheaper */
390 emacs_tputs (tty
, p
, 1, cmputc
);
391 curY (tty
) = row
, curX (tty
) = col
;
399 emacs_tputs (tty
, tty
->Wcm
->cm_home
, 1, cmputc
);
400 curY (tty
) = 0, curX (tty
) = 0;
404 emacs_tputs (tty
, tty
->Wcm
->cm_ll
, 1, cmputc
);
405 curY (tty
) = tty
->Wcm
->cm_rows
- 1, curX (tty
) = 0;
409 emacs_tputs (tty
, tty
->Wcm
->cm_cr
, 1, cmputc
);
410 if (tty
->Wcm
->cm_autolf
)
416 (void) calccost (tty
, curY (tty
), curX (tty
), row
, col
, 1);
417 curY (tty
) = row
, curX (tty
) = col
;
420 /* Clear out all terminal info.
421 Used before copying into it the info on the actual terminal.
425 Wcm_clear (struct tty_display_info
*tty
)
427 memset (tty
->Wcm
, 0, sizeof (struct cm
));
434 * Return 0 if can do CM.
435 * Return -1 if cannot.
436 * Return -2 if size not specified.
440 Wcm_init (struct tty_display_info
*tty
)
443 if (tty
->Wcm
->cm_abs
&& !tty
->Wcm
->cm_ds
)
446 if (tty
->Wcm
->cm_abs
)
448 /* Require up and left, and, if no absolute, down and right */
449 if (!tty
->Wcm
->cm_up
|| !tty
->Wcm
->cm_left
)
451 if (!tty
->Wcm
->cm_abs
&& (!tty
->Wcm
->cm_down
|| !tty
->Wcm
->cm_right
))
453 /* Check that we know the size of the screen.... */
454 if (tty
->Wcm
->cm_rows
<= 0 || tty
->Wcm
->cm_cols
<= 0)