Protoize
[bpt/emacs.git] / src / cm.c
CommitLineData
d427b66a 1/* Cursor motion subroutines for GNU Emacs.
73b0cd50 2 Copyright (C) 1985, 1995, 2001-2011 Free Software Foundation, Inc.
d427b66a
JB
3 based primarily on public domain code written by Chris Torek
4
5This file is part of GNU Emacs.
6
9ec0b715 7GNU Emacs is free software: you can redistribute it and/or modify
d427b66a 8it under the terms of the GNU General Public License as published by
9ec0b715
GM
9the Free Software Foundation, either version 3 of the License, or
10(at your option) any later version.
d427b66a
JB
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
9ec0b715 18along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
d427b66a
JB
19
20
18160b98 21#include <config.h>
d427b66a 22#include <stdio.h>
d7306fe6 23#include <setjmp.h>
28d440ab 24
28d440ab
KL
25#include "lisp.h"
26#include "frame.h"
d427b66a
JB
27#include "cm.h"
28#include "termhooks.h"
28d440ab 29#include "termchar.h"
af8a867c 30#include "tparam.h"
bb10ca93 31
d427b66a
JB
32#define BIG 9999 /* 9999 good on VAXen. For 16 bit machines
33 use about 2000.... */
34
d427b66a
JB
35int cost; /* sums up costs */
36
37/* ARGSUSED */
dfcf069d 38int
d3da34e0 39evalcost (int c)
d427b66a
JB
40{
41 cost++;
97f11a9d 42 return c;
d427b66a
JB
43}
44
28d440ab 45/* The terminal to use for low-level output. */
28d7d09f 46struct tty_display_info *current_tty;
28d440ab 47
dfcf069d 48int
d3da34e0 49cmputc (int c)
d427b66a 50{
0b0d3e0b
KL
51 if (current_tty->termscript)
52 putc (c & 0177, current_tty->termscript);
53 putc (c & 0177, current_tty->output);
97f11a9d 54 return c;
d427b66a
JB
55}
56
57/* NEXT TWO ARE DONE WITH MACROS */
58#if 0
59/*
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.
63 */
64
65static
fca177d4
KL
66at (tty, row, col) {
67 curY (tty) = row;
68 curX (tty) = col;
d427b66a
JB
69}
70
71/*
72 * Add n columns to the current cursor position.
73 */
74
75static
fca177d4
KL
76addcol (tty, n) {
77 curX (tty) += n;
d427b66a
JB
78
79 /*
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
84 * of the last line.
85 */
86
fca177d4 87 if (curX (tty) == tty->Wcm->cm_cols) {
d427b66a
JB
88 /*
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.
92 */
93
fca177d4 94 if (tty->Wcm->cm_magicwrap)
d427b66a 95 ; /* "limbo" */
fca177d4
KL
96 else if (tty->Wcm->cm_autowrap) {
97 curX (tty) = 0;
98 curY (tty) ++; /* Beware end of screen! */
d427b66a
JB
99 }
100 else
fca177d4 101 curX (tty)--;
d427b66a
JB
102 }
103}
104#endif
105
902a3b86
KH
106/*
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.
115 */
116void
28d7d09f 117cmcheckmagic (struct tty_display_info *tty)
902a3b86 118{
6548cf00 119 if (curX (tty) == FrameCols (tty))
902a3b86 120 {
6548cf00 121 if (!MagicWrap (tty) || curY (tty) >= FrameRows (tty) - 1)
902a3b86 122 abort ();
0b0d3e0b
KL
123 if (tty->termscript)
124 putc ('\r', tty->termscript);
125 putc ('\r', tty->output);
126 if (tty->termscript)
127 putc ('\n', tty->termscript);
128 putc ('\n', tty->output);
6548cf00
KL
129 curX (tty) = 0;
130 curY (tty)++;
902a3b86
KH
131 }
132}
133
134
d427b66a
JB
135/*
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
138 * out of <sgtty.h>.)
139 */
140
dfcf069d 141void
28d7d09f 142cmcostinit (struct tty_display_info *tty)
d427b66a
JB
143{
144 char *p;
145
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)))
148
6548cf00
KL
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;
d427b66a
JB
157
158 /*
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)
165 */
166
6548cf00
KL
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);
d427b66a
JB
170
171#undef CMCOST
172#undef COST
173}
174
175/*
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.
179 */
180
dfcf069d 181static int
28d7d09f
KL
182calccost (struct tty_display_info *tty,
183 int srcy, int srcx, int dsty, int dstx, int doit)
d427b66a
JB
184{
185 register int deltay,
186 deltax,
187 c,
188 totalcost;
189 int ntabs,
190 n2tabs,
191 tabx,
192 tab2x,
193 tabcost;
fbceeba2 194 register const char *p;
d427b66a
JB
195
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. */
199
6548cf00 200 if (curX (tty) == tty->Wcm->cm_cols)
d427b66a
JB
201 goto fail;
202
203 totalcost = 0;
204 if ((deltay = dsty - srcy) == 0)
205 goto x;
206 if (deltay < 0)
6548cf00 207 p = tty->Wcm->cm_up, c = tty->Wcm->cc_up, deltay = -deltay;
d427b66a 208 else
6548cf00 209 p = tty->Wcm->cm_down, c = tty->Wcm->cc_down;
d427b66a
JB
210 if (c == BIG) { /* caint get thar from here */
211 if (doit)
212 printf ("OOPS");
213 return c;
214 }
215 totalcost = c * deltay;
216 if (doit)
12ea59a2 217 do
28d440ab 218 emacs_tputs (tty, p, 1, cmputc);
12ea59a2 219 while (0 < --deltay);
177c0ea7 220x:
d427b66a
JB
221 if ((deltax = dstx - srcx) == 0)
222 goto done;
223 if (deltax < 0) {
6548cf00 224 p = tty->Wcm->cm_left, c = tty->Wcm->cc_left, deltax = -deltax;
d427b66a
JB
225 goto dodelta; /* skip all the tab junk */
226 }
227 /* Tabs (the toughie) */
6548cf00 228 if (tty->Wcm->cc_tab >= BIG || !tty->Wcm->cm_usetabs)
d427b66a
JB
229 goto olddelta; /* forget it! */
230
177c0ea7 231 /*
d427b66a
JB
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)).
237 */
238
6548cf00 239 ntabs = (deltax + srcx % tty->Wcm->cm_tabwidth) / tty->Wcm->cm_tabwidth;
d427b66a 240 n2tabs = ntabs + 1;
6548cf00
KL
241 tabx = (srcx / tty->Wcm->cm_tabwidth + ntabs) * tty->Wcm->cm_tabwidth;
242 tab2x = tabx + tty->Wcm->cm_tabwidth;
d427b66a 243
6548cf00 244 if (tab2x >= tty->Wcm->cm_cols) /* too far (past edge) */
d427b66a
JB
245 n2tabs = 0;
246
177c0ea7 247 /*
d427b66a
JB
248 * Now set tabcost to the cost for using ntabs, and c to the cost
249 * for using n2tabs, then pick the minimum.
250 */
251
c3b4957f 252 /* cost for ntabs + cost for right motion */
6548cf00 253 tabcost = ntabs ? ntabs * tty->Wcm->cc_tab + (dstx - tabx) * tty->Wcm->cc_right
d427b66a
JB
254 : BIG;
255
c3b4957f 256 /* cost for n2tabs + cost for left motion */
6548cf00 257 c = n2tabs ? n2tabs * tty->Wcm->cc_tab + (tab2x - dstx) * tty->Wcm->cc_left
d427b66a
JB
258 : BIG;
259
260 if (c < tabcost) /* then cheaper to overshoot & back up */
261 ntabs = n2tabs, tabcost = c, tabx = tab2x;
262
263 if (tabcost >= BIG) /* caint use tabs */
264 goto newdelta;
265
177c0ea7 266 /*
d427b66a
JB
267 * See if tabcost is less than just moving right
268 */
269
6548cf00 270 if (tabcost < (deltax * tty->Wcm->cc_right)) {
d427b66a
JB
271 totalcost += tabcost; /* use the tabs */
272 if (doit)
273 while (--ntabs >= 0)
6548cf00 274 emacs_tputs (tty, tty->Wcm->cm_tab, 1, cmputc);
d427b66a
JB
275 srcx = tabx;
276 }
277
177c0ea7 278 /*
d427b66a
JB
279 * Now might as well just recompute the delta.
280 */
281
177c0ea7 282newdelta:
d427b66a
JB
283 if ((deltax = dstx - srcx) == 0)
284 goto done;
177c0ea7 285olddelta:
d427b66a 286 if (deltax > 0)
6548cf00 287 p = tty->Wcm->cm_right, c = tty->Wcm->cc_right;
d427b66a 288 else
6548cf00 289 p = tty->Wcm->cm_left, c = tty->Wcm->cc_left, deltax = -deltax;
d427b66a 290
177c0ea7 291dodelta:
d427b66a
JB
292 if (c == BIG) { /* caint get thar from here */
293fail:
294 if (doit)
295 printf ("OOPS");
296 return BIG;
297 }
298 totalcost += c * deltax;
299 if (doit)
12ea59a2 300 do
28d440ab 301 emacs_tputs (tty, p, 1, cmputc);
12ea59a2 302 while (0 < --deltax);
177c0ea7 303done:
d427b66a
JB
304 return totalcost;
305}
306
307#if 0
308losecursor ()
309{
310 curY = -1;
311}
312#endif
313
314#define USEREL 0
315#define USEHOME 1
316#define USELL 2
317#define USECR 3
318
dfcf069d 319void
d3da34e0 320cmgoto (struct tty_display_info *tty, int row, int col)
d427b66a
JB
321{
322 int homecost,
323 crcost,
324 llcost,
325 relcost,
326 directcost;
6be7d3da 327 int use IF_LINT (= 0);
fbceeba2
PE
328 char *p;
329 const char *dcm;
d427b66a
JB
330
331 /* First the degenerate case */
6548cf00 332 if (row == curY (tty) && col == curX (tty)) /* already there */
d427b66a
JB
333 return;
334
6548cf00 335 if (curY (tty) >= 0 && curX (tty) >= 0)
d427b66a
JB
336 {
337 /* We may have quick ways to go to the upper-left, bottom-left,
338 * start-of-line, or start-of-next-line. Or it might be best to
339 * start where we are. Examine the options, and pick the cheapest.
340 */
341
6548cf00 342 relcost = calccost (tty, curY (tty), curX (tty), row, col, 0);
d427b66a 343 use = USEREL;
6548cf00 344 if ((homecost = tty->Wcm->cc_home) < BIG)
28d440ab 345 homecost += calccost (tty, 0, 0, row, col, 0);
d427b66a 346 if (homecost < relcost)
28d440ab 347 relcost = homecost, use = USEHOME;
6548cf00
KL
348 if ((llcost = tty->Wcm->cc_ll) < BIG)
349 llcost += calccost (tty, tty->Wcm->cm_rows - 1, 0, row, col, 0);
d427b66a 350 if (llcost < relcost)
28d440ab 351 relcost = llcost, use = USELL;
6548cf00
KL
352 if ((crcost = tty->Wcm->cc_cr) < BIG) {
353 if (tty->Wcm->cm_autolf)
354 if (curY (tty) + 1 >= tty->Wcm->cm_rows)
355 crcost = BIG;
d427b66a 356 else
6548cf00 357 crcost += calccost (tty, curY (tty) + 1, 0, row, col, 0);
d427b66a 358 else
6548cf00 359 crcost += calccost (tty, curY (tty), 0, row, col, 0);
d427b66a
JB
360 }
361 if (crcost < relcost)
362 relcost = crcost, use = USECR;
6548cf00
KL
363 directcost = tty->Wcm->cc_abs, dcm = tty->Wcm->cm_abs;
364 if (row == curY (tty) && tty->Wcm->cc_habs < BIG)
365 directcost = tty->Wcm->cc_habs, dcm = tty->Wcm->cm_habs;
366 else if (col == curX (tty) && tty->Wcm->cc_vabs < BIG)
367 directcost = tty->Wcm->cc_vabs, dcm = tty->Wcm->cm_vabs;
d427b66a
JB
368 }
369 else
370 {
371 directcost = 0, relcost = 100000;
6548cf00 372 dcm = tty->Wcm->cm_abs;
d427b66a
JB
373 }
374
177c0ea7 375 /*
d427b66a
JB
376 * In the following comparison, the = in <= is because when the costs
377 * are the same, it looks nicer (I think) to move directly there.
378 */
379 if (directcost <= relcost)
380 {
381 /* compute REAL direct cost */
382 cost = 0;
c3b4957f
KL
383 p = (dcm == tty->Wcm->cm_habs
384 ? tgoto (dcm, row, col)
385 : tgoto (dcm, col, row));
28d440ab 386 emacs_tputs (tty, p, 1, evalcost);
d427b66a
JB
387 if (cost <= relcost)
388 { /* really is cheaper */
28d440ab 389 emacs_tputs (tty, p, 1, cmputc);
6548cf00 390 curY (tty) = row, curX (tty) = col;
d427b66a
JB
391 return;
392 }
393 }
394
395 switch (use)
396 {
177c0ea7 397 case USEHOME:
6548cf00
KL
398 emacs_tputs (tty, tty->Wcm->cm_home, 1, cmputc);
399 curY (tty) = 0, curX (tty) = 0;
d427b66a
JB
400 break;
401
177c0ea7 402 case USELL:
6548cf00
KL
403 emacs_tputs (tty, tty->Wcm->cm_ll, 1, cmputc);
404 curY (tty) = tty->Wcm->cm_rows - 1, curX (tty) = 0;
d427b66a
JB
405 break;
406
177c0ea7 407 case USECR:
6548cf00
KL
408 emacs_tputs (tty, tty->Wcm->cm_cr, 1, cmputc);
409 if (tty->Wcm->cm_autolf)
410 curY (tty)++;
411 curX (tty) = 0;
d427b66a
JB
412 break;
413 }
414
6548cf00
KL
415 (void) calccost (tty, curY (tty), curX (tty), row, col, 1);
416 curY (tty) = row, curX (tty) = col;
d427b66a
JB
417}
418
419/* Clear out all terminal info.
420 Used before copying into it the info on the actual terminal.
421 */
422
dfcf069d 423void
28d7d09f 424Wcm_clear (struct tty_display_info *tty)
d427b66a 425{
72af86bd 426 memset (tty->Wcm, 0, sizeof (struct cm));
d427b66a
JB
427 UP = 0;
428 BC = 0;
429}
430
431/*
432 * Initialized stuff
433 * Return 0 if can do CM.
434 * Return -1 if cannot.
435 * Return -2 if size not specified.
436 */
437
dfcf069d 438int
28d7d09f 439Wcm_init (struct tty_display_info *tty)
d427b66a
JB
440{
441#if 0
6548cf00 442 if (tty->Wcm->cm_abs && !tty->Wcm->cm_ds)
d427b66a
JB
443 return 0;
444#endif
6548cf00 445 if (tty->Wcm->cm_abs)
d427b66a
JB
446 return 0;
447 /* Require up and left, and, if no absolute, down and right */
6548cf00 448 if (!tty->Wcm->cm_up || !tty->Wcm->cm_left)
d427b66a 449 return - 1;
6548cf00 450 if (!tty->Wcm->cm_abs && (!tty->Wcm->cm_down || !tty->Wcm->cm_right))
d427b66a
JB
451 return - 1;
452 /* Check that we know the size of the screen.... */
6548cf00 453 if (tty->Wcm->cm_rows <= 0 || tty->Wcm->cm_cols <= 0)
d427b66a
JB
454 return - 2;
455 return 0;
456}