Xinqi Bao's Git
5715f0fc0d675c4a234f01792bc22476b5f1518d
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>
23 #define TNAME "st-256color"
26 #define ESC_TITLE_SIZ 256
27 #define ESC_BUF_SIZ 256
28 #define ESC_ARG_SIZ 16
29 #define DRAW_BUF_SIZ 1024
31 #define SERRNO strerror(errno)
32 #define MIN(a, b) ((a) < (b) ? (a) : (b))
33 #define MAX(a, b) ((a) < (b) ? (b) : (a))
34 #define LEN(a) (sizeof(a) / sizeof(a[0]))
35 #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
36 #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
37 #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
38 #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
40 /* Attribute, Cursor, Character state, Terminal mode, Screen draw mode */
41 enum { ATTR_NULL
=0 , ATTR_REVERSE
=1 , ATTR_UNDERLINE
=2, ATTR_BOLD
=4, ATTR_GFX
=8 };
42 enum { CURSOR_UP
, CURSOR_DOWN
, CURSOR_LEFT
, CURSOR_RIGHT
, CURSOR_HIDE
, CURSOR_DRAW
,
43 CURSOR_SAVE
, CURSOR_LOAD
};
44 enum { GLYPH_SET
=1, GLYPH_DIRTY
=2 };
45 enum { MODE_WRAP
=1, MODE_INSERT
=2, MODE_APPKEYPAD
=4 };
46 enum { ESC_START
=1, ESC_CSI
=2, ESC_OSC
=4, ESC_TITLE
=8, ESC_ALTCHARSET
=16 };
47 enum { SCREEN_UPDATE
, SCREEN_REDRAW
};
50 char c
; /* character code */
51 char mode
; /* attribute flags */
52 int fg
; /* foreground */
53 int bg
; /* background */
54 char state
; /* state flags */
60 Glyph attr
; /* current char attributes */
65 /* CSI Escape sequence structs */
66 /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
68 char buf
[ESC_BUF_SIZ
]; /* raw string */
69 int len
; /* raw string length */
72 int narg
; /* nb of args */
76 /* Internal representation of the screen */
80 Line
* line
; /* screen */
81 TCursor c
; /* cursor */
83 int top
; /* top scroll limit */
84 int bot
; /* bottom scroll limit */
85 int mode
; /* terminal mode flags */
86 int esc
; /* escape state flags */
87 char title
[ESC_TITLE_SIZ
];
91 /* Purely graphic info */
97 int w
; /* window width */
98 int h
; /* window height */
99 int bufw
; /* pixmap width */
100 int bufh
; /* pixmap height */
101 int ch
; /* char height */
102 int cw
; /* char width */
112 /* Drawing Context */
114 unsigned long col
[256];
120 static void die(const char *errstr
, ...);
121 static void draw(int);
122 static void execsh(void);
123 static void sigchld(int);
124 static void run(void);
126 static void csidump(void);
127 static void csihandle(void);
128 static void csiparse(void);
129 static void csireset(void);
131 static void tclearregion(int, int, int, int);
132 static void tcursor(int);
133 static void tmovecursor(int);
134 static void tdeletechar(int);
135 static void tdeleteline(int);
136 static void tinsertblank(int);
137 static void tinsertblankline(int);
138 static void tmoveto(int, int);
139 static void tnew(int, int);
140 static void tnewline(void);
141 static void tputc(char);
142 static void tputs(char*, int);
143 static void treset(void);
144 static void tresize(int, int);
145 static void tscroll(void);
146 static void tscrollup(int);
147 static void tscrolldown(int);
148 static void tsetattr(int*, int);
149 static void tsetchar(char);
150 static void tsetscroll(int, int);
152 static void ttynew(void);
153 static void ttyread(void);
154 static void ttyresize(int, int);
155 static void ttywrite(const char *, size_t);
157 static void xclear(int, int, int, int);
158 static void xcursor(int);
159 static void xinit(void);
161 static void expose(XEvent
*);
162 static char* kmap(KeySym
);
163 static void kpress(XEvent
*);
164 static void resize(XEvent
*);
166 static void (*handler
[LASTEvent
])(XEvent
*) = {
169 [ConfigureNotify
] = resize
176 static CSIEscape escseq
;
187 for(row
= 0; row
< term
.row
; row
++) {
188 for(col
= 0; col
< term
.col
; col
++) {
189 if(col
== term
.c
.x
&& row
== term
.c
.y
)
192 c
= term
.line
[row
][col
];
193 putchar(c
.state
& GLYPH_SET
? c
.c
: '.');
202 die(const char *errstr
, ...) {
205 va_start(ap
, errstr
);
206 vfprintf(stderr
, errstr
, ap
);
213 char *args
[3] = {getenv("SHELL"), "-i", NULL
};
214 DEFAULT(args
[0], "/bin/sh"); /* default shell if getenv() failed */
215 putenv("TERM=" TNAME
);
216 execvp(args
[0], args
);
220 xbell(void) { /* visual bell */
221 XRectangle r
= { BORDER
, BORDER
, xw
.bufw
, xw
.bufh
};
222 XSetForeground(xw
.dis
, dc
.gc
, dc
.col
[BellCol
]);
223 XFillRectangles(xw
.dis
, xw
.win
, dc
.gc
, &r
, 1);
231 if(waitpid(pid
, &stat
, 0) < 0)
232 die("Waiting for pid %hd failed: %s\n", pid
, SERRNO
);
234 exit(WEXITSTATUS(stat
));
244 if((m
= posix_openpt(O_RDWR
| O_NOCTTY
)) < 0)
245 die("openpt failed: %s\n", SERRNO
);
247 die("grandpt failed: %s\n", SERRNO
);
249 die("unlockpt failed: %s\n", SERRNO
);
250 if(!(pts
= ptsname(m
)))
251 die("ptsname failed: %s\n", SERRNO
);
252 if((s
= open(pts
, O_RDWR
| O_NOCTTY
)) < 0)
253 die("Couldn't open slave: %s\n", SERRNO
);
254 fcntl(s
, F_SETFL
, O_NDELAY
);
255 switch(pid
= fork()) {
257 die("fork failed\n");
260 setsid(); /* create a new process group */
261 dup2(s
, STDIN_FILENO
);
262 dup2(s
, STDOUT_FILENO
);
263 dup2(s
, STDERR_FILENO
);
264 if(ioctl(s
, TIOCSCTTY
, NULL
) < 0)
265 die("ioctl TTIOCSTTY failed: %s\n", SERRNO
);
271 signal(SIGCHLD
, sigchld
);
278 fprintf(stderr
, " %02x '%c' ", c
, isprint(c
)?c
:'.');
280 fprintf(stderr
, "\n");
285 char buf
[BUFSIZ
] = {0};
288 if((ret
= read(cmdfd
, buf
, BUFSIZ
)) < 0)
289 die("Couldn't read from shell: %s\n", SERRNO
);
295 ttywrite(const char *s
, size_t n
) {
296 if(write(cmdfd
, s
, n
) == -1)
297 die("write error on tty: %s\n", SERRNO
);
301 ttyresize(int x
, int y
) {
306 w
.ws_xpixel
= w
.ws_ypixel
= 0;
307 if(ioctl(cmdfd
, TIOCSWINSZ
, &w
) < 0)
308 fprintf(stderr
, "Couldn't set window size: %s\n", SERRNO
);
315 if(mode
== CURSOR_SAVE
)
317 else if(mode
== CURSOR_LOAD
)
318 term
.c
= c
, tmoveto(c
.x
, c
.y
);
323 term
.c
.attr
.mode
= ATTR_NULL
;
324 term
.c
.attr
.fg
= DefaultFG
;
325 term
.c
.attr
.bg
= DefaultBG
;
326 term
.c
.x
= term
.c
.y
= 0;
328 term
.top
= 0, term
.bot
= term
.row
- 1;
329 term
.mode
= MODE_WRAP
;
330 tclearregion(0, 0, term
.col
-1, term
.row
-1);
334 tnew(int col
, int row
) { /* screen size */
335 term
.row
= row
, term
.col
= col
;
336 term
.top
= 0, term
.bot
= term
.row
- 1;
338 term
.mode
= MODE_WRAP
;
340 term
.c
.attr
.mode
= ATTR_NULL
;
341 term
.c
.attr
.fg
= DefaultFG
;
342 term
.c
.attr
.bg
= DefaultBG
;
343 term
.c
.x
= term
.c
.y
= 0;
345 /* allocate screen */
346 term
.line
= calloc(term
.row
, sizeof(Line
));
347 for(row
= 0 ; row
< term
.row
; row
++)
348 term
.line
[row
] = calloc(term
.col
, sizeof(Glyph
));
351 /* TODO: Replace with scrollup/scolldown */
354 Line temp
= term
.line
[term
.top
];
357 for(i
= term
.top
; i
< term
.bot
; i
++)
358 term
.line
[i
] = term
.line
[i
+1];
359 memset(temp
, 0, sizeof(Glyph
) * term
.col
);
360 term
.line
[term
.bot
] = temp
;
364 tscrolldown (int n
) {
368 LIMIT(n
, 0, term
.bot
-term
.top
+1);
370 for(i
= 0; i
< n
; i
++)
371 memset(term
.line
[term
.bot
-i
], 0, term
.col
*sizeof(Glyph
));
373 for(i
= term
.bot
; i
>= term
.top
+n
; i
--) {
375 term
.line
[i
] = term
.line
[i
-n
];
376 term
.line
[i
-n
] = temp
;
384 LIMIT(n
, 0, term
.bot
-term
.top
+1);
386 for(i
= 0; i
< n
; i
++)
387 memset(term
.line
[term
.top
+i
], 0, term
.col
*sizeof(Glyph
));
389 for(i
= term
.top
; i
<= term
.bot
-n
; i
++) {
391 term
.line
[i
] = term
.line
[i
+n
];
392 term
.line
[i
+n
] = temp
;
398 int y
= term
.c
.y
+ 1;
400 tscroll(), y
= term
.bot
;
407 char *p
= escseq
.buf
;
411 escseq
.priv
= 1, p
++;
413 while(p
< escseq
.buf
+escseq
.len
) {
415 escseq
.arg
[escseq
.narg
] *= 10;
416 escseq
.arg
[escseq
.narg
] += *p
++ - '0'/*, noarg = 0 */;
418 if(*p
== ';' && escseq
.narg
+1 < ESC_ARG_SIZ
)
429 tmoveto(int x
, int y
) {
430 term
.c
.x
= x
< 0 ? 0 : x
>= term
.col
? term
.col
-1 : x
;
431 term
.c
.y
= y
< 0 ? 0 : y
>= term
.row
? term
.row
-1 : y
;
435 tmovecursor(int dir
) {
436 int xf
= term
.c
.x
, yf
= term
.c
.y
;
447 if(term
.mode
& MODE_WRAP
&& xf
< 0) {
448 xf
= term
.col
-1, yf
--;
450 yf
= term
.top
, xf
= 0;
455 if(term
.mode
& MODE_WRAP
&& xf
>= term
.col
) {
458 yf
= term
.bot
, tscroll();
467 term
.line
[term
.c
.y
][term
.c
.x
] = term
.c
.attr
;
468 term
.line
[term
.c
.y
][term
.c
.x
].c
= c
;
469 term
.line
[term
.c
.y
][term
.c
.x
].state
|= GLYPH_SET
;
473 tclearregion(int x1
, int y1
, int x2
, int y2
) {
477 temp
= x1
, x1
= x2
, x2
= temp
;
479 temp
= y1
, y1
= y2
, y2
= temp
;
481 LIMIT(x1
, 0, term
.col
-1);
482 LIMIT(x2
, 0, term
.col
-1);
483 LIMIT(y1
, 0, term
.row
-1);
484 LIMIT(y2
, 0, term
.row
-1);
486 for(y
= y1
; y
<= y2
; y
++)
487 memset(&term
.line
[y
][x1
], 0, sizeof(Glyph
)*(x2
-x1
+1));
492 int src
= term
.c
.x
+ n
;
494 int size
= term
.col
- src
;
496 if(src
>= term
.col
) {
497 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
500 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
], size
* sizeof(Glyph
));
501 tclearregion(term
.col
-size
, term
.c
.y
, term
.col
-1, term
.c
.y
);
505 tinsertblank(int n
) {
508 int size
= term
.col
- n
- src
;
510 if(dst
>= term
.col
) {
511 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
514 memmove(&term
.line
[term
.c
.y
][dst
], &term
.line
[term
.c
.y
][src
], size
* sizeof(Glyph
));
515 tclearregion(src
, term
.c
.y
, dst
, term
.c
.y
);
519 tinsertblankline(int n
) {
524 if(term
.c
.y
> term
.bot
)
526 else if(term
.c
.y
< term
.top
)
528 if(term
.c
.y
+ n
>= bot
) {
529 tclearregion(0, term
.c
.y
, term
.col
-1, bot
);
532 for(i
= bot
; i
>= term
.c
.y
+n
; i
--) {
533 /* swap deleted line <-> blanked line */
534 blank
= term
.line
[i
];
535 term
.line
[i
] = term
.line
[i
-n
];
536 term
.line
[i
-n
] = blank
;
538 memset(blank
, 0, term
.col
* sizeof(Glyph
));
548 if(term
.c
.y
> term
.bot
)
550 else if(term
.c
.y
< term
.top
)
552 if(term
.c
.y
+ n
>= bot
) {
553 tclearregion(0, term
.c
.y
, term
.col
-1, bot
);
556 for(i
= term
.c
.y
; i
<= bot
-n
; i
++) {
557 /* swap deleted line <-> blanked line */
558 blank
= term
.line
[i
];
559 term
.line
[i
] = term
.line
[i
+n
];
560 term
.line
[i
+n
] = blank
;
562 memset(blank
, 0, term
.col
* sizeof(Glyph
));
567 tsetattr(int *attr
, int l
) {
570 for(i
= 0; i
< l
; i
++) {
573 term
.c
.attr
.mode
&= ~(ATTR_REVERSE
| ATTR_UNDERLINE
| ATTR_BOLD
);
574 term
.c
.attr
.fg
= DefaultFG
;
575 term
.c
.attr
.bg
= DefaultBG
;
578 term
.c
.attr
.mode
|= ATTR_BOLD
;
581 term
.c
.attr
.mode
|= ATTR_UNDERLINE
;
584 term
.c
.attr
.mode
|= ATTR_REVERSE
;
587 term
.c
.attr
.mode
&= ~ATTR_BOLD
;
590 term
.c
.attr
.mode
&= ~ATTR_UNDERLINE
;
593 term
.c
.attr
.mode
&= ~ATTR_REVERSE
;
596 if (i
+ 2 < l
&& attr
[i
+ 1] == 5) {
598 if (BETWEEN(attr
[i
], 0, 255))
599 term
.c
.attr
.fg
= attr
[i
];
601 fprintf(stderr
, "erresc: bad fgcolor %d\n", attr
[i
]);
604 fprintf(stderr
, "erresc: gfx attr %d unknown\n", attr
[i
]);
607 term
.c
.attr
.fg
= DefaultFG
;
610 if (i
+ 2 < l
&& attr
[i
+ 1] == 5) {
612 if (BETWEEN(attr
[i
], 0, 255))
613 term
.c
.attr
.bg
= attr
[i
];
615 fprintf(stderr
, "erresc: bad bgcolor %d\n", attr
[i
]);
618 fprintf(stderr
, "erresc: gfx attr %d unknown\n", attr
[i
]);
621 term
.c
.attr
.bg
= DefaultBG
;
624 if(BETWEEN(attr
[i
], 30, 37))
625 term
.c
.attr
.fg
= attr
[i
] - 30;
626 else if(BETWEEN(attr
[i
], 40, 47))
627 term
.c
.attr
.bg
= attr
[i
] - 40;
628 else if(BETWEEN(attr
[i
], 90, 97))
629 term
.c
.attr
.fg
= attr
[i
] - 90 + 8;
630 else if(BETWEEN(attr
[i
], 100, 107))
631 term
.c
.attr
.fg
= attr
[i
] - 100 + 8;
633 fprintf(stderr
, "erresc: gfx attr %d unknown\n", attr
[i
]);
640 tsetscroll(int t
, int b
) {
643 LIMIT(t
, 0, term
.row
-1);
644 LIMIT(b
, 0, term
.row
-1);
656 switch(escseq
.mode
) {
659 printf("erresc: unknown csi ");
663 case '@': /* ICH -- Insert <n> blank char */
664 DEFAULT(escseq
.arg
[0], 1);
665 tinsertblank(escseq
.arg
[0]);
667 case 'A': /* CUU -- Cursor <n> Up */
669 DEFAULT(escseq
.arg
[0], 1);
670 tmoveto(term
.c
.x
, term
.c
.y
-escseq
.arg
[0]);
672 case 'B': /* CUD -- Cursor <n> Down */
673 DEFAULT(escseq
.arg
[0], 1);
674 tmoveto(term
.c
.x
, term
.c
.y
+escseq
.arg
[0]);
676 case 'C': /* CUF -- Cursor <n> Forward */
678 DEFAULT(escseq
.arg
[0], 1);
679 tmoveto(term
.c
.x
+escseq
.arg
[0], term
.c
.y
);
681 case 'D': /* CUB -- Cursor <n> Backward */
682 DEFAULT(escseq
.arg
[0], 1);
683 tmoveto(term
.c
.x
-escseq
.arg
[0], term
.c
.y
);
685 case 'E': /* CNL -- Cursor <n> Down and first col */
686 DEFAULT(escseq
.arg
[0], 1);
687 tmoveto(0, term
.c
.y
+escseq
.arg
[0]);
689 case 'F': /* CPL -- Cursor <n> Up and first col */
690 DEFAULT(escseq
.arg
[0], 1);
691 tmoveto(0, term
.c
.y
-escseq
.arg
[0]);
693 case 'G': /* CHA -- Move to <col> */
694 case '`': /* XXX: HPA -- same? */
695 DEFAULT(escseq
.arg
[0], 1);
696 tmoveto(escseq
.arg
[0]-1, term
.c
.y
);
698 case 'H': /* CUP -- Move to <row> <col> */
699 case 'f': /* XXX: HVP -- same? */
700 DEFAULT(escseq
.arg
[0], 1);
701 DEFAULT(escseq
.arg
[1], 1);
702 tmoveto(escseq
.arg
[1]-1, escseq
.arg
[0]-1);
704 /* XXX: (CSI n I) CHT -- Cursor Forward Tabulation <n> tab stops */
705 case 'J': /* ED -- Clear screen */
706 switch(escseq
.arg
[0]) {
708 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.row
-1);
711 tclearregion(0, 0, term
.c
.x
, term
.c
.y
);
714 tclearregion(0, 0, term
.col
-1, term
.row
-1);
716 case 3: /* XXX: erase saved lines (xterm) */
721 case 'K': /* EL -- Clear line */
722 switch(escseq
.arg
[0]) {
724 tclearregion(term
.c
.x
, term
.c
.y
, term
.col
-1, term
.c
.y
);
727 tclearregion(0, term
.c
.y
, term
.c
.x
, term
.c
.y
);
730 tclearregion(0, term
.c
.y
, term
.col
-1, term
.c
.y
);
734 case 'S': /* SU -- Scroll <n> line up */
735 DEFAULT(escseq
.arg
[0], 1);
736 tscrollup(escseq
.arg
[0]);
738 case 'T': /* SD -- Scroll <n> line down */
739 DEFAULT(escseq
.arg
[0], 1);
740 tscrolldown(escseq
.arg
[0]);
742 case 'L': /* IL -- Insert <n> blank lines */
743 DEFAULT(escseq
.arg
[0], 1);
744 tinsertblankline(escseq
.arg
[0]);
746 case 'l': /* RM -- Reset Mode */
748 switch(escseq
.arg
[0]) {
750 term
.mode
&= ~MODE_APPKEYPAD
;
753 term
.mode
&= ~MODE_WRAP
;
755 case 12: /* att610 -- Stop blinking cursor (IGNORED) */
760 case 1048: /* XXX: no alt. screen to erase/save */
762 tcursor(CURSOR_LOAD
);
763 tclearregion(0, 0, term
.col
-1, term
.row
-1);
769 switch(escseq
.arg
[0]) {
771 term
.mode
&= ~MODE_INSERT
;
778 case 'M': /* DL -- Delete <n> lines */
779 DEFAULT(escseq
.arg
[0], 1);
780 tdeleteline(escseq
.arg
[0]);
782 case 'X': /* ECH -- Erase <n> char */
783 DEFAULT(escseq
.arg
[0], 1);
784 tclearregion(term
.c
.x
, term
.c
.y
, term
.c
.x
+ escseq
.arg
[0], term
.c
.y
);
786 case 'P': /* DCH -- Delete <n> char */
787 DEFAULT(escseq
.arg
[0], 1);
788 tdeletechar(escseq
.arg
[0]);
790 /* XXX: (CSI n Z) CBT -- Cursor Backward Tabulation <n> tab stops */
791 case 'd': /* VPA -- Move to <row> */
792 DEFAULT(escseq
.arg
[0], 1);
793 tmoveto(term
.c
.x
, escseq
.arg
[0]-1);
795 case 'h': /* SM -- Set terminal mode */
797 switch(escseq
.arg
[0]) {
799 term
.mode
|= MODE_APPKEYPAD
;
802 term
.mode
|= MODE_WRAP
;
804 case 12: /* att610 -- Start blinking cursor (IGNORED) */
810 case 1049: /* XXX: no alt. screen to erase/save */
811 tcursor(CURSOR_SAVE
);
812 tclearregion(0, 0, term
.col
-1, term
.row
-1);
814 default: goto unknown
;
817 switch(escseq
.arg
[0]) {
819 term
.mode
|= MODE_INSERT
;
821 default: goto unknown
;
825 case 'm': /* SGR -- Terminal attribute (color) */
826 tsetattr(escseq
.arg
, escseq
.narg
);
828 case 'r': /* DECSTBM -- Set Scrolling Region */
832 DEFAULT(escseq
.arg
[0], 1);
833 DEFAULT(escseq
.arg
[1], term
.row
);
834 tsetscroll(escseq
.arg
[0]-1, escseq
.arg
[1]-1);
837 case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
838 tcursor(CURSOR_SAVE
);
840 case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
841 tcursor(CURSOR_LOAD
);
849 printf("ESC [ %s", escseq
.priv
? "? " : "");
851 for(i
= 0; i
< escseq
.narg
; i
++)
852 printf("%d ", escseq
.arg
[i
]);
854 putchar(escseq
.mode
);
860 memset(&escseq
, 0, sizeof(escseq
));
865 int space
= TAB
- term
.c
.x
% TAB
;
867 if(term
.c
.x
+ space
>= term
.col
)
870 for(; space
> 0; space
--)
871 tmovecursor(CURSOR_RIGHT
);
876 if(term
.esc
& ESC_START
) {
877 if(term
.esc
& ESC_CSI
) {
878 escseq
.buf
[escseq
.len
++] = c
;
879 if(BETWEEN(c
, 0x40, 0x7E) || escseq
.len
>= ESC_BUF_SIZ
) {
881 csiparse(), csihandle();
883 } else if(term
.esc
& ESC_OSC
) {
886 term
.esc
= ESC_START
| ESC_TITLE
;
888 } else if(term
.esc
& ESC_TITLE
) {
889 if(c
== '\a' || term
.titlelen
+1 >= ESC_TITLE_SIZ
) {
891 term
.title
[term
.titlelen
] = '\0';
892 XStoreName(xw
.dis
, xw
.win
, term
.title
);
894 term
.title
[term
.titlelen
++] = c
;
896 } else if(term
.esc
& ESC_ALTCHARSET
) {
898 case '0': /* Line drawing crap */
899 term
.c
.attr
.mode
|= ATTR_GFX
;
901 case 'B': /* Back to regular text */
902 term
.c
.attr
.mode
&= ~ATTR_GFX
;
905 printf("esc unhandled charset: ESC ( %c\n", c
);
917 term
.esc
|= ESC_ALTCHARSET
;
920 tmoveto(term
.c
.x
, term
.c
.y
-1);
924 tmoveto(term
.c
.x
, term
.c
.y
+1);
928 tmoveto(term
.c
.x
+1, term
.c
.y
);
931 case 'D': /* XXX: CUP (VT100) or IND (VT52) ... */
932 tmoveto(term
.c
.x
-1, term
.c
.y
);
935 case 'E': /* NEL -- Next line */
939 case 'M': /* RI -- Reverse index */
940 if(term
.c
.y
== term
.top
)
943 tmoveto(term
.c
.x
, term
.c
.y
-1);
946 case 'c': /* RIS -- Reset to inital state */
950 case '=': /* DECPAM */
951 term
.mode
|= MODE_APPKEYPAD
;
954 case '>': /* DECPNM */
955 term
.mode
&= ~MODE_APPKEYPAD
;
959 tcursor(CURSOR_SAVE
);
963 tcursor(CURSOR_LOAD
);
967 fprintf(stderr
, "erresc: unknown sequence ESC 0x%02X '%c'\n", c
, isprint(c
)?c
:'.');
977 tmovecursor(CURSOR_LEFT
);
980 tmoveto(0, term
.c
.y
);
990 term
.esc
= ESC_START
;
994 tmovecursor(CURSOR_RIGHT
);
1001 tputs(char *s
, int len
) {
1002 for(; len
> 0; len
--)
1007 tresize(int col
, int row
) {
1010 int minrow
= MIN(row
, term
.row
);
1011 int mincol
= MIN(col
, term
.col
);
1013 if(col
< 1 || row
< 1)
1016 line
= calloc(row
, sizeof(Line
));
1017 for(i
= 0 ; i
< row
; i
++)
1018 line
[i
] = calloc(col
, sizeof(Glyph
));
1020 for(i
= 0 ; i
< minrow
; i
++)
1021 memcpy(line
[i
], term
.line
[i
], mincol
* sizeof(Glyph
));
1023 for(i
= 0; i
< term
.row
; i
++)
1027 LIMIT(term
.c
.x
, 0, col
-1);
1028 LIMIT(term
.c
.y
, 0, row
-1);
1029 LIMIT(term
.top
, 0, row
-1);
1030 LIMIT(term
.bot
, 0, row
-1);
1034 term
.col
= col
, term
.row
= row
;
1041 Colormap cmap
= DefaultColormap(xw
.dis
, xw
.scr
);
1042 unsigned long white
= WhitePixel(xw
.dis
, xw
.scr
);
1044 for(i
= 0; i
< 16; i
++) {
1045 if (!XAllocNamedColor(xw
.dis
, cmap
, colorname
[i
], &color
, &color
)) {
1047 fprintf(stderr
, "Could not allocate color '%s'\n", colorname
[i
]);
1049 dc
.col
[i
] = color
.pixel
;
1052 /* same colors as xterm */
1053 for(r
= 0; r
< 6; r
++)
1054 for(g
= 0; g
< 6; g
++)
1055 for(b
= 0; b
< 6; b
++) {
1056 color
.red
= r
== 0 ? 0 : 0x3737 + 0x2828 * r
;
1057 color
.green
= g
== 0 ? 0 : 0x3737 + 0x2828 * g
;
1058 color
.blue
= b
== 0 ? 0 : 0x3737 + 0x2828 * b
;
1059 if (!XAllocColor(xw
.dis
, cmap
, &color
)) {
1061 fprintf(stderr
, "Could not allocate color %d\n", i
);
1063 dc
.col
[i
] = color
.pixel
;
1067 for(r
= 0; r
< 24; r
++, i
++) {
1068 color
.red
= color
.green
= color
.blue
= 0x0808 + 0x0a0a * r
;
1069 if (!XAllocColor(xw
.dis
, cmap
, &color
)) {
1071 fprintf(stderr
, "Could not allocate color %d\n", i
);
1073 dc
.col
[i
] = color
.pixel
;
1078 xclear(int x1
, int y1
, int x2
, int y2
) {
1079 XSetForeground(xw
.dis
, dc
.gc
, dc
.col
[DefaultBG
]);
1080 XFillRectangle(xw
.dis
, xw
.buf
, dc
.gc
,
1081 x1
* xw
.cw
, y1
* xw
.ch
,
1082 (x2
-x1
+1) * xw
.cw
, (y2
-y1
+1) * xw
.ch
);
1088 XClassHint
class = {TNAME
, TNAME
};
1089 XWMHints wm
= {.flags
= InputHint
, .input
= 1};
1091 .flags
= PSize
| PResizeInc
| PBaseSize
,
1094 .height_inc
= xw
.ch
,
1096 .base_height
= 2*BORDER
,
1097 .base_width
= 2*BORDER
,
1099 XSetWMProperties(xw
.dis
, xw
.win
, NULL
, NULL
, NULL
, 0, &size
, &wm
, &class);
1104 xw
.dis
= XOpenDisplay(NULL
);
1105 xw
.scr
= XDefaultScreen(xw
.dis
);
1107 die("Can't open display\n");
1110 if(!(dc
.font
= XLoadQueryFont(xw
.dis
, FONT
)) || !(dc
.bfont
= XLoadQueryFont(xw
.dis
, BOLDFONT
)))
1111 die("Can't load font %s\n", dc
.font
? BOLDFONT
: FONT
);
1113 /* XXX: Assuming same size for bold font */
1114 xw
.cw
= dc
.font
->max_bounds
.rbearing
- dc
.font
->min_bounds
.lbearing
;
1115 xw
.ch
= dc
.font
->ascent
+ dc
.font
->descent
;
1120 term
.c
.attr
.fg
= DefaultFG
;
1121 term
.c
.attr
.bg
= DefaultBG
;
1122 term
.c
.attr
.mode
= ATTR_NULL
;
1124 xw
.h
= term
.row
* xw
.ch
+ 2*BORDER
;
1125 xw
.w
= term
.col
* xw
.cw
+ 2*BORDER
;
1126 xw
.win
= XCreateSimpleWindow(xw
.dis
, XRootWindow(xw
.dis
, xw
.scr
), 0, 0,
1130 xw
.bufw
= xw
.w
- 2*BORDER
;
1131 xw
.bufh
= xw
.h
- 2*BORDER
;
1132 xw
.buf
= XCreatePixmap(xw
.dis
, xw
.win
, xw
.bufw
, xw
.bufh
, XDefaultDepth(xw
.dis
, xw
.scr
));
1134 dc
.gc
= XCreateGC(xw
.dis
, xw
.win
, 0, NULL
);
1135 XMapWindow(xw
.dis
, xw
.win
);
1137 XStoreName(xw
.dis
, xw
.win
, "st");
1142 xdraws(char *s
, Glyph base
, int x
, int y
, int len
) {
1143 unsigned long xfg
, xbg
;
1144 int winx
= x
*xw
.cw
, winy
= y
*xw
.ch
+ dc
.font
->ascent
, width
= len
*xw
.cw
;
1147 if(base
.mode
& ATTR_REVERSE
)
1148 xfg
= dc
.col
[base
.bg
], xbg
= dc
.col
[base
.fg
];
1150 xfg
= dc
.col
[base
.fg
], xbg
= dc
.col
[base
.bg
];
1152 XSetBackground(xw
.dis
, dc
.gc
, xbg
);
1153 XSetForeground(xw
.dis
, dc
.gc
, xfg
);
1155 if(base
.mode
& ATTR_GFX
)
1156 for(i
= 0; i
< len
; i
++)
1157 s
[i
] = gfx
[(int)s
[i
]];
1159 XSetFont(xw
.dis
, dc
.gc
, base
.mode
& ATTR_BOLD
? dc
.bfont
->fid
: dc
.font
->fid
);
1160 XDrawImageString(xw
.dis
, xw
.buf
, dc
.gc
, winx
, winy
, s
, len
);
1162 if(base
.mode
& ATTR_UNDERLINE
)
1163 XDrawLine(xw
.dis
, xw
.buf
, dc
.gc
, winx
, winy
+1, winx
+width
-1, winy
+1);
1168 static int oldx
= 0;
1169 static int oldy
= 0;
1170 Glyph g
= {' ', ATTR_NULL
, DefaultBG
, DefaultCS
, 0};
1172 LIMIT(oldx
, 0, term
.col
-1);
1173 LIMIT(oldy
, 0, term
.row
-1);
1175 if(term
.line
[term
.c
.y
][term
.c
.x
].state
& GLYPH_SET
)
1176 g
.c
= term
.line
[term
.c
.y
][term
.c
.x
].c
;
1178 /* remove the old cursor */
1179 if(term
.line
[oldy
][oldx
].state
& GLYPH_SET
)
1180 xdraws(&term
.line
[oldy
][oldx
].c
, term
.line
[oldy
][oldx
], oldx
, oldy
, 1);
1182 xclear(oldx
, oldy
, oldx
, oldy
);
1184 /* draw the new one */
1185 if(mode
== CURSOR_DRAW
) {
1186 xdraws(&g
.c
, g
, term
.c
.x
, term
.c
.y
, 1);
1187 oldx
= term
.c
.x
, oldy
= term
.c
.y
;
1192 /* basic drawing routines */
1194 xdrawc(int x
, int y
, Glyph g
) {
1195 XRectangle r
= { x
* xw
.cw
, y
* xw
.ch
, xw
.cw
, xw
.ch
};
1196 XSetBackground(xw
.dis
, dc
.gc
, dc
.col
[g
.bg
]);
1197 XSetForeground(xw
.dis
, dc
.gc
, dc
.col
[g
.fg
]);
1198 XSetFont(xw
.dis
, dc
.gc
, g
.mode
& ATTR_BOLD
? dc
.bfont
->fid
: dc
.font
->fid
);
1199 XDrawImageString(xw
.dis
, xw
.buf
, dc
.gc
, r
.x
, r
.y
+dc
.font
->ascent
, &g
.c
, 1);
1206 xclear(0, 0, term
.col
-1, term
.row
-1);
1207 for(y
= 0; y
< term
.row
; y
++)
1208 for(x
= 0; x
< term
.col
; x
++)
1209 if(term
.line
[y
][x
].state
& GLYPH_SET
)
1210 xdrawc(x
, y
, term
.line
[y
][x
]);
1213 xcursor(CURSOR_DRAW
);
1214 XCopyArea(xw
.dis
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.bufw
, xw
.bufh
, BORDER
, BORDER
);
1219 /* optimized drawing routine */
1221 draw(int redraw_all
) {
1224 char buf
[DRAW_BUF_SIZ
];
1226 XSetForeground(xw
.dis
, dc
.gc
, dc
.col
[DefaultBG
]);
1227 XFillRectangle(xw
.dis
, xw
.buf
, dc
.gc
, 0, 0, xw
.w
, xw
.h
);
1228 for(y
= 0; y
< term
.row
; y
++) {
1229 base
= term
.line
[y
][0];
1231 for(x
= 0; x
< term
.col
; x
++) {
1232 new = term
.line
[y
][x
];
1233 if(!ATTRCMP(base
, new) && i
< DRAW_BUF_SIZ
)
1236 xdraws(buf
, base
, ox
, y
, i
);
1243 xdraws(buf
, base
, ox
, y
, i
);
1245 xcursor(term
.hidec
? CURSOR_HIDE
: CURSOR_DRAW
);
1246 XCopyArea(xw
.dis
, xw
.buf
, xw
.win
, dc
.gc
, 0, 0, xw
.bufw
, xw
.bufh
, BORDER
, BORDER
);
1253 expose(XEvent
*ev
) {
1254 draw(SCREEN_REDRAW
);
1260 for(i
= 0; i
< LEN(key
); i
++)
1262 return (char*)key
[i
].s
;
1267 kpress(XEvent
*ev
) {
1268 XKeyEvent
*e
= &ev
->xkey
;
1276 meta
= e
->state
& Mod1Mask
;
1277 shift
= e
->state
& ShiftMask
;
1278 len
= XLookupString(e
, buf
, sizeof(buf
), &ksym
, NULL
);
1280 if((customkey
= kmap(ksym
)))
1281 ttywrite(customkey
, strlen(customkey
));
1283 buf
[sizeof(buf
)-1] = '\0';
1284 if(meta
&& len
== 1)
1285 ttywrite("\033", 1);
1293 sprintf(buf
, "\033%c%c", term
.mode
& MODE_APPKEYPAD
? 'O' : '[', "DACB"[ksym
- XK_Left
]);
1298 draw(1), puts("draw!")/* XXX: paste X clipboard */;
1301 fprintf(stderr
, "errkey: %d\n", (int)ksym
);
1310 if(e
->xconfigure
.width
== xw
.w
&& e
->xconfigure
.height
== xw
.h
)
1313 xw
.w
= e
->xconfigure
.width
;
1314 xw
.h
= e
->xconfigure
.height
;
1315 xw
.bufw
= xw
.w
- 2*BORDER
;
1316 xw
.bufh
= xw
.h
- 2*BORDER
;
1317 col
= xw
.bufw
/ xw
.cw
;
1318 row
= xw
.bufh
/ xw
.ch
;
1320 ttyresize(col
, row
);
1321 XFreePixmap(xw
.dis
, xw
.buf
);
1322 xw
.buf
= XCreatePixmap(xw
.dis
, xw
.win
, xw
.bufw
, xw
.bufh
, XDefaultDepth(xw
.dis
, xw
.scr
));
1323 draw(SCREEN_REDRAW
);
1330 int xfd
= XConnectionNumber(xw
.dis
);
1333 XSelectInput(xw
.dis
, xw
.win
, ExposureMask
| KeyPressMask
| StructureNotifyMask
);
1334 XResizeWindow(xw
.dis
, xw
.win
, xw
.w
, xw
.h
); /* XXX: fix resize bug in wmii (?) */
1338 FD_SET(cmdfd
, &rfd
);
1340 if(select(MAX(xfd
, cmdfd
)+1, &rfd
, NULL
, NULL
, NULL
) == -1) {
1343 die("select failed: %s\n", SERRNO
);
1345 if(FD_ISSET(cmdfd
, &rfd
)) {
1347 draw(SCREEN_UPDATE
);
1349 while(XPending(xw
.dis
)) {
1350 XNextEvent(xw
.dis
, &ev
);
1351 if(handler
[ev
.type
])
1352 (handler
[ev
.type
])(&ev
);
1358 main(int argc
, char *argv
[]) {
1359 if(argc
== 2 && !strncmp("-v", argv
[1], 3))
1360 die("st-" VERSION
", © 2009 st engineers\n");
1362 die("usage: st [-v]\n");
1363 setlocale(LC_CTYPE
, "");