1 /* line editing and drawing */
9 static char *kmap_map(int kmap
, int c
)
12 char **keymap
= conf_kmap(kmap
);
14 return keymap
[c
] ? keymap
[c
] : cs
;
17 static int led_posctx(int dir
, int pos
, int beg
, int end
)
19 return dir
>= 0 ? pos
- beg
: end
- pos
- 1;
22 /* map cursor horizontal position to terminal column number */
23 int led_pos(char *s
, int pos
)
25 return led_posctx(dir_context(s
), pos
, xleft
, xleft
+ xcols
);
28 static int led_offdir(char **chrs
, int *pos
, int i
)
30 if (pos
[i
] + ren_cwid(chrs
[i
], pos
[i
]) == pos
[i
+ 1])
32 if (pos
[i
+ 1] + ren_cwid(chrs
[i
+ 1], pos
[i
+ 1]) == pos
[i
])
37 /* highlight text in reverse direction */
38 static void led_markrev(int n
, char **chrs
, int *pos
, int *att
)
42 conf_highlight_revdir(&hl
);
44 int dir
= led_offdir(chrs
, pos
, i
);
46 while (i
+ 1 < n
&& led_offdir(chrs
, pos
, i
) == dir
)
49 for (j
= beg
; j
<= i
; j
++)
50 att
[j
] = syn_merge(hl
, att
[j
]);
56 /* render and highlight a line */
57 static char *led_render(char *s0
, int cbeg
, int cend
, char *syn
)
60 int *pos
; /* pos[i]: the screen position of the i-th character */
61 int *off
; /* off[i]: the character at screen position i */
62 int *att
; /* att[i]: the attributes of i-th character */
63 char **chrs
; /* chrs[i]: the i-th character in s1 */
67 int ctx
= dir_context(s0
);
68 int att_blank
= 0; /* the attribute of blank space */
69 chrs
= uc_chop(s0
, &n
);
70 pos
= ren_position(s0
);
71 off
= malloc((cend
- cbeg
) * sizeof(off
[0]));
72 memset(off
, 0xff, (cend
- cbeg
) * sizeof(off
[0]));
73 /* initialise off[] using pos[] */
74 for (i
= 0; i
< n
; i
++) {
75 int curwid
= ren_cwid(chrs
[i
], pos
[i
]);
76 int curbeg
= led_posctx(ctx
, pos
[i
], cbeg
, cend
);
77 int curend
= led_posctx(ctx
, pos
[i
] + curwid
- 1, cbeg
, cend
);
78 if (curbeg
>= 0 && curbeg
< (cend
- cbeg
) &&
79 curend
>= 0 && curend
< (cend
- cbeg
))
80 for (j
= 0; j
< curwid
; j
++)
81 off
[led_posctx(ctx
, pos
[i
] + j
, cbeg
, cend
)] = i
;
83 att
= syn_highlight(xhl
? syn
: "", s0
);
84 /* the attribute of \n character is used for blanks */
85 for (i
= 0; i
< n
; i
++)
86 if (chrs
[i
][0] == '\n')
88 led_markrev(n
, chrs
, pos
, att
);
89 /* generate term output */
93 int o
= off
[i
- cbeg
];
94 int att_new
= o
>= 0 ? att
[o
] : att_blank
;
95 sbuf_str(out
, term_att(att_new
, att_old
));
98 if (ren_translate(chrs
[o
], s0
))
99 sbuf_str(out
, ren_translate(chrs
[o
], s0
));
100 else if (uc_isprint(chrs
[o
]))
101 sbuf_mem(out
, chrs
[o
], uc_len(chrs
[o
]));
103 for (j
= i
; j
< cend
&& off
[j
- cbeg
] == o
; j
++)
105 while (i
< cend
&& off
[i
- cbeg
] == o
)
112 sbuf_str(out
, term_att(0, att_old
));
117 return sbuf_done(out
);
120 /* print a line on the screen */
121 void led_print(char *s
, int row
, char *syn
)
123 char *r
= led_render(s
, xleft
, xleft
+ xcols
, syn
);
130 /* set xtd and return its old value */
131 static int td_set(int td
)
138 /* print a line on the screen; for ex messages */
139 void led_printmsg(char *s
, int row
, char *syn
)
142 char *r
= led_render(s
, xleft
, xleft
+ xcols
, syn
);
150 static int led_lastchar(char *s
)
152 char *r
= *s
? strchr(s
, '\0') : s
;
154 r
= uc_beg(s
, r
- 1);
158 static int led_lastword(char *s
)
160 char *r
= *s
? uc_beg(s
, strchr(s
, '\0') - 1) : s
;
162 while (r
> s
&& uc_isspace(r
))
163 r
= uc_beg(s
, r
- 1);
164 kind
= r
> s
? uc_kind(r
) : 0;
165 while (r
> s
&& uc_kind(uc_beg(s
, r
- 1)) == kind
)
166 r
= uc_beg(s
, r
- 1);
170 static void led_printparts(char *ai
, char *pref
, char *main
,
171 char *post
, int kmap
, char *syn
)
180 off
= uc_slen(sbuf_buf(ln
));
181 /* cursor position for inserting the next character */
182 if (*pref
|| *main
|| *ai
) {
183 int len
= sbuf_len(ln
);
184 sbuf_str(ln
, kmap_map(kmap
, 'a'));
186 idir
= ren_pos(sbuf_buf(ln
), off
) -
187 ren_pos(sbuf_buf(ln
), off
- 1) < 0 ? -1 : +1;
192 pos
= ren_cursor(sbuf_buf(ln
), ren_pos(sbuf_buf(ln
), MAX(0, off
- 1)));
193 if (pos
>= xleft
+ xcols
)
194 xleft
= pos
- xcols
/ 2;
196 xleft
= pos
< xcols
? 0 : pos
- xcols
/ 2;
197 led_print(sbuf_buf(ln
), -1, syn
);
198 term_pos(-1, led_pos(sbuf_buf(ln
), pos
+ idir
));
203 /* continue reading the character starting with c */
204 static char *led_readchar(int c
, int kmap
)
209 if (c
== TK_CTL('v')) { /* literal character */
210 buf
[0] = term_read();
214 if (c
== TK_CTL('k')) { /* digraph */
221 return conf_digraph(c1
, c2
);
223 if ((c
& 0xc0) == 0xc0) { /* utf-8 character */
226 for (i
= 1; i
< n
; i
++)
227 buf
[i
] = term_read();
231 return kmap_map(kmap
, c
);
234 /* read a character from the terminal */
235 char *led_read(int *kmap
)
247 return led_readchar(c
, *kmap
);
254 /* read a line from the terminal */
255 static char *led_line(char *pref
, char *post
, char *ai
,
256 int ai_max
, int *key
, int *kmap
, char *syn
)
259 int ai_len
= strlen(ai
);
268 led_printparts(ai
, pref
, sbuf_buf(sb
), post
, *kmap
, syn
);
280 sbuf_cut(sb
, led_lastchar(sbuf_buf(sb
)));
287 sbuf_cut(sb
, led_lastword(sbuf_buf(sb
)));
299 if (reg_get(0, &lnmode
))
300 sbuf_str(sb
, reg_get(0, &lnmode
));
303 if (c
== '\n' || TK_INT(c
))
305 if ((cs
= led_readchar(c
, *kmap
)))
308 if (c
== '\n' || TK_INT(c
))
312 return sbuf_done(sb
);
315 /* read an ex command */
316 char *led_prompt(char *pref
, char *post
, int *kmap
, char *syn
)
320 char *s
= led_line(pref
, post
, "", 0, &key
, kmap
, syn
);
323 struct sbuf
*sb
= sbuf_make();
330 return sbuf_done(sb
);
336 /* read visual command input */
337 char *led_input(char *pref
, char *post
, int *kmap
, char *syn
)
339 struct sbuf
*sb
= sbuf_make();
341 int ai_max
= xai
? sizeof(ai
) - 1 : 0;
344 while (n
< ai_max
&& (*pref
== ' ' || *pref
== '\t'))
348 char *ln
= led_line(pref
, post
, ai
, ai_max
, &key
, kmap
, syn
);
349 int ln_sp
= 0; /* number of initial spaces in ln */
350 while (ln
[ln_sp
] && (ln
[ln_sp
] == ' ' || ln
[ln_sp
] == '\t'))
352 if (ln
[ln_sp
] || (pref
&& pref
[0]) ||
353 (key
!= '\n' && post
[0] && post
[0] != '\n'))
360 led_printparts(ai
, pref
? pref
: "", uc_lastline(ln
),
361 key
== '\n' ? "" : post
, *kmap
, syn
);
364 if (!pref
|| !pref
[0]) { /* updating autoindent */
365 int ai_len
= ai_max
? strlen(ai
) : 0;
367 if (ai_len
+ ai_new
> ai_max
)
368 ai_new
= ai_max
- ai_len
;
369 memcpy(ai
+ ai_len
, ln
, ai_new
);
370 ai
[ai_len
+ ai_new
] = '\0';
378 while (xai
&& (post
[n
] == ' ' || post
[n
] == '\t'))
380 memmove(post
, post
+ n
, strlen(post
) - n
+ 1);
384 return sbuf_done(sb
);