1 /* Cursor motion subroutines for GNU Emacs.
2 Copyright (C) 1985 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 1, or (at your option)
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; see the file COPYING. If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
25 #include "termhooks.h"
27 #define BIG 9999 /* 9999 good on VAXen. For 16 bit machines
34 int cost
; /* sums up costs */
48 fputc (c
& 0177, termscript
);
52 /* NEXT TWO ARE DONE WITH MACROS */
55 * Assume the cursor is at row row, column col. Normally used only after
56 * clearing the screen, when the cursor is at (0, 0), but what the heck,
57 * let's let the guy put it anywhere.
67 * Add n columns to the current cursor position.
75 * If cursor hit edge of screen, what happened?
76 * N.B.: DO NOT!! write past edge of screen. If you do, you
77 * deserve what you get. Furthermore, on terminals with
78 * autowrap (but not magicwrap), don't write in the last column
82 if (curX
== Wcm
.cm_cols
) {
84 * Well, if magicwrap, still there, past the edge of the
85 * screen (!). If autowrap, on the col 0 of the next line.
86 * Otherwise on last column.
91 else if (Wcm
.cm_autowrap
) {
93 curY
++; /* Beware end of screen! */
102 * (Re)Initialize the cost factors, given the output speed of the terminal
103 * in the variable ospeed. (Note: this holds B300, B9600, etc -- ie stuff
111 #define COST(x,e) (x ? (cost = 0, tputs (x, 1, e), cost) : BIG)
112 #define CMCOST(x,e) ((x == 0) ? BIG : (p = tgoto(x, 0, 0), COST(p ,e)))
114 Wcm
.cc_up
= COST (Wcm
.cm_up
, evalcost
);
115 Wcm
.cc_down
= COST (Wcm
.cm_down
, evalcost
);
116 Wcm
.cc_left
= COST (Wcm
.cm_left
, evalcost
);
117 Wcm
.cc_right
= COST (Wcm
.cm_right
, evalcost
);
118 Wcm
.cc_home
= COST (Wcm
.cm_home
, evalcost
);
119 Wcm
.cc_cr
= COST (Wcm
.cm_cr
, evalcost
);
120 Wcm
.cc_ll
= COST (Wcm
.cm_ll
, evalcost
);
121 Wcm
.cc_tab
= Wcm
.cm_tabwidth
? COST (Wcm
.cm_tab
, evalcost
) : BIG
;
124 * These last three are actually minimum costs. When (if) they are
125 * candidates for the least-cost motion, the real cost is computed.
126 * (Note that "0" is the assumed to generate the minimum cost.
127 * While this is not necessarily true, I have yet to see a terminal
128 * for which is not; all the terminals that have variable-cost
129 * cursor motion seem to take straight numeric values. --ACT)
132 Wcm
.cc_abs
= CMCOST (Wcm
.cm_abs
, evalcost
);
133 Wcm
.cc_habs
= CMCOST (Wcm
.cm_habs
, evalcost
);
134 Wcm
.cc_vabs
= CMCOST (Wcm
.cm_vabs
, evalcost
);
141 * Calculate the cost to move from (srcy, srcx) to (dsty, dstx) using
142 * up and down, and left and right, motions, and tabs. If doit is set
143 * actually perform the motion.
147 calccost (srcy
, srcx
, dsty
, dstx
, doit
)
160 /* If have just wrapped on a terminal with xn,
161 don't believe the cursor position: give up here
162 and force use of absolute positioning. */
164 if (curX
== Wcm
.cm_cols
)
168 if ((deltay
= dsty
- srcy
) == 0)
171 p
= Wcm
.cm_up
, c
= Wcm
.cc_up
, deltay
= -deltay
;
173 p
= Wcm
.cm_down
, c
= Wcm
.cc_down
;
174 if (c
== BIG
) { /* caint get thar from here */
179 totalcost
= c
* deltay
;
181 while (--deltay
>= 0)
182 tputs (p
, 1, cmputc
);
184 if ((deltax
= dstx
- srcx
) == 0)
187 p
= Wcm
.cm_left
, c
= Wcm
.cc_left
, deltax
= -deltax
;
188 goto dodelta
; /* skip all the tab junk */
190 /* Tabs (the toughie) */
191 if (Wcm
.cc_tab
>= BIG
|| !Wcm
.cm_usetabs
)
192 goto olddelta
; /* forget it! */
195 * ntabs is # tabs towards but not past dstx; n2tabs is one more
196 * (ie past dstx), but this is only valid if that is not past the
197 * right edge of the screen. We can check that at the same time
198 * as we figure out where we would be if we use the tabs (which
199 * we will put into tabx (for ntabs) and tab2x (for n2tabs)).
202 ntabs
= (deltax
+ srcx
% Wcm
.cm_tabwidth
) / Wcm
.cm_tabwidth
;
204 tabx
= (srcx
/ Wcm
.cm_tabwidth
+ ntabs
) * Wcm
.cm_tabwidth
;
205 tab2x
= tabx
+ Wcm
.cm_tabwidth
;
207 if (tab2x
>= Wcm
.cm_cols
) /* too far (past edge) */
211 * Now set tabcost to the cost for using ntabs, and c to the cost
212 * for using n2tabs, then pick the minimum.
215 /* cost for ntabs + cost for right motion */
216 tabcost
= ntabs
? ntabs
* Wcm
.cc_tab
+ (dstx
- tabx
) * Wcm
.cc_right
219 /* cost for n2tabs + cost for left motion */
220 c
= n2tabs
? n2tabs
* Wcm
.cc_tab
+ (tab2x
- dstx
) * Wcm
.cc_left
223 if (c
< tabcost
) /* then cheaper to overshoot & back up */
224 ntabs
= n2tabs
, tabcost
= c
, tabx
= tab2x
;
226 if (tabcost
>= BIG
) /* caint use tabs */
230 * See if tabcost is less than just moving right
233 if (tabcost
< (deltax
* Wcm
.cc_right
)) {
234 totalcost
+= tabcost
; /* use the tabs */
237 tputs (Wcm
.cm_tab
, 1, cmputc
);
242 * Now might as well just recompute the delta.
246 if ((deltax
= dstx
- srcx
) == 0)
250 p
= Wcm
.cm_right
, c
= Wcm
.cc_right
;
252 p
= Wcm
.cm_left
, c
= Wcm
.cc_left
, deltax
= -deltax
;
255 if (c
== BIG
) { /* caint get thar from here */
261 totalcost
+= c
* deltax
;
263 while (--deltax
>= 0)
264 tputs (p
, 1, cmputc
);
292 /* First the degenerate case */
293 if (row
== curY
&& col
== curX
) /* already there */
296 if (curY
>= 0 && curX
>= 0)
298 /* We may have quick ways to go to the upper-left, bottom-left,
299 * start-of-line, or start-of-next-line. Or it might be best to
300 * start where we are. Examine the options, and pick the cheapest.
303 relcost
= calccost (curY
, curX
, row
, col
, 0);
305 if ((homecost
= Wcm
.cc_home
) < BIG
)
306 homecost
+= calccost (0, 0, row
, col
, 0);
307 if (homecost
< relcost
)
308 relcost
= homecost
, use
= USEHOME
;
309 if ((llcost
= Wcm
.cc_ll
) < BIG
)
310 llcost
+= calccost (Wcm
.cm_rows
- 1, 0, row
, col
, 0);
311 if (llcost
< relcost
)
312 relcost
= llcost
, use
= USELL
;
313 if ((crcost
= Wcm
.cc_cr
) < BIG
) {
315 if (curY
+ 1 >= Wcm
.cm_rows
)
318 crcost
+= calccost (curY
+ 1, 0, row
, col
, 0);
320 crcost
+= calccost (curY
, 0, row
, col
, 0);
322 if (crcost
< relcost
)
323 relcost
= crcost
, use
= USECR
;
324 directcost
= Wcm
.cc_abs
, dcm
= Wcm
.cm_abs
;
325 if (row
== curY
&& Wcm
.cc_habs
< BIG
)
326 directcost
= Wcm
.cc_habs
, dcm
= Wcm
.cm_habs
;
327 else if (col
== curX
&& Wcm
.cc_vabs
< BIG
)
328 directcost
= Wcm
.cc_vabs
, dcm
= Wcm
.cm_vabs
;
332 directcost
= 0, relcost
= 100000;
337 * In the following comparison, the = in <= is because when the costs
338 * are the same, it looks nicer (I think) to move directly there.
340 if (directcost
<= relcost
)
342 /* compute REAL direct cost */
344 p
= dcm
== Wcm
.cm_habs
? tgoto (dcm
, row
, col
) :
345 tgoto (dcm
, col
, row
);
346 tputs (p
, 1, evalcost
);
348 { /* really is cheaper */
349 tputs (p
, 1, cmputc
);
350 curY
= row
, curX
= col
;
358 tputs (Wcm
.cm_home
, 1, cmputc
);
363 tputs (Wcm
.cm_ll
, 1, cmputc
);
364 curY
= Wcm
.cm_rows
- 1, curX
= 0;
368 tputs (Wcm
.cm_cr
, 1, cmputc
);
375 (void) calccost (curY
, curX
, row
, col
, 1);
376 curY
= row
, curX
= col
;
379 /* Clear out all terminal info.
380 Used before copying into it the info on the actual terminal.
385 bzero (&Wcm
, sizeof Wcm
);
392 * Return 0 if can do CM.
393 * Return -1 if cannot.
394 * Return -2 if size not specified.
400 if (Wcm
.cm_abs
&& !Wcm
.cm_ds
)
405 /* Require up and left, and, if no absolute, down and right */
406 if (!Wcm
.cm_up
|| !Wcm
.cm_left
)
408 if (!Wcm
.cm_abs
&& (!Wcm
.cm_down
|| !Wcm
.cm_right
))
410 /* Check that we know the size of the screen.... */
411 if (Wcm
.cm_rows
<= 0 || Wcm
.cm_cols
<= 0)