aboutsummaryrefslogtreecommitdiff
path: root/toys
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2015-04-25 15:52:59 -0500
committerRob Landley <rob@landley.net>2015-04-25 15:52:59 -0500
commit53b0cb856deafa015626f21b5a2f972cddc015bd (patch)
treed134b80e8f9db2eec3aa7a87ee4ad96baa5800d7 /toys
parent9ac2d6546a2154a6797e12dfe86f36cc9420d6d4 (diff)
downloadtoybox-53b0cb856deafa015626f21b5a2f972cddc015bd.tar.gz
Fix display and cursor control (to respect bottom boundary).
No actual editing yet.
Diffstat (limited to 'toys')
-rw-r--r--toys/pending/hexedit.c69
1 files changed, 41 insertions, 28 deletions
diff --git a/toys/pending/hexedit.c b/toys/pending/hexedit.c
index f4b16537..727203c4 100644
--- a/toys/pending/hexedit.c
+++ b/toys/pending/hexedit.c
@@ -25,13 +25,6 @@ GLOBALS(
unsigned height;
)
-static void sigttyreset(int i)
-{
- set_terminal(1, 0, 0);
- // how do I re-raise the signal so it dies with right signal info for wait()?
- _exit(127);
-}
-
static void esc(char *s)
{
printf("\033[%s", s);
@@ -45,6 +38,21 @@ static void jump(x, y)
esc(s);
}
+static void fix_terminal(void)
+{
+ set_terminal(1, 0, 0);
+ esc("?25h");
+ esc("0m");
+ jump(0, 999);
+}
+
+static void sigttyreset(int i)
+{
+ fix_terminal();
+ // how do I re-raise the signal so it dies with right signal info for wait()?
+ _exit(127);
+}
+
static void draw_line(long long yy)
{
int x;
@@ -58,7 +66,23 @@ static void draw_line(long long yy)
else printf(" ");
}
printf(" ");
- for (x=0; x<16; x++) printf("X");
+ for (x=0; x<16; x++) {
+ char broiled = TT.data[yy+x];
+
+ if (broiled<32 || broiled>=127) {
+ if (broiled>127) {
+ esc("2m");
+ broiled &= 127;
+ }
+ if (broiled<32 || broiled==127) {
+ esc("7m");
+ if (broiled==127) broiled = 32;
+ else broiled += 64;
+ }
+ printf("%c", broiled);
+ esc("0m");
+ } else printf("%c", broiled);
+ }
}
esc("K");
}
@@ -100,6 +124,7 @@ void hexedit_main(void)
TT.height = 25;
terminal_size(0, &TT.height);
+ if (TT.height) TT.height--;
sigatexit(sigttyreset);
esc("0m");
esc("?25l");
@@ -127,18 +152,17 @@ void hexedit_main(void)
highlight(TT.data[pos], x, y);
fflush(0);
key = scan_key(toybuf, keys, 1);
- if (key==-1 || key==4 || key==27) break;
+ if (key==-1 || key==4 || key==27 || key=='q') break;
esc("0m");
highlight(TT.data[pos], x, y);
-//jump(73,0);
-//printf("%d[%c]", key, (key > 255) ? 'X' : key);
-
if (key==KEY_UP) {
if (--y<0) {
if (TT.base) {
TT.base--;
esc("1T");
+ jump(0, TT.height);
+ esc("K");
jump(0, 0);
draw_line(0);
}
@@ -163,31 +187,20 @@ void hexedit_main(void)
} else if (key==KEY_PGDN) {
TT.base += TT.height;
if ((TT.base*16)>=TT.len) TT.base=(TT.len-1)/16;
+ while ((TT.base+y)*16>=TT.len) y--;
+ if (16*(TT.base+y)+x>=TT.len) x = (TT.len-1)&15;
draw_page();
} else if (key==KEY_HOME) {
TT.base = 0;
+ x = 0;
draw_page();
} else if (key==KEY_END) {
TT.base=(TT.len-1)/16;
+ x = (TT.len-1)&15;
draw_page();
}
}
munmap(TT.data, TT.len);
close(fd);
- set_terminal(1, 0, 0);
- esc("?25h");
- esc("0m");
- jump(0, 999);
- xputc('\n');
-
-// DEBUG: dump unknown escape sequence
-for (;;) {
- key = scan_key(toybuf, keys, 0);
- if (key >= 0) printf("%d(%c) ", key, key);
- else {
- printf("%d\n", key);
- break;
- }
-}
-xputc('\n');
+ fix_terminal();
}