Xinqi Bao's Git
1474c531dcb4ab9086b7bf718019b0d2527b15af
1 /* See LICENSE for licence details. */
2 #define _XOPEN_SOURCE 600
13 #include <sys/ioctl.h>
14 #include <sys/select.h>
16 #include <sys/types.h>
20 #include <X11/keysym.h>
21 #include <X11/Xutil.h>
25 #elif defined(__OpenBSD__) || defined(__NetBSD__)
27 #elif defined(__FreeBSD__) || defined(__DragonFly__)
32 #define ESC_TITLE_SIZ 256
33 #define ESC_BUF_SIZ 256
34 #define ESC_ARG_SIZ 16
35 #define DRAW_BUF_SIZ 1024
37 #define SERRNO strerror(errno)
38 #define MIN(a, b) ((a) < (b) ? (a) : (b))
39 #define MAX(a, b) ((a) < (b) ? (b) : (a))
40 #define LEN(a) (sizeof(a) / sizeof(a[0]))
41 #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
42 #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
43 #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
44 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
45 #define IS_SET(flag) (term.mode & (flag))
47 /* Attribute, Cursor, Character state, Terminal mode, Screen draw mode */
48 enum { ATTR_NULL
=0 , ATTR_REVERSE
=1 , ATTR_UNDERLINE
=2, ATTR_BOLD
=4, ATTR_GFX
=8 };
49 enum { CURSOR_UP
, CURSOR_DOWN
, CURSOR_LEFT
, CURSOR_RIGHT
,
50 CURSOR_SAVE
, CURSOR_LOAD
};
51 enum { CURSOR_DEFAULT
= 0, CURSOR_HIDE
= 1, CURSOR_WRAPNEXT
= 2 };
52 enum { GLYPH_SET
=1, GLYPH_DIRTY
=2 };
53 enum { MODE_WRAP
=1, MODE_INSERT
=2, MODE_APPKEYPAD
=4, MODE_ALTSCREEN
=8 };
54 enum { ESC_START
=1, ESC_CSI
=2, ESC_OSC
=4, ESC_TITLE
=8, ESC_ALTCHARSET
=16 };
55 enum { SCREEN_UPDATE
, SCREEN_REDRAW
};
58 char c
; /* character code */
59 char mode
; /* attribute flags */
60 int fg
; /* foreground */
61 int bg
; /* background */
62 char state
; /* state flags */
68 Glyph attr
; /* current char attributes */
74 /* CSI Escape sequence structs */
75 /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
77 char buf
[ESC_BUF_SIZ
]; /* raw string */
78 int len
; /* raw string length */
81 int narg
; /* nb of args */
85 /* Internal representation of the screen */
89 Line
* line
; /* screen */
90 Line
* alt
; /* alternate screen */
91 TCursor c
; /* cursor */
92 int top
; /* top scroll limit */
93 int bot
; /* bottom scroll limit */
94 int mode
; /* terminal mode flags */
95 int esc
; /* escape state flags */
96 char title
[ESC_TITLE_SIZ
];
100 /* Purely graphic info */
106 int w
; /* window width */
107 int h
; /* window height */
108 int bufw
; /* pixmap width */
109 int bufh
; /* pixmap height */
110 int ch
; /* char height */
111 int cw
; /* char width */
120 /* Drawing Context */
122 unsigned long col
[256];
138 static void die(const char *errstr
, ...);
139 static void draw(int);
140 static void execsh(void);
141 static void sigchld(int);
142 static void run(void);
144 static void csidump(void);
145 static void csihandle(void);
146 static void csiparse(void);
147 static void csireset(void);
149 static void tclearregion(int, int, int, int);
150 static void tcursor(int);
151 static void tdeletechar(int);
152 static void tdeleteline(int);
153 static void tinsertblank(int);
154 static void tinsertblankline(int);
155 static void tmoveto(int, int);
156 static void tnew(int, int);
157 static void tnewline(void);
158 static void tputtab(void);
159 static void tputc(char);
160 static void tputs(char*, int);
161 static void treset(void);
162 static void tresize(int, int);
163 static void tscrollup(int);
164 static void tscrolldown(int);
165 static void tsetattr(int*, int);
166 static void tsetchar(char);
167 static void tsetscroll(int, int);
168 static void tswapscreen(void);
170 static void ttynew(void);
171 static void ttyread(void);
172 static void ttyresize(int, int);
173 static void ttywrite(const char *, size_t);
175 static void xdraws(char *, Glyph
, int, int, int);
176 static void xhints(void);
177 static void xclear(int, int, int, int);
178 static void xdrawcursor(void);
179 static void xinit(void);
180 static void xloadcols(void);
181 static void xseturgency(int);
183 static void expose(XEvent
*);
184 static char* kmap(KeySym
);
185 static void kpress(XEvent
*);
186 static void resize(XEvent
*);
187 static void focus(XEvent
*);
188 static void brelease(XEvent
*);
189 static void bpress(XEvent
*);
190 static void bmotion(XEvent
*);
193 static void (*handler
[LASTEvent
])(XEvent
*) = {
196 [ConfigureNotify
] = resize
,
199 [MotionNotify
] = bmotion
,
200 [ButtonPress
] = bpress
,
201 [ButtonRelease
] = brelease
,
208 static CSIEscape escseq
;
211 static Selection sel
;
220 static inline int selected(int x
, int y
) {
221 if ((sel
.ey
==y
&& sel
.by
==y
)) {
222 int bx
= MIN(sel
.bx
, sel
.ex
);
223 int ex
= MAX(sel
.bx
, sel
.ex
);
224 return (x
>=bx
&& x
<=ex
);
226 return (((y
>sel
.b
[1] && y
<sel
.e
[1]) || (y
==sel
.e
[1] && x
<=sel
.e
[0])) || \
227 (y
==sel
.b
[1] && x
>=sel
.b
[0] && (x
<=sel
.e
[0] || sel
.b
[1]!=sel
.e
[1])));
230 static void getbuttoninfo(XEvent
*e
, int *b
, int *x
, int *y
) {
231 if(b
) *b
= e
->xbutton
.state
,
232 *b
=*b
==4096?5:*b
==2048?4:*b
==1024?3:*b
==512?2:*b
==256?1:-1;
233 *x
= e
->xbutton
.x
/xw
.cw
;
234 *y
= e
->xbutton
.y
/xw
.ch
;
235 sel
.b
[0] = sel
.by
<sel
.ey
?sel
.bx
:sel
.ex
;
236 sel
.b
[1] = MIN(sel
.by
, sel
.ey
);
237 sel
.e
[0] = sel
.by
<sel
.ey
?sel
.ex
:sel
.bx
;
238 sel
.e
[1] = MAX(sel
.by
, sel
.ey
);
241 static void bpress(XEvent
*e
) {
243 sel
.ex
= sel
.bx
= e
->xbutton
.x
/xw
.cw
;
244 sel
.ey
= sel
.by
= e
->xbutton
.y
/xw
.ch
;
247 static char *getseltext() {
252 sz
= ((xw
.w
/xw
.ch
) * (sel
.e
[1]-sel
.b
[1]+2));
253 ptr
= str
= malloc (sz
);
254 for(y
= 0; y
< term
.row
; y
++) {
255 for(x
= 0; x
< term
.col
; x
++) {
256 if(term
.line
[y
][x
].state
& GLYPH_SET
&& (ls
=selected(x
, y
))) {
257 *ptr
= term
.line
[y
][x
].c
;
270 /* TODO: use X11 clipboard */
271 static void selcopy(char *str
) {
276 static void selpaste() {
278 ttywrite(sel
.clip
, strlen(sel
.clip
));
281 /* TODO: doubleclick to select word */
282 static void brelease(XEvent
*e
) {
285 getbuttoninfo(e
, &b
, &sel
.ex
, &sel
.ey
);
292 if(sel
.bx
==sel
.ex
&& sel
.by
==sel
.ey
) {
298 selcopy(getseltext());
303 static void bmotion(XEvent
*e
) {
305 getbuttoninfo(e
, NULL
, &sel
.ex
, &sel
.ey
);
316 for(row
= 0; row
< term
.row
; row
++) {
317 for(col
= 0; col
< term
.col
; col
++) {
318 if(col
== term
.c
.x
&& row
== term
.c
.y
)
321 c
= term
.line
[row
][col
];
322 putchar(c
.state
& GLYPH_SET
? c
.c
: '.');
331 die(const char *errstr
, ...) {
334 va_start(ap
, errstr
);
335 vfprintf(stderr
, errstr
, ap
);
342 char *args
[3] = {getenv("SHELL"), "-i", NULL
};
343 DEFAULT(args
[0], SHELL
); /* if getenv() failed */
344 putenv("TERM=" TNAME
);
345 execvp(args
[0], args
);
351 if(waitpid(pid
, &stat
, 0) < 0)
352 die("Waiting for pid %hd failed: %s\n", pid
, SERRNO
);
354 exit(WEXITSTATUS(stat
));
363 /* seems to work fine on linux, openbsd and freebsd */
364 struct winsize w
= {term
.row
, term
.col
, 0, 0};
365 if(openpty(&m
, &s
, NULL
, NULL
, &w
) < 0)
366 die("openpty failed: %s\n", SERRNO
);
368 switch(pid
= fork()) {
370 die("fork failed\n");
373 setsid(); /* create a new process group */
374 dup2(s
, STDIN_FILENO
);
375 dup2(s
, STDOUT_FILENO
);
376 dup2(s
, STDERR_FILENO
);
377 if(ioctl(s
, TIOCSCTTY
, NULL
) < 0)
378 die("ioctl TIOCSCTTY failed: %s\n", SERRNO
);
386 signal(SIGCHLD
, sigchld
);
393 fprintf(stderr
, " %02x '%c' ", c
, isprint(c
)?c
:'.');
395 fprintf(stderr
, "\n");
400 char buf
[BUFSIZ
] = {0};
403 if((ret
= read(cmdfd
, buf
, BUFSIZ
)) < 0)
404 die("Couldn't read from shell: %s\n", SERRNO
);
410 ttywrite(const char *s
, size_t n
) {
411 if(write(cmdfd
, s
, n
) == -1)
412 die("write error on tty: %s\n", SERRNO
);
416 ttyresize(int x
, int y
) {
421 w
.ws_xpixel
= w
.ws_ypixel
= 0;
422 if(ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
423 fprintf(stderr
, "Couldn't set window size: %s\n", SERRNO
);
430 if(mode
== CURSOR_SAVE
)
432 else if(mode
== CURSOR_LOAD
)
433 term
.c
= c
, tmoveto(c
.x
, c
.y
);
442 }, .x
= 0, .y
= 0, .state
= CURSOR_DEFAULT
};
444 term
.top
= 0, term
.bot
= term
.row
- 1;
445 term
.mode
= MODE_WRAP
;
446 tclearregion(0, 0, term
.col
-1, term
.row
-1);
450 tnew(int col
, int row
) {
451 /* set screen size */
452 term
.row
= row
, term
.col
= col
;
453 term
.line
= malloc(term
.row
* sizeof(Line
));
454 term
.alt
= malloc(term
.row
* sizeof(Line
));
455 for(row
= 0 ; row
< term
.row
; row
++) {
456 term
.line
[row
] = malloc(term
.col
* sizeof(Glyph
));
457 term
.alt
[row
] = malloc(term
.col
* sizeof(Glyph
));
465 Line
* tmp
= term
.line
;
466 term
.line
= term
.alt
;
468 term
.mode
^= MODE_ALTSCREEN
;
472 tscrolldown (int n
) {
476 LIMIT(n
, 0, term
.bot
-term
.top
+1);
478 for(i
= 0; i
< n
; i
++)
479 memset(term
.line
[term
.bot
-i
], 0, term
.col
*sizeof(Glyph
));
481 for(i
= term
.bot
; i
>= term
.top
+n
; i
--) {
483 term
.line
[i
] = term
.line
[i
-n
];
484 term
.line
[i
-n
] = temp
;
492 LIMIT(n
, 0, term
.bot
-term
.top
+1);
494 for(i
= 0; i
< n
; i
++)
495 memset(term
.line
[term
.top
+i
], 0, term
.col
*sizeof(Glyph
));
497 for(i
= term
.top
; i
<= term
.bot
-n
; i
++) {
499 term
.line
[i
] = term
.line
[i
+n
];
500 term
.line
[i
+n
] = temp
;
506 int y
= term
.c
.y
+ 1;
508 tscrollup(1), y
= term
.bot
;
515 char *p
= escseq
.buf
;
519 escseq
.priv
= 1, p
++;
521 while(p
< escseq
.buf
+escseq
.len
) {
523 escseq
.arg
[escseq
.narg
] *= 10;
524 escseq
.arg
[escseq
.narg
] += *p
++ - '0'/*, noarg = 0 */;
526 if(*p
== ';' && escseq
.narg
+1 < ESC_ARG_SIZ
)
537 tmoveto(int x
, int y
) {
538 LIMIT(x
, 0, term
.col
-1);
539 LIMIT(y
, 0, term
.row
-1);
540 term
.c
.state
&= ~CURSOR_WRAPNEXT
;
547 term
.line
[term
.c
.y
][term
.c
.x
] = term
.c
.attr
;
548 term
.line
[term
.c
.y
][term
.c
.x
].c
= c
;
549 term
.line
[term
.c
.y
][term
.c
.x
].state
|= GLYPH_SET
;
553 tclearregion(int x1
, int y1
, int x2
, int y2
) {
557 temp
= x1
, x1
= x2
, x2
= temp
;
559 temp
= y1
, y1
= y2
, y2
= temp
;
561 LIMIT(x1
, 0, term
.col
-1);
562 LIMIT(x2
, 0, term
.col
-1);
563 LIMIT(y1
, 0, term
.row
-1);
564 LIMIT(y2
, 0, term
.row
-1);
566 for(y
= y1
; y
<= y2
; y
++)
567 memset(&term
.line
[y
][x1
], 0, sizeof(Glyph
)*(x2
-x1
+1));
572 int src
= term
.c
.x
+ n
;
574 int size
= term
.col
- src
;
576 if(src
>= term
.col
) {
577 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
580 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
], size
* sizeof(Glyph
));
581 tclearregion(term
.col
-n
, term
.c
.y
, term
.col
-1, term
.c
.y
);
585 tinsertblank(int n
) {
588 int size
= term
.col
- dst
;
590 if(dst
>= term
.col
) {
591 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
594 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
], size
* sizeof(Glyph
));
595 tclearregion(src
, term
.c
.y
, dst
- 1, term
.c
.y
);
599 tinsertblankline(int n
) {
604 if(term
.c
.y
> term
.bot
)
606 else if(term
.c
.y
< term
.top
)
608 if(term
.c
.y
+ n
>= bot
) {
609 tclearregion(0, term
.c
.y
, term
.col
-1, bot
);
612 for(i
= bot
; i
>= term
.c
.y
+n
; i
--) {
613 /* swap deleted line <-> blanked line */
614 blank
= term
.line
[i
];
615 term
.line
[i
] = term
.line
[i
-n
];
616 term
.line
[i
-n
] = blank
;
618 memset(blank
, 0, term
.col
* sizeof(Glyph
));
628 if(term
.c
.y
> term
.bot
)
630 else if(term
.c
.y
< term
.top
)
632 if(term
.c
.y
+ n
>= bot
) {
633 tclearregion(0, term
.c
.y
, term
.col
-1, bot
);
636 for(i
= term
.c
.y
; i
<= bot
-n
; i
++) {
637 /* swap deleted line <-> blanked line */
638 blank
= term
.line
[i
];
639 term
.line
[i
] = term
.line
[i
+n
];
640 term
.line
[i
+n
] = blank
;
642 memset(blank
, 0, term
.col
* sizeof(Glyph
));
647 tsetattr(int *attr
, int l
) {
650 for(i
= 0; i
< l
; i
++) {
653 term
.c
.attr
.mode
&= ~(ATTR_REVERSE
| ATTR_UNDERLINE
| ATTR_BOLD
);
654 term
.c
.attr
.fg
= DefaultFG
;
655 term
.c
.attr
.bg
= DefaultBG
;
658 term
.c
.attr
.mode
|= ATTR_BOLD
;
661 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
664 term
.c
.attr
.mode
|= ATTR_REVERSE
;
667 term
.c
.attr
.mode
&= ~ATTR_BOLD
;
670 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
673 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
676 if (i
+ 2 < l
&& attr
[i
+ 1] == 5) {
678 if (BETWEEN(attr
[i
], 0, 255))
679 term
.c
.attr
.fg
= attr
[i
];
681 fprintf(stderr
, "erresc: bad fgcolor %d\n", attr
[i
]);
684 fprintf(stderr
, "erresc: gfx attr %d unknown\n", attr
[i
]);
687 term
.c
.attr
.fg
= DefaultFG
;
690 if (i
+ 2 < l
&& attr
[i
+ 1] == 5) {
692 if (BETWEEN(attr
[i
], 0, 255))
693 term
.c
.attr
.bg
= attr
[i
];
695 fprintf(stderr
, "erresc: bad bgcolor %d\n", attr
[i
]);
698 fprintf(stderr
, "erresc: gfx attr %d unknown\n", attr
[i
]);
701 term
.c
.attr
.bg
= DefaultBG
;
704 if(BETWEEN(attr
[i
], 30, 37))
705 term
.c
.attr
.fg
= attr
[i
] - 30;
706 else if(BETWEEN(attr
[i
], 40, 47))
707 term
.c
.attr
.bg
= attr
[i
] - 40;
708 else if(BETWEEN(attr
[i
], 90, 97))
709 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
710 else if(BETWEEN(attr
[i
], 100, 107))
711 term
.c
.attr
.fg
= attr
[i
] - 100 + 8;
713 fprintf(stderr
, "erresc: gfx attr %d unknown\n", attr
[i
]);
720 tsetscroll(int t
, int b
) {
723 LIMIT(t
, 0, term
.row
-1);
724 LIMIT(b
, 0, term
.row
-1);
736 switch(escseq
.mode
) {
739 printf("erresc: unknown csi ");
743 case '@': /* ICH -- Insert <n> blank char */
744 DEFAULT(escseq
.arg
[0], 1);
745 tinsertblank(escseq
.arg
[0]);
747 case 'A': /* CUU -- Cursor <n> Up */
749 DEFAULT(escseq
.arg
[0], 1);
750 tmoveto(term
.c
.x
, term
.c
.y
-escseq
.arg
[0]);
752 case 'B': /* CUD -- Cursor <n> Down */
753 DEFAULT(escseq
.arg
[0], 1);
754 tmoveto(term
.c
.x
, term
.c
.y
+escseq
.arg
[0]);
756 case 'C': /* CUF -- Cursor <n> Forward */
758 DEFAULT(escseq
.arg
[0], 1);
759 tmoveto(term
.c
.x
+escseq
.arg
[0], term
.c
.y
);
761 case 'D': /* CUB -- Cursor <n> Backward */
762 DEFAULT(escseq
.arg
[0], 1);
763 tmoveto(term
.c
.x
-escseq
.arg
[0], term
.c
.y
);
765 case 'E': /* CNL -- Cursor <n> Down and first col */
766 DEFAULT(escseq
.arg
[0], 1);
767 tmoveto(0, term
.c
.y
+escseq
.arg
[0]);
769 case 'F': /* CPL -- Cursor <n> Up and first col */
770 DEFAULT(escseq
.arg
[0], 1);
771 tmoveto(0, term
.c
.y
-escseq
.arg
[0]);
773 case 'G': /* CHA -- Move to <col> */
774 case '`': /* XXX: HPA -- same? */
775 DEFAULT(escseq
.arg
[0], 1);
776 tmoveto(escseq
.arg
[0]-1, term
.c
.y
);
778 case 'H': /* CUP -- Move to <row> <col> */
779 case 'f': /* XXX: HVP -- same? */
780 DEFAULT(escseq
.arg
[0], 1);
781 DEFAULT(escseq
.arg
[1], 1);
782 tmoveto(escseq
.arg
[1]-1, escseq
.arg
[0]-1);
784 /* XXX: (CSI n I) CHT -- Cursor Forward Tabulation <n> tab stops */
785 case 'J': /* ED -- Clear screen */
786 switch(escseq
.arg
[0]) {
788 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.row
-1);
791 tclearregion(0, 0, term
.c
.x
, term
.c
.y
);
794 tclearregion(0, 0, term
.col
-1, term
.row
-1);
800 case 'K': /* EL -- Clear line */
801 switch(escseq
.arg
[0]) {
803 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
806 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
809 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
);
813 case 'S': /* SU -- Scroll <n> line up */
814 DEFAULT(escseq
.arg
[0], 1);
815 tscrollup(escseq
.arg
[0]);
817 case 'T': /* SD -- Scroll <n> line down */
818 DEFAULT(escseq
.arg
[0], 1);
819 tscrolldown(escseq
.arg
[0]);
821 case 'L': /* IL -- Insert <n> blank lines */
822 DEFAULT(escseq
.arg
[0], 1);
823 tinsertblankline(escseq
.arg
[0]);
825 case 'l': /* RM -- Reset Mode */
827 switch(escseq
.arg
[0]) {
829 term
.mode
&= ~MODE_APPKEYPAD
;
832 term
.mode
&= ~MODE_WRAP
;
834 case 12: /* att610 -- Stop blinking cursor (IGNORED) */
837 term
.c
.state
|= CURSOR_HIDE
;
839 case 1049: /* = 1047 and 1048 */
841 if(IS_SET(MODE_ALTSCREEN
)) {
842 tclearregion(0, 0, term
.col
-1, term
.row
-1);
845 if(escseq
.arg
[0] == 1047)
848 tcursor(CURSOR_LOAD
);
854 switch(escseq
.arg
[0]) {
856 term
.mode
&= ~MODE_INSERT
;
863 case 'M': /* DL -- Delete <n> lines */
864 DEFAULT(escseq
.arg
[0], 1);
865 tdeleteline(escseq
.arg
[0]);
867 case 'X': /* ECH -- Erase <n> char */
868 DEFAULT(escseq
.arg
[0], 1);
869 tclearregion(term
.c
.x
, term
.c
.y
, term
.c
.x
+ escseq
.arg
[0], term
.c
.y
);
871 case 'P': /* DCH -- Delete <n> char */
872 DEFAULT(escseq
.arg
[0], 1);
873 tdeletechar(escseq
.arg
[0]);
875 /* XXX: (CSI n Z) CBT -- Cursor Backward Tabulation <n> tab stops */
876 case 'd': /* VPA -- Move to <row> */
877 DEFAULT(escseq
.arg
[0], 1);
878 tmoveto(term
.c
.x
, escseq
.arg
[0]-1);
880 case 'h': /* SM -- Set terminal mode */
882 switch(escseq
.arg
[0]) {
884 term
.mode
|= MODE_APPKEYPAD
;
887 term
.mode
|= MODE_WRAP
;
889 case 12: /* att610 -- Start blinking cursor (IGNORED) */
892 term
.c
.state
&= ~CURSOR_HIDE
;
894 case 1049: /* = 1047 and 1048 */
896 if(IS_SET(MODE_ALTSCREEN
))
897 tclearregion(0, 0, term
.col
-1, term
.row
-1);
900 if(escseq
.arg
[0] == 1047)
903 tcursor(CURSOR_SAVE
);
905 default: goto unknown
;
908 switch(escseq
.arg
[0]) {
910 term
.mode
|= MODE_INSERT
;
912 default: goto unknown
;
916 case 'm': /* SGR -- Terminal attribute (color) */
917 tsetattr(escseq
.arg
, escseq
.narg
);
919 case 'r': /* DECSTBM -- Set Scrolling Region */
923 DEFAULT(escseq
.arg
[0], 1);
924 DEFAULT(escseq
.arg
[1], term
.row
);
925 tsetscroll(escseq
.arg
[0]-1, escseq
.arg
[1]-1);
929 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
930 tcursor(CURSOR_SAVE
);
932 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
933 tcursor(CURSOR_LOAD
);
941 printf("ESC [ %s", escseq
.priv
? "? " : "");
943 for(i
= 0; i
< escseq
.narg
; i
++)
944 printf("%d ", escseq
.arg
[i
]);
946 putchar(escseq
.mode
);
952 memset(&escseq
, 0, sizeof(escseq
));
957 int space
= TAB
- term
.c
.x
% TAB
;
958 tmoveto(term
.c
.x
+ space
, term
.c
.y
);
963 if(term
.esc
& ESC_START
) {
964 if(term
.esc
& ESC_CSI
) {
965 escseq
.buf
[escseq
.len
++] = c
;
966 if(BETWEEN(c
, 0x40, 0x7E) || escseq
.len
>= ESC_BUF_SIZ
) {
968 csiparse(), csihandle();
970 } else if(term
.esc
& ESC_OSC
) {
973 term
.esc
= ESC_START
| ESC_TITLE
;
975 } else if(term
.esc
& ESC_TITLE
) {
976 if(c
== '\a' || term
.titlelen
+1 >= ESC_TITLE_SIZ
) {
978 term
.title
[term
.titlelen
] = '\0';
979 XStoreName(xw
.dis
, xw
.win
, term
.title
);
981 term
.title
[term
.titlelen
++] = c
;
983 } else if(term
.esc
& ESC_ALTCHARSET
) {
985 case '0': /* Line drawing crap */
986 term
.c
.attr
.mode
|= ATTR_GFX
;
988 case 'B': /* Back to regular text */
989 term
.c
.attr
.mode
&= ~ATTR_GFX
;
992 printf("esc unhandled charset: ESC ( %c\n", c
);
1001 term
.esc
|= ESC_OSC
;
1004 term
.esc
|= ESC_ALTCHARSET
;
1006 case 'D': /* IND -- Linefeed */
1007 if(term
.c
.y
== term
.bot
)
1010 tmoveto(term
.c
.x
, term
.c
.y
+1);
1013 case 'E': /* NEL -- Next line */
1017 case 'M': /* RI -- Reverse index */
1018 if(term
.c
.y
== term
.top
)
1021 tmoveto(term
.c
.x
, term
.c
.y
-1);
1024 case 'c': /* RIS -- Reset to inital state */
1028 case '=': /* DECPAM -- Application keypad */
1029 term
.mode
|= MODE_APPKEYPAD
;
1032 case '>': /* DECPNM -- Normal keypad */
1033 term
.mode
&= ~MODE_APPKEYPAD
;
1036 case '7': /* DECSC -- Save Cursor */
1037 tcursor(CURSOR_SAVE
);
1040 case '8': /* DECRC -- Restore Cursor */
1041 tcursor(CURSOR_LOAD
);
1045 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n", c
, isprint(c
)?c
:'.');
1055 tmoveto(term
.c
.x
-1, term
.c
.y
);
1058 tmoveto(0, term
.c
.y
);
1069 term
.esc
= ESC_START
;
1072 if(IS_SET(MODE_WRAP
) && term
.c
.state
& CURSOR_WRAPNEXT
)
1075 if(term
.c
.x
+1 < term
.col
)
1076 tmoveto(term
.c
.x
+1, term
.c
.y
);
1078 term
.c
.state
|= CURSOR_WRAPNEXT
;
1085 tputs(char *s
, int len
) {
1086 for(; len
> 0; len
--)
1091 tresize(int col
, int row
) {
1093 int minrow
= MIN(row
, term
.row
);
1094 int mincol
= MIN(col
, term
.col
);
1096 if(col
< 1 || row
< 1)
1099 /* free uneeded rows */
1100 for(i
= row
; i
< term
.row
; i
++) {
1105 /* resize to new height */
1106 term
.line
= realloc(term
.line
, row
* sizeof(Line
));
1107 term
.alt
= realloc(term
.alt
, row
* sizeof(Line
));
1109 /* resize each row to new width, zero-pad if needed */
1110 for(i
= 0; i
< minrow
; i
++) {
1111 term
.line
[i
] = realloc(term
.line
[i
], col
* sizeof(Glyph
));
1112 term
.alt
[i
] = realloc(term
.alt
[i
], col
* sizeof(Glyph
));
1113 memset(term
.line
[i
] + mincol
, 0, (col
- mincol
) * sizeof(Glyph
));
1114 memset(term
.alt
[i
] + mincol
, 0, (col
- mincol
) * sizeof(Glyph
));
1117 /* allocate any new rows */
1118 for(/* i == minrow */; i
< row
; i
++) {
1119 term
.line
[i
] = calloc(col
, sizeof(Glyph
));
1120 term
.alt
[i
] = calloc(col
, sizeof(Glyph
));
1123 /* update terminal size */
1124 term
.col
= col
, term
.row
= row
;
1125 /* make use of the LIMIT in tmoveto */
1126 tmoveto(term
.c
.x
, term
.c
.y
);
1127 /* reset scrolling region */
1128 tsetscroll(0, row
-1);
1135 Colormap cmap
= DefaultColormap(xw
.dis
, xw
.scr
);
1136 unsigned long white
= WhitePixel(xw
.dis
, xw
.scr
);
1138 for(i
= 0; i
< 16; i
++) {
1139 if (!XAllocNamedColor(xw
.dis
, cmap
, colorname
[i
], &color
, &color
)) {
1141 fprintf(stderr
, "Could not allocate color '%s'\n", colorname
[i
]);
1143 dc
.col
[i
] = color
.pixel
;
1146 /* same colors as xterm */
1147 for(r
= 0; r
< 6; r
++)
1148 for(g
= 0; g
< 6; g
++)
1149 for(b
= 0; b
< 6; b
++) {
1150 color
.red
= r
== 0 ? 0 : 0x3737 + 0x2828 * r
;
1151 color
.green
= g
== 0 ? 0 : 0x3737 + 0x2828 * g
;
1152 color
.blue
= b
== 0 ? 0 : 0x3737 + 0x2828 * b
;
1153 if (!XAllocColor(xw
.dis
, cmap
, &color
)) {
1155 fprintf(stderr
, "Could not allocate color %d\n", i
);
1157 dc
.col
[i
] = color
.pixel
;
1161 for(r
= 0; r
< 24; r
++, i
++) {
1162 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * r
;
1163 if (!XAllocColor(xw
.dis
, cmap
, &color
)) {
1165 fprintf(stderr
, "Could not allocate color %d\n", i
);
1167 dc
.col
[i
] = color
.pixel
;
1172 xclear(int x1
, int y1
, int x2
, int y2
) {
1173 XSetForeground(xw
.dis
, dc
.gc
, dc
.col
[DefaultBG
]);
1174 XFillRectangle(xw
.dis
, xw
.buf
, dc
.gc
,
1175 x1
* xw
.cw
, y1
* xw
.ch
,
1176 (x2
-x1
+1) * xw
.cw
, (y2
-y1
+1) * xw
.ch
);
1182 XClassHint
class = {TNAME
, TNAME
};
1183 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
1185 .flags
= PSize
| PResizeInc
| PBaseSize
,
1188 .height_inc
= xw
.ch
,
1190 .base_height
= 2*BORDER
,
1191 .base_width
= 2*BORDER
,
1193 XSetWMProperties(xw
.dis
, xw
.win
, NULL
, NULL
, NULL
, 0, &size
, &wm
, &class);
1198 if(!(xw
.dis
= XOpenDisplay(NULL
)))
1199 die("Can't open display\n");
1200 xw
.scr
= XDefaultScreen(xw
.dis
);
1203 if(!(dc
.font
= XLoadQueryFont(xw
.dis
, FONT
)) || !(dc
.bfont
= XLoadQueryFont(xw
.dis
, BOLDFONT
)))
1204 die("Can't load font %s\n", dc
.font
? BOLDFONT
: FONT
);
1206 /* XXX: Assuming same size for bold font */
1207 xw
.cw
= dc
.font
->max_bounds
.rbearing
- dc
.font
->min_bounds
.lbearing
;
1208 xw
.ch
= dc
.font
->ascent
+ dc
.font
->descent
;
1214 xw
.h
= term
.row
* xw
.ch
+ 2*BORDER
;
1215 xw
.w
= term
.col
* xw
.cw
+ 2*BORDER
;
1216 xw
.win
= XCreateSimpleWindow(xw
.dis
, XRootWindow(xw
.dis
, xw
.scr
), 0, 0,
1220 xw
.bufw
= xw
.w
- 2*BORDER
;
1221 xw
.bufh
= xw
.h
- 2*BORDER
;
1222 xw
.buf
= XCreatePixmap(xw
.dis
, xw
.win
, xw
.bufw
, xw
.bufh
, XDefaultDepth(xw
.dis
, xw
.scr
));
1224 dc
.gc
= XCreateGC(xw
.dis
, xw
.win
, 0, NULL
);
1227 XSelectInput(xw
.dis
, xw
.win
, ExposureMask
| KeyPressMask
1228 | StructureNotifyMask
| FocusChangeMask
| PointerMotionMask
1229 | ButtonPressMask
| ButtonReleaseMask
);
1231 XMapWindow(xw
.dis
, xw
.win
);
1233 XStoreName(xw
.dis
, xw
.win
, "st");
1238 xdraws(char *s
, Glyph base
, int x
, int y
, int len
) {
1239 unsigned long xfg
, xbg
;
1240 int winx
= x
*xw
.cw
, winy
= y
*xw
.ch
+ dc
.font
->ascent
, width
= len
*xw
.cw
;
1243 if(base
.mode
& ATTR_REVERSE
)
1244 xfg
= dc
.col
[base
.bg
], xbg
= dc
.col
[base
.fg
];
1246 xfg
= dc
.col
[base
.fg
], xbg
= dc
.col
[base
.bg
];
1248 XSetBackground(xw
.dis
, dc
.gc
, xbg
);
1249 XSetForeground(xw
.dis
, dc
.gc
, xfg
);
1251 if(base
.mode
& ATTR_GFX
)
1252 for(i
= 0; i
< len
; i
++)
1253 s
[i
] = gfx
[(int)s
[i
]];
1255 XSetFont(xw
.dis
, dc
.gc
, base
.mode
& ATTR_BOLD
? dc
.bfont
->fid
: dc
.font
->fid
);
1256 XDrawImageString(xw
.dis
, xw
.buf
, dc
.gc
, winx
, winy
, s
, len
);
1258 if(base
.mode
& ATTR_UNDERLINE
)
1259 XDrawLine(xw
.dis
, xw
.buf
, dc
.gc
, winx
, winy
+1, winx
+width
-1, winy
+1);
1264 static int oldx
= 0;
1265 static int oldy
= 0;
1266 Glyph g
= {' ', ATTR_NULL
, DefaultBG
, DefaultCS
, 0};
1268 LIMIT(oldx
, 0, term
.col
-1);
1269 LIMIT(oldy
, 0, term
.row
-1);
1271 if(term
.line
[term
.c
.y
][term
.c
.x
].state
& GLYPH_SET
)
1272 g
.c
= term
.line
[term
.c
.y
][term
.c
.x
].c
;
1274 /* remove the old cursor */
1275 if(term
.line
[oldy
][oldx
].state
& GLYPH_SET
)
1276 xdraws(&term
.line
[oldy
][oldx
].c
, term
.line
[oldy
][oldx
], oldx
, oldy
, 1);
1278 xclear(oldx
, oldy
, oldx
, oldy
);
1280 /* draw the new one */
1281 if(!(term
.c
.state
& CURSOR_HIDE
) && xw
.hasfocus
) {
1282 xdraws(&g
.c
, g
, term
.c
.x
, term
.c
.y
, 1);
1283 oldx
= term
.c
.x
, oldy
= term
.c
.y
;
1288 /* basic drawing routines */
1290 xdrawc(int x
, int y
, Glyph g
) {
1291 XRectangle r
= { x
* xw
.cw
, y
* xw
.ch
, xw
.cw
, xw
.ch
};
1292 XSetBackground(xw
.dis
, dc
.gc
, dc
.col
[g
.bg
]);
1293 XSetForeground(xw
.dis
, dc
.gc
, dc
.col
[g
.fg
]);
1294 XSetFont(xw
.dis
, dc
.gc
, g
.mode
& ATTR_BOLD
? dc
.bfont
->fid
: dc
.font
->fid
);
1295 XDrawImageString(xw
.dis
, xw
.buf
, dc
.gc
, r
.x
, r
.y
+dc
.font
->ascent
, &g
.c
, 1);
1302 xclear(0, 0, term
.col
-1, term
.row
-1);
1303 for(y
= 0; y
< term
.row
; y
++)
1304 for(x
= 0; x
< term
.col
; x
++)
1305 if(term
.line
[y
][x
].state
& GLYPH_SET
)
1306 xdrawc(x
, y
, term
.line
[y
][x
]);
1309 XCopyArea(xw
.dis
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.bufw
, xw
.bufh
, BORDER
, BORDER
);
1314 /* optimized drawing routine */
1316 draw(int redraw_all
) {
1319 char buf
[DRAW_BUF_SIZ
];
1321 XSetForeground(xw
.dis
, dc
.gc
, dc
.col
[DefaultBG
]);
1322 XFillRectangle(xw
.dis
, xw
.buf
, dc
.gc
, 0, 0, xw
.bufw
, xw
.bufh
);
1323 for(y
= 0; y
< term
.row
; y
++) {
1324 base
= term
.line
[y
][0];
1326 for(x
= 0; x
< term
.col
; x
++) {
1327 new = term
.line
[y
][x
];
1328 if(sel
.bx
!=-1 && new.c
&& selected(x
, y
))
1329 new.mode
^= ATTR_REVERSE
;
1330 if(i
> 0 && (!(new.state
& GLYPH_SET
) || ATTRCMP(base
, new) ||
1331 i
>= DRAW_BUF_SIZ
)) {
1332 xdraws(buf
, base
, ox
, y
, i
);
1335 if(new.state
& GLYPH_SET
) {
1344 xdraws(buf
, base
, ox
, y
, i
);
1347 XCopyArea(xw
.dis
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.bufw
, xw
.bufh
, BORDER
, BORDER
);
1354 expose(XEvent
*ev
) {
1355 draw(SCREEN_REDRAW
);
1359 xseturgency(int add
) {
1360 XWMHints
*h
= XGetWMHints(xw
.dis
, xw
.win
);
1361 h
->flags
= add
? (h
->flags
| XUrgencyHint
) : (h
->flags
& ~XUrgencyHint
);
1362 XSetWMHints(xw
.dis
, xw
.win
, h
);
1368 if((xw
.hasfocus
= ev
->type
== FocusIn
))
1370 draw(SCREEN_UPDATE
);
1376 for(i
= 0; i
< LEN(key
); i
++)
1378 return (char*)key
[i
].s
;
1383 kpress(XEvent
*ev
) {
1384 XKeyEvent
*e
= &ev
->xkey
;
1392 meta
= e
->state
& Mod1Mask
;
1393 shift
= e
->state
& ShiftMask
;
1394 len
= XLookupString(e
, buf
, sizeof(buf
), &ksym
, NULL
);
1396 if((customkey
= kmap(ksym
)))
1397 ttywrite(customkey
, strlen(customkey
));
1399 buf
[sizeof(buf
)-1] = '\0';
1400 if(meta
&& len
== 1)
1401 ttywrite("\033", 1);
1409 sprintf(buf
, "\033%c%c", IS_SET(MODE_APPKEYPAD
) ? 'O' : '[', "DACB"[ksym
- XK_Left
]);
1414 draw(1), puts("draw!")/* XXX: paste X clipboard */;
1417 fprintf(stderr
, "errkey: %d\n", (int)ksym
);
1426 if(e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
1429 xw
.w
= e
->xconfigure
.width
;
1430 xw
.h
= e
->xconfigure
.height
;
1431 xw
.bufw
= xw
.w
- 2*BORDER
;
1432 xw
.bufh
= xw
.h
- 2*BORDER
;
1433 col
= xw
.bufw
/ xw
.cw
;
1434 row
= xw
.bufh
/ xw
.ch
;
1436 ttyresize(col
, row
);
1437 xw
.bufh
= MAX(1, xw
.bufh
);
1438 xw
.bufw
= MAX(1, xw
.bufw
);
1439 XFreePixmap(xw
.dis
, xw
.buf
);
1440 xw
.buf
= XCreatePixmap(xw
.dis
, xw
.win
, xw
.bufw
, xw
.bufh
, XDefaultDepth(xw
.dis
, xw
.scr
));
1441 draw(SCREEN_REDRAW
);
1448 int xfd
= XConnectionNumber(xw
.dis
);
1452 FD_SET(cmdfd
, &rfd
);
1454 if(select(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, NULL
) < 0) {
1457 die("select failed: %s\n", SERRNO
);
1459 if(FD_ISSET(cmdfd
, &rfd
)) {
1461 draw(SCREEN_UPDATE
);
1463 while(XPending(xw
.dis
)) {
1464 XNextEvent(xw
.dis
, &ev
);
1465 if(handler
[ev
.type
])
1466 (handler
[ev
.type
])(&ev
);
1472 main(int argc
, char *argv
[]) {
1473 if(argc
== 2 && !strncmp("-v", argv
[1], 3))
1474 die("st-" VERSION
", (c) 2010 st engineers\n");
1476 die("usage: st [-v]\n");
1477 setlocale(LC_CTYPE
, "");