-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathrandom.c
638 lines (586 loc) · 17.2 KB
/
random.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
/*_ random.c Mon Jan 30 1989 */
/*
* This file contains the command processing functions for a number of random
* commands. There is no functional grouping here, for sure.
*/
#include <stdio.h>
#include "ed.h"
int tabsize; /* Tab size (0: use real tabs) */
/*****************************
* Set fill column to n if n was given, otherwise set to current column.
*/
random_setfillcol(f, n)
{
fillcol = f ? n : getcol(curwp->w_dotp,curwp->w_doto);
return TRUE;
}
/*
* Display the current position of the cursor, in origin 1 X-Y coordinates,
* the character that is under the cursor (in octal), and the fraction of the
* text that is before the cursor. The displayed column is not the current
* column, but the column that would be used on an infinite width display.
* Normally this is bound to "C-X =".
*/
random_showcpos(f, n)
{
register LINE *clp;
register long numchars;
register int cbo;
register long thischar;
register int charatdot;
register int ratio;
register int col;
register int thisline;
register int numlines;
clp = lforw(curbp->b_linep); /* Grovel the data. */
cbo = 0;
numchars = 0;
numlines = 1;
for (;;) {
/* if on the current dot, save the character at dot */
/* and the character and line position of the dot */
if (clp==curwp->w_dotp && cbo==curwp->w_doto) {
thisline = numlines;
thischar = numchars;
if (cbo == llength(clp))
charatdot = '\n';
else
charatdot = lgetc(clp, cbo);
}
if (cbo == llength(clp)) {
if (clp == curbp->b_linep)
break;
clp = lforw(clp);
cbo = 0;
numlines++;
} else
++cbo;
++numchars;
}
col = getcol(curwp->w_dotp,curwp->w_doto); /* Get real column */
ratio = 0; /* Ratio before dot. */
if (numchars != 0)
ratio = (100L*thischar) / numchars;
mlwrite("row=%d col=%d CH=0x%x .=%ld (%d%% of %ld) line %d of %d",
currow+1, col+1, charatdot, thischar,
ratio, numchars, thisline, numlines - 1);
return (TRUE);
}
/*
* Twiddle the two characters on either side of dot. If dot is at the end of
* the line twiddle the two characters before it. Return with an error if dot
* is at the beginning of line; it seems to be a bit pointless to make this
* work. This fixes up a very common typo with a single stroke. Normally bound
* to "C-T". This always works within a line, so "WFEDIT" is good enough.
*/
random_twiddle(f, n)
{
register LINE *dotp;
register int doto;
register int cl;
register int cr;
dotp = curwp->w_dotp;
doto = curwp->w_doto;
if (doto==llength(dotp) && --doto<0)
return (FALSE);
cr = lgetc(dotp, doto);
if (--doto < 0)
return (FALSE);
cl = lgetc(dotp, doto);
lputc(dotp, doto+0, cr);
lputc(dotp, doto+1, cl);
line_change(WFEDIT);
return (TRUE);
}
/*
* Quote the next character, and insert it into the buffer. All the characters
* are taken literally, with the exception of the newline, which always has
* its line splitting meaning. The character is always read, even if it is
* inserted 0 times, for regularity. Bound to "M-Q" (for me) and "C-Q" (for
* Rich, and only on terminals that don't need XON-XOFF).
*/
random_quote(f, n)
{
register int s;
register int c;
c = (*term.t_getchar)();
if (c & ~0xFF || n < 0)
return (FALSE);
if (n == 0)
return (TRUE);
if (c == '\n') {
do {
s = line_newline();
} while (s==TRUE && --n);
return (s);
}
return (line_insert(n, c));
}
/*
* Set tab size if given non-default argument (n <> 1). Otherwise, insert a
* tab into file. If given argument, n, of zero, change to true tabs.
* If n > 1, simulate tab stop every n-characters using spaces. This has to be
* done in this slightly funny way because the tab (in ASCII) has been turned
* into "C-I" (in 10 bit code) already. Bound to "C-I".
*/
random_tab(f, n)
{
if (n < 0)
return (FALSE);
if (n == 0 || n > 1) {
tabsize = n;
return(TRUE);
}
if (! tabsize)
return(line_insert(1, '\t'));
return(line_insert(tabsize - (getcol(curwp->w_dotp,curwp->w_doto) % tabsize), ' '));
}
/*
* Set hardware tab size if given non-default argument (n <> 1).
*/
random_hardtab(f, n)
{
if (n < 0)
return (FALSE);
if (n == 0 || n > 1)
hardtabsize = n;
else if (hardtabsize == 8)
hardtabsize = 4;
else if (hardtabsize == 4)
hardtabsize = 8;
display_recalc();
return TRUE;
}
/*
* Open up some blank space. The basic plan is to insert a bunch of newlines,
* and then back up over them. Everything is done by the subcommand
* procerssors. They even handle the looping. Normally this is bound to "C-O".
*/
random_openline(f, n)
{
register int i;
register int s;
if (n < 0)
return (FALSE);
if (n == 0)
return (TRUE);
i = n; /* Insert newlines. */
do {
s = line_newline();
} while (s==TRUE && --i);
if (s == TRUE) /* Then back up overtop */
s = backchar(f, n); /* of them all. */
return (s);
}
/*
* Insert a newline. Bound to "C-M". If you are at the end of the line and the
* next line is a blank line, just move into the blank line. This makes "C-O"
* and "C-X C-O" work nicely, and reduces the ammount of screen update that
* has to be done. This would not be as critical if screen update were a lot
* more efficient.
*/
random_newline(f, n)
{
int nicol;
register LINE *lp;
register int s;
if (n < 0)
return (FALSE);
while (n--) {
#if 0
lp = curwp->w_dotp;
if (llength(lp) == curwp->w_doto /* if at end of line */
&& lp != curbp->b_linep /* and not start of buffer */
&& llength(lforw(lp)) == 0) { /* and next line is blank */
if ((s=forwchar(FALSE, 1)) != TRUE)
return (s);
} else
#endif
if ((s=line_newline()) != TRUE)
return (s);
}
return (TRUE);
}
/*
* Delete blank lines around dot. What this command does depends if dot is
* sitting on a blank line. If dot is sitting on a blank line, this command
* deletes all the blank lines above and below the current line. If it is
* sitting on a non blank line then it deletes all of the blank lines after
* the line. Normally this command is bound to "C-X C-O". Any argument is
* ignored.
*/
random_deblank(f, n)
{
register LINE *lp1;
register LINE *lp2;
register int nld;
lp1 = curwp->w_dotp;
while (llength(lp1)==0 && (lp2=lback(lp1))!=curbp->b_linep)
lp1 = lp2;
lp2 = lp1;
nld = 0;
while ((lp2=lforw(lp2))!=curbp->b_linep && llength(lp2)==0)
++nld;
if (nld == 0)
return (TRUE);
curwp->w_dotp = lforw(lp1);
curwp->w_doto = 0;
return (line_delete(nld,TRUE));
}
/*
* Insert a newline, then enough tabs and spaces to duplicate the indentation
* of the previous line. Assumes tabs are every eight characters. Quite simple.
* Figure out the indentation of the current line. Insert a newline by calling
* the standard routine. Insert the indentation by inserting the right number
* of tabs and spaces. Return TRUE if all ok. Return FALSE if one of the
* subcomands failed. Normally bound to "C-J".
*/
#if 0
random_indent(f, n)
{
register int nicol;
register int c;
register int i;
if (n < 0)
return (FALSE);
while (n--) {
nicol = 0;
for (i=0; i<llength(curwp->w_dotp); ++i) {
c = lgetc(curwp->w_dotp, i);
if (c!=' ' && c!='\t')
break;
if (c == '\t')
nicol |= 0x07;
++nicol;
}
if (line_newline() == FALSE
|| ((i=nicol/8)!=0 && line_insert(i, '\t')==FALSE)
|| ((i=nicol%8)!=0 && line_insert(i, ' ')==FALSE))
return (FALSE);
}
return (TRUE);
}
#endif
/*********************************
* Determine indentation level of current line.
* Increase it by 4.
* Step to next line.
*/
random_incindent(f, n) { return changeindent(f,n,4); }
random_decindent(f, n) { return changeindent(f,n,-4); }
int changeindent(f, n, val)
{
register int nicol;
register int c;
register int i;
struct LINE *dotpsave;
int dotosave;
if (n < 0)
goto err;
if (window_marking(curwp))
{ REGION region;
int s;
if ((s = getregion(®ion)) != TRUE)
return s;
dotpsave = curwp->w_dotp;
dotosave = curwp->w_doto;
curwp->w_dotp = region.r_linep;
curwp->w_doto = region.r_offset;
n = region.r_nlines;
}
while (n--)
{ int len;
len = llength(curwp->w_dotp);
if (len)
{
nicol = 0;
for (i=0; i < len; ++i) {
c = lgetc(curwp->w_dotp, i);
if (c == '{' && i + 1 < len) /* } to balance things out */
{ int j;
/* Next non-white char after bracket is indented by 3 */
for (j = i + 1; j < len; j++)
{ c = lgetc(curwp->w_dotp,j);
if (c != ' ' && c != '\t')
break;
}
curwp->w_doto = i + 1;
line_delete(j - (i + 1),FALSE);
line_insert(abs(val) - 1,' ');
break;
}
if (c!=' ' && c!='\t')
break;
if (c == '\t')
nicol |= 0x07;
++nicol;
}
curwp->w_doto = 0; /* move to beginning of line */
line_delete(i,FALSE); /* delete existing blanks */
nicol += val;
if (nicol < 0)
nicol = 0;
if (((i=nicol/8)!=0 && line_insert(i, '\t')==FALSE)
|| ((i=nicol%8)!=0 && line_insert(i, ' ')==FALSE))
goto err;
}
if (forwline(FALSE,1) == FALSE)
goto err;
}
if (window_marking(curwp))
{
if (dotosave > llength(dotpsave))
dotosave = llength(dotpsave);
curwp->w_dotp = dotpsave;
curwp->w_doto = dotosave;
}
return (TRUE);
err:
return FALSE;
}
/*********************************
* Optimally tab a line or region.
* Step to next line.
*/
random_opttab(f, n)
{
register int c;
register int i;
struct LINE *dotpsave;
int dotosave;
if (n < 0)
goto err;
if (window_marking(curwp))
{ REGION region;
int s;
if ((s = getregion(®ion)) != TRUE)
return s;
dotpsave = curwp->w_dotp;
dotosave = curwp->w_doto;
curwp->w_dotp = region.r_linep;
curwp->w_doto = region.r_offset;
n = region.r_nlines;
}
while (n--)
{
int nspaces = 0;
int nwhite = 0;
int nicol = 0; /* column number */
for (i=0; i < llength(curwp->w_dotp); i++)
{
c = lgetc(curwp->w_dotp, i);
switch (c)
{
case '\t':
nwhite++;
if (nspaces)
{ int ntabs;
i -= nspaces;
nwhite -= nspaces;
curwp->w_doto = i;
line_delete(nspaces,FALSE);
ntabs = nspaces >> 3;
line_insert(ntabs,'\t');
i += ntabs;
nwhite += ntabs;
nspaces = 0;
}
nicol = (nicol | 7) + 1;
break;
default:
if (nspaces >= 2 && (nicol & 7) == 0)
{ i -= nspaces;
curwp->w_doto = i;
line_delete(nspaces,FALSE);
line_insert((nspaces + 7) >> 3,'\t');
i += (nspaces + 7) >> 3;
nspaces = 0;
}
if (c == ' ')
{ nwhite++;
nspaces++;
}
else
{ nwhite = 0;
nspaces = 0;
}
nicol++;
break;
}
}
/* Truncate any trailing spaces or tabs */
if (nwhite)
{ curwp->w_doto = i - nwhite;
line_delete(nwhite,FALSE);
}
if (forwline(FALSE,1) == FALSE) /* proceed to next line */
goto err;
}
if (window_marking(curwp))
{
if (dotosave > llength(dotpsave))
dotosave = llength(dotpsave);
curwp->w_dotp = dotpsave;
curwp->w_doto = dotosave;
}
return (TRUE);
err:
return FALSE;
}
/*
* Delete forward. This is real easy, because the basic delete routine does
* all of the work. Watches for negative arguments, and does the right thing.
* If any argument is present, it kills rather than deletes, to prevent loss
* of text if typed with a big argument. Normally bound to "C-D".
*/
static char undelch;
random_forwdel(f,n)
{
if (n < 0)
return (random_backdel(f, -n));
if (f) { /* Really a random_kill. */
if ((lastflag&CFKILL) == 0)
kill_freebuffer();
thisflag |= CFKILL;
}
else
undelch = lgetc(curwp->w_dotp,curwp->w_doto);
return (line_delete(n, f));
}
random_undelchar(f,n)
{
return line_insert(n,undelch);
}
/*
* Delete backwards. This is quite easy too, because it's all done with other
* functions.
* If marking, then cut the marked region.
* Just move the cursor back, and delete forwards. Like delete
* forward, this actually does a kill if presented with an argument.
* Bound to both "RUBOUT" and "C-H".
*/
random_backdel(f, n)
{
register int s;
if (n < 0)
return (random_forwdel(f, -n));
if (curwp->w_markp) /* if marking */
return region_kill(f,n);
if (f != FALSE) { /* Really a kill. */
if ((lastflag&CFKILL) == 0)
kill_freebuffer();
thisflag |= CFKILL;
}
if ((s=backchar(f, n)) == TRUE)
s = line_delete(n, f);
return (s);
}
/*
* Kill text. If called without an argument, it kills from dot to the end of
* the line, unless it is at the end of the line, when it kills the newline.
* If called with an argument of 0, it kills from the start of the line to dot.
* If called with a positive argument, it kills from dot forward over that
* number of newlines. If called with a negative argument it kills backwards
* that number of newlines. Normally bound to "C-K".
*/
random_kill(f, n)
{
register int chunk;
register LINE *nextp;
if ((lastflag&CFKILL) == 0) /* Clear kill buffer if */
kill_freebuffer(); /* last wasn't a kill. */
thisflag |= CFKILL;
if (f == FALSE) {
chunk = llength(curwp->w_dotp)-curwp->w_doto;
if (chunk == 0)
chunk = 1;
} else if (n == 0) {
chunk = curwp->w_doto;
curwp->w_doto = 0;
} else if (n > 0) {
chunk = llength(curwp->w_dotp)-curwp->w_doto+1;
nextp = lforw(curwp->w_dotp);
while (--n) {
if (nextp == curbp->b_linep)
return (FALSE);
chunk += llength(nextp)+1;
nextp = lforw(nextp);
}
} else {
mlwrite("neg kill");
return (FALSE);
}
return (line_delete(chunk, TRUE));
}
/*
* Yank text back from the kill buffer. This is really easy. All of the work
* is done by the standard insert routines. All you do is run the loop, and
* check for errors. Bound to "C-Y". The blank lines are inserted with a call
* to "newline" instead of a call to "line_newline" so that the magic stuff that
* happens when you type a carriage return also happens when a carriage return
* is yanked back from the kill buffer.
*/
random_yank(f, n)
{
register int c;
register int i;
if (n < 0)
goto err;
kill_fromClipboard();
while (n--)
{
i = 0;
if (column_mode)
{ int col;
col = getcol(curwp->w_dotp,curwp->w_doto);
while ((c=kill_remove(i)) >= 0)
{
if (c == '\r')
{
}
else if (c == '\n')
{ int nspaces;
if (curwp->w_dotp == curbp->b_linep)
{ if (random_newline(FALSE, 1) == FALSE)
goto err;
}
else
curwp->w_dotp = lforw(curwp->w_dotp);
curwp->w_flag |= WFHARD;
curwp->w_doto = coltodoto(curwp->w_dotp,col);
if (kill_remove(i + 1) >= 0)
{
nspaces = col - getcol(curwp->w_dotp,curwp->w_doto);
while (nspaces--)
if (!line_insert(1,' '))
goto err;
}
}
else
{
if (line_insert(1, c) == FALSE)
goto err;
}
++i;
}
}
else
while ((c=kill_remove(i)) >= 0)
{
if (c == '\r')
{
}
else if (c == '\n') {
if (random_newline(FALSE, 1) == FALSE)
goto err;
} else {
if (line_insert(1, c) == FALSE)
goto err;
}
++i;
}
}
return (TRUE);
err:
return FALSE;
}