Mercurial > emacs
annotate src/scroll.c @ 112452:b8a360ee54f1
Merge: Remove HAVE_RAW_DECL_CHOWN etc. from config.h
| author | Paul Eggert <eggert@cs.ucla.edu> |
|---|---|
| date | Sun, 23 Jan 2011 20:55:10 -0800 |
| parents | ef719132ddfa |
| children |
| rev | line source |
|---|---|
| 154 | 1 /* Calculate what line insertion or deletion to do, and do it, |
|
75227
e90d04cd455a
Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents:
68651
diff
changeset
|
2 Copyright (C) 1985, 1986, 1990, 1993, 1994, 2001, 2002, 2003, 2004, |
|
112218
376148b31b5e
Add 2011 to FSF/AIST copyright years.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
3 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. |
| 154 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
| 154 | 8 it under the terms of the GNU General Public License as published by |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
|
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
10 (at your option) any later version. |
| 154 | 11 |
| 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. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
|
94963
8971ddf55736
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
| 154 | 19 |
| 20 | |
|
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
3356
diff
changeset
|
21 #include <config.h> |
| 25004 | 22 #include <stdio.h> |
|
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
100951
diff
changeset
|
23 #include <setjmp.h> |
|
53229
33c3c7c16e13
lib-src/emacsclient.c: Implemented --here option (open a new Emacs tty). Needs more work.
Karoly Lorentey <lorentey@elte.hu>
parents:
53226
diff
changeset
|
24 #include "lisp.h" |
| 154 | 25 #include "termchar.h" |
| 26 #include "dispextern.h" | |
|
31102
6a0caa788013
Include keyboard.h before frame.h.
Andrew Innes <andrewi@gnu.org>
parents:
28407
diff
changeset
|
27 #include "keyboard.h" |
| 766 | 28 #include "frame.h" |
| 25004 | 29 #include "window.h" |
|
82990
2ecd1f669db9
Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents:
53229
diff
changeset
|
30 #include "termhooks.h" |
| 154 | 31 |
| 32 /* All costs measured in characters. | |
| 766 | 33 So no cost can exceed the area of a frame, measured in characters. |
|
6773
ed16e189b9a5
(struct matrix_elt): Use int, not short.
Richard M. Stallman <rms@gnu.org>
parents:
6647
diff
changeset
|
34 Let's hope this is never more than 1000000 characters. */ |
| 154 | 35 |
|
6773
ed16e189b9a5
(struct matrix_elt): Use int, not short.
Richard M. Stallman <rms@gnu.org>
parents:
6647
diff
changeset
|
36 #define INFINITY 1000000 |
| 154 | 37 |
| 38 struct matrix_elt | |
| 39 { | |
| 40 /* Cost of outputting through this line | |
| 41 if no insert/delete is done just above it. */ | |
|
6773
ed16e189b9a5
(struct matrix_elt): Use int, not short.
Richard M. Stallman <rms@gnu.org>
parents:
6647
diff
changeset
|
42 int writecost; |
| 154 | 43 /* Cost of outputting through this line |
| 44 if an insert is done just above it. */ | |
|
6773
ed16e189b9a5
(struct matrix_elt): Use int, not short.
Richard M. Stallman <rms@gnu.org>
parents:
6647
diff
changeset
|
45 int insertcost; |
| 154 | 46 /* Cost of outputting through this line |
| 47 if a delete is done just above it. */ | |
|
6773
ed16e189b9a5
(struct matrix_elt): Use int, not short.
Richard M. Stallman <rms@gnu.org>
parents:
6647
diff
changeset
|
48 int deletecost; |
| 154 | 49 /* Number of inserts so far in this run of inserts, |
| 50 for the cost in insertcost. */ | |
|
6773
ed16e189b9a5
(struct matrix_elt): Use int, not short.
Richard M. Stallman <rms@gnu.org>
parents:
6647
diff
changeset
|
51 unsigned char insertcount; |
| 154 | 52 /* Number of deletes so far in this run of deletes, |
| 53 for the cost in deletecost. */ | |
|
6773
ed16e189b9a5
(struct matrix_elt): Use int, not short.
Richard M. Stallman <rms@gnu.org>
parents:
6647
diff
changeset
|
54 unsigned char deletecount; |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
55 /* Number of writes so far since the last insert |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
56 or delete for the cost in writecost. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
57 unsigned char writecount; |
| 154 | 58 }; |
| 59 | |
|
109100
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
60 static void do_direct_scrolling (struct frame *, |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
61 struct glyph_matrix *, |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
62 struct matrix_elt *, |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
63 int, int); |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
64 static void do_scrolling (struct frame *, |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
65 struct glyph_matrix *, |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
66 struct matrix_elt *, |
|
2bc9a0c04c87
Remove __P and P_ from .c and .m files and definition of P_
Jan D <jan.h.d@swipnet.se>
parents:
106815
diff
changeset
|
67 int, int); |
| 25004 | 68 |
| 154 | 69 |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
70 /* Determine, in matrix[i,j], the cost of updating the first j old |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
71 lines into the first i new lines using the general scrolling method. |
| 154 | 72 This involves using insert or delete somewhere if i != j. |
| 73 For each matrix elements, three kinds of costs are recorded: | |
| 74 the smallest cost that ends with an insert, the smallest | |
| 75 cost that ends with a delete, and the smallest cost that | |
| 76 ends with neither one. These are kept separate because | |
| 77 on some terminals the cost of doing an insert varies | |
| 78 depending on whether one was just done, etc. */ | |
| 79 | |
| 80 /* draw_cost[VPOS] is the cost of outputting new line at VPOS. | |
| 81 old_hash[VPOS] is the hash code of the old line at VPOS. | |
| 82 new_hash[VPOS] is the hash code of the new line at VPOS. | |
| 766 | 83 Note that these are not true frame vpos's, but relative |
| 154 | 84 to the place at which the first mismatch between old and |
| 85 new contents appears. */ | |
| 86 | |
| 87 static void | |
|
109139
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
88 calculate_scrolling (FRAME_PTR frame, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
89 /* matrix is of size window_size + 1 on each side. */ |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
90 struct matrix_elt *matrix, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
91 int window_size, int lines_below, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
92 int *draw_cost, int *old_hash, int *new_hash, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
93 int free_at_end) |
| 154 | 94 { |
| 95 register int i, j; | |
|
110550
d33e6623664c
Fix EMACS_INT/int conversion in scroll.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109364
diff
changeset
|
96 EMACS_INT frame_lines = FRAME_LINES (frame); |
| 154 | 97 register struct matrix_elt *p, *p1; |
| 98 register int cost, cost1; | |
| 99 | |
|
53225
4250e7e26247
Add a level of indirection to terminal characteristics.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
100 int lines_moved = window_size |
|
82990
2ecd1f669db9
Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents:
53229
diff
changeset
|
101 + (FRAME_SCROLL_REGION_OK (frame) ? 0 : lines_below); |
| 154 | 102 /* first_insert_cost[I] is the cost of doing the first insert-line |
| 25004 | 103 at the i'th line of the lines we are considering, |
| 154 | 104 where I is origin 1 (as it is below). */ |
| 105 int *first_insert_cost | |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
106 = &FRAME_INSERT_COST (frame)[frame_lines - 1 - lines_moved]; |
| 154 | 107 int *first_delete_cost |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
108 = &FRAME_DELETE_COST (frame)[frame_lines - 1 - lines_moved]; |
| 154 | 109 int *next_insert_cost |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
110 = &FRAME_INSERTN_COST (frame)[frame_lines - 1 - lines_moved]; |
| 154 | 111 int *next_delete_cost |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
112 = &FRAME_DELETEN_COST (frame)[frame_lines - 1 - lines_moved]; |
| 154 | 113 |
| 114 /* Discourage long scrolls on fast lines. | |
| 766 | 115 Don't scroll nearly a full frame height unless it saves |
| 154 | 116 at least 1/4 second. */ |
|
110550
d33e6623664c
Fix EMACS_INT/int conversion in scroll.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109364
diff
changeset
|
117 int extra_cost = (int) (baud_rate / (10 * 4 * FRAME_LINES (frame))); |
| 154 | 118 |
|
3356
09759a9653c5
(calculate_scrolling): Defend against negative baud_rate.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
119 if (baud_rate <= 0) |
|
09759a9653c5
(calculate_scrolling): Defend against negative baud_rate.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
120 extra_cost = 1; |
|
09759a9653c5
(calculate_scrolling): Defend against negative baud_rate.
Richard M. Stallman <rms@gnu.org>
parents:
2961
diff
changeset
|
121 |
| 154 | 122 /* initialize the top left corner of the matrix */ |
| 123 matrix->writecost = 0; | |
| 124 matrix->insertcost = INFINITY; | |
| 125 matrix->deletecost = INFINITY; | |
| 126 matrix->insertcount = 0; | |
| 127 matrix->deletecount = 0; | |
| 128 | |
| 129 /* initialize the left edge of the matrix */ | |
| 130 cost = first_insert_cost[1] - next_insert_cost[1]; | |
| 131 for (i = 1; i <= window_size; i++) | |
| 132 { | |
| 133 p = matrix + i * (window_size + 1); | |
| 134 cost += draw_cost[i] + next_insert_cost[i] + extra_cost; | |
| 135 p->insertcost = cost; | |
| 136 p->writecost = INFINITY; | |
| 137 p->deletecost = INFINITY; | |
| 138 p->insertcount = i; | |
| 139 p->deletecount = 0; | |
| 140 } | |
| 141 | |
| 142 /* initialize the top edge of the matrix */ | |
| 143 cost = first_delete_cost[1] - next_delete_cost[1]; | |
| 144 for (j = 1; j <= window_size; j++) | |
| 145 { | |
| 146 cost += next_delete_cost[j]; | |
| 147 matrix[j].deletecost = cost; | |
| 148 matrix[j].writecost = INFINITY; | |
| 149 matrix[j].insertcost = INFINITY; | |
| 150 matrix[j].deletecount = j; | |
| 151 matrix[j].insertcount = 0; | |
| 152 } | |
| 153 | |
| 766 | 154 /* `i' represents the vpos among new frame contents. |
| 155 `j' represents the vpos among the old frame contents. */ | |
| 154 | 156 p = matrix + window_size + 2; /* matrix [1, 1] */ |
| 157 for (i = 1; i <= window_size; i++, p++) | |
| 158 for (j = 1; j <= window_size; j++, p++) | |
| 159 { | |
| 160 /* p contains the address of matrix [i, j] */ | |
| 161 | |
| 162 /* First calculate the cost assuming we do | |
| 163 not insert or delete above this line. | |
| 164 That is, if we update through line i-1 | |
| 165 based on old lines through j-1, | |
| 166 and then just change old line j to new line i. */ | |
| 167 p1 = p - window_size - 2; /* matrix [i-1, j-1] */ | |
| 168 cost = p1->writecost; | |
| 169 if (cost > p1->insertcost) | |
| 170 cost = p1->insertcost; | |
| 171 if (cost > p1->deletecost) | |
| 172 cost = p1->deletecost; | |
| 173 if (old_hash[j] != new_hash[i]) | |
| 174 cost += draw_cost[i]; | |
| 175 p->writecost = cost; | |
| 176 | |
| 177 /* Calculate the cost if we do an insert-line | |
| 178 before outputting this line. | |
| 179 That is, we update through line i-1 | |
| 180 based on old lines through j, | |
| 181 do an insert-line on line i, | |
| 182 and then output line i from scratch, | |
| 183 leaving old lines starting from j for reuse below. */ | |
| 184 p1 = p - window_size - 1; /* matrix [i-1, j] */ | |
| 185 /* No need to think about doing a delete followed | |
| 186 immediately by an insert. It cannot be as good | |
| 187 as not doing either of them. */ | |
| 188 if (free_at_end == i) | |
| 189 { | |
| 190 cost = p1->writecost; | |
| 191 cost1 = p1->insertcost; | |
| 192 } | |
| 193 else | |
| 194 { | |
| 195 cost = p1->writecost + first_insert_cost[i]; | |
|
6888
a39caeb88721
(calculate_scrolling): Add explicit casts, to avoid compiler warnings.
Karl Heuer <kwzh@gnu.org>
parents:
6773
diff
changeset
|
196 if ((int) p1->insertcount > i) |
| 154 | 197 abort (); |
| 198 cost1 = p1->insertcost + next_insert_cost[i - p1->insertcount]; | |
| 199 } | |
| 200 p->insertcost = min (cost, cost1) + draw_cost[i] + extra_cost; | |
| 201 p->insertcount = (cost < cost1) ? 1 : p1->insertcount + 1; | |
|
6888
a39caeb88721
(calculate_scrolling): Add explicit casts, to avoid compiler warnings.
Karl Heuer <kwzh@gnu.org>
parents:
6773
diff
changeset
|
202 if ((int) p->insertcount > i) |
| 154 | 203 abort (); |
| 204 | |
| 205 /* Calculate the cost if we do a delete line after | |
| 206 outputting this line. | |
| 207 That is, we update through line i | |
| 208 based on old lines through j-1, | |
| 209 and throw away old line j. */ | |
| 210 p1 = p - 1; /* matrix [i, j-1] */ | |
| 211 /* No need to think about doing an insert followed | |
| 212 immediately by a delete. */ | |
| 213 if (free_at_end == i) | |
| 214 { | |
| 215 cost = p1->writecost; | |
| 216 cost1 = p1->deletecost; | |
| 217 } | |
| 218 else | |
| 219 { | |
| 220 cost = p1->writecost + first_delete_cost[i]; | |
| 221 cost1 = p1->deletecost + next_delete_cost[i]; | |
| 222 } | |
| 223 p->deletecost = min (cost, cost1); | |
| 224 p->deletecount = (cost < cost1) ? 1 : p1->deletecount + 1; | |
| 225 } | |
| 226 } | |
| 25004 | 227 |
| 228 | |
| 154 | 229 |
| 25004 | 230 /* Perform insert-lines and delete-lines operations on CURRENT_MATRIX |
| 231 according to the costs in MATRIX, using the general scrolling | |
| 232 method that is used if the terminal does not support the setting of | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
233 scroll windows (scroll_region_ok == 0). |
|
6647
e6611521fb67
(do_scrolling): Handle charstarts like glyphs.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
234 |
|
e6611521fb67
(do_scrolling): Handle charstarts like glyphs.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
235 WINDOW_SIZE is the number of lines being considered for scrolling |
| 25004 | 236 and UNCHANGED_AT_TOP is the vpos of the first line being |
| 237 considered. These two arguments can specify any contiguous range | |
| 238 of lines. */ | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
239 |
| 154 | 240 static void |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
241 do_scrolling (struct frame *frame, struct glyph_matrix *current_matrix, struct matrix_elt *matrix, int window_size, int unchanged_at_top) |
| 154 | 242 { |
| 25004 | 243 struct matrix_elt *p; |
| 244 int i, j, k; | |
| 245 | |
| 246 /* Set to 1 if we have set a terminal window with | |
| 247 set_terminal_window. */ | |
| 248 int terminal_window_p = 0; | |
| 154 | 249 |
| 25004 | 250 /* A queue for line insertions to be done. */ |
| 251 struct queue { int count, pos; }; | |
| 252 struct queue *queue_start | |
| 253 = (struct queue *) alloca (current_matrix->nrows * sizeof (struct queue)); | |
| 254 struct queue *queue = queue_start; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
255 |
| 25004 | 256 char *retained_p = (char *) alloca (window_size * sizeof (char)); |
| 257 int *copy_from = (int *) alloca (window_size * sizeof (int)); | |
| 154 | 258 |
| 25004 | 259 /* Zero means line is empty. */ |
|
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109139
diff
changeset
|
260 memset (retained_p, 0, window_size * sizeof (char)); |
| 25004 | 261 for (k = 0; k < window_size; ++k) |
| 262 copy_from[k] = -1; | |
| 154 | 263 |
|
28407
f15029804aba
* scroll.c (CHECK_BOUNDS): Renamed from CHECK.
Ken Raeburn <raeburn@raeburn.org>
parents:
25004
diff
changeset
|
264 #define CHECK_BOUNDS \ |
| 25004 | 265 do \ |
| 266 { \ | |
| 267 int k; \ | |
| 268 for (k = 0; k < window_size; ++k) \ | |
| 269 xassert (copy_from[k] == -1 \ | |
| 270 || (copy_from[k] >= 0 && copy_from[k] < window_size)); \ | |
| 271 } \ | |
| 272 while (0); | |
| 154 | 273 |
| 25004 | 274 /* When j is advanced, this corresponds to deleted lines. |
| 275 When i is advanced, this corresponds to inserted lines. */ | |
| 154 | 276 i = j = window_size; |
| 277 while (i > 0 || j > 0) | |
| 278 { | |
| 279 p = matrix + i * (window_size + 1) + j; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
280 |
| 25004 | 281 if (p->insertcost < p->writecost && p->insertcost < p->deletecost) |
| 154 | 282 { |
| 25004 | 283 /* Insert should be done at vpos i-1, plus maybe some before. |
| 284 Queue the screen operation to be performed. */ | |
| 285 queue->count = p->insertcount; | |
| 286 queue->pos = i + unchanged_at_top - p->insertcount; | |
| 287 ++queue; | |
| 288 | |
| 289 /* By incrementing I, we leave room in the result rows | |
| 290 for the empty rows opened up. */ | |
| 154 | 291 i -= p->insertcount; |
| 292 } | |
| 293 else if (p->deletecost < p->writecost) | |
| 294 { | |
| 25004 | 295 /* Old line at vpos j-1, and maybe some before it, should be |
| 296 deleted. By decrementing J, we skip some lines in the | |
| 297 temp_rows which is equivalent to omitting these lines in | |
| 298 the result rows, thus deleting them. */ | |
| 154 | 299 j -= p->deletecount; |
| 25004 | 300 |
| 301 /* Set the terminal window, if not done already. */ | |
| 302 if (! terminal_window_p) | |
| 154 | 303 { |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
304 set_terminal_window (frame, window_size + unchanged_at_top); |
| 25004 | 305 terminal_window_p = 1; |
| 154 | 306 } |
| 25004 | 307 |
| 308 /* Delete lines on the terminal. */ | |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
309 ins_del_lines (frame, j + unchanged_at_top, - p->deletecount); |
| 154 | 310 } |
| 311 else | |
| 312 { | |
| 25004 | 313 /* Best thing done here is no insert or delete, i.e. a write. */ |
| 314 --i, --j; | |
| 315 xassert (i >= 0 && i < window_size); | |
| 316 xassert (j >= 0 && j < window_size); | |
| 317 copy_from[i] = j; | |
| 318 retained_p[j] = 1; | |
| 154 | 319 |
| 25004 | 320 #if GLYPH_DEBUG |
|
28407
f15029804aba
* scroll.c (CHECK_BOUNDS): Renamed from CHECK.
Ken Raeburn <raeburn@raeburn.org>
parents:
25004
diff
changeset
|
321 CHECK_BOUNDS; |
| 25004 | 322 #endif |
| 154 | 323 } |
| 324 } | |
| 325 | |
| 25004 | 326 /* Now do all insertions queued above. */ |
| 327 if (queue > queue_start) | |
| 154 | 328 { |
| 25004 | 329 int next = -1; |
| 330 | |
| 331 /* Set the terminal window if not yet done. */ | |
| 332 if (!terminal_window_p) | |
| 333 { | |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
334 set_terminal_window (frame, window_size + unchanged_at_top); |
| 25004 | 335 terminal_window_p = 1; |
| 336 } | |
| 337 | |
| 338 do | |
| 339 { | |
| 340 --queue; | |
| 341 | |
| 342 /* Do the deletion on the terminal. */ | |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
343 ins_del_lines (frame, queue->pos, queue->count); |
| 25004 | 344 |
| 345 /* All lines in the range deleted become empty in the glyph | |
| 346 matrix. Assign to them glyph rows that are not retained. | |
| 347 K is the starting position of the deleted range relative | |
| 348 to the window we are working in. */ | |
| 349 k = queue->pos - unchanged_at_top; | |
| 350 for (j = 0; j < queue->count; ++j) | |
| 351 { | |
| 352 /* Find the next row not retained. */ | |
| 353 while (retained_p[++next]) | |
| 354 ; | |
| 355 | |
| 356 /* Record that this row is to be used for the empty | |
| 357 glyph row j. */ | |
| 358 copy_from[k + j] = next; | |
| 359 } | |
| 360 } | |
| 361 while (queue > queue_start); | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
362 |
| 154 | 363 } |
| 364 | |
| 25004 | 365 for (k = 0; k < window_size; ++k) |
| 366 xassert (copy_from[k] >= 0 && copy_from[k] < window_size); | |
| 154 | 367 |
| 25004 | 368 /* Perform the row swizzling. */ |
| 369 mirrored_line_dance (current_matrix, unchanged_at_top, window_size, | |
| 370 copy_from, retained_p); | |
| 154 | 371 |
| 25004 | 372 /* Some sanity checks if GLYPH_DEBUG != 0. */ |
| 373 CHECK_MATRIX (current_matrix); | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
374 |
| 25004 | 375 if (terminal_window_p) |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
376 set_terminal_window (frame, 0); |
| 154 | 377 } |
| 25004 | 378 |
| 154 | 379 |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
380 /* Determine, in matrix[i,j], the cost of updating the first j |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
381 old lines into the first i new lines using the direct |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
382 scrolling method. When the old line and the new line have |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
383 different hash codes, the calculated cost of updating old |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
384 line j into new line i includes the cost of outputting new |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
385 line i, and if i != j, the cost of outputting the old line j |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
386 is also included, as a penalty for moving the line and then |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
387 erasing it. In addition, the cost of updating a sequence of |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
388 lines with constant i - j includes the cost of scrolling the |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
389 old lines into their new positions, unless i == j. Scrolling |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
390 is achieved by setting the screen window to avoid affecting |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
391 other lines below, and inserting or deleting lines at the top |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
392 of the scrolled region. The cost of scrolling a sequence of |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
393 lines includes the fixed cost of specifying a scroll region, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
394 plus a variable cost which can depend upon the number of lines |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
395 involved and the distance by which they are scrolled, and an |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
396 extra cost to discourage long scrolls. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
397 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
398 As reflected in the matrix, an insert or delete does not |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
399 correspond directly to the insertion or deletion which is |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
400 used in scrolling lines. An insert means that the value of i |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
401 has increased without a corresponding increase in the value |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
402 of j. A delete means that the value of j has increased |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
403 without a corresponding increase in the value of i. A write |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
404 means that i and j are both increased by the same amount, and |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
405 that the old lines will be moved to their new positions. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
406 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
407 An insert following a delete is allowed only if i > j. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
408 A delete following an insert is allowed only if i < j. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
409 These restrictions ensure that the new lines in an insert |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
410 will always be blank as an effect of the neighboring writes. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
411 Thus the calculated cost of an insert is simply the cost of |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
412 outputting the new line contents. The direct cost of a |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
413 delete is zero. Inserts and deletes indirectly affect the |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
414 total cost through their influence on subsequent writes. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
415 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
416 /* The vectors draw_cost, old_hash, and new_hash have the same |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
417 meanings here as in calculate_scrolling, and old_draw_cost |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
418 is the equivalent of draw_cost for the old line contents */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
419 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
420 static void |
|
109139
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
421 calculate_direct_scrolling (FRAME_PTR frame, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
422 /* matrix is of size window_size + 1 on each side. */ |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
423 struct matrix_elt *matrix, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
424 int window_size, int lines_below, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
425 int *draw_cost, int *old_draw_cost, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
426 int *old_hash, int *new_hash, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
427 int free_at_end) |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
428 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
429 register int i, j; |
|
110550
d33e6623664c
Fix EMACS_INT/int conversion in scroll.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109364
diff
changeset
|
430 EMACS_INT frame_lines = FRAME_LINES (frame); |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
431 register struct matrix_elt *p, *p1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
432 register int cost, cost1, delta; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
433 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
434 /* first_insert_cost[-I] is the cost of doing the first insert-line |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
435 at a position I lines above the bottom line in the scroll window. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
436 int *first_insert_cost |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
437 = &FRAME_INSERT_COST (frame)[frame_lines - 1]; |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
438 int *first_delete_cost |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
439 = &FRAME_DELETE_COST (frame)[frame_lines - 1]; |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
440 int *next_insert_cost |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
441 = &FRAME_INSERTN_COST (frame)[frame_lines - 1]; |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
442 int *next_delete_cost |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
443 = &FRAME_DELETEN_COST (frame)[frame_lines - 1]; |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
444 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
445 int scroll_overhead; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
446 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
447 /* Discourage long scrolls on fast lines. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
448 Don't scroll nearly a full frame height unless it saves |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
449 at least 1/4 second. */ |
|
110550
d33e6623664c
Fix EMACS_INT/int conversion in scroll.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109364
diff
changeset
|
450 int extra_cost = (int) (baud_rate / (10 * 4 * FRAME_LINES (frame))); |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
451 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
452 if (baud_rate <= 0) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
453 extra_cost = 1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
454 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
455 /* Overhead of setting the scroll window, plus the extra cost |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
456 cost of scrolling by a distance of one. The extra cost is |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
457 added once for consistency with the cost vectors */ |
|
53225
4250e7e26247
Add a level of indirection to terminal characteristics.
Karoly Lorentey <lorentey@elte.hu>
parents:
52401
diff
changeset
|
458 scroll_overhead |
|
82990
2ecd1f669db9
Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents:
53229
diff
changeset
|
459 = FRAME_SCROLL_REGION_COST (frame) + extra_cost; |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
460 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
461 /* initialize the top left corner of the matrix */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
462 matrix->writecost = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
463 matrix->insertcost = INFINITY; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
464 matrix->deletecost = INFINITY; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
465 matrix->writecount = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
466 matrix->insertcount = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
467 matrix->deletecount = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
468 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
469 /* initialize the left edge of the matrix */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
470 cost = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
471 for (i = 1; i <= window_size; i++) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
472 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
473 p = matrix + i * (window_size + 1); |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
474 cost += draw_cost[i]; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
475 p->insertcost = cost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
476 p->writecost = INFINITY; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
477 p->deletecost = INFINITY; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
478 p->insertcount = i; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
479 p->writecount = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
480 p->deletecount = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
481 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
482 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
483 /* initialize the top edge of the matrix */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
484 for (j = 1; j <= window_size; j++) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
485 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
486 matrix[j].deletecost = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
487 matrix[j].writecost = INFINITY; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
488 matrix[j].insertcost = INFINITY; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
489 matrix[j].deletecount = j; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
490 matrix[j].writecount = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
491 matrix[j].insertcount = 0; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
492 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
493 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
494 /* `i' represents the vpos among new frame contents. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
495 `j' represents the vpos among the old frame contents. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
496 p = matrix + window_size + 2; /* matrix [1, 1] */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
497 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
498 for (i = 1; i <= window_size; i++, p++) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
499 for (j = 1; j <= window_size; j++, p++) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
500 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
501 /* p contains the address of matrix [i, j] */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
502 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
503 /* First calculate the cost assuming we do |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
504 not insert or delete above this line. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
505 That is, if we update through line i-1 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
506 based on old lines through j-1, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
507 and then just change old line j to new line i. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
508 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
509 Depending on which choice gives the lower cost, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
510 this usually involves either scrolling a single line |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
511 or extending a sequence of scrolled lines, but |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
512 when i == j, no scrolling is required. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
513 p1 = p - window_size - 2; /* matrix [i-1, j-1] */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
514 cost = p1->insertcost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
515 if (cost > p1->deletecost) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
516 cost = p1->deletecost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
517 cost1 = p1->writecost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
518 if (i == j) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
519 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
520 if (cost > cost1) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
521 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
522 cost = cost1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
523 p->writecount = p1->writecount + 1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
524 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
525 else |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
526 p->writecount = 1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
527 if (old_hash[j] != new_hash[i]) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
528 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
529 cost += draw_cost[i]; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
530 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
531 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
532 else |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
533 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
534 if (i > j) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
535 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
536 delta = i - j; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
537 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
538 /* The cost added here for scrolling the first line by |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
539 a distance N includes the overhead of setting the |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
540 scroll window, the cost of inserting N lines at a |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
541 position N lines above the bottom line of the window, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
542 and an extra cost which is proportional to N. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
543 cost += scroll_overhead + first_insert_cost[-delta] + |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
544 (delta-1) * (next_insert_cost[-delta] + extra_cost); |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
545 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
546 /* In the most general case, the insertion overhead and |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
547 the multiply factor can grow linearly as the distance |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
548 from the bottom of the window increases. The incremental |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
549 cost of scrolling an additional line depends upon the |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
550 rate of change of these two parameters. Each of these |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
551 growth rates can be determined by a simple difference. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
552 To reduce the cumulative effects of rounding error, we |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
553 vary the position at which the difference is computed. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
554 cost1 += first_insert_cost[-j] - first_insert_cost[1-j] + |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
555 (delta-1) * (next_insert_cost[-j] - next_insert_cost[1-j]); |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
556 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
557 else |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
558 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
559 delta = j - i; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
560 cost += scroll_overhead + first_delete_cost[-delta] + |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
561 (delta-1) * (next_delete_cost[-delta] + extra_cost); |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
562 cost1 += first_delete_cost[-i] - first_delete_cost[1-i] + |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
563 (delta-1) * ( next_delete_cost[-i] - next_delete_cost[1-i]); |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
564 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
565 if (cost1 < cost) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
566 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
567 cost = cost1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
568 p->writecount = p1->writecount + 1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
569 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
570 else |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
571 p->writecount = 1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
572 if (old_hash[j] != new_hash[i]) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
573 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
574 cost += draw_cost[i] + old_draw_cost[j]; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
575 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
576 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
577 p->writecost = cost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
578 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
579 /* Calculate the cost if we do an insert-line |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
580 before outputting this line. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
581 That is, we update through line i-1 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
582 based on old lines through j, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
583 do an insert-line on line i, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
584 and then output line i from scratch, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
585 leaving old lines starting from j for reuse below. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
586 p1 = p - window_size - 1; /* matrix [i-1, j] */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
587 cost = p1->writecost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
588 /* If i > j, an insert is allowed after a delete. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
589 if (i > j && p1->deletecost < cost) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
590 cost = p1->deletecost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
591 if (p1->insertcost <= cost) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
592 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
593 cost = p1->insertcost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
594 p->insertcount = p1->insertcount + 1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
595 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
596 else |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
597 p->insertcount = 1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
598 cost += draw_cost[i]; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
599 p->insertcost = cost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
600 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
601 /* Calculate the cost if we do a delete line after |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
602 outputting this line. |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
603 That is, we update through line i |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
604 based on old lines through j-1, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
605 and throw away old line j. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
606 p1 = p - 1; /* matrix [i, j-1] */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
607 cost = p1->writecost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
608 /* If i < j, a delete is allowed after an insert. */ |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
609 if (i < j && p1->insertcost < cost) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
610 cost = p1->insertcost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
611 cost1 = p1->deletecost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
612 if (p1->deletecost <= cost) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
613 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
614 cost = p1->deletecost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
615 p->deletecount = p1->deletecount + 1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
616 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
617 else |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
618 p->deletecount = 1; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
619 p->deletecost = cost; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
620 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
621 } |
| 25004 | 622 |
| 623 | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
624 |
| 25004 | 625 /* Perform insert-lines and delete-lines operations on CURRENT_MATRIX |
| 626 according to the costs in MATRIX, using the direct scrolling method | |
| 627 which is used when the terminal supports setting a scroll window | |
| 628 (scroll_region_ok). | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
629 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
630 WINDOW_SIZE is the number of lines being considered for scrolling |
| 25004 | 631 and UNCHANGED_AT_TOP is the vpos of the first line being |
| 632 considered. These two arguments can specify any contiguous range | |
| 633 of lines. | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
634 |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
635 In the direct scrolling method, a new scroll window is selected |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
636 before each insertion or deletion, so that groups of lines can be |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
637 scrolled directly to their final vertical positions. This method |
| 25004 | 638 is described in more detail in calculate_direct_scrolling, where |
| 639 the cost matrix for this approach is constructed. */ | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
640 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
641 static void |
|
109360
f37b85834f7e
Convert more function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
642 do_direct_scrolling (struct frame *frame, struct glyph_matrix *current_matrix, |
|
f37b85834f7e
Convert more function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
643 struct matrix_elt *cost_matrix, int window_size, |
|
f37b85834f7e
Convert more function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
644 int unchanged_at_top) |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
645 { |
| 25004 | 646 struct matrix_elt *p; |
| 647 int i, j; | |
| 648 | |
| 649 /* A queue of deletions and insertions to be performed. */ | |
| 650 struct alt_queue { int count, pos, window; }; | |
| 651 struct alt_queue *queue_start = (struct alt_queue *) | |
| 652 alloca (window_size * sizeof *queue_start); | |
| 653 struct alt_queue *queue = queue_start; | |
| 654 | |
| 655 /* Set to 1 if a terminal window has been set with | |
| 656 set_terminal_window: */ | |
| 657 int terminal_window_p = 0; | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
658 |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
659 /* A nonzero value of write_follows indicates that a write has been |
| 25004 | 660 selected, allowing either an insert or a delete to be selected |
| 661 next. When write_follows is zero, a delete cannot be selected | |
| 662 unless j < i, and an insert cannot be selected unless i < j. | |
| 663 This corresponds to a similar restriction (with the ordering | |
| 664 reversed) in calculate_direct_scrolling, which is intended to | |
| 665 ensure that lines marked as inserted will be blank. */ | |
| 666 int write_follows_p = 1; | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
667 |
| 25004 | 668 /* For each row in the new matrix what row of the old matrix it is. */ |
| 669 int *copy_from = (int *) alloca (window_size * sizeof (int)); | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
670 |
| 25004 | 671 /* Non-zero for each row in the new matrix that is retained from the |
| 672 old matrix. Lines not retained are empty. */ | |
| 673 char *retained_p = (char *) alloca (window_size * sizeof (char)); | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
674 |
|
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109139
diff
changeset
|
675 memset (retained_p, 0, window_size * sizeof (char)); |
| 25004 | 676 |
| 677 /* Perform some sanity checks when GLYPH_DEBUG is on. */ | |
| 678 CHECK_MATRIX (current_matrix); | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
679 |
| 25004 | 680 /* We are working on the line range UNCHANGED_AT_TOP ... |
| 681 UNCHANGED_AT_TOP + WINDOW_SIZE (not including) in CURRENT_MATRIX. | |
| 682 We step through lines in this range from the end to the start. I | |
| 683 is an index into new lines, j an index into old lines. The cost | |
| 684 matrix determines what to do for ranges of indices. | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
685 |
| 25004 | 686 If i is decremented without also decrementing j, this corresponds |
| 687 to inserting empty lines in the result. If j is decremented | |
| 688 without also decrementing i, this corresponds to omitting these | |
| 689 lines in the new rows, i.e. rows are deleted. */ | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
690 i = j = window_size; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
691 |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
692 while (i > 0 || j > 0) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
693 { |
| 25004 | 694 p = cost_matrix + i * (window_size + 1) + j; |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
695 |
| 25004 | 696 if (p->insertcost < p->writecost |
| 697 && p->insertcost < p->deletecost | |
| 698 && (write_follows_p || i < j)) | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
699 { |
| 25004 | 700 /* Insert is cheaper than deleting or writing lines. Leave |
| 701 a hole in the result display that will be filled with | |
| 702 empty lines when the queue is emptied. */ | |
| 703 queue->count = 0; | |
| 704 queue->window = i; | |
| 705 queue->pos = i - p->insertcount; | |
| 706 ++queue; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
707 |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
708 i -= p->insertcount; |
| 25004 | 709 write_follows_p = 0; |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
710 } |
| 25004 | 711 else if (p->deletecost < p->writecost |
| 712 && (write_follows_p || i > j)) | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
713 { |
| 25004 | 714 /* Deleting lines is cheaper. By decrementing J, omit |
| 715 deletecount lines from the original. */ | |
| 716 write_follows_p = 0; | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
717 j -= p->deletecount; |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
718 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
719 else |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
720 { |
| 25004 | 721 /* One or more lines should be written. In the direct |
| 722 scrolling method we do this by scrolling the lines to the | |
| 723 place they belong. */ | |
| 724 int n_to_write = p->writecount; | |
| 725 write_follows_p = 1; | |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
726 xassert (n_to_write > 0); |
| 25004 | 727 |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
728 if (i > j) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
729 { |
| 25004 | 730 /* Immediately insert lines */ |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
731 set_terminal_window (frame, i + unchanged_at_top); |
| 25004 | 732 terminal_window_p = 1; |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
733 ins_del_lines (frame, j - n_to_write + unchanged_at_top, i - j); |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
734 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
735 else if (i < j) |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
736 { |
| 25004 | 737 /* Queue the deletion of a group of lines */ |
| 738 queue->pos = i - n_to_write + unchanged_at_top; | |
| 739 queue->window = j + unchanged_at_top; | |
| 740 queue->count = i - j; | |
| 741 ++queue; | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
742 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
743 |
| 25004 | 744 while (n_to_write > 0) |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
745 { |
| 25004 | 746 --i, --j, --n_to_write; |
| 747 copy_from[i] = j; | |
| 748 retained_p[j] = 1; | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
749 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
750 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
751 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
752 |
| 25004 | 753 /* Do queued operations. */ |
| 754 if (queue > queue_start) | |
| 755 { | |
| 756 int next = -1; | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
757 |
| 25004 | 758 do |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
759 { |
| 25004 | 760 --queue; |
| 761 if (queue->count) | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
762 { |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
763 set_terminal_window (frame, queue->window); |
| 25004 | 764 terminal_window_p = 1; |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
765 ins_del_lines (frame, queue->pos, queue->count); |
| 25004 | 766 } |
| 767 else | |
| 768 { | |
| 769 for (j = queue->window - 1; j >= queue->pos; --j) | |
| 770 { | |
| 771 while (retained_p[++next]) | |
| 772 ; | |
| 773 copy_from[j] = next; | |
| 774 } | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
775 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
776 } |
| 25004 | 777 while (queue > queue_start); |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
778 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
779 |
| 25004 | 780 /* Now, for each row I in the range of rows we are working on, |
| 781 copy_from[i] gives the original line to copy to I, and | |
| 782 retained_p[copy_from[i]] is zero if line I in the new display is | |
| 783 empty. */ | |
| 784 mirrored_line_dance (current_matrix, unchanged_at_top, window_size, | |
| 785 copy_from, retained_p); | |
| 786 | |
| 787 if (terminal_window_p) | |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
788 set_terminal_window (frame, 0); |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
789 } |
| 25004 | 790 |
| 791 | |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
792 |
| 154 | 793 void |
|
109360
f37b85834f7e
Convert more function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
794 scrolling_1 (FRAME_PTR frame, int window_size, int unchanged_at_top, |
|
f37b85834f7e
Convert more function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
795 int unchanged_at_bottom, int *draw_cost, int *old_draw_cost, |
|
f37b85834f7e
Convert more function definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
796 int *old_hash, int *new_hash, int free_at_end) |
| 154 | 797 { |
| 798 struct matrix_elt *matrix; | |
| 799 matrix = ((struct matrix_elt *) | |
| 800 alloca ((window_size + 1) * (window_size + 1) * sizeof *matrix)); | |
| 801 | |
|
82990
2ecd1f669db9
Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents:
53229
diff
changeset
|
802 if (FRAME_SCROLL_REGION_OK (frame)) |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
803 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
804 calculate_direct_scrolling (frame, matrix, window_size, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
805 unchanged_at_bottom, |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
806 draw_cost, old_draw_cost, |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
807 old_hash, new_hash, free_at_end); |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
808 do_direct_scrolling (frame, frame->current_matrix, |
| 25004 | 809 matrix, window_size, unchanged_at_top); |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
810 } |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
811 else |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
812 { |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
813 calculate_scrolling (frame, matrix, window_size, unchanged_at_bottom, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
814 draw_cost, old_hash, new_hash, |
|
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
815 free_at_end); |
|
83100
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
816 do_scrolling (frame, |
|
4970ad4995f5
Eliminated updating_frame.
Karoly Lorentey <lorentey@elte.hu>
parents:
83004
diff
changeset
|
817 frame->current_matrix, matrix, window_size, |
| 25004 | 818 unchanged_at_top); |
|
10262
4face60ac721
(scrolling_1): When scroll_region_ok is set, use a
Richard M. Stallman <rms@gnu.org>
parents:
10109
diff
changeset
|
819 } |
| 154 | 820 } |
| 25004 | 821 |
| 822 | |
| 154 | 823 |
| 25004 | 824 /* Return number of lines in common between current and desired frame |
| 825 contents described to us only as vectors of hash codes OLDHASH and | |
| 826 NEWHASH. Consider only vpos range START to END (not including | |
| 827 END). Ignore short lines on the assumption that avoiding redrawing | |
| 828 such a line will have little weight. */ | |
| 154 | 829 |
| 830 int | |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
831 scrolling_max_lines_saved (int start, int end, int *oldhash, int *newhash, int *cost) |
| 154 | 832 { |
| 833 struct { int hash; int count; } lines[01000]; | |
| 834 register int i, h; | |
| 835 register int matchcount = 0; | |
| 836 int avg_length = 0; | |
| 837 int threshold; | |
| 838 | |
| 839 /* Compute a threshold which is 1/4 of average length of these lines. */ | |
| 840 | |
| 841 for (i = start; i < end; i++) | |
| 842 avg_length += cost[i]; | |
| 843 | |
| 844 avg_length /= end - start; | |
| 845 threshold = avg_length / 4; | |
| 846 | |
|
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
109139
diff
changeset
|
847 memset (lines, 0, sizeof lines); |
| 154 | 848 |
| 25004 | 849 /* Put new lines' hash codes in hash table. Ignore lines shorter |
| 850 than the threshold. Thus, if the lines that are in common are | |
| 851 mainly the ones that are short, they won't count. */ | |
| 154 | 852 for (i = start; i < end; i++) |
| 853 { | |
| 854 if (cost[i] > threshold) | |
| 855 { | |
| 856 h = newhash[i] & 0777; | |
| 857 lines[h].hash = newhash[i]; | |
| 858 lines[h].count++; | |
| 859 } | |
| 860 } | |
| 861 | |
| 25004 | 862 /* Look up old line hash codes in the hash table. Count number of |
| 863 matches between old lines and new. */ | |
| 154 | 864 for (i = start; i < end; i++) |
| 865 { | |
| 866 h = oldhash[i] & 0777; | |
| 867 if (oldhash[i] == lines[h].hash) | |
| 868 { | |
| 869 matchcount++; | |
| 870 if (--lines[h].count == 0) | |
| 871 lines[h].hash = 0; | |
| 872 } | |
| 873 } | |
| 874 | |
| 875 return matchcount; | |
| 876 } | |
| 877 | |
| 25004 | 878 /* Return a measure of the cost of moving the lines starting with vpos |
| 879 FROM, up to but not including vpos TO, down by AMOUNT lines (AMOUNT | |
|
112022
5753dd68911a
* scroll.c: Fix comment.
Andreas Schwab <schwab@linux-m68k.org>
parents:
110683
diff
changeset
|
880 may be negative). */ |
| 154 | 881 |
| 21514 | 882 int |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
883 scroll_cost (FRAME_PTR frame, int from, int to, int amount) |
| 154 | 884 { |
| 766 | 885 /* Compute how many lines, at bottom of frame, |
| 154 | 886 will not be involved in actual motion. */ |
|
110550
d33e6623664c
Fix EMACS_INT/int conversion in scroll.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109364
diff
changeset
|
887 EMACS_INT limit = to; |
|
d33e6623664c
Fix EMACS_INT/int conversion in scroll.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109364
diff
changeset
|
888 EMACS_INT offset; |
|
d33e6623664c
Fix EMACS_INT/int conversion in scroll.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109364
diff
changeset
|
889 EMACS_INT height = FRAME_LINES (frame); |
| 154 | 890 |
| 421 | 891 if (amount == 0) |
| 892 return 0; | |
| 893 | |
|
82990
2ecd1f669db9
Fixed X support, preliminary support for X-tty combo sessions.
Karoly Lorentey <lorentey@elte.hu>
parents:
53229
diff
changeset
|
894 if (! FRAME_SCROLL_REGION_OK (frame)) |
| 154 | 895 limit = height; |
| 421 | 896 else if (amount > 0) |
| 897 limit += amount; | |
| 154 | 898 |
| 899 if (amount < 0) | |
| 900 { | |
| 901 int temp = to; | |
| 902 to = from + amount; | |
| 903 from = temp + amount; | |
| 904 amount = - amount; | |
| 905 } | |
| 906 | |
| 907 offset = height - limit; | |
| 908 | |
| 909 return | |
| 766 | 910 (FRAME_INSERT_COST (frame)[offset + from] |
| 911 + (amount - 1) * FRAME_INSERTN_COST (frame)[offset + from] | |
|
10109
869e177ca872
(scroll_cost): FRAME_DELETE_COST and FRAME_DELETEN_COSTS were confused. Fixed.
Richard M. Stallman <rms@gnu.org>
parents:
9576
diff
changeset
|
912 + FRAME_DELETE_COST (frame)[offset + to] |
|
869e177ca872
(scroll_cost): FRAME_DELETE_COST and FRAME_DELETEN_COSTS were confused. Fixed.
Richard M. Stallman <rms@gnu.org>
parents:
9576
diff
changeset
|
913 + (amount - 1) * FRAME_DELETEN_COST (frame)[offset + to]); |
| 154 | 914 } |
| 915 | |
| 916 /* Calculate the line insertion/deletion | |
| 917 overhead and multiply factor values */ | |
| 918 | |
| 919 static void | |
|
109126
aec1143e8d85
Convert (most) functions in src to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109100
diff
changeset
|
920 line_ins_del (FRAME_PTR frame, int ov1, int pf1, int ovn, int pfn, register int *ov, register int *mf) |
| 154 | 921 { |
|
110550
d33e6623664c
Fix EMACS_INT/int conversion in scroll.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109364
diff
changeset
|
922 register EMACS_INT i; |
|
d33e6623664c
Fix EMACS_INT/int conversion in scroll.c.
Lars Magne Ingebrigtsen <larsi@gnus.org>
parents:
109364
diff
changeset
|
923 register EMACS_INT frame_lines = FRAME_LINES (frame); |
| 154 | 924 register int insert_overhead = ov1 * 10; |
| 925 register int next_insert_cost = ovn * 10; | |
| 926 | |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
927 for (i = frame_lines-1; i >= 0; i--) |
| 154 | 928 { |
| 529 | 929 mf[i] = next_insert_cost / 10; |
| 154 | 930 next_insert_cost += pfn; |
| 529 | 931 ov[i] = (insert_overhead + next_insert_cost) / 10; |
| 154 | 932 insert_overhead += pf1; |
| 933 } | |
| 934 } | |
| 935 | |
| 936 static void | |
|
109139
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
937 ins_del_costs (FRAME_PTR frame, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
938 char *one_line_string, char *multi_string, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
939 char *setup_string, char *cleanup_string, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
940 int *costvec, int *ncostvec, |
|
c25c24812fb1
Convert declarations or definitions to standard C.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109126
diff
changeset
|
941 int coefficient) |
| 154 | 942 { |
| 943 if (multi_string) | |
| 766 | 944 line_ins_del (frame, |
| 154 | 945 string_cost (multi_string) * coefficient, |
| 946 per_line_cost (multi_string) * coefficient, | |
| 947 0, 0, costvec, ncostvec); | |
| 948 else if (one_line_string) | |
| 766 | 949 line_ins_del (frame, |
| 154 | 950 string_cost (setup_string) + string_cost (cleanup_string), 0, |
| 951 string_cost (one_line_string), | |
| 952 per_line_cost (one_line_string), | |
| 953 costvec, ncostvec); | |
| 954 else | |
| 766 | 955 line_ins_del (frame, |
| 154 | 956 9999, 0, 9999, 0, |
| 957 costvec, ncostvec); | |
| 958 } | |
| 959 | |
| 960 /* Calculate the insert and delete line costs. | |
| 961 Note that this is done even when running with a window system | |
| 962 because we want to know how long scrolling takes (and avoid it). | |
| 766 | 963 This must be redone whenever the frame height changes. |
| 154 | 964 |
| 965 We keep the ID costs in a precomputed array based on the position | |
| 966 at which the I or D is performed. Also, there are two kinds of ID | |
| 967 costs: the "once-only" and the "repeated". This is to handle both | |
| 968 those terminals that are able to insert N lines at a time (once- | |
| 969 only) and those that must repeatedly insert one line. | |
| 970 | |
| 971 The cost to insert N lines at line L is | |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
972 [tt.t_ILov + (frame_lines + 1 - L) * tt.t_ILpf] + |
|
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
973 N * [tt.t_ILnov + (frame_lines + 1 - L) * tt.t_ILnpf] |
| 154 | 974 |
| 975 ILov represents the basic insert line overhead. ILpf is the padding | |
| 976 required to allow the terminal time to move a line: insertion at line | |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
977 L changes (frame_lines + 1 - L) lines. |
| 154 | 978 |
| 979 The first bracketed expression above is the overhead; the second is | |
| 980 the multiply factor. Both are dependent only on the position at | |
| 981 which the insert is performed. We store the overhead in | |
| 766 | 982 FRAME_INSERT_COST (frame) and the multiply factor in |
| 983 FRAME_INSERTN_COST (frame). Note however that any insertion | |
| 154 | 984 must include at least one multiply factor. Rather than compute this |
| 766 | 985 as FRAME_INSERT_COST (frame)[line]+FRAME_INSERTN_COST (frame)[line], |
| 986 we add FRAME_INSERTN_COST (frame) into FRAME_INSERT_COST (frame). | |
| 154 | 987 This is reasonable because of the particular algorithm used in calcM. |
| 988 | |
| 989 Deletion is essentially the same as insertion. | |
| 990 */ | |
| 991 | |
| 21514 | 992 void |
|
109364
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109360
diff
changeset
|
993 do_line_insertion_deletion_costs (FRAME_PTR frame, |
|
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109360
diff
changeset
|
994 char *ins_line_string, char *multi_ins_string, |
|
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109360
diff
changeset
|
995 char *del_line_string, char *multi_del_string, |
|
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109360
diff
changeset
|
996 char *setup_string, char *cleanup_string, |
|
89a16701cde1
Convert old-style definitions
Andreas Schwab <schwab@linux-m68k.org>
parents:
109360
diff
changeset
|
997 int coefficient) |
| 154 | 998 { |
| 766 | 999 if (FRAME_INSERT_COST (frame) != 0) |
| 154 | 1000 { |
| 766 | 1001 FRAME_INSERT_COST (frame) = |
| 1002 (int *) xrealloc (FRAME_INSERT_COST (frame), | |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
1003 FRAME_LINES (frame) * sizeof (int)); |
| 766 | 1004 FRAME_DELETEN_COST (frame) = |
| 1005 (int *) xrealloc (FRAME_DELETEN_COST (frame), | |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
1006 FRAME_LINES (frame) * sizeof (int)); |
| 766 | 1007 FRAME_INSERTN_COST (frame) = |
| 1008 (int *) xrealloc (FRAME_INSERTN_COST (frame), | |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
1009 FRAME_LINES (frame) * sizeof (int)); |
| 766 | 1010 FRAME_DELETE_COST (frame) = |
| 1011 (int *) xrealloc (FRAME_DELETE_COST (frame), | |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
1012 FRAME_LINES (frame) * sizeof (int)); |
| 154 | 1013 } |
| 1014 else | |
| 1015 { | |
| 766 | 1016 FRAME_INSERT_COST (frame) = |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
1017 (int *) xmalloc (FRAME_LINES (frame) * sizeof (int)); |
| 766 | 1018 FRAME_DELETEN_COST (frame) = |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
1019 (int *) xmalloc (FRAME_LINES (frame) * sizeof (int)); |
| 766 | 1020 FRAME_INSERTN_COST (frame) = |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
1021 (int *) xmalloc (FRAME_LINES (frame) * sizeof (int)); |
|
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
48323
diff
changeset
|
1022 FRAME_DELETE_COST (frame) = |
|
51212
332134065648
Make (some) trivial substitutions for renamed and
Kim F. Storm <storm@cua.dk>
parents:
49600
diff
changeset
|
1023 (int *) xmalloc (FRAME_LINES (frame) * sizeof (int)); |
| 154 | 1024 } |
| 1025 | |
| 766 | 1026 ins_del_costs (frame, |
| 154 | 1027 ins_line_string, multi_ins_string, |
| 1028 setup_string, cleanup_string, | |
| 766 | 1029 FRAME_INSERT_COST (frame), FRAME_INSERTN_COST (frame), |
| 154 | 1030 coefficient); |
| 766 | 1031 ins_del_costs (frame, |
| 154 | 1032 del_line_string, multi_del_string, |
| 1033 setup_string, cleanup_string, | |
|
9576
14cd96eda0e3
(do_line_insertion_deletion_costs): Fix argument order.
Karl Heuer <kwzh@gnu.org>
parents:
7307
diff
changeset
|
1034 FRAME_DELETE_COST (frame), FRAME_DELETEN_COST (frame), |
| 154 | 1035 coefficient); |
| 1036 } | |
| 52401 | 1037 |
