Simple Terminal from SuckLess
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

3897 lines
85 KiB

13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
13 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
13 years ago
11 years ago
13 years ago
13 years ago
13 years ago
13 years ago
14 years ago
14 years ago
14 years ago
14 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
13 years ago
11 years ago
14 years ago
13 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
14 years ago
13 years ago
10 years ago
14 years ago
14 years ago
13 years ago
13 years ago
10 years ago
14 years ago
14 years ago
11 years ago
10 years ago
13 years ago
14 years ago
14 years ago
  1. /* See LICENSE for licence details. */
  2. #include <ctype.h>
  3. #include <errno.h>
  4. #include <fcntl.h>
  5. #include <limits.h>
  6. #include <locale.h>
  7. #include <pwd.h>
  8. #include <stdarg.h>
  9. #include <stdbool.h>
  10. #include <stdio.h>
  11. #include <stdlib.h>
  12. #include <string.h>
  13. #include <signal.h>
  14. #include <stdint.h>
  15. #include <sys/ioctl.h>
  16. #include <sys/select.h>
  17. #include <sys/stat.h>
  18. #include <sys/time.h>
  19. #include <sys/types.h>
  20. #include <sys/wait.h>
  21. #include <time.h>
  22. #include <unistd.h>
  23. #include <libgen.h>
  24. #include <X11/Xatom.h>
  25. #include <X11/Xlib.h>
  26. #include <X11/Xutil.h>
  27. #include <X11/cursorfont.h>
  28. #include <X11/keysym.h>
  29. #include <X11/Xft/Xft.h>
  30. #include <fontconfig/fontconfig.h>
  31. #include <wchar.h>
  32. #include "arg.h"
  33. char *argv0;
  34. #define Glyph Glyph_
  35. #define Font Font_
  36. #define Draw XftDraw *
  37. #define Colour XftColor
  38. #define Colourmap Colormap
  39. #define Rectangle XRectangle
  40. #if defined(__linux)
  41. #include <pty.h>
  42. #elif defined(__OpenBSD__) || defined(__NetBSD__) || defined(__APPLE__)
  43. #include <util.h>
  44. #elif defined(__FreeBSD__) || defined(__DragonFly__)
  45. #include <libutil.h>
  46. #endif
  47. /* XEMBED messages */
  48. #define XEMBED_FOCUS_IN 4
  49. #define XEMBED_FOCUS_OUT 5
  50. /* Arbitrary sizes */
  51. #define UTF_INVALID 0xFFFD
  52. #define UTF_SIZ 4
  53. #define ESC_BUF_SIZ (128*UTF_SIZ)
  54. #define ESC_ARG_SIZ 16
  55. #define STR_BUF_SIZ ESC_BUF_SIZ
  56. #define STR_ARG_SIZ ESC_ARG_SIZ
  57. #define DRAW_BUF_SIZ 20*1024
  58. #define XK_ANY_MOD UINT_MAX
  59. #define XK_NO_MOD 0
  60. #define XK_SWITCH_MOD (1<<13)
  61. #define REDRAW_TIMEOUT (80*1000) /* 80 ms */
  62. /* macros */
  63. #define SERRNO strerror(errno)
  64. #define MIN(a, b) ((a) < (b) ? (a) : (b))
  65. #define MAX(a, b) ((a) < (b) ? (b) : (a))
  66. #define LEN(a) (sizeof(a) / sizeof(a[0]))
  67. #define DEFAULT(a, b) (a) = (a) ? (a) : (b)
  68. #define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
  69. #define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
  70. #define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || (a).bg != (b).bg)
  71. #define IS_SET(flag) ((term.mode & (flag)) != 0)
  72. #define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + (t1.tv_usec-t2.tv_usec)/1000)
  73. #define CEIL(x) (((x) != (int) (x)) ? (x) + 1 : (x))
  74. #define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
  75. #define IS_TRUECOL(x) (1 << 24 & (x))
  76. #define TRUERED(x) (((x) & 0xff0000) >> 8)
  77. #define TRUEGREEN(x) (((x) & 0xff00))
  78. #define TRUEBLUE(x) (((x) & 0xff) << 8)
  79. #define VT102ID "\033[?6c"
  80. enum glyph_attribute {
  81. ATTR_NULL = 0,
  82. ATTR_REVERSE = 1,
  83. ATTR_UNDERLINE = 2,
  84. ATTR_BOLD = 4,
  85. ATTR_GFX = 8,
  86. ATTR_ITALIC = 16,
  87. ATTR_BLINK = 32,
  88. ATTR_WRAP = 64,
  89. ATTR_WIDE = 128,
  90. ATTR_WDUMMY = 256,
  91. };
  92. enum cursor_movement {
  93. CURSOR_SAVE,
  94. CURSOR_LOAD
  95. };
  96. enum cursor_state {
  97. CURSOR_DEFAULT = 0,
  98. CURSOR_WRAPNEXT = 1,
  99. CURSOR_ORIGIN = 2
  100. };
  101. enum term_mode {
  102. MODE_WRAP = 1,
  103. MODE_INSERT = 2,
  104. MODE_APPKEYPAD = 4,
  105. MODE_ALTSCREEN = 8,
  106. MODE_CRLF = 16,
  107. MODE_MOUSEBTN = 32,
  108. MODE_MOUSEMOTION = 64,
  109. MODE_REVERSE = 128,
  110. MODE_KBDLOCK = 256,
  111. MODE_HIDE = 512,
  112. MODE_ECHO = 1024,
  113. MODE_APPCURSOR = 2048,
  114. MODE_MOUSESGR = 4096,
  115. MODE_8BIT = 8192,
  116. MODE_BLINK = 16384,
  117. MODE_FBLINK = 32768,
  118. MODE_FOCUS = 65536,
  119. MODE_MOUSEX10 = 131072,
  120. MODE_MOUSEMANY = 262144,
  121. MODE_BRCKTPASTE = 524288,
  122. MODE_PRINT = 1048576,
  123. MODE_MOUSE = MODE_MOUSEBTN|MODE_MOUSEMOTION|MODE_MOUSEX10\
  124. |MODE_MOUSEMANY,
  125. };
  126. enum charset {
  127. CS_GRAPHIC0,
  128. CS_GRAPHIC1,
  129. CS_UK,
  130. CS_USA,
  131. CS_MULTI,
  132. CS_GER,
  133. CS_FIN
  134. };
  135. enum escape_state {
  136. ESC_START = 1,
  137. ESC_CSI = 2,
  138. ESC_STR = 4, /* DSC, OSC, PM, APC */
  139. ESC_ALTCHARSET = 8,
  140. ESC_STR_END = 16, /* a final string was encountered */
  141. ESC_TEST = 32, /* Enter in test mode */
  142. };
  143. enum window_state {
  144. WIN_VISIBLE = 1,
  145. WIN_REDRAW = 2,
  146. WIN_FOCUSED = 4
  147. };
  148. enum selection_type {
  149. SEL_REGULAR = 1,
  150. SEL_RECTANGULAR = 2
  151. };
  152. enum selection_snap {
  153. SNAP_WORD = 1,
  154. SNAP_LINE = 2
  155. };
  156. typedef unsigned char uchar;
  157. typedef unsigned int uint;
  158. typedef unsigned long ulong;
  159. typedef unsigned short ushort;
  160. typedef struct {
  161. char c[UTF_SIZ]; /* character code */
  162. ushort mode; /* attribute flags */
  163. uint32_t fg; /* foreground */
  164. uint32_t bg; /* background */
  165. } Glyph;
  166. typedef Glyph *Line;
  167. typedef struct {
  168. Glyph attr; /* current char attributes */
  169. int x;
  170. int y;
  171. char state;
  172. } TCursor;
  173. /* CSI Escape sequence structs */
  174. /* ESC '[' [[ [<priv>] <arg> [;]] <mode>] */
  175. typedef struct {
  176. char buf[ESC_BUF_SIZ]; /* raw string */
  177. int len; /* raw string length */
  178. char priv;
  179. int arg[ESC_ARG_SIZ];
  180. int narg; /* nb of args */
  181. char mode;
  182. } CSIEscape;
  183. /* STR Escape sequence structs */
  184. /* ESC type [[ [<priv>] <arg> [;]] <mode>] ESC '\' */
  185. typedef struct {
  186. char type; /* ESC type ... */
  187. char buf[STR_BUF_SIZ]; /* raw string */
  188. int len; /* raw string length */
  189. char *args[STR_ARG_SIZ];
  190. int narg; /* nb of args */
  191. } STREscape;
  192. /* Internal representation of the screen */
  193. typedef struct {
  194. int row; /* nb row */
  195. int col; /* nb col */
  196. Line *line; /* screen */
  197. Line *alt; /* alternate screen */
  198. bool *dirty; /* dirtyness of lines */
  199. TCursor c; /* cursor */
  200. int top; /* top scroll limit */
  201. int bot; /* bottom scroll limit */
  202. int mode; /* terminal mode flags */
  203. int esc; /* escape state flags */
  204. char trantbl[4]; /* charset table translation */
  205. int charset; /* current charset */
  206. int icharset; /* selected charset for sequence */
  207. bool numlock; /* lock numbers in keyboard */
  208. bool *tabs;
  209. } Term;
  210. /* Purely graphic info */
  211. typedef struct {
  212. Display *dpy;
  213. Colourmap cmap;
  214. Window win;
  215. Drawable buf;
  216. Atom xembed, wmdeletewin, netwmname, netwmpid;
  217. XIM xim;
  218. XIC xic;
  219. Draw draw;
  220. Visual *vis;
  221. XSetWindowAttributes attrs;
  222. int scr;
  223. bool isfixed; /* is fixed geometry? */
  224. int fx, fy, fw, fh; /* fixed geometry */
  225. int tw, th; /* tty width and height */
  226. int w, h; /* window width and height */
  227. int ch; /* char height */
  228. int cw; /* char width */
  229. char state; /* focus, redraw, visible */
  230. } XWindow;
  231. typedef struct {
  232. uint b;
  233. uint mask;
  234. char *s;
  235. } Mousekey;
  236. typedef struct {
  237. KeySym k;
  238. uint mask;
  239. char *s;
  240. /* three valued logic variables: 0 indifferent, 1 on, -1 off */
  241. signed char appkey; /* application keypad */
  242. signed char appcursor; /* application cursor */
  243. signed char crlf; /* crlf mode */
  244. } Key;
  245. typedef struct {
  246. int mode;
  247. int type;
  248. int snap;
  249. /*
  250. * Selection variables:
  251. * nb normalized coordinates of the beginning of the selection
  252. * ne normalized coordinates of the end of the selection
  253. * ob original coordinates of the beginning of the selection
  254. * oe original coordinates of the end of the selection
  255. */
  256. struct {
  257. int x, y;
  258. } nb, ne, ob, oe;
  259. char *clip;
  260. Atom xtarget;
  261. bool alt;
  262. struct timeval tclick1;
  263. struct timeval tclick2;
  264. } Selection;
  265. typedef union {
  266. int i;
  267. unsigned int ui;
  268. float f;
  269. const void *v;
  270. } Arg;
  271. typedef struct {
  272. unsigned int mod;
  273. KeySym keysym;
  274. void (*func)(const Arg *);
  275. const Arg arg;
  276. } Shortcut;
  277. /* function definitions used in config.h */
  278. static void clippaste(const Arg *);
  279. static void numlock(const Arg *);
  280. static void selpaste(const Arg *);
  281. static void xzoom(const Arg *);
  282. static void printsel(const Arg *);
  283. static void printscreen(const Arg *) ;
  284. static void toggleprinter(const Arg *);
  285. /* Config.h for applying patches and the configuration. */
  286. #include "config.h"
  287. /* Font structure */
  288. typedef struct {
  289. int height;
  290. int width;
  291. int ascent;
  292. int descent;
  293. short lbearing;
  294. short rbearing;
  295. XftFont *match;
  296. FcFontSet *set;
  297. FcPattern *pattern;
  298. } Font;
  299. /* Drawing Context */
  300. typedef struct {
  301. Colour col[LEN(colorname) < 256 ? 256 : LEN(colorname)];
  302. Font font, bfont, ifont, ibfont;
  303. GC gc;
  304. } DC;
  305. static void die(const char *, ...);
  306. static void draw(void);
  307. static void redraw(int);
  308. static void drawregion(int, int, int, int);
  309. static void execsh(void);
  310. static void sigchld(int);
  311. static void run(void);
  312. static void csidump(void);
  313. static void csihandle(void);
  314. static void csiparse(void);
  315. static void csireset(void);
  316. static void strdump(void);
  317. static void strhandle(void);
  318. static void strparse(void);
  319. static void strreset(void);
  320. static int tattrset(int);
  321. static void tprinter(char *s, size_t len);
  322. static void tdumpsel(void);
  323. static void tdumpline(int);
  324. static void tdump(void);
  325. static void tclearregion(int, int, int, int);
  326. static void tcursor(int);
  327. static void tdeletechar(int);
  328. static void tdeleteline(int);
  329. static void tinsertblank(int);
  330. static void tinsertblankline(int);
  331. static void tmoveto(int, int);
  332. static void tmoveato(int x, int y);
  333. static void tnew(int, int);
  334. static void tnewline(int);
  335. static void tputtab(bool);
  336. static void tputc(char *, int);
  337. static void treset(void);
  338. static int tresize(int, int);
  339. static void tscrollup(int, int);
  340. static void tscrolldown(int, int);
  341. static void tsetattr(int*, int);
  342. static void tsetchar(char *, Glyph *, int, int);
  343. static void tsetscroll(int, int);
  344. static void tswapscreen(void);
  345. static void tsetdirt(int, int);
  346. static void tsetdirtattr(int);
  347. static void tsetmode(bool, bool, int *, int);
  348. static void tfulldirt(void);
  349. static void techo(char *, int);
  350. static int32_t tdefcolor(int *, int *, int);
  351. static void tselcs(void);
  352. static void tdeftran(char);
  353. static inline bool match(uint, uint);
  354. static void ttynew(void);
  355. static void ttyread(void);
  356. static void ttyresize(void);
  357. static void ttysend(char *, size_t);
  358. static void ttywrite(const char *, size_t);
  359. static void xdraws(char *, Glyph, int, int, int, int);
  360. static void xhints(void);
  361. static void xclear(int, int, int, int);
  362. static void xdrawcursor(void);
  363. static void xinit(void);
  364. static void xloadcols(void);
  365. static int xsetcolorname(int, const char *);
  366. static int xloadfont(Font *, FcPattern *);
  367. static void xloadfonts(char *, double);
  368. static int xloadfontset(Font *);
  369. static void xsettitle(char *);
  370. static void xresettitle(void);
  371. static void xsetpointermotion(int);
  372. static void xseturgency(int);
  373. static void xsetsel(char*);
  374. static void xtermclear(int, int, int, int);
  375. static void xunloadfont(Font *f);
  376. static void xunloadfonts(void);
  377. static void xresize(int, int);
  378. static void expose(XEvent *);
  379. static void visibility(XEvent *);
  380. static void unmap(XEvent *);
  381. static char *kmap(KeySym, uint);
  382. static void kpress(XEvent *);
  383. static void cmessage(XEvent *);
  384. static void cresize(int, int);
  385. static void resize(XEvent *);
  386. static void focus(XEvent *);
  387. static void brelease(XEvent *);
  388. static void bpress(XEvent *);
  389. static void bmotion(XEvent *);
  390. static void selnotify(XEvent *);
  391. static void selclear(XEvent *);
  392. static void selrequest(XEvent *);
  393. static void selinit(void);
  394. static void selsort(void);
  395. static inline bool selected(int, int);
  396. static char *getsel(void);
  397. static void selcopy(void);
  398. static void selscroll(int, int);
  399. static void selsnap(int, int *, int *, int);
  400. static size_t utf8decode(char *, long *, size_t);
  401. static long utf8decodebyte(char, size_t *);
  402. static size_t utf8encode(long, char *, size_t);
  403. static char utf8encodebyte(long, size_t);
  404. static size_t utf8len(char *);
  405. static size_t utf8validate(long *, size_t);
  406. static ssize_t xwrite(int, char *, size_t);
  407. static void *xmalloc(size_t);
  408. static void *xrealloc(void *, size_t);
  409. static char *xstrdup(char *s);
  410. static void (*handler[LASTEvent])(XEvent *) = {
  411. [KeyPress] = kpress,
  412. [ClientMessage] = cmessage,
  413. [ConfigureNotify] = resize,
  414. [VisibilityNotify] = visibility,
  415. [UnmapNotify] = unmap,
  416. [Expose] = expose,
  417. [FocusIn] = focus,
  418. [FocusOut] = focus,
  419. [MotionNotify] = bmotion,
  420. [ButtonPress] = bpress,
  421. [ButtonRelease] = brelease,
  422. [SelectionClear] = selclear,
  423. [SelectionNotify] = selnotify,
  424. [SelectionRequest] = selrequest,
  425. };
  426. /* Globals */
  427. static DC dc;
  428. static XWindow xw;
  429. static Term term;
  430. static CSIEscape csiescseq;
  431. static STREscape strescseq;
  432. static int cmdfd;
  433. static pid_t pid;
  434. static Selection sel;
  435. static int iofd = STDOUT_FILENO;
  436. static char **opt_cmd = NULL;
  437. static char *opt_io = NULL;
  438. static char *opt_title = NULL;
  439. static char *opt_embed = NULL;
  440. static char *opt_class = NULL;
  441. static char *opt_font = NULL;
  442. static int oldbutton = 3; /* button event on startup: 3 = release */
  443. static char *usedfont = NULL;
  444. static double usedfontsize = 0;
  445. static uchar utfbyte[UTF_SIZ + 1] = {0x80, 0, 0xC0, 0xE0, 0xF0};
  446. static uchar utfmask[UTF_SIZ + 1] = {0xC0, 0x80, 0xE0, 0xF0, 0xF8};
  447. static long utfmin[UTF_SIZ + 1] = { 0, 0, 0x80, 0x800, 0x10000};
  448. static long utfmax[UTF_SIZ + 1] = {0x10FFFF, 0x7F, 0x7FF, 0xFFFF, 0x10FFFF};
  449. /* Font Ring Cache */
  450. enum {
  451. FRC_NORMAL,
  452. FRC_ITALIC,
  453. FRC_BOLD,
  454. FRC_ITALICBOLD
  455. };
  456. typedef struct {
  457. XftFont *font;
  458. int flags;
  459. } Fontcache;
  460. /* Fontcache is an array now. A new font will be appended to the array. */
  461. static Fontcache frc[16];
  462. static int frclen = 0;
  463. ssize_t
  464. xwrite(int fd, char *s, size_t len) {
  465. size_t aux = len;
  466. while(len > 0) {
  467. ssize_t r = write(fd, s, len);
  468. if(r < 0)
  469. return r;
  470. len -= r;
  471. s += r;
  472. }
  473. return aux;
  474. }
  475. void *
  476. xmalloc(size_t len) {
  477. void *p = malloc(len);
  478. if(!p)
  479. die("Out of memory\n");
  480. return p;
  481. }
  482. void *
  483. xrealloc(void *p, size_t len) {
  484. if((p = realloc(p, len)) == NULL)
  485. die("Out of memory\n");
  486. return p;
  487. }
  488. char *
  489. xstrdup(char *s) {
  490. char *p = strdup(s);
  491. if (!p)
  492. die("Out of memory\n");
  493. return p;
  494. }
  495. size_t
  496. utf8decode(char *c, long *u, size_t clen) {
  497. size_t i, j, len, type;
  498. long udecoded;
  499. *u = UTF_INVALID;
  500. if(!clen)
  501. return 0;
  502. udecoded = utf8decodebyte(c[0], &len);
  503. if(!BETWEEN(len, 1, UTF_SIZ))
  504. return 1;
  505. for(i = 1, j = 1; i < clen && j < len; ++i, ++j) {
  506. udecoded = (udecoded << 6) | utf8decodebyte(c[i], &type);
  507. if(type != 0)
  508. return j;
  509. }
  510. if(j < len)
  511. return 0;
  512. *u = udecoded;
  513. utf8validate(u, len);
  514. return len;
  515. }
  516. long
  517. utf8decodebyte(char c, size_t *i) {
  518. for(*i = 0; *i < LEN(utfmask); ++(*i))
  519. if(((uchar)c & utfmask[*i]) == utfbyte[*i])
  520. return (uchar)c & ~utfmask[*i];
  521. return 0;
  522. }
  523. size_t
  524. utf8encode(long u, char *c, size_t clen) {
  525. size_t len, i;
  526. len = utf8validate(&u, 0);
  527. if(clen < len)
  528. return 0;
  529. for(i = len - 1; i != 0; --i) {
  530. c[i] = utf8encodebyte(u, 0);
  531. u >>= 6;
  532. }
  533. c[0] = utf8encodebyte(u, len);
  534. return len;
  535. }
  536. char
  537. utf8encodebyte(long u, size_t i) {
  538. return utfbyte[i] | (u & ~utfmask[i]);
  539. }
  540. size_t
  541. utf8len(char *c) {
  542. return utf8decode(c, &(long){0}, UTF_SIZ);
  543. }
  544. size_t
  545. utf8validate(long *u, size_t i) {
  546. if(!BETWEEN(*u, utfmin[i], utfmax[i]) || BETWEEN(*u, 0xD800, 0xDFFF))
  547. *u = UTF_INVALID;
  548. for(i = 1; *u > utfmax[i]; ++i)
  549. ;
  550. return i;
  551. }
  552. static void
  553. selinit(void) {
  554. memset(&sel.tclick1, 0, sizeof(sel.tclick1));
  555. memset(&sel.tclick2, 0, sizeof(sel.tclick2));
  556. sel.mode = 0;
  557. sel.ob.x = -1;
  558. sel.clip = NULL;
  559. sel.xtarget = XInternAtom(xw.dpy, "UTF8_STRING", 0);
  560. if(sel.xtarget == None)
  561. sel.xtarget = XA_STRING;
  562. }
  563. static int
  564. x2col(int x) {
  565. x -= borderpx;
  566. x /= xw.cw;
  567. return LIMIT(x, 0, term.col-1);
  568. }
  569. static int
  570. y2row(int y) {
  571. y -= borderpx;
  572. y /= xw.ch;
  573. return LIMIT(y, 0, term.row-1);
  574. }
  575. static void
  576. selsort(void) {
  577. if(sel.ob.y == sel.oe.y) {
  578. sel.nb.x = MIN(sel.ob.x, sel.oe.x);
  579. sel.ne.x = MAX(sel.ob.x, sel.oe.x);
  580. } else {
  581. sel.nb.x = sel.ob.y < sel.oe.y ? sel.ob.x : sel.oe.x;
  582. sel.ne.x = sel.ob.y < sel.oe.y ? sel.oe.x : sel.ob.x;
  583. }
  584. sel.nb.y = MIN(sel.ob.y, sel.oe.y);
  585. sel.ne.y = MAX(sel.ob.y, sel.oe.y);
  586. }
  587. static inline bool
  588. selected(int x, int y) {
  589. if(sel.ne.y == y && sel.nb.y == y)
  590. return BETWEEN(x, sel.nb.x, sel.ne.x);
  591. if(sel.type == SEL_RECTANGULAR) {
  592. return ((sel.nb.y <= y && y <= sel.ne.y)
  593. && (sel.nb.x <= x && x <= sel.ne.x));
  594. }
  595. return ((sel.nb.y < y && y < sel.ne.y)
  596. || (y == sel.ne.y && x <= sel.ne.x))
  597. || (y == sel.nb.y && x >= sel.nb.x
  598. && (x <= sel.ne.x || sel.nb.y != sel.ne.y));
  599. }
  600. void
  601. selsnap(int mode, int *x, int *y, int direction) {
  602. int i;
  603. switch(mode) {
  604. case SNAP_WORD:
  605. /*
  606. * Snap around if the word wraps around at the end or
  607. * beginning of a line.
  608. */
  609. for(;;) {
  610. if(direction < 0 && *x <= 0) {
  611. if(*y > 0 && term.line[*y - 1][term.col-1].mode
  612. & ATTR_WRAP) {
  613. *y -= 1;
  614. *x = term.col-1;
  615. } else {
  616. break;
  617. }
  618. }
  619. if(direction > 0 && *x >= term.col-1) {
  620. if(*y < term.row-1 && term.line[*y][*x].mode
  621. & ATTR_WRAP) {
  622. *y += 1;
  623. *x = 0;
  624. } else {
  625. break;
  626. }
  627. }
  628. if(term.line[*y][*x+direction].mode & ATTR_WDUMMY) {
  629. *x += direction;
  630. continue;
  631. }
  632. if(strchr(worddelimiters,
  633. term.line[*y][*x+direction].c[0])) {
  634. break;
  635. }
  636. *x += direction;
  637. }
  638. break;
  639. case SNAP_LINE:
  640. /*
  641. * Snap around if the the previous line or the current one
  642. * has set ATTR_WRAP at its end. Then the whole next or
  643. * previous line will be selected.
  644. */
  645. *x = (direction < 0) ? 0 : term.col - 1;
  646. if(direction < 0 && *y > 0) {
  647. for(; *y > 0; *y += direction) {
  648. if(!(term.line[*y-1][term.col-1].mode
  649. & ATTR_WRAP)) {
  650. break;
  651. }
  652. }
  653. } else if(direction > 0 && *y < term.row-1) {
  654. for(; *y < term.row; *y += direction) {
  655. if(!(term.line[*y][term.col-1].mode
  656. & ATTR_WRAP)) {
  657. break;
  658. }
  659. }
  660. }
  661. break;
  662. default:
  663. /*
  664. * Select the whole line when the end of line is reached.
  665. */
  666. if(direction > 0) {
  667. i = term.col;
  668. while(--i > 0 && term.line[*y][i].c[0] == ' ')
  669. /* nothing */;
  670. if(i > 0 && i < *x)
  671. *x = term.col - 1;
  672. }
  673. break;
  674. }
  675. }
  676. void
  677. getbuttoninfo(XEvent *e) {
  678. int type;
  679. uint state = e->xbutton.state &~Button1Mask;
  680. sel.alt = IS_SET(MODE_ALTSCREEN);
  681. sel.oe.x = x2col(e->xbutton.x);
  682. sel.oe.y = y2row(e->xbutton.y);
  683. if(sel.ob.y < sel.oe.y
  684. || (sel.ob.y == sel.oe.y && sel.ob.x < sel.oe.x)) {
  685. selsnap(sel.snap, &sel.ob.x, &sel.ob.y, -1);
  686. selsnap(sel.snap, &sel.oe.x, &sel.oe.y, +1);
  687. } else {
  688. selsnap(sel.snap, &sel.oe.x, &sel.oe.y, -1);
  689. selsnap(sel.snap, &sel.ob.x, &sel.ob.y, +1);
  690. }
  691. selsort();
  692. sel.type = SEL_REGULAR;
  693. for(type = 1; type < LEN(selmasks); ++type) {
  694. if(match(selmasks[type], state)) {
  695. sel.type = type;
  696. break;
  697. }
  698. }
  699. }
  700. void
  701. mousereport(XEvent *e) {
  702. int x = x2col(e->xbutton.x), y = y2row(e->xbutton.y),
  703. button = e->xbutton.button, state = e->xbutton.state,
  704. len;
  705. char buf[40];
  706. static int ox, oy;
  707. /* from urxvt */
  708. if(e->xbutton.type == MotionNotify) {
  709. if(x == ox && y == oy)
  710. return;
  711. if(!IS_SET(MODE_MOUSEMOTION) && !IS_SET(MODE_MOUSEMANY))
  712. return;
  713. /* MOUSE_MOTION: no reporting if no button is pressed */
  714. if(IS_SET(MODE_MOUSEMOTION) && oldbutton == 3)
  715. return;
  716. button = oldbutton + 32;
  717. ox = x;
  718. oy = y;
  719. } else {
  720. if(!IS_SET(MODE_MOUSESGR) && e->xbutton.type == ButtonRelease) {
  721. button = 3;
  722. } else {
  723. button -= Button1;
  724. if(button >= 3)
  725. button += 64 - 3;
  726. }
  727. if(e->xbutton.type == ButtonPress) {
  728. oldbutton = button;
  729. ox = x;
  730. oy = y;
  731. } else if(e->xbutton.type == ButtonRelease) {
  732. oldbutton = 3;
  733. /* MODE_MOUSEX10: no button release reporting */
  734. if(IS_SET(MODE_MOUSEX10))
  735. return;
  736. }
  737. }
  738. if(!IS_SET(MODE_MOUSEX10)) {
  739. button += (state & ShiftMask ? 4 : 0)
  740. + (state & Mod4Mask ? 8 : 0)
  741. + (state & ControlMask ? 16 : 0);
  742. }
  743. len = 0;
  744. if(IS_SET(MODE_MOUSESGR)) {
  745. len = snprintf(buf, sizeof(buf), "\033[<%d;%d;%d%c",
  746. button, x+1, y+1,
  747. e->xbutton.type == ButtonRelease ? 'm' : 'M');
  748. } else if(x < 223 && y < 223) {
  749. len = snprintf(buf, sizeof(buf), "\033[M%c%c%c",
  750. 32+button, 32+x+1, 32+y+1);
  751. } else {
  752. return;
  753. }
  754. ttywrite(buf, len);
  755. }
  756. void
  757. bpress(XEvent *e) {
  758. struct timeval now;
  759. Mousekey *mk;
  760. if(IS_SET(MODE_MOUSE)) {
  761. mousereport(e);
  762. return;
  763. }
  764. for(mk = mshortcuts; mk < mshortcuts + LEN(mshortcuts); mk++) {
  765. if(e->xbutton.button == mk->b
  766. && match(mk->mask, e->xbutton.state)) {
  767. ttysend(mk->s, strlen(mk->s));
  768. return;
  769. }
  770. }
  771. if(e->xbutton.button == Button1) {
  772. gettimeofday(&now, NULL);
  773. /* Clear previous selection, logically and visually. */
  774. selclear(NULL);
  775. sel.mode = 1;
  776. sel.type = SEL_REGULAR;
  777. sel.oe.x = sel.ob.x = x2col(e->xbutton.x);
  778. sel.oe.y = sel.ob.y = y2row(e->xbutton.y);
  779. /*
  780. * If the user clicks below predefined timeouts specific
  781. * snapping behaviour is exposed.
  782. */
  783. if(TIMEDIFF(now, sel.tclick2) <= tripleclicktimeout) {
  784. sel.snap = SNAP_LINE;
  785. } else if(TIMEDIFF(now, sel.tclick1) <= doubleclicktimeout) {
  786. sel.snap = SNAP_WORD;
  787. } else {
  788. sel.snap = 0;
  789. }
  790. selsnap(sel.snap, &sel.ob.x, &sel.ob.y, -1);
  791. selsnap(sel.snap, &sel.oe.x, &sel.oe.y, +1);
  792. selsort();
  793. /*
  794. * Draw selection, unless it's regular and we don't want to
  795. * make clicks visible
  796. */
  797. if(sel.snap != 0) {
  798. sel.mode++;
  799. tsetdirt(sel.nb.y, sel.ne.y);
  800. }
  801. sel.tclick2 = sel.tclick1;
  802. sel.tclick1 = now;
  803. }
  804. }
  805. char *
  806. getsel(void) {
  807. char *str, *ptr;
  808. int x, y, bufsize, size, i, ex;
  809. Glyph *gp, *last;
  810. if(sel.ob.x == -1) {
  811. str = NULL;
  812. } else {
  813. bufsize = (term.col+1) * (sel.ne.y-sel.nb.y+1) * UTF_SIZ;
  814. ptr = str = xmalloc(bufsize);
  815. /* append every set & selected glyph to the selection */
  816. for(y = sel.nb.y; y < sel.ne.y + 1; y++) {
  817. gp = &term.line[y][0];
  818. last = &gp[term.col-1];
  819. while(last >= gp && !(selected(last - gp, y) &&
  820. strcmp(last->c, " ") != 0)) {
  821. --last;
  822. }
  823. for(x = 0; gp <= last; x++, ++gp) {
  824. if(!selected(x, y) || (gp->mode & ATTR_WDUMMY))
  825. continue;
  826. size = utf8len(gp->c);
  827. memcpy(ptr, gp->c, size);
  828. ptr += size;
  829. }
  830. /*
  831. * Copy and pasting of line endings is inconsistent
  832. * in the inconsistent terminal and GUI world.
  833. * The best solution seems like to produce '\n' when
  834. * something is copied from st and convert '\n' to
  835. * '\r', when something to be pasted is received by
  836. * st.
  837. * FIXME: Fix the computer world.
  838. */
  839. if(y < sel.ne.y && x > 0 && !((gp-1)->mode & ATTR_WRAP))
  840. *ptr++ = '\n';
  841. /*
  842. * If the last selected line expands in the selection
  843. * after the visible text '\n' is appended.
  844. */
  845. if(y == sel.ne.y) {
  846. i = term.col;
  847. while(--i > 0 && term.line[y][i].c[0] == ' ')
  848. /* nothing */;
  849. ex = sel.ne.x;
  850. if(sel.nb.y == sel.ne.y && sel.ne.x < sel.nb.x)
  851. ex = sel.nb.x;
  852. if(i < ex)
  853. *ptr++ = '\n';
  854. }
  855. }
  856. *ptr = 0;
  857. }
  858. return str;
  859. }
  860. void
  861. selcopy(void) {
  862. xsetsel(getsel());
  863. }
  864. void
  865. selnotify(XEvent *e) {
  866. ulong nitems, ofs, rem;
  867. int format;
  868. uchar *data, *last, *repl;
  869. Atom type;
  870. ofs = 0;
  871. do {
  872. if(XGetWindowProperty(xw.dpy, xw.win, XA_PRIMARY, ofs, BUFSIZ/4,
  873. False, AnyPropertyType, &type, &format,
  874. &nitems, &rem, &data)) {
  875. fprintf(stderr, "Clipboard allocation failed\n");
  876. return;
  877. }
  878. /*
  879. * As seen in selcopy:
  880. * Line endings are inconsistent in the terminal and GUI world
  881. * copy and pasting. When receiving some selection data,
  882. * replace all '\n' with '\r'.
  883. * FIXME: Fix the computer world.
  884. */
  885. repl = data;
  886. last = data + nitems * format / 8;
  887. while((repl = memchr(repl, '\n', last - repl))) {
  888. *repl++ = '\r';
  889. }
  890. if(IS_SET(MODE_BRCKTPASTE))
  891. ttywrite("\033[200~", 6);
  892. ttysend((char *)data, nitems * format / 8);
  893. if(IS_SET(MODE_BRCKTPASTE))
  894. ttywrite("\033[201~", 6);
  895. XFree(data);
  896. /* number of 32-bit chunks returned */
  897. ofs += nitems * format / 32;
  898. } while(rem > 0);
  899. }
  900. void
  901. selpaste(const Arg *dummy) {
  902. XConvertSelection(xw.dpy, XA_PRIMARY, sel.xtarget, XA_PRIMARY,
  903. xw.win, CurrentTime);
  904. }
  905. void
  906. clippaste(const Arg *dummy) {
  907. Atom clipboard;
  908. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  909. XConvertSelection(xw.dpy, clipboard, sel.xtarget, XA_PRIMARY,
  910. xw.win, CurrentTime);
  911. }
  912. void
  913. selclear(XEvent *e) {
  914. if(sel.ob.x == -1)
  915. return;
  916. sel.ob.x = -1;
  917. tsetdirt(sel.nb.y, sel.ne.y);
  918. }
  919. void
  920. selrequest(XEvent *e) {
  921. XSelectionRequestEvent *xsre;
  922. XSelectionEvent xev;
  923. Atom xa_targets, string;
  924. xsre = (XSelectionRequestEvent *) e;
  925. xev.type = SelectionNotify;
  926. xev.requestor = xsre->requestor;
  927. xev.selection = xsre->selection;
  928. xev.target = xsre->target;
  929. xev.time = xsre->time;
  930. /* reject */
  931. xev.property = None;
  932. xa_targets = XInternAtom(xw.dpy, "TARGETS", 0);
  933. if(xsre->target == xa_targets) {
  934. /* respond with the supported type */
  935. string = sel.xtarget;
  936. XChangeProperty(xsre->display, xsre->requestor, xsre->property,
  937. XA_ATOM, 32, PropModeReplace,
  938. (uchar *) &string, 1);
  939. xev.property = xsre->property;
  940. } else if(xsre->target == sel.xtarget && sel.clip != NULL) {
  941. XChangeProperty(xsre->display, xsre->requestor, xsre->property,
  942. xsre->target, 8, PropModeReplace,
  943. (uchar *) sel.clip, strlen(sel.clip));
  944. xev.property = xsre->property;
  945. }
  946. /* all done, send a notification to the listener */
  947. if(!XSendEvent(xsre->display, xsre->requestor, True, 0, (XEvent *) &xev))
  948. fprintf(stderr, "Error sending SelectionNotify event\n");
  949. }
  950. void
  951. xsetsel(char *str) {
  952. /* register the selection for both the clipboard and the primary */
  953. Atom clipboard;
  954. free(sel.clip);
  955. sel.clip = str;
  956. XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, CurrentTime);
  957. clipboard = XInternAtom(xw.dpy, "CLIPBOARD", 0);
  958. XSetSelectionOwner(xw.dpy, clipboard, xw.win, CurrentTime);
  959. }
  960. void
  961. brelease(XEvent *e) {
  962. if(IS_SET(MODE_MOUSE)) {
  963. mousereport(e);
  964. return;
  965. }
  966. if(e->xbutton.button == Button2) {
  967. selpaste(NULL);
  968. } else if(e->xbutton.button == Button1) {
  969. if(sel.mode < 2) {
  970. selclear(NULL);
  971. } else {
  972. getbuttoninfo(e);
  973. selcopy();
  974. }
  975. sel.mode = 0;
  976. tsetdirt(sel.nb.y, sel.ne.y);
  977. }
  978. }
  979. void
  980. bmotion(XEvent *e) {
  981. int oldey, oldex, oldsby, oldsey;
  982. if(IS_SET(MODE_MOUSE)) {
  983. mousereport(e);
  984. return;
  985. }
  986. if(!sel.mode)
  987. return;
  988. sel.mode++;
  989. oldey = sel.oe.y;
  990. oldex = sel.oe.x;
  991. oldsby = sel.nb.y;
  992. oldsey = sel.ne.y;
  993. getbuttoninfo(e);
  994. if(oldey != sel.oe.y || oldex != sel.oe.x)
  995. tsetdirt(MIN(sel.nb.y, oldsby), MAX(sel.ne.y, oldsey));
  996. }
  997. void
  998. die(const char *errstr, ...) {
  999. va_list ap;
  1000. va_start(ap, errstr);
  1001. vfprintf(stderr, errstr, ap);
  1002. va_end(ap);
  1003. exit(EXIT_FAILURE);
  1004. }
  1005. void
  1006. execsh(void) {
  1007. char **args;
  1008. char *envshell = getenv("SHELL");
  1009. const struct passwd *pass = getpwuid(getuid());
  1010. char buf[sizeof(long) * 8 + 1];
  1011. unsetenv("COLUMNS");
  1012. unsetenv("LINES");
  1013. unsetenv("TERMCAP");
  1014. if(pass) {
  1015. setenv("LOGNAME", pass->pw_name, 1);
  1016. setenv("USER", pass->pw_name, 1);
  1017. setenv("SHELL", pass->pw_shell, 0);
  1018. setenv("HOME", pass->pw_dir, 0);
  1019. }
  1020. snprintf(buf, sizeof(buf), "%lu", xw.win);
  1021. setenv("WINDOWID", buf, 1);
  1022. signal(SIGCHLD, SIG_DFL);
  1023. signal(SIGHUP, SIG_DFL);
  1024. signal(SIGINT, SIG_DFL);
  1025. signal(SIGQUIT, SIG_DFL);
  1026. signal(SIGTERM, SIG_DFL);
  1027. signal(SIGALRM, SIG_DFL);
  1028. DEFAULT(envshell, shell);
  1029. setenv("TERM", termname, 1);
  1030. args = opt_cmd ? opt_cmd : (char *[]){envshell, "-i", NULL};
  1031. execvp(args[0], args);
  1032. exit(EXIT_FAILURE);
  1033. }
  1034. void
  1035. sigchld(int a) {
  1036. int stat = 0;
  1037. if(waitpid(pid, &stat, 0) < 0)
  1038. die("Waiting for pid %hd failed: %s\n", pid, SERRNO);
  1039. if(WIFEXITED(stat)) {
  1040. exit(WEXITSTATUS(stat));
  1041. } else {
  1042. exit(EXIT_FAILURE);
  1043. }
  1044. }
  1045. void
  1046. ttynew(void) {
  1047. int m, s;
  1048. struct winsize w = {term.row, term.col, 0, 0};
  1049. /* seems to work fine on linux, openbsd and freebsd */
  1050. if(openpty(&m, &s, NULL, NULL, &w) < 0)
  1051. die("openpty failed: %s\n", SERRNO);
  1052. switch(pid = fork()) {
  1053. case -1:
  1054. die("fork failed\n");
  1055. break;
  1056. case 0:
  1057. setsid(); /* create a new process group */
  1058. dup2(s, STDIN_FILENO);
  1059. dup2(s, STDOUT_FILENO);
  1060. dup2(s, STDERR_FILENO);
  1061. if(ioctl(s, TIOCSCTTY, NULL) < 0)
  1062. die("ioctl TIOCSCTTY failed: %s\n", SERRNO);
  1063. close(s);
  1064. close(m);
  1065. execsh();
  1066. break;
  1067. default:
  1068. close(s);
  1069. cmdfd = m;
  1070. signal(SIGCHLD, sigchld);
  1071. if(opt_io) {
  1072. term.mode |= MODE_PRINT;
  1073. iofd = (!strcmp(opt_io, "-")) ?
  1074. STDOUT_FILENO :
  1075. open(opt_io, O_WRONLY | O_CREAT, 0666);
  1076. if(iofd < 0) {
  1077. fprintf(stderr, "Error opening %s:%s\n",
  1078. opt_io, strerror(errno));
  1079. }
  1080. }
  1081. }
  1082. }
  1083. void
  1084. dump(char c) {
  1085. static int col;
  1086. fprintf(stderr, " %02x '%c' ", c, isprint(c)?c:'.');
  1087. if(++col % 10 == 0)
  1088. fprintf(stderr, "\n");
  1089. }
  1090. void
  1091. ttyread(void) {
  1092. static char buf[BUFSIZ];
  1093. static int buflen = 0;
  1094. char *ptr;
  1095. char s[UTF_SIZ];
  1096. int charsize; /* size of utf8 char in bytes */
  1097. long unicodep;
  1098. int ret;
  1099. /* append read bytes to unprocessed bytes */
  1100. if((ret = read(cmdfd, buf+buflen, LEN(buf)-buflen)) < 0)
  1101. die("Couldn't read from shell: %s\n", SERRNO);
  1102. /* process every complete utf8 char */
  1103. buflen += ret;
  1104. ptr = buf;
  1105. while((charsize = utf8decode(ptr, &unicodep, buflen))) {
  1106. utf8encode(unicodep, s, UTF_SIZ);
  1107. tputc(s, charsize);
  1108. ptr += charsize;
  1109. buflen -= charsize;
  1110. }
  1111. /* keep any uncomplete utf8 char for the next call */
  1112. memmove(buf, ptr, buflen);
  1113. }
  1114. void
  1115. ttywrite(const char *s, size_t n) {
  1116. if(write(cmdfd, s, n) == -1)
  1117. die("write error on tty: %s\n", SERRNO);
  1118. }
  1119. void
  1120. ttysend(char *s, size_t n) {
  1121. ttywrite(s, n);
  1122. if(IS_SET(MODE_ECHO))
  1123. techo(s, n);
  1124. }
  1125. void
  1126. ttyresize(void) {
  1127. struct winsize w;
  1128. w.ws_row = term.row;
  1129. w.ws_col = term.col;
  1130. w.ws_xpixel = xw.tw;
  1131. w.ws_ypixel = xw.th;
  1132. if(ioctl(cmdfd, TIOCSWINSZ, &w) < 0)
  1133. fprintf(stderr, "Couldn't set window size: %s\n", SERRNO);
  1134. }
  1135. int
  1136. tattrset(int attr) {
  1137. int i, j;
  1138. for(i = 0; i < term.row-1; i++) {
  1139. for(j = 0; j < term.col-1; j++) {
  1140. if(term.line[i][j].mode & attr)
  1141. return 1;
  1142. }
  1143. }
  1144. return 0;
  1145. }
  1146. void
  1147. tsetdirt(int top, int bot) {
  1148. int i;
  1149. LIMIT(top, 0, term.row-1);
  1150. LIMIT(bot, 0, term.row-1);
  1151. for(i = top; i <= bot; i++)
  1152. term.dirty[i] = 1;
  1153. }
  1154. void
  1155. tsetdirtattr(int attr) {
  1156. int i, j;
  1157. for(i = 0; i < term.row-1; i++) {
  1158. for(j = 0; j < term.col-1; j++) {
  1159. if(term.line[i][j].mode & attr) {
  1160. tsetdirt(i, i);
  1161. break;
  1162. }
  1163. }
  1164. }
  1165. }
  1166. void
  1167. tfulldirt(void) {
  1168. tsetdirt(0, term.row-1);
  1169. }
  1170. void
  1171. tcursor(int mode) {
  1172. static TCursor c[2];
  1173. bool alt = IS_SET(MODE_ALTSCREEN);
  1174. if(mode == CURSOR_SAVE) {
  1175. c[alt] = term.c;
  1176. } else if(mode == CURSOR_LOAD) {
  1177. term.c = c[alt];
  1178. tmoveto(c[alt].x, c[alt].y);
  1179. }
  1180. }
  1181. void
  1182. treset(void) {
  1183. uint i;
  1184. term.c = (TCursor){{
  1185. .mode = ATTR_NULL,
  1186. .fg = defaultfg,
  1187. .bg = defaultbg
  1188. }, .x = 0, .y = 0, .state = CURSOR_DEFAULT};
  1189. memset(term.tabs, 0, term.col * sizeof(*term.tabs));
  1190. for(i = tabspaces; i < term.col; i += tabspaces)
  1191. term.tabs[i] = 1;
  1192. term.top = 0;
  1193. term.bot = term.row - 1;
  1194. term.mode = MODE_WRAP;
  1195. memset(term.trantbl, sizeof(term.trantbl), CS_USA);
  1196. term.charset = 0;
  1197. tclearregion(0, 0, term.col-1, term.row-1);
  1198. tmoveto(0, 0);
  1199. tcursor(CURSOR_SAVE);
  1200. }
  1201. void
  1202. tnew(int col, int row) {
  1203. term = (Term){ .c = { .attr = { .fg = defaultfg, .bg = defaultbg } } };
  1204. tresize(col, row);
  1205. term.numlock = 1;
  1206. treset();
  1207. }
  1208. void
  1209. tswapscreen(void) {
  1210. Line *tmp = term.line;
  1211. term.line = term.alt;
  1212. term.alt = tmp;
  1213. term.mode ^= MODE_ALTSCREEN;
  1214. tfulldirt();
  1215. }
  1216. void
  1217. tscrolldown(int orig, int n) {
  1218. int i;
  1219. Line temp;
  1220. LIMIT(n, 0, term.bot-orig+1);
  1221. tclearregion(0, term.bot-n+1, term.col-1, term.bot);
  1222. for(i = term.bot; i >= orig+n; i--) {
  1223. temp = term.line[i];
  1224. term.line[i] = term.line[i-n];
  1225. term.line[i-n] = temp;
  1226. term.dirty[i] = 1;
  1227. term.dirty[i-n] = 1;
  1228. }
  1229. selscroll(orig, n);
  1230. }
  1231. void
  1232. tscrollup(int orig, int n) {
  1233. int i;
  1234. Line temp;
  1235. LIMIT(n, 0, term.bot-orig+1);
  1236. tclearregion(0, orig, term.col-1, orig+n-1);
  1237. for(i = orig; i <= term.bot-n; i++) {
  1238. temp = term.line[i];
  1239. term.line[i] = term.line[i+n];
  1240. term.line[i+n] = temp;
  1241. term.dirty[i] = 1;
  1242. term.dirty[i+n] = 1;
  1243. }
  1244. selscroll(orig, -n);
  1245. }
  1246. void
  1247. selscroll(int orig, int n) {
  1248. if(sel.ob.x == -1)
  1249. return;
  1250. if(BETWEEN(sel.ob.y, orig, term.bot) || BETWEEN(sel.oe.y, orig, term.bot)) {
  1251. if((sel.ob.y += n) > term.bot || (sel.oe.y += n) < term.top) {
  1252. selclear(NULL);
  1253. return;
  1254. }
  1255. if(sel.type == SEL_RECTANGULAR) {
  1256. if(sel.ob.y < term.top)
  1257. sel.ob.y = term.top;
  1258. if(sel.oe.y > term.bot)
  1259. sel.oe.y = term.bot;
  1260. } else {
  1261. if(sel.ob.y < term.top) {
  1262. sel.ob.y = term.top;
  1263. sel.ob.x = 0;
  1264. }
  1265. if(sel.oe.y > term.bot) {
  1266. sel.oe.y = term.bot;
  1267. sel.oe.x = term.col;
  1268. }
  1269. }
  1270. selsort();
  1271. }
  1272. }
  1273. void
  1274. tnewline(int first_col) {
  1275. int y = term.c.y;
  1276. if(y == term.bot) {
  1277. tscrollup(term.top, 1);
  1278. } else {
  1279. y++;
  1280. }
  1281. tmoveto(first_col ? 0 : term.c.x, y);
  1282. }
  1283. void
  1284. csiparse(void) {
  1285. char *p = csiescseq.buf, *np;
  1286. long int v;
  1287. csiescseq.narg = 0;
  1288. if(*p == '?') {
  1289. csiescseq.priv = 1;
  1290. p++;
  1291. }
  1292. csiescseq.buf[csiescseq.len] = '\0';
  1293. while(p < csiescseq.buf+csiescseq.len) {
  1294. np = NULL;
  1295. v = strtol(p, &np, 10);
  1296. if(np == p)
  1297. v = 0;
  1298. if(v == LONG_MAX || v == LONG_MIN)
  1299. v = -1;
  1300. csiescseq.arg[csiescseq.narg++] = v;
  1301. p = np;
  1302. if(*p != ';' || csiescseq.narg == ESC_ARG_SIZ)
  1303. break;
  1304. p++;
  1305. }
  1306. csiescseq.mode = *p;
  1307. }
  1308. /* for absolute user moves, when decom is set */
  1309. void
  1310. tmoveato(int x, int y) {
  1311. tmoveto(x, y + ((term.c.state & CURSOR_ORIGIN) ? term.top: 0));
  1312. }
  1313. void
  1314. tmoveto(int x, int y) {
  1315. int miny, maxy;
  1316. if(term.c.state & CURSOR_ORIGIN) {
  1317. miny = term.top;
  1318. maxy = term.bot;
  1319. } else {
  1320. miny = 0;
  1321. maxy = term.row - 1;
  1322. }
  1323. LIMIT(x, 0, term.col-1);
  1324. LIMIT(y, miny, maxy);
  1325. term.c.state &= ~CURSOR_WRAPNEXT;
  1326. term.c.x = x;
  1327. term.c.y = y;
  1328. }
  1329. void
  1330. tsetchar(char *c, Glyph *attr, int x, int y) {
  1331. static char *vt100_0[62] = { /* 0x41 - 0x7e */
  1332. "", "", "", "", "", "", "", /* A - G */
  1333. 0, 0, 0, 0, 0, 0, 0, 0, /* H - O */
  1334. 0, 0, 0, 0, 0, 0, 0, 0, /* P - W */
  1335. 0, 0, 0, 0, 0, 0, 0, " ", /* X - _ */
  1336. "", "", "", "", "", "", "°", "±", /* ` - g */
  1337. "", "", "", "", "", "", "", "", /* h - o */
  1338. "", "", "", "", "", "", "", "", /* p - w */
  1339. "", "", "", "π", "", "£", "·", /* x - ~ */
  1340. };
  1341. /*
  1342. * The table is proudly stolen from rxvt.
  1343. */
  1344. if(attr->mode & ATTR_GFX) {
  1345. if(c[0] >= 0x41 && c[0] <= 0x7e
  1346. && vt100_0[c[0] - 0x41]) {
  1347. c = vt100_0[c[0] - 0x41];
  1348. }
  1349. }
  1350. if(term.line[y][x].mode & ATTR_WIDE) {
  1351. if(x+1 < term.col) {
  1352. term.line[y][x+1].c[0] = ' ';
  1353. term.line[y][x+1].mode &= ~ATTR_WDUMMY;
  1354. }
  1355. } else if(term.line[y][x].mode & ATTR_WDUMMY) {
  1356. term.line[y][x-1].c[0] = ' ';
  1357. term.line[y][x-1].mode &= ~ATTR_WIDE;
  1358. }
  1359. term.dirty[y] = 1;
  1360. term.line[y][x] = *attr;
  1361. memcpy(term.line[y][x].c, c, UTF_SIZ);
  1362. }
  1363. void
  1364. tclearregion(int x1, int y1, int x2, int y2) {
  1365. int x, y, temp;
  1366. if(x1 > x2)
  1367. temp = x1, x1 = x2, x2 = temp;
  1368. if(y1 > y2)
  1369. temp = y1, y1 = y2, y2 = temp;
  1370. LIMIT(x1, 0, term.col-1);
  1371. LIMIT(x2, 0, term.col-1);
  1372. LIMIT(y1, 0, term.row-1);
  1373. LIMIT(y2, 0, term.row-1);
  1374. for(y = y1; y <= y2; y++) {
  1375. term.dirty[y] = 1;
  1376. for(x = x1; x <= x2; x++) {
  1377. if(selected(x, y))
  1378. selclear(NULL);
  1379. term.line[y][x] = term.c.attr;
  1380. memcpy(term.line[y][x].c, " ", 2);
  1381. }
  1382. }
  1383. }
  1384. void
  1385. tdeletechar(int n) {
  1386. int src = term.c.x + n;
  1387. int dst = term.c.x;
  1388. int size = term.col - src;
  1389. term.dirty[term.c.y] = 1;
  1390. if(src >= term.col) {
  1391. tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
  1392. return;
  1393. }
  1394. memmove(&term.line[term.c.y][dst], &term.line[term.c.y][src],
  1395. size * sizeof(Glyph));
  1396. tclearregion(term.col-n, term.c.y, term.col-1, term.c.y);
  1397. }
  1398. void
  1399. tinsertblank(int n) {
  1400. int src = term.c.x;
  1401. int dst = src + n;
  1402. int size = term.col - dst;
  1403. term.dirty[term.c.y] = 1;
  1404. if(dst >= term.col) {
  1405. tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
  1406. return;
  1407. }
  1408. memmove(&term.line[term.c.y][dst], &term.line[term.c.y][src],
  1409. size * sizeof(Glyph));
  1410. tclearregion(src, term.c.y, dst - 1, term.c.y);
  1411. }
  1412. void
  1413. tinsertblankline(int n) {
  1414. if(term.c.y < term.top || term.c.y > term.bot)
  1415. return;
  1416. tscrolldown(term.c.y, n);
  1417. }
  1418. void
  1419. tdeleteline(int n) {
  1420. if(term.c.y < term.top || term.c.y > term.bot)
  1421. return;
  1422. tscrollup(term.c.y, n);
  1423. }
  1424. int32_t
  1425. tdefcolor(int *attr, int *npar, int l) {
  1426. int32_t idx = -1;
  1427. uint r, g, b;
  1428. switch (attr[*npar + 1]) {
  1429. case 2: /* direct colour in RGB space */
  1430. if (*npar + 4 >= l) {
  1431. fprintf(stderr,
  1432. "erresc(38): Incorrect number of parameters (%d)\n",
  1433. *npar);
  1434. break;
  1435. }
  1436. r = attr[*npar + 2];
  1437. g = attr[*npar + 3];
  1438. b = attr[*npar + 4];
  1439. *npar += 4;
  1440. if(!BETWEEN(r, 0, 255) || !BETWEEN(g, 0, 255) || !BETWEEN(b, 0, 255))
  1441. fprintf(stderr, "erresc: bad rgb color (%d,%d,%d)\n",
  1442. r, g, b);
  1443. else
  1444. idx = TRUECOLOR(r, g, b);
  1445. break;
  1446. case 5: /* indexed colour */
  1447. if (*npar + 2 >= l) {
  1448. fprintf(stderr,
  1449. "erresc(38): Incorrect number of parameters (%d)\n",
  1450. *npar);
  1451. break;
  1452. }
  1453. *npar += 2;
  1454. if(!BETWEEN(attr[*npar], 0, 255))
  1455. fprintf(stderr, "erresc: bad fgcolor %d\n", attr[*npar]);
  1456. else
  1457. idx = attr[*npar];
  1458. break;
  1459. case 0: /* implemented defined (only foreground) */
  1460. case 1: /* transparent */
  1461. case 3: /* direct colour in CMY space */
  1462. case 4: /* direct colour in CMYK space */
  1463. default:
  1464. fprintf(stderr,
  1465. "erresc(38): gfx attr %d unknown\n", attr[*npar]);
  1466. }
  1467. return idx;
  1468. }
  1469. void
  1470. tsetattr(int *attr, int l) {
  1471. int i;
  1472. int32_t idx;
  1473. for(i = 0; i < l; i++) {
  1474. switch(attr[i]) {
  1475. case 0:
  1476. term.c.attr.mode &= ~(ATTR_REVERSE | ATTR_UNDERLINE \
  1477. | ATTR_BOLD | ATTR_ITALIC \
  1478. | ATTR_BLINK);
  1479. term.c.attr.fg = defaultfg;
  1480. term.c.attr.bg = defaultbg;
  1481. break;
  1482. case 1:
  1483. term.c.attr.mode |= ATTR_BOLD;
  1484. break;
  1485. case 3:
  1486. term.c.attr.mode |= ATTR_ITALIC;
  1487. break;
  1488. case 4:
  1489. term.c.attr.mode |= ATTR_UNDERLINE;
  1490. break;
  1491. case 5: /* slow blink */
  1492. case 6: /* rapid blink */
  1493. term.c.attr.mode |= ATTR_BLINK;
  1494. break;
  1495. case 7:
  1496. term.c.attr.mode |= ATTR_REVERSE;
  1497. break;
  1498. case 21:
  1499. case 22:
  1500. term.c.attr.mode &= ~ATTR_BOLD;
  1501. break;
  1502. case 23:
  1503. term.c.attr.mode &= ~ATTR_ITALIC;
  1504. break;
  1505. case 24:
  1506. term.c.attr.mode &= ~ATTR_UNDERLINE;
  1507. break;
  1508. case 25:
  1509. case 26:
  1510. term.c.attr.mode &= ~ATTR_BLINK;
  1511. break;
  1512. case 27:
  1513. term.c.attr.mode &= ~ATTR_REVERSE;
  1514. break;
  1515. case 38:
  1516. if ((idx = tdefcolor(attr, &i, l)) >= 0)
  1517. term.c.attr.fg = idx;
  1518. break;
  1519. case 39:
  1520. term.c.attr.fg = defaultfg;
  1521. break;
  1522. case 48:
  1523. if ((idx = tdefcolor(attr, &i, l)) >= 0)
  1524. term.c.attr.bg = idx;
  1525. break;
  1526. case 49:
  1527. term.c.attr.bg = defaultbg;
  1528. break;
  1529. default:
  1530. if(BETWEEN(attr[i], 30, 37)) {
  1531. term.c.attr.fg = attr[i] - 30;
  1532. } else if(BETWEEN(attr[i], 40, 47)) {
  1533. term.c.attr.bg = attr[i] - 40;
  1534. } else if(BETWEEN(attr[i], 90, 97)) {
  1535. term.c.attr.fg = attr[i] - 90 + 8;
  1536. } else if(BETWEEN(attr[i], 100, 107)) {
  1537. term.c.attr.bg = attr[i] - 100 + 8;
  1538. } else {
  1539. fprintf(stderr,
  1540. "erresc(default): gfx attr %d unknown\n",
  1541. attr[i]), csidump();
  1542. }
  1543. break;
  1544. }
  1545. }
  1546. }
  1547. void
  1548. tsetscroll(int t, int b) {
  1549. int temp;
  1550. LIMIT(t, 0, term.row-1);
  1551. LIMIT(b, 0, term.row-1);
  1552. if(t > b) {
  1553. temp = t;
  1554. t = b;
  1555. b = temp;
  1556. }
  1557. term.top = t;
  1558. term.bot = b;
  1559. }
  1560. #define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
  1561. void
  1562. tsetmode(bool priv, bool set, int *args, int narg) {
  1563. int *lim, mode;
  1564. bool alt;
  1565. for(lim = args + narg; args < lim; ++args) {
  1566. if(priv) {
  1567. switch(*args) {
  1568. break;
  1569. case 1: /* DECCKM -- Cursor key */
  1570. MODBIT(term.mode, set, MODE_APPCURSOR);
  1571. break;
  1572. case 5: /* DECSCNM -- Reverse video */
  1573. mode = term.mode;
  1574. MODBIT(term.mode, set, MODE_REVERSE);
  1575. if(mode != term.mode)
  1576. redraw(REDRAW_TIMEOUT);
  1577. break;
  1578. case 6: /* DECOM -- Origin */
  1579. MODBIT(term.c.state, set, CURSOR_ORIGIN);
  1580. tmoveato(0, 0);
  1581. break;
  1582. case 7: /* DECAWM -- Auto wrap */
  1583. MODBIT(term.mode, set, MODE_WRAP);
  1584. break;
  1585. case 0: /* Error (IGNORED) */
  1586. case 2: /* DECANM -- ANSI/VT52 (IGNORED) */
  1587. case 3: /* DECCOLM -- Column (IGNORED) */
  1588. case 4: /* DECSCLM -- Scroll (IGNORED) */
  1589. case 8: /* DECARM -- Auto repeat (IGNORED) */
  1590. case 18: /* DECPFF -- Printer feed (IGNORED) */
  1591. case 19: /* DECPEX -- Printer extent (IGNORED) */
  1592. case 42: /* DECNRCM -- National characters (IGNORED) */
  1593. case 12: /* att610 -- Start blinking cursor (IGNORED) */
  1594. break;
  1595. case 25: /* DECTCEM -- Text Cursor Enable Mode */
  1596. MODBIT(term.mode, !set, MODE_HIDE);
  1597. break;
  1598. case 9: /* X10 mouse compatibility mode */
  1599. xsetpointermotion(0);
  1600. MODBIT(term.mode, 0, MODE_MOUSE);
  1601. MODBIT(term.mode, set, MODE_MOUSEX10);
  1602. break;
  1603. case 1000: /* 1000: report button press */
  1604. xsetpointermotion(0);
  1605. MODBIT(term.mode, 0, MODE_MOUSE);
  1606. MODBIT(term.mode, set, MODE_MOUSEBTN);
  1607. break;
  1608. case 1002: /* 1002: report motion on button press */
  1609. xsetpointermotion(0);
  1610. MODBIT(term.mode, 0, MODE_MOUSE);
  1611. MODBIT(term.mode, set, MODE_MOUSEMOTION);
  1612. break;
  1613. case 1003: /* 1003: enable all mouse motions */
  1614. xsetpointermotion(set);
  1615. MODBIT(term.mode, 0, MODE_MOUSE);
  1616. MODBIT(term.mode, set, MODE_MOUSEMANY);
  1617. break;
  1618. case 1004: /* 1004: send focus events to tty */
  1619. MODBIT(term.mode, set, MODE_FOCUS);
  1620. break;
  1621. case 1006: /* 1006: extended reporting mode */
  1622. MODBIT(term.mode, set, MODE_MOUSESGR);
  1623. break;
  1624. case 1034:
  1625. MODBIT(term.mode, set, MODE_8BIT);
  1626. break;
  1627. case 1049: /* swap screen & set/restore cursor as xterm */
  1628. tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
  1629. case 47: /* swap screen */
  1630. case 1047:
  1631. if (!allowaltscreen)
  1632. break;
  1633. alt = IS_SET(MODE_ALTSCREEN);
  1634. if(alt) {
  1635. tclearregion(0, 0, term.col-1,
  1636. term.row-1);
  1637. }
  1638. if(set ^ alt) /* set is always 1 or 0 */
  1639. tswapscreen();
  1640. if(*args != 1049)
  1641. break;
  1642. /* FALLTRU */
  1643. case 1048:
  1644. tcursor((set) ? CURSOR_SAVE : CURSOR_LOAD);
  1645. break;
  1646. case 2004: /* 2004: bracketed paste mode */
  1647. MODBIT(term.mode, set, MODE_BRCKTPASTE);
  1648. break;
  1649. /* Not implemented mouse modes. See comments there. */
  1650. case 1001: /* mouse highlight mode; can hang the
  1651. terminal by design when implemented. */
  1652. case 1005: /* UTF-8 mouse mode; will confuse
  1653. applications not supporting UTF-8
  1654. and luit. */
  1655. case 1015: /* urxvt mangled mouse mode; incompatible
  1656. and can be mistaken for other control
  1657. codes. */
  1658. default:
  1659. fprintf(stderr,
  1660. "erresc: unknown private set/reset mode %d\n",
  1661. *args);
  1662. break;
  1663. }
  1664. } else {
  1665. switch(*args) {
  1666. case 0: /* Error (IGNORED) */
  1667. break;
  1668. case 2: /* KAM -- keyboard action */
  1669. MODBIT(term.mode, set, MODE_KBDLOCK);
  1670. break;
  1671. case 4: /* IRM -- Insertion-replacement */
  1672. MODBIT(term.mode, set, MODE_INSERT);
  1673. break;
  1674. case 12: /* SRM -- Send/Receive */
  1675. MODBIT(term.mode, !set, MODE_ECHO);
  1676. break;
  1677. case 20: /* LNM -- Linefeed/new line */
  1678. MODBIT(term.mode, set, MODE_CRLF);
  1679. break;
  1680. default:
  1681. fprintf(stderr,
  1682. "erresc: unknown set/reset mode %d\n",
  1683. *args);
  1684. break;
  1685. }
  1686. }
  1687. }
  1688. }
  1689. void
  1690. csihandle(void) {
  1691. char buf[40];
  1692. int len;
  1693. switch(csiescseq.mode) {
  1694. default:
  1695. unknown:
  1696. fprintf(stderr, "erresc: unknown csi ");
  1697. csidump();
  1698. /* die(""); */
  1699. break;
  1700. case '@': /* ICH -- Insert <n> blank char */
  1701. DEFAULT(csiescseq.arg[0], 1);
  1702. tinsertblank(csiescseq.arg[0]);
  1703. break;
  1704. case 'A': /* CUU -- Cursor <n> Up */
  1705. DEFAULT(csiescseq.arg[0], 1);
  1706. tmoveto(term.c.x, term.c.y-csiescseq.arg[0]);
  1707. break;
  1708. case 'B': /* CUD -- Cursor <n> Down */
  1709. case 'e': /* VPR --Cursor <n> Down */
  1710. DEFAULT(csiescseq.arg[0], 1);
  1711. tmoveto(term.c.x, term.c.y+csiescseq.arg[0]);
  1712. break;
  1713. case 'i': /* MC -- Media Copy */
  1714. switch(csiescseq.arg[0]) {
  1715. case 0:
  1716. tdump();
  1717. break;
  1718. case 1:
  1719. tdumpline(term.c.y);
  1720. break;
  1721. case 2:
  1722. tdumpsel();
  1723. break;
  1724. case 4:
  1725. term.mode &= ~MODE_PRINT;
  1726. break;
  1727. case 5:
  1728. term.mode |= MODE_PRINT;
  1729. break;
  1730. }
  1731. break;
  1732. case 'c': /* DA -- Device Attributes */
  1733. if(csiescseq.arg[0] == 0)
  1734. ttywrite(VT102ID, sizeof(VT102ID) - 1);
  1735. break;
  1736. case 'C': /* CUF -- Cursor <n> Forward */
  1737. case 'a': /* HPR -- Cursor <n> Forward */
  1738. DEFAULT(csiescseq.arg[0], 1);
  1739. tmoveto(term.c.x+csiescseq.arg[0], term.c.y);
  1740. break;
  1741. case 'D': /* CUB -- Cursor <n> Backward */
  1742. DEFAULT(csiescseq.arg[0], 1);
  1743. tmoveto(term.c.x-csiescseq.arg[0], term.c.y);
  1744. break;
  1745. case 'E': /* CNL -- Cursor <n> Down and first col */
  1746. DEFAULT(csiescseq.arg[0], 1);
  1747. tmoveto(0, term.c.y+csiescseq.arg[0]);
  1748. break;
  1749. case 'F': /* CPL -- Cursor <n> Up and first col */
  1750. DEFAULT(csiescseq.arg[0], 1);
  1751. tmoveto(0, term.c.y-csiescseq.arg[0]);
  1752. break;
  1753. case 'g': /* TBC -- Tabulation clear */
  1754. switch(csiescseq.arg[0]) {
  1755. case 0: /* clear current tab stop */
  1756. term.tabs[term.c.x] = 0;
  1757. break;
  1758. case 3: /* clear all the tabs */
  1759. memset(term.tabs, 0, term.col * sizeof(*term.tabs));
  1760. break;
  1761. default:
  1762. goto unknown;
  1763. }
  1764. break;
  1765. case 'G': /* CHA -- Move to <col> */
  1766. case '`': /* HPA */
  1767. DEFAULT(csiescseq.arg[0], 1);
  1768. tmoveto(csiescseq.arg[0]-1, term.c.y);
  1769. break;
  1770. case 'H': /* CUP -- Move to <row> <col> */
  1771. case 'f': /* HVP */
  1772. DEFAULT(csiescseq.arg[0], 1);
  1773. DEFAULT(csiescseq.arg[1], 1);
  1774. tmoveato(csiescseq.arg[1]-1, csiescseq.arg[0]-1);
  1775. break;
  1776. case 'I': /* CHT -- Cursor Forward Tabulation <n> tab stops */
  1777. DEFAULT(csiescseq.arg[0], 1);
  1778. while(csiescseq.arg[0]--)
  1779. tputtab(1);
  1780. break;
  1781. case 'J': /* ED -- Clear screen */
  1782. selclear(NULL);
  1783. switch(csiescseq.arg[0]) {
  1784. case 0: /* below */
  1785. tclearregion(term.c.x, term.c.y, term.col-1, term.c.y);
  1786. if(term.c.y < term.row-1) {
  1787. tclearregion(0, term.c.y+1, term.col-1,
  1788. term.row-1);
  1789. }
  1790. break;
  1791. case 1: /* above */
  1792. if(term.c.y > 1)
  1793. tclearregion(0, 0, term.col-1, term.c.y-1);
  1794. tclearregion(0, term.c.y, term.c.x, term.c.y);
  1795. break;
  1796. case 2: /* all */
  1797. tclearregion(0, 0, term.col-1, term.row-1);
  1798. break;
  1799. default:
  1800. goto unknown;
  1801. }
  1802. break;
  1803. case 'K': /* EL -- Clear line */
  1804. switch(csiescseq.arg[0]) {
  1805. case 0: /* right */
  1806. tclearregion(term.c.x, term.c.y, term.col-1,
  1807. term.c.y);
  1808. break;
  1809. case 1: /* left */
  1810. tclearregion(0, term.c.y, term.c.x, term.c.y);
  1811. break;
  1812. case 2: /* all */
  1813. tclearregion(0, term.c.y, term.col-1, term.c.y);
  1814. break;
  1815. }
  1816. break;
  1817. case 'S': /* SU -- Scroll <n> line up */
  1818. DEFAULT(csiescseq.arg[0], 1);
  1819. tscrollup(term.top, csiescseq.arg[0]);
  1820. break;
  1821. case 'T': /* SD -- Scroll <n> line down */
  1822. DEFAULT(csiescseq.arg[0], 1);
  1823. tscrolldown(term.top, csiescseq.arg[0]);
  1824. break;
  1825. case 'L': /* IL -- Insert <n> blank lines */
  1826. DEFAULT(csiescseq.arg[0], 1);
  1827. tinsertblankline(csiescseq.arg[0]);
  1828. break;
  1829. case 'l': /* RM -- Reset Mode */
  1830. tsetmode(csiescseq.priv, 0, csiescseq.arg, csiescseq.narg);
  1831. break;
  1832. case 'M': /* DL -- Delete <n> lines */
  1833. DEFAULT(csiescseq.arg[0], 1);
  1834. tdeleteline(csiescseq.arg[0]);
  1835. break;
  1836. case 'X': /* ECH -- Erase <n> char */
  1837. DEFAULT(csiescseq.arg[0], 1);
  1838. tclearregion(term.c.x, term.c.y,
  1839. term.c.x + csiescseq.arg[0] - 1, term.c.y);
  1840. break;
  1841. case 'P': /* DCH -- Delete <n> char */
  1842. DEFAULT(csiescseq.arg[0], 1);
  1843. tdeletechar(csiescseq.arg[0]);
  1844. break;
  1845. case 'Z': /* CBT -- Cursor Backward Tabulation <n> tab stops */
  1846. DEFAULT(csiescseq.arg[0], 1);
  1847. while(csiescseq.arg[0]--)
  1848. tputtab(0);
  1849. break;
  1850. case 'd': /* VPA -- Move to <row> */
  1851. DEFAULT(csiescseq.arg[0], 1);
  1852. tmoveato(term.c.x, csiescseq.arg[0]-1);
  1853. break;
  1854. case 'h': /* SM -- Set terminal mode */
  1855. tsetmode(csiescseq.priv, 1, csiescseq.arg, csiescseq.narg);
  1856. break;
  1857. case 'm': /* SGR -- Terminal attribute (color) */
  1858. tsetattr(csiescseq.arg, csiescseq.narg);
  1859. break;
  1860. case 'n': /* DSR – Device Status Report (cursor position) */
  1861. if (csiescseq.arg[0] == 6) {
  1862. len = snprintf(buf, sizeof(buf),"\033[%i;%iR",
  1863. term.c.y+1, term.c.x+1);
  1864. ttywrite(buf, len);
  1865. break;
  1866. }
  1867. case 'r': /* DECSTBM -- Set Scrolling Region */
  1868. if(csiescseq.priv) {
  1869. goto unknown;
  1870. } else {
  1871. DEFAULT(csiescseq.arg[0], 1);
  1872. DEFAULT(csiescseq.arg[1], term.row);
  1873. tsetscroll(csiescseq.arg[0]-1, csiescseq.arg[1]-1);
  1874. tmoveato(0, 0);
  1875. }
  1876. break;
  1877. case 's': /* DECSC -- Save cursor position (ANSI.SYS) */
  1878. tcursor(CURSOR_SAVE);
  1879. break;
  1880. case 'u': /* DECRC -- Restore cursor position (ANSI.SYS) */
  1881. tcursor(CURSOR_LOAD);
  1882. break;
  1883. }
  1884. }
  1885. void
  1886. csidump(void) {
  1887. int i;
  1888. uint c;
  1889. printf("ESC[");
  1890. for(i = 0; i < csiescseq.len; i++) {
  1891. c = csiescseq.buf[i] & 0xff;
  1892. if(isprint(c)) {
  1893. putchar(c);
  1894. } else if(c == '\n') {
  1895. printf("(\\n)");
  1896. } else if(c == '\r') {
  1897. printf("(\\r)");
  1898. } else if(c == 0x1b) {
  1899. printf("(\\e)");
  1900. } else {
  1901. printf("(%02x)", c);
  1902. }
  1903. }
  1904. putchar('\n');
  1905. }
  1906. void
  1907. csireset(void) {
  1908. memset(&csiescseq, 0, sizeof(csiescseq));
  1909. }
  1910. void
  1911. strhandle(void) {
  1912. char *p = NULL;
  1913. int j, narg, par;
  1914. strparse();
  1915. narg = strescseq.narg;
  1916. par = atoi(strescseq.args[0]);
  1917. switch(strescseq.type) {
  1918. case ']': /* OSC -- Operating System Command */
  1919. switch(par) {
  1920. case 0:
  1921. case 1:
  1922. case 2:
  1923. if(narg > 1)
  1924. xsettitle(strescseq.args[1]);
  1925. return;
  1926. case 4: /* color set */
  1927. if(narg < 3)
  1928. break;
  1929. p = strescseq.args[2];
  1930. /* fall through */
  1931. case 104: /* color reset, here p = NULL */
  1932. j = (narg > 1) ? atoi(strescseq.args[1]) : -1;
  1933. if (!xsetcolorname(j, p)) {
  1934. fprintf(stderr, "erresc: invalid color %s\n", p);
  1935. } else {
  1936. /*
  1937. * TODO if defaultbg color is changed, borders
  1938. * are dirty
  1939. */
  1940. redraw(0);
  1941. }
  1942. return;
  1943. }
  1944. break;
  1945. case 'k': /* old title set compatibility */
  1946. xsettitle(strescseq.args[0]);
  1947. return;
  1948. case 'P': /* DSC -- Device Control String */
  1949. case '_': /* APC -- Application Program Command */
  1950. case '^': /* PM -- Privacy Message */
  1951. return;
  1952. }
  1953. fprintf(stderr, "erresc: unknown str ");
  1954. strdump();
  1955. }
  1956. void
  1957. strparse(void) {
  1958. char *p = strescseq.buf;
  1959. strescseq.narg = 0;
  1960. strescseq.buf[strescseq.len] = '\0';
  1961. while(p && strescseq.narg < STR_ARG_SIZ)
  1962. strescseq.args[strescseq.narg++] = strsep(&p, ";");
  1963. }
  1964. void
  1965. strdump(void) {
  1966. int i;
  1967. uint c;
  1968. printf("ESC%c", strescseq.type);
  1969. for(i = 0; i < strescseq.len; i++) {
  1970. c = strescseq.buf[i] & 0xff;
  1971. if(c == '\0') {
  1972. return;
  1973. } else if(isprint(c)) {
  1974. putchar(c);
  1975. } else if(c == '\n') {
  1976. printf("(\\n)");
  1977. } else if(c == '\r') {
  1978. printf("(\\r)");
  1979. } else if(c == 0x1b) {
  1980. printf("(\\e)");
  1981. } else {
  1982. printf("(%02x)", c);
  1983. }
  1984. }
  1985. printf("ESC\\\n");
  1986. }
  1987. void
  1988. strreset(void) {
  1989. memset(&strescseq, 0, sizeof(strescseq));
  1990. }
  1991. void
  1992. tprinter(char *s, size_t len) {
  1993. if(iofd != -1 && xwrite(iofd, s, len) < 0) {
  1994. fprintf(stderr, "Error writing in %s:%s\n",
  1995. opt_io, strerror(errno));
  1996. close(iofd);
  1997. iofd = -1;
  1998. }
  1999. }
  2000. void
  2001. toggleprinter(const Arg *arg) {
  2002. term.mode ^= MODE_PRINT;
  2003. }
  2004. void
  2005. printscreen(const Arg *arg) {
  2006. tdump();
  2007. }
  2008. void
  2009. printsel(const Arg *arg) {
  2010. tdumpsel();
  2011. }
  2012. void
  2013. tdumpsel(void)
  2014. {
  2015. char *ptr;
  2016. if((ptr = getsel())) {
  2017. tprinter(ptr, strlen(ptr));
  2018. free(ptr);
  2019. }
  2020. }
  2021. void
  2022. tdumpline(int n) {
  2023. Glyph *bp, *end;
  2024. bp = &term.line[n][0];
  2025. end = &bp[term.col-1];
  2026. while(end > bp && !strcmp(" ", end->c))
  2027. --end;
  2028. if(bp != end || strcmp(bp->c, " ")) {
  2029. for( ;bp <= end; ++bp)
  2030. tprinter(bp->c, strlen(bp->c));
  2031. }
  2032. tprinter("\n", 1);
  2033. }
  2034. void
  2035. tdump(void) {
  2036. int i;
  2037. for(i = 0; i < term.row; ++i)
  2038. tdumpline(i);
  2039. }
  2040. void
  2041. tputtab(bool forward) {
  2042. uint x = term.c.x;
  2043. if(forward) {
  2044. if(x == term.col)
  2045. return;
  2046. for(++x; x < term.col && !term.tabs[x]; ++x)
  2047. /* nothing */ ;
  2048. } else {
  2049. if(x == 0)
  2050. return;
  2051. for(--x; x > 0 && !term.tabs[x]; --x)
  2052. /* nothing */ ;
  2053. }
  2054. tmoveto(x, term.c.y);
  2055. }
  2056. void
  2057. techo(char *buf, int len) {
  2058. for(; len > 0; buf++, len--) {
  2059. char c = *buf;
  2060. if(c == '\033') { /* escape */
  2061. tputc("^", 1);
  2062. tputc("[", 1);
  2063. } else if(c < '\x20') { /* control code */
  2064. if(c != '\n' && c != '\r' && c != '\t') {
  2065. c |= '\x40';
  2066. tputc("^", 1);
  2067. }
  2068. tputc(&c, 1);
  2069. } else {
  2070. break;
  2071. }
  2072. }
  2073. if(len)
  2074. tputc(buf, len);
  2075. }
  2076. void
  2077. tdeftran(char ascii) {
  2078. char c, (*bp)[2];
  2079. static char tbl[][2] = {
  2080. {'0', CS_GRAPHIC0}, {'1', CS_GRAPHIC1}, {'A', CS_UK},
  2081. {'B', CS_USA}, {'<', CS_MULTI}, {'K', CS_GER},
  2082. {'5', CS_FIN}, {'C', CS_FIN},
  2083. {0, 0}
  2084. };
  2085. for (bp = &tbl[0]; (c = (*bp)[0]) && c != ascii; ++bp)
  2086. /* nothing */;
  2087. if (c == 0)
  2088. fprintf(stderr, "esc unhandled charset: ESC ( %c\n", ascii);
  2089. else
  2090. term.trantbl[term.icharset] = (*bp)[1];
  2091. }
  2092. void
  2093. tselcs(void) {
  2094. if (term.trantbl[term.charset] == CS_GRAPHIC0)
  2095. term.c.attr.mode |= ATTR_GFX;
  2096. else
  2097. term.c.attr.mode &= ~ATTR_GFX;
  2098. }
  2099. void
  2100. tputc(char *c, int len) {
  2101. uchar ascii = *c;
  2102. bool control = ascii < '\x20' || ascii == 0177;
  2103. long unicodep;
  2104. int width;
  2105. if(len == 1) {
  2106. width = 1;
  2107. } else {
  2108. utf8decode(c, &unicodep, UTF_SIZ);
  2109. width = wcwidth(unicodep);
  2110. }
  2111. if(IS_SET(MODE_PRINT))
  2112. tprinter(c, len);
  2113. /*
  2114. * STR sequences must be checked before anything else
  2115. * because it can use some control codes as part of the sequence.
  2116. */
  2117. if(term.esc & ESC_STR) {
  2118. switch(ascii) {
  2119. case '\033':
  2120. term.esc = ESC_START | ESC_STR_END;
  2121. break;
  2122. case '\a': /* backwards compatibility to xterm */
  2123. term.esc = 0;
  2124. strhandle();
  2125. break;
  2126. default:
  2127. if(strescseq.len + len < sizeof(strescseq.buf) - 1) {
  2128. memmove(&strescseq.buf[strescseq.len], c, len);
  2129. strescseq.len += len;
  2130. } else {
  2131. /*
  2132. * Here is a bug in terminals. If the user never sends
  2133. * some code to stop the str or esc command, then st
  2134. * will stop responding. But this is better than
  2135. * silently failing with unknown characters. At least
  2136. * then users will report back.
  2137. *
  2138. * In the case users ever get fixed, here is the code:
  2139. */
  2140. /*
  2141. * term.esc = 0;
  2142. * strhandle();
  2143. */
  2144. }
  2145. }
  2146. return;
  2147. }
  2148. /*
  2149. * Actions of control codes must be performed as soon they arrive
  2150. * because they can be embedded inside a control sequence, and
  2151. * they must not cause conflicts with sequences.
  2152. */
  2153. if(control) {
  2154. switch(ascii) {
  2155. case '\t': /* HT */
  2156. tputtab(1);
  2157. return;
  2158. case '\b': /* BS */
  2159. tmoveto(term.c.x-1, term.c.y);
  2160. return;
  2161. case '\r': /* CR */
  2162. tmoveto(0, term.c.y);
  2163. return;
  2164. case '\f': /* LF */
  2165. case '\v': /* VT */
  2166. case '\n': /* LF */
  2167. /* go to first col if the mode is set */
  2168. tnewline(IS_SET(MODE_CRLF));
  2169. return;
  2170. case '\a': /* BEL */
  2171. if(!(xw.state & WIN_FOCUSED))
  2172. xseturgency(1);
  2173. if (bellvolume)
  2174. XBell(xw.dpy, bellvolume);
  2175. return;
  2176. case '\033': /* ESC */
  2177. csireset();
  2178. term.esc = ESC_START;
  2179. return;
  2180. case '\016': /* SO */
  2181. term.charset = 0;
  2182. tselcs();
  2183. return;
  2184. case '\017': /* SI */
  2185. term.charset = 1;
  2186. tselcs();
  2187. return;
  2188. case '\032': /* SUB */
  2189. case '\030': /* CAN */
  2190. csireset();
  2191. return;
  2192. case '\005': /* ENQ (IGNORED) */
  2193. case '\000': /* NUL (IGNORED) */
  2194. case '\021': /* XON (IGNORED) */
  2195. case '\023': /* XOFF (IGNORED) */
  2196. case 0177: /* DEL (IGNORED) */
  2197. return;
  2198. }
  2199. } else if(term.esc & ESC_START) {
  2200. if(term.esc & ESC_CSI) {
  2201. csiescseq.buf[csiescseq.len++] = ascii;
  2202. if(BETWEEN(ascii, 0x40, 0x7E)
  2203. || csiescseq.len >= \
  2204. sizeof(csiescseq.buf)-1) {
  2205. term.esc = 0;
  2206. csiparse();
  2207. csihandle();
  2208. }
  2209. } else if(term.esc & ESC_STR_END) {
  2210. term.esc = 0;
  2211. if(ascii == '\\')
  2212. strhandle();
  2213. } else if(term.esc & ESC_ALTCHARSET) {
  2214. tdeftran(ascii);
  2215. tselcs();
  2216. term.esc = 0;
  2217. } else if(term.esc & ESC_TEST) {
  2218. if(ascii == '8') { /* DEC screen alignment test. */
  2219. char E[UTF_SIZ] = "E";
  2220. int x, y;
  2221. for(x = 0; x < term.col; ++x) {
  2222. for(y = 0; y < term.row; ++y)
  2223. tsetchar(E, &term.c.attr, x, y);
  2224. }
  2225. }
  2226. term.esc = 0;
  2227. } else {
  2228. switch(ascii) {
  2229. case '[':
  2230. term.esc |= ESC_CSI;
  2231. break;
  2232. case '#':
  2233. term.esc |= ESC_TEST;
  2234. break;
  2235. case 'P': /* DCS -- Device Control String */
  2236. case '_': /* APC -- Application Program Command */
  2237. case '^': /* PM -- Privacy Message */
  2238. case ']': /* OSC -- Operating System Command */
  2239. case 'k': /* old title set compatibility */
  2240. strreset();
  2241. strescseq.type = ascii;
  2242. term.esc |= ESC_STR;
  2243. break;
  2244. case '(': /* set primary charset G0 */
  2245. case ')': /* set secondary charset G1 */
  2246. case '*': /* set tertiary charset G2 */
  2247. case '+': /* set quaternary charset G3 */
  2248. term.icharset = ascii - '(';
  2249. term.esc |= ESC_ALTCHARSET;
  2250. break;
  2251. case 'D': /* IND -- Linefeed */
  2252. if(term.c.y == term.bot) {
  2253. tscrollup(term.top, 1);
  2254. } else {
  2255. tmoveto(term.c.x, term.c.y+1);
  2256. }
  2257. term.esc = 0;
  2258. break;
  2259. case 'E': /* NEL -- Next line */
  2260. tnewline(1); /* always go to first col */
  2261. term.esc = 0;
  2262. break;
  2263. case 'H': /* HTS -- Horizontal tab stop */
  2264. term.tabs[term.c.x] = 1;
  2265. term.esc = 0;
  2266. break;
  2267. case 'M': /* RI -- Reverse index */
  2268. if(term.c.y == term.top) {
  2269. tscrolldown(term.top, 1);
  2270. } else {
  2271. tmoveto(term.c.x, term.c.y-1);
  2272. }
  2273. term.esc = 0;
  2274. break;
  2275. case 'Z': /* DECID -- Identify Terminal */
  2276. ttywrite(VT102ID, sizeof(VT102ID) - 1);
  2277. term.esc = 0;
  2278. break;
  2279. case 'c': /* RIS -- Reset to inital state */
  2280. treset();
  2281. term.esc = 0;
  2282. xresettitle();
  2283. xloadcols();
  2284. break;
  2285. case '=': /* DECPAM -- Application keypad */
  2286. term.mode |= MODE_APPKEYPAD;
  2287. term.esc = 0;
  2288. break;
  2289. case '>': /* DECPNM -- Normal keypad */
  2290. term.mode &= ~MODE_APPKEYPAD;
  2291. term.esc = 0;
  2292. break;
  2293. case '7': /* DECSC -- Save Cursor */
  2294. tcursor(CURSOR_SAVE);
  2295. term.esc = 0;
  2296. break;
  2297. case '8': /* DECRC -- Restore Cursor */
  2298. tcursor(CURSOR_LOAD);
  2299. term.esc = 0;
  2300. break;
  2301. case '\\': /* ST -- Stop */
  2302. term.esc = 0;
  2303. break;
  2304. default:
  2305. fprintf(stderr, "erresc: unknown sequence ESC 0x%02X '%c'\n",
  2306. (uchar) ascii, isprint(ascii)? ascii:'.');
  2307. term.esc = 0;
  2308. }
  2309. }
  2310. /*
  2311. * All characters which form part of a sequence are not
  2312. * printed
  2313. */
  2314. return;
  2315. }
  2316. /*
  2317. * Display control codes only if we are in graphic mode
  2318. */
  2319. if(control && !(term.c.attr.mode & ATTR_GFX))
  2320. return;
  2321. if(sel.ob.x != -1 && BETWEEN(term.c.y, sel.ob.y, sel.oe.y))
  2322. selclear(NULL);
  2323. if(IS_SET(MODE_WRAP) && (term.c.state & CURSOR_WRAPNEXT)) {
  2324. term.line[term.c.y][term.c.x].mode |= ATTR_WRAP;
  2325. tnewline(1);
  2326. }
  2327. if(IS_SET(MODE_INSERT) && term.c.x+1 < term.col) {
  2328. memmove(&term.line[term.c.y][term.c.x+1],
  2329. &term.line[term.c.y][term.c.x],
  2330. (term.col - term.c.x - 1) * sizeof(Glyph));
  2331. }
  2332. if(term.c.x+width > term.col)
  2333. tnewline(1);
  2334. tsetchar(c, &term.c.attr, term.c.x, term.c.y);
  2335. if(width == 2) {
  2336. term.line[term.c.y][term.c.x].mode |= ATTR_WIDE;
  2337. if(term.c.x+1 < term.col) {
  2338. term.line[term.c.y][term.c.x+1].c[0] = '\0';
  2339. term.line[term.c.y][term.c.x+1].mode = ATTR_WDUMMY;
  2340. }
  2341. }
  2342. if(term.c.x+width < term.col) {
  2343. tmoveto(term.c.x+width, term.c.y);
  2344. } else {
  2345. term.c.state |= CURSOR_WRAPNEXT;
  2346. }
  2347. }
  2348. int
  2349. tresize(int col, int row) {
  2350. int i;
  2351. int minrow = MIN(row, term.row);
  2352. int mincol = MIN(col, term.col);
  2353. int slide = term.c.y - row + 1;
  2354. bool *bp;
  2355. Line *orig;
  2356. if(col < 1 || row < 1)
  2357. return 0;
  2358. /* free unneeded rows */
  2359. i = 0;
  2360. if(slide > 0) {
  2361. /*
  2362. * slide screen to keep cursor where we expect it -
  2363. * tscrollup would work here, but we can optimize to
  2364. * memmove because we're freeing the earlier lines
  2365. */
  2366. for(/* i = 0 */; i < slide; i++) {
  2367. free(term.line[i]);
  2368. free(term.alt[i]);
  2369. }
  2370. memmove(term.line, term.line + slide, row * sizeof(Line));
  2371. memmove(term.alt, term.alt + slide, row * sizeof(Line));
  2372. }
  2373. for(i += row; i < term.row; i++) {
  2374. free(term.line[i]);
  2375. free(term.alt[i]);
  2376. }
  2377. /* resize to new height */
  2378. term.line = xrealloc(term.line, row * sizeof(Line));
  2379. term.alt = xrealloc(term.alt, row * sizeof(Line));
  2380. term.dirty = xrealloc(term.dirty, row * sizeof(*term.dirty));
  2381. term.tabs = xrealloc(term.tabs, col * sizeof(*term.tabs));
  2382. /* resize each row to new width, zero-pad if needed */
  2383. for(i = 0; i < minrow; i++) {
  2384. term.dirty[i] = 1;
  2385. term.line[i] = xrealloc(term.line[i], col * sizeof(Glyph));
  2386. term.alt[i] = xrealloc(term.alt[i], col * sizeof(Glyph));
  2387. }
  2388. /* allocate any new rows */
  2389. for(/* i == minrow */; i < row; i++) {
  2390. term.dirty[i] = 1;
  2391. term.line[i] = xmalloc(col * sizeof(Glyph));
  2392. term.alt[i] = xmalloc(col * sizeof(Glyph));
  2393. }
  2394. if(col > term.col) {
  2395. bp = term.tabs + term.col;
  2396. memset(bp, 0, sizeof(*term.tabs) * (col - term.col));
  2397. while(--bp > term.tabs && !*bp)
  2398. /* nothing */ ;
  2399. for(bp += tabspaces; bp < term.tabs + col; bp += tabspaces)
  2400. *bp = 1;
  2401. }
  2402. /* update terminal size */
  2403. term.col = col;
  2404. term.row = row;
  2405. /* reset scrolling region */
  2406. tsetscroll(0, row-1);
  2407. /* make use of the LIMIT in tmoveto */
  2408. tmoveto(term.c.x, term.c.y);
  2409. /* Clearing both screens */
  2410. orig = term.line;
  2411. do {
  2412. if(mincol < col && 0 < minrow) {
  2413. tclearregion(mincol, 0, col - 1, minrow - 1);
  2414. }
  2415. if(0 < col && minrow < row) {
  2416. tclearregion(0, minrow, col - 1, row - 1);
  2417. }
  2418. tswapscreen();
  2419. } while(orig != term.line);
  2420. return (slide > 0);
  2421. }
  2422. void
  2423. xresize(int col, int row) {
  2424. xw.tw = MAX(1, col * xw.cw);
  2425. xw.th = MAX(1, row * xw.ch);
  2426. XFreePixmap(xw.dpy, xw.buf);
  2427. xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
  2428. DefaultDepth(xw.dpy, xw.scr));
  2429. XftDrawChange(xw.draw, xw.buf);
  2430. xclear(0, 0, xw.w, xw.h);
  2431. }
  2432. static inline ushort
  2433. sixd_to_16bit(int x) {
  2434. return x == 0 ? 0 : 0x3737 + 0x2828 * x;
  2435. }
  2436. void
  2437. xloadcols(void) {
  2438. int i, r, g, b;
  2439. XRenderColor color = { .alpha = 0xffff };
  2440. static bool loaded;
  2441. Colour *cp;
  2442. if(loaded) {
  2443. for (cp = dc.col; cp < dc.col + LEN(dc.col); ++cp)
  2444. XftColorFree(xw.dpy, xw.vis, xw.cmap, cp);
  2445. }
  2446. /* load colors [0-15] colors and [256-LEN(colorname)[ (config.h) */
  2447. for(i = 0; i < LEN(colorname); i++) {
  2448. if(!colorname[i])
  2449. continue;
  2450. if(!XftColorAllocName(xw.dpy, xw.vis, xw.cmap, colorname[i], &dc.col[i])) {
  2451. die("Could not allocate color '%s'\n", colorname[i]);
  2452. }
  2453. }
  2454. /* load colors [16-255] ; same colors as xterm */
  2455. for(i = 16, r = 0; r < 6; r++) {
  2456. for(g = 0; g < 6; g++) {
  2457. for(b = 0; b < 6; b++) {
  2458. color.red = sixd_to_16bit(r);
  2459. color.green = sixd_to_16bit(g);
  2460. color.blue = sixd_to_16bit(b);
  2461. if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color, &dc.col[i])) {
  2462. die("Could not allocate color %d\n", i);
  2463. }
  2464. i++;
  2465. }
  2466. }
  2467. }
  2468. for(r = 0; r < 24; r++, i++) {
  2469. color.red = color.green = color.blue = 0x0808 + 0x0a0a * r;
  2470. if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color,
  2471. &dc.col[i])) {
  2472. die("Could not allocate color %d\n", i);
  2473. }
  2474. }
  2475. loaded = true;
  2476. }
  2477. int
  2478. xsetcolorname(int x, const char *name) {
  2479. XRenderColor color = { .alpha = 0xffff };
  2480. Colour colour;
  2481. if (x < 0 || x > LEN(colorname))
  2482. return -1;
  2483. if(!name) {
  2484. if(16 <= x && x < 16 + 216) {
  2485. int r = (x - 16) / 36, g = ((x - 16) % 36) / 6, b = (x - 16) % 6;
  2486. color.red = sixd_to_16bit(r);
  2487. color.green = sixd_to_16bit(g);
  2488. color.blue = sixd_to_16bit(b);
  2489. if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color, &colour))
  2490. return 0; /* something went wrong */
  2491. dc.col[x] = colour;
  2492. return 1;
  2493. } else if (16 + 216 <= x && x < 256) {
  2494. color.red = color.green = color.blue = 0x0808 + 0x0a0a * (x - (16 + 216));
  2495. if(!XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &color, &colour))
  2496. return 0; /* something went wrong */
  2497. dc.col[x] = colour;
  2498. return 1;
  2499. } else {
  2500. name = colorname[x];
  2501. }
  2502. }
  2503. if(!XftColorAllocName(xw.dpy, xw.vis, xw.cmap, name, &colour))
  2504. return 0;
  2505. dc.col[x] = colour;
  2506. return 1;
  2507. }
  2508. void
  2509. xtermclear(int col1, int row1, int col2, int row2) {
  2510. XftDrawRect(xw.draw,
  2511. &dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg],
  2512. borderpx + col1 * xw.cw,
  2513. borderpx + row1 * xw.ch,
  2514. (col2-col1+1) * xw.cw,
  2515. (row2-row1+1) * xw.ch);
  2516. }
  2517. /*
  2518. * Absolute coordinates.
  2519. */
  2520. void
  2521. xclear(int x1, int y1, int x2, int y2) {
  2522. XftDrawRect(xw.draw,
  2523. &dc.col[IS_SET(MODE_REVERSE)? defaultfg : defaultbg],
  2524. x1, y1, x2-x1, y2-y1);
  2525. }
  2526. void
  2527. xhints(void) {
  2528. XClassHint class = {opt_class ? opt_class : termname, termname};
  2529. XWMHints wm = {.flags = InputHint, .input = 1};
  2530. XSizeHints *sizeh = NULL;
  2531. sizeh = XAllocSizeHints();
  2532. if(xw.isfixed == False) {
  2533. sizeh->flags = PSize | PResizeInc | PBaseSize;
  2534. sizeh->height = xw.h;
  2535. sizeh->width = xw.w;
  2536. sizeh->height_inc = xw.ch;
  2537. sizeh->width_inc = xw.cw;
  2538. sizeh->base_height = 2 * borderpx;
  2539. sizeh->base_width = 2 * borderpx;
  2540. } else {
  2541. sizeh->flags = PMaxSize | PMinSize;
  2542. sizeh->min_width = sizeh->max_width = xw.fw;
  2543. sizeh->min_height = sizeh->max_height = xw.fh;
  2544. }
  2545. XSetWMProperties(xw.dpy, xw.win, NULL, NULL, NULL, 0, sizeh, &wm,
  2546. &class);
  2547. XFree(sizeh);
  2548. }
  2549. int
  2550. xloadfont(Font *f, FcPattern *pattern) {
  2551. FcPattern *match;
  2552. FcResult result;
  2553. match = FcFontMatch(NULL, pattern, &result);
  2554. if(!match)
  2555. return 1;
  2556. if(!(f->match = XftFontOpenPattern(xw.dpy, match))) {
  2557. FcPatternDestroy(match);
  2558. return 1;
  2559. }
  2560. f->set = NULL;
  2561. f->pattern = FcPatternDuplicate(pattern);
  2562. f->ascent = f->match->ascent;
  2563. f->descent = f->match->descent;
  2564. f->lbearing = 0;
  2565. f->rbearing = f->match->max_advance_width;
  2566. f->height = f->ascent + f->descent;
  2567. f->width = f->lbearing + f->rbearing;
  2568. return 0;
  2569. }
  2570. void
  2571. xloadfonts(char *fontstr, double fontsize) {
  2572. FcPattern *pattern;
  2573. FcResult r_sz, r_psz;
  2574. double fontval;
  2575. if(fontstr[0] == '-') {
  2576. pattern = XftXlfdParse(fontstr, False, False);
  2577. } else {
  2578. pattern = FcNameParse((FcChar8 *)fontstr);
  2579. }
  2580. if(!pattern)
  2581. die("st: can't open font %s\n", fontstr);
  2582. if(fontsize > 0) {
  2583. FcPatternDel(pattern, FC_PIXEL_SIZE);
  2584. FcPatternDel(pattern, FC_SIZE);
  2585. FcPatternAddDouble(pattern, FC_PIXEL_SIZE, (double)fontsize);
  2586. usedfontsize = fontsize;
  2587. } else {
  2588. r_psz = FcPatternGetDouble(pattern, FC_PIXEL_SIZE, 0, &fontval);
  2589. r_sz = FcPatternGetDouble(pattern, FC_SIZE, 0, &fontval);
  2590. if(r_psz == FcResultMatch) {
  2591. usedfontsize = fontval;
  2592. } else if(r_sz == FcResultMatch) {
  2593. usedfontsize = -1;
  2594. } else {
  2595. /*
  2596. * Default font size is 12, if none given. This is to
  2597. * have a known usedfontsize value.
  2598. */
  2599. FcPatternAddDouble(pattern, FC_PIXEL_SIZE, 12);
  2600. usedfontsize = 12;
  2601. }
  2602. }
  2603. FcConfigSubstitute(0, pattern, FcMatchPattern);
  2604. FcDefaultSubstitute(pattern);
  2605. if(xloadfont(&dc.font, pattern))
  2606. die("st: can't open font %s\n", fontstr);
  2607. if(usedfontsize < 0) {
  2608. FcPatternGetDouble(dc.font.match->pattern,
  2609. FC_PIXEL_SIZE, 0, &fontval);
  2610. usedfontsize = fontval;
  2611. }
  2612. /* Setting character width and height. */
  2613. xw.cw = CEIL(dc.font.width * cwscale);
  2614. xw.ch = CEIL(dc.font.height * chscale);
  2615. FcPatternDel(pattern, FC_SLANT);
  2616. FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ITALIC);
  2617. if(xloadfont(&dc.ifont, pattern))
  2618. die("st: can't open font %s\n", fontstr);
  2619. FcPatternDel(pattern, FC_WEIGHT);
  2620. FcPatternAddInteger(pattern, FC_WEIGHT, FC_WEIGHT_BOLD);
  2621. if(xloadfont(&dc.ibfont, pattern))
  2622. die("st: can't open font %s\n", fontstr);
  2623. FcPatternDel(pattern, FC_SLANT);
  2624. FcPatternAddInteger(pattern, FC_SLANT, FC_SLANT_ROMAN);
  2625. if(xloadfont(&dc.bfont, pattern))
  2626. die("st: can't open font %s\n", fontstr);
  2627. FcPatternDestroy(pattern);
  2628. }
  2629. int
  2630. xloadfontset(Font *f) {
  2631. FcResult result;
  2632. if(!(f->set = FcFontSort(0, f->pattern, FcTrue, 0, &result)))
  2633. return 1;
  2634. return 0;
  2635. }
  2636. void
  2637. xunloadfont(Font *f) {
  2638. XftFontClose(xw.dpy, f->match);
  2639. FcPatternDestroy(f->pattern);
  2640. if(f->set)
  2641. FcFontSetDestroy(f->set);
  2642. }
  2643. void
  2644. xunloadfonts(void) {
  2645. int i;
  2646. /* Free the loaded fonts in the font cache. */
  2647. for(i = 0; i < frclen; i++) {
  2648. XftFontClose(xw.dpy, frc[i].font);
  2649. }
  2650. frclen = 0;
  2651. xunloadfont(&dc.font);
  2652. xunloadfont(&dc.bfont);
  2653. xunloadfont(&dc.ifont);
  2654. xunloadfont(&dc.ibfont);
  2655. }
  2656. void
  2657. xzoom(const Arg *arg) {
  2658. xunloadfonts();
  2659. xloadfonts(usedfont, usedfontsize + arg->i);
  2660. cresize(0, 0);
  2661. redraw(0);
  2662. }
  2663. void
  2664. xinit(void) {
  2665. XGCValues gcvalues;
  2666. Cursor cursor;
  2667. Window parent;
  2668. int sw, sh;
  2669. pid_t thispid = getpid();
  2670. if(!(xw.dpy = XOpenDisplay(NULL)))
  2671. die("Can't open display\n");
  2672. xw.scr = XDefaultScreen(xw.dpy);
  2673. xw.vis = XDefaultVisual(xw.dpy, xw.scr);
  2674. /* font */
  2675. if(!FcInit())
  2676. die("Could not init fontconfig.\n");
  2677. usedfont = (opt_font == NULL)? font : opt_font;
  2678. xloadfonts(usedfont, 0);
  2679. /* colors */
  2680. xw.cmap = XDefaultColormap(xw.dpy, xw.scr);
  2681. xloadcols();
  2682. /* adjust fixed window geometry */
  2683. if(xw.isfixed) {
  2684. sw = DisplayWidth(xw.dpy, xw.scr);
  2685. sh = DisplayHeight(xw.dpy, xw.scr);
  2686. if(xw.fx < 0)
  2687. xw.fx = sw + xw.fx - xw.fw - 1;
  2688. if(xw.fy < 0)
  2689. xw.fy = sh + xw.fy - xw.fh - 1;
  2690. xw.h = xw.fh;
  2691. xw.w = xw.fw;
  2692. } else {
  2693. /* window - default size */
  2694. xw.h = 2 * borderpx + term.row * xw.ch;
  2695. xw.w = 2 * borderpx + term.col * xw.cw;
  2696. xw.fx = 0;
  2697. xw.fy = 0;
  2698. }
  2699. /* Events */
  2700. xw.attrs.background_pixel = dc.col[defaultbg].pixel;
  2701. xw.attrs.border_pixel = dc.col[defaultbg].pixel;
  2702. xw.attrs.bit_gravity = NorthWestGravity;
  2703. xw.attrs.event_mask = FocusChangeMask | KeyPressMask
  2704. | ExposureMask | VisibilityChangeMask | StructureNotifyMask
  2705. | ButtonMotionMask | ButtonPressMask | ButtonReleaseMask;
  2706. xw.attrs.colormap = xw.cmap;
  2707. parent = opt_embed ? strtol(opt_embed, NULL, 0) : \
  2708. XRootWindow(xw.dpy, xw.scr);
  2709. xw.win = XCreateWindow(xw.dpy, parent, xw.fx, xw.fy,
  2710. xw.w, xw.h, 0, XDefaultDepth(xw.dpy, xw.scr), InputOutput,
  2711. xw.vis, CWBackPixel | CWBorderPixel | CWBitGravity
  2712. | CWEventMask | CWColormap, &xw.attrs);
  2713. memset(&gcvalues, 0, sizeof(gcvalues));
  2714. gcvalues.graphics_exposures = False;
  2715. dc.gc = XCreateGC(xw.dpy, parent, GCGraphicsExposures,
  2716. &gcvalues);
  2717. xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
  2718. DefaultDepth(xw.dpy, xw.scr));
  2719. XSetForeground(xw.dpy, dc.gc, dc.col[defaultbg].pixel);
  2720. XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
  2721. /* Xft rendering context */
  2722. xw.draw = XftDrawCreate(xw.dpy, xw.buf, xw.vis, xw.cmap);
  2723. /* input methods */
  2724. if((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
  2725. XSetLocaleModifiers("@im=local");
  2726. if((xw.xim = XOpenIM(xw.dpy, NULL, NULL, NULL)) == NULL) {
  2727. XSetLocaleModifiers("@im=");
  2728. if((xw.xim = XOpenIM(xw.dpy,
  2729. NULL, NULL, NULL)) == NULL) {
  2730. die("XOpenIM failed. Could not open input"
  2731. " device.\n");
  2732. }
  2733. }
  2734. }
  2735. xw.xic = XCreateIC(xw.xim, XNInputStyle, XIMPreeditNothing
  2736. | XIMStatusNothing, XNClientWindow, xw.win,
  2737. XNFocusWindow, xw.win, NULL);
  2738. if(xw.xic == NULL)
  2739. die("XCreateIC failed. Could not obtain input method.\n");
  2740. /* white cursor, black outline */
  2741. cursor = XCreateFontCursor(xw.dpy, XC_xterm);
  2742. XDefineCursor(xw.dpy, xw.win, cursor);
  2743. XRecolorCursor(xw.dpy, cursor,
  2744. &(XColor){.red = 0xffff, .green = 0xffff, .blue = 0xffff},
  2745. &(XColor){.red = 0x0000, .green = 0x0000, .blue = 0x0000});
  2746. xw.xembed = XInternAtom(xw.dpy, "_XEMBED", False);
  2747. xw.wmdeletewin = XInternAtom(xw.dpy, "WM_DELETE_WINDOW", False);
  2748. xw.netwmname = XInternAtom(xw.dpy, "_NET_WM_NAME", False);
  2749. XSetWMProtocols(xw.dpy, xw.win, &xw.wmdeletewin, 1);
  2750. xw.netwmpid = XInternAtom(xw.dpy, "_NET_WM_PID", False);
  2751. XChangeProperty(xw.dpy, xw.win, xw.netwmpid, XA_CARDINAL, 32,
  2752. PropModeReplace, (unsigned char *)&thispid, 1);
  2753. xresettitle();
  2754. XMapWindow(xw.dpy, xw.win);
  2755. xhints();
  2756. XSync(xw.dpy, 0);
  2757. }
  2758. void
  2759. xdraws(char *s, Glyph base, int x, int y, int charlen, int bytelen) {
  2760. int winx = borderpx + x * xw.cw, winy = borderpx + y * xw.ch,
  2761. width = charlen * xw.cw, xp, i;
  2762. int frcflags;
  2763. int u8fl, u8fblen, u8cblen, doesexist;
  2764. char *u8c, *u8fs;
  2765. long unicodep;
  2766. Font *font = &dc.font;
  2767. FcResult fcres;
  2768. FcPattern *fcpattern, *fontpattern;
  2769. FcFontSet *fcsets[] = { NULL };
  2770. FcCharSet *fccharset;
  2771. Colour *fg, *bg, *temp, revfg, revbg, truefg, truebg;
  2772. XRenderColor colfg, colbg;
  2773. Rectangle r;
  2774. int oneatatime;
  2775. frcflags = FRC_NORMAL;
  2776. if(base.mode & ATTR_ITALIC) {
  2777. if(base.fg == defaultfg)
  2778. base.fg = defaultitalic;
  2779. font = &dc.ifont;
  2780. frcflags = FRC_ITALIC;
  2781. } else if((base.mode & ATTR_ITALIC) && (base.mode & ATTR_BOLD)) {
  2782. if(base.fg == defaultfg)
  2783. base.fg = defaultitalic;
  2784. font = &dc.ibfont;
  2785. frcflags = FRC_ITALICBOLD;
  2786. } else if(base.mode & ATTR_UNDERLINE) {
  2787. if(base.fg == defaultfg)
  2788. base.fg = defaultunderline;
  2789. }
  2790. if(IS_TRUECOL(base.fg)) {
  2791. colfg.alpha = 0xffff;
  2792. colfg.red = TRUERED(base.fg);
  2793. colfg.green = TRUEGREEN(base.fg);
  2794. colfg.blue = TRUEBLUE(base.fg);
  2795. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg, &truefg);
  2796. fg = &truefg;
  2797. } else {
  2798. fg = &dc.col[base.fg];
  2799. }
  2800. if(IS_TRUECOL(base.bg)) {
  2801. colbg.alpha = 0xffff;
  2802. colbg.green = TRUEGREEN(base.bg);
  2803. colbg.red = TRUERED(base.bg);
  2804. colbg.blue = TRUEBLUE(base.bg);
  2805. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &truebg);
  2806. bg = &truebg;
  2807. } else {
  2808. bg = &dc.col[base.bg];
  2809. }
  2810. if(base.mode & ATTR_BOLD) {
  2811. if(BETWEEN(base.fg, 0, 7)) {
  2812. /* basic system colors */
  2813. fg = &dc.col[base.fg + 8];
  2814. } else if(BETWEEN(base.fg, 16, 195)) {
  2815. /* 256 colors */
  2816. fg = &dc.col[base.fg + 36];
  2817. } else if(BETWEEN(base.fg, 232, 251)) {
  2818. /* greyscale */
  2819. fg = &dc.col[base.fg + 4];
  2820. }
  2821. /*
  2822. * Those ranges will not be brightened:
  2823. * 8 - 15 bright system colors
  2824. * 196 - 231 highest 256 color cube
  2825. * 252 - 255 brightest colors in greyscale
  2826. */
  2827. font = &dc.bfont;
  2828. frcflags = FRC_BOLD;
  2829. }
  2830. if(IS_SET(MODE_REVERSE)) {
  2831. if(fg == &dc.col[defaultfg]) {
  2832. fg = &dc.col[defaultbg];
  2833. } else {
  2834. colfg.red = ~fg->color.red;
  2835. colfg.green = ~fg->color.green;
  2836. colfg.blue = ~fg->color.blue;
  2837. colfg.alpha = fg->color.alpha;
  2838. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colfg,
  2839. &revfg);
  2840. fg = &revfg;
  2841. }
  2842. if(bg == &dc.col[defaultbg]) {
  2843. bg = &dc.col[defaultfg];
  2844. } else {
  2845. colbg.red = ~bg->color.red;
  2846. colbg.green = ~bg->color.green;
  2847. colbg.blue = ~bg->color.blue;
  2848. colbg.alpha = bg->color.alpha;
  2849. XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg,
  2850. &revbg);
  2851. bg = &revbg;
  2852. }
  2853. }
  2854. if(base.mode & ATTR_REVERSE) {
  2855. temp = fg;
  2856. fg = bg;
  2857. bg = temp;
  2858. }
  2859. if(base.mode & ATTR_BLINK && term.mode & MODE_BLINK)
  2860. fg = bg;
  2861. /* Intelligent cleaning up of the borders. */
  2862. if(x == 0) {
  2863. xclear(0, (y == 0)? 0 : winy, borderpx,
  2864. winy + xw.ch + ((y >= term.row-1)? xw.h : 0));
  2865. }
  2866. if(x + charlen >= term.col) {
  2867. xclear(winx + width, (y == 0)? 0 : winy, xw.w,
  2868. ((y >= term.row-1)? xw.h : (winy + xw.ch)));
  2869. }
  2870. if(y == 0)
  2871. xclear(winx, 0, winx + width, borderpx);
  2872. if(y == term.row-1)
  2873. xclear(winx, winy + xw.ch, winx + width, xw.h);
  2874. /* Clean up the region we want to draw to. */
  2875. XftDrawRect(xw.draw, bg, winx, winy, width, xw.ch);
  2876. /* Set the clip region because Xft is sometimes dirty. */
  2877. r.x = 0;
  2878. r.y = 0;
  2879. r.height = xw.ch;
  2880. r.width = width;
  2881. XftDrawSetClipRectangles(xw.draw, winx, winy, &r, 1);
  2882. for(xp = winx; bytelen > 0;) {
  2883. /*
  2884. * Search for the range in the to be printed string of glyphs
  2885. * that are in the main font. Then print that range. If
  2886. * some glyph is found that is not in the font, do the
  2887. * fallback dance.
  2888. */
  2889. u8fs = s;
  2890. u8fblen = 0;
  2891. u8fl = 0;
  2892. oneatatime = font->width != xw.cw;
  2893. for(;;) {
  2894. u8c = s;
  2895. u8cblen = utf8decode(s, &unicodep, UTF_SIZ);
  2896. s += u8cblen;
  2897. bytelen -= u8cblen;
  2898. doesexist = XftCharExists(xw.dpy, font->match, unicodep);
  2899. if(oneatatime || !doesexist || bytelen <= 0) {
  2900. if(oneatatime || bytelen <= 0) {
  2901. if(doesexist) {
  2902. u8fl++;
  2903. u8fblen += u8cblen;
  2904. }
  2905. }
  2906. if(u8fl > 0) {
  2907. XftDrawStringUtf8(xw.draw, fg,
  2908. font->match, xp,
  2909. winy + font->ascent,
  2910. (FcChar8 *)u8fs,
  2911. u8fblen);
  2912. xp += xw.cw * u8fl;
  2913. }
  2914. break;
  2915. }
  2916. u8fl++;
  2917. u8fblen += u8cblen;
  2918. }
  2919. if(doesexist) {
  2920. if(oneatatime)
  2921. continue;
  2922. break;
  2923. }
  2924. /* Search the font cache. */
  2925. for(i = 0; i < frclen; i++) {
  2926. if(XftCharExists(xw.dpy, frc[i].font, unicodep)
  2927. && frc[i].flags == frcflags) {
  2928. break;
  2929. }
  2930. }
  2931. /* Nothing was found. */
  2932. if(i >= frclen) {
  2933. if(!font->set)
  2934. xloadfontset(font);
  2935. fcsets[0] = font->set;
  2936. /*
  2937. * Nothing was found in the cache. Now use
  2938. * some dozen of Fontconfig calls to get the
  2939. * font for one single character.
  2940. *
  2941. * Xft and fontconfig are design failures.
  2942. */
  2943. fcpattern = FcPatternDuplicate(font->pattern);
  2944. fccharset = FcCharSetCreate();
  2945. FcCharSetAddChar(fccharset, unicodep);
  2946. FcPatternAddCharSet(fcpattern, FC_CHARSET,
  2947. fccharset);
  2948. FcPatternAddBool(fcpattern, FC_SCALABLE,
  2949. FcTrue);
  2950. FcConfigSubstitute(0, fcpattern,
  2951. FcMatchPattern);
  2952. FcDefaultSubstitute(fcpattern);
  2953. fontpattern = FcFontSetMatch(0, fcsets,
  2954. FcTrue, fcpattern, &fcres);
  2955. /*
  2956. * Overwrite or create the new cache entry.
  2957. */
  2958. if(frclen >= LEN(frc)) {
  2959. frclen = LEN(frc) - 1;
  2960. XftFontClose(xw.dpy, frc[frclen].font);
  2961. }
  2962. frc[frclen].font = XftFontOpenPattern(xw.dpy,
  2963. fontpattern);
  2964. frc[frclen].flags = frcflags;
  2965. i = frclen;
  2966. frclen++;
  2967. FcPatternDestroy(fcpattern);
  2968. FcCharSetDestroy(fccharset);
  2969. }
  2970. XftDrawStringUtf8(xw.draw, fg, frc[i].font,
  2971. xp, winy + frc[i].font->ascent,
  2972. (FcChar8 *)u8c, u8cblen);
  2973. xp += xw.cw * wcwidth(unicodep);
  2974. }
  2975. /*
  2976. * This is how the loop above actually should be. Why does the
  2977. * application have to care about font details?
  2978. *
  2979. * I have to repeat: Xft and Fontconfig are design failures.
  2980. */
  2981. /*
  2982. XftDrawStringUtf8(xw.draw, fg, font->set, winx,
  2983. winy + font->ascent, (FcChar8 *)s, bytelen);
  2984. */
  2985. if(base.mode & ATTR_UNDERLINE) {
  2986. XftDrawRect(xw.draw, fg, winx, winy + font->ascent + 1,
  2987. width, 1);
  2988. }
  2989. /* Reset clip to none. */
  2990. XftDrawSetClip(xw.draw, 0);
  2991. }
  2992. void
  2993. xdrawcursor(void) {
  2994. static int oldx = 0, oldy = 0;
  2995. int sl, width, curx;
  2996. Glyph g = {{' '}, ATTR_NULL, defaultbg, defaultcs};
  2997. LIMIT(oldx, 0, term.col-1);
  2998. LIMIT(oldy, 0, term.row-1);
  2999. curx = term.c.x;
  3000. /* adjust position if in dummy */
  3001. if(term.line[oldy][oldx].mode & ATTR_WDUMMY)
  3002. oldx--;
  3003. if(term.line[term.c.y][curx].mode & ATTR_WDUMMY)
  3004. curx--;
  3005. memcpy(g.c, term.line[term.c.y][term.c.x].c, UTF_SIZ);
  3006. /* remove the old cursor */
  3007. sl = utf8len(term.line[oldy][oldx].c);
  3008. width = (term.line[oldy][oldx].mode & ATTR_WIDE)? 2 : 1;
  3009. xdraws(term.line[oldy][oldx].c, term.line[oldy][oldx], oldx,
  3010. oldy, width, sl);
  3011. /* draw the new one */
  3012. if(!(IS_SET(MODE_HIDE))) {
  3013. if(xw.state & WIN_FOCUSED) {
  3014. if(IS_SET(MODE_REVERSE)) {
  3015. g.mode |= ATTR_REVERSE;
  3016. g.fg = defaultcs;
  3017. g.bg = defaultfg;
  3018. }
  3019. sl = utf8len(g.c);
  3020. width = (term.line[term.c.y][curx].mode & ATTR_WIDE)\
  3021. ? 2 : 1;
  3022. xdraws(g.c, g, term.c.x, term.c.y, width, sl);
  3023. } else {
  3024. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3025. borderpx + curx * xw.cw,
  3026. borderpx + term.c.y * xw.ch,
  3027. xw.cw - 1, 1);
  3028. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3029. borderpx + curx * xw.cw,
  3030. borderpx + term.c.y * xw.ch,
  3031. 1, xw.ch - 1);
  3032. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3033. borderpx + (curx + 1) * xw.cw - 1,
  3034. borderpx + term.c.y * xw.ch,
  3035. 1, xw.ch - 1);
  3036. XftDrawRect(xw.draw, &dc.col[defaultcs],
  3037. borderpx + curx * xw.cw,
  3038. borderpx + (term.c.y + 1) * xw.ch - 1,
  3039. xw.cw, 1);
  3040. }
  3041. oldx = curx, oldy = term.c.y;
  3042. }
  3043. }
  3044. void
  3045. xsettitle(char *p) {
  3046. XTextProperty prop;
  3047. Xutf8TextListToTextProperty(xw.dpy, &p, 1, XUTF8StringStyle,
  3048. &prop);
  3049. XSetWMName(xw.dpy, xw.win, &prop);
  3050. XSetTextProperty(xw.dpy, xw.win, &prop, xw.netwmname);
  3051. XFree(prop.value);
  3052. }
  3053. void
  3054. xresettitle(void) {
  3055. xsettitle(opt_title ? opt_title : "st");
  3056. }
  3057. void
  3058. redraw(int timeout) {
  3059. struct timespec tv = {0, timeout * 1000};
  3060. draw();
  3061. if(timeout > 0) {
  3062. nanosleep(&tv, NULL);
  3063. XSync(xw.dpy, False); /* necessary for a good tput flash */
  3064. }
  3065. }
  3066. void
  3067. draw(void) {
  3068. drawregion(0, 0, term.col, term.row);
  3069. XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, xw.w,
  3070. xw.h, 0, 0);
  3071. XSetForeground(xw.dpy, dc.gc,
  3072. dc.col[IS_SET(MODE_REVERSE)?
  3073. defaultfg : defaultbg].pixel);
  3074. }
  3075. void
  3076. drawregion(int x1, int y1, int x2, int y2) {
  3077. int ic, ib, x, y, ox, sl;
  3078. Glyph base, new;
  3079. char buf[DRAW_BUF_SIZ];
  3080. bool ena_sel = sel.ob.x != -1;
  3081. long unicodep;
  3082. if(sel.alt ^ IS_SET(MODE_ALTSCREEN))
  3083. ena_sel = 0;
  3084. if(!(xw.state & WIN_VISIBLE))
  3085. return;
  3086. for(y = y1; y < y2; y++) {
  3087. if(!term.dirty[y])
  3088. continue;
  3089. xtermclear(0, y, term.col, y);
  3090. term.dirty[y] = 0;
  3091. base = term.line[y][0];
  3092. ic = ib = ox = 0;
  3093. for(x = x1; x < x2; x++) {
  3094. new = term.line[y][x];
  3095. if(new.mode == ATTR_WDUMMY)
  3096. continue;
  3097. if(ena_sel && selected(x, y))
  3098. new.mode ^= ATTR_REVERSE;
  3099. if(ib > 0 && (ATTRCMP(base, new)
  3100. || ib >= DRAW_BUF_SIZ-UTF_SIZ)) {
  3101. xdraws(buf, base, ox, y, ic, ib);
  3102. ic = ib = 0;
  3103. }
  3104. if(ib == 0) {
  3105. ox = x;
  3106. base = new;
  3107. }
  3108. sl = utf8decode(new.c, &unicodep, UTF_SIZ);
  3109. memcpy(buf+ib, new.c, sl);
  3110. ib += sl;
  3111. ic += (new.mode & ATTR_WIDE)? 2 : 1;
  3112. }
  3113. if(ib > 0)
  3114. xdraws(buf, base, ox, y, ic, ib);
  3115. }
  3116. xdrawcursor();
  3117. }
  3118. void
  3119. expose(XEvent *ev) {
  3120. XExposeEvent *e = &ev->xexpose;
  3121. if(xw.state & WIN_REDRAW) {
  3122. if(!e->count)
  3123. xw.state &= ~WIN_REDRAW;
  3124. }
  3125. redraw(0);
  3126. }
  3127. void
  3128. visibility(XEvent *ev) {
  3129. XVisibilityEvent *e = &ev->xvisibility;
  3130. if(e->state == VisibilityFullyObscured) {
  3131. xw.state &= ~WIN_VISIBLE;
  3132. } else if(!(xw.state & WIN_VISIBLE)) {
  3133. /* need a full redraw for next Expose, not just a buf copy */
  3134. xw.state |= WIN_VISIBLE | WIN_REDRAW;
  3135. }
  3136. }
  3137. void
  3138. unmap(XEvent *ev) {
  3139. xw.state &= ~WIN_VISIBLE;
  3140. }
  3141. void
  3142. xsetpointermotion(int set) {
  3143. MODBIT(xw.attrs.event_mask, set, PointerMotionMask);
  3144. XChangeWindowAttributes(xw.dpy, xw.win, CWEventMask, &xw.attrs);
  3145. }
  3146. void
  3147. xseturgency(int add) {
  3148. XWMHints *h = XGetWMHints(xw.dpy, xw.win);
  3149. h->flags = add ? (h->flags | XUrgencyHint) : (h->flags & ~XUrgencyHint);
  3150. XSetWMHints(xw.dpy, xw.win, h);
  3151. XFree(h);
  3152. }
  3153. void
  3154. focus(XEvent *ev) {
  3155. XFocusChangeEvent *e = &ev->xfocus;
  3156. if(e->mode == NotifyGrab)
  3157. return;
  3158. if(ev->type == FocusIn) {
  3159. XSetICFocus(xw.xic);
  3160. xw.state |= WIN_FOCUSED;
  3161. xseturgency(0);
  3162. if(IS_SET(MODE_FOCUS))
  3163. ttywrite("\033[I", 3);
  3164. } else {
  3165. XUnsetICFocus(xw.xic);
  3166. xw.state &= ~WIN_FOCUSED;
  3167. if(IS_SET(MODE_FOCUS))
  3168. ttywrite("\033[O", 3);
  3169. }
  3170. }
  3171. static inline bool
  3172. match(uint mask, uint state) {
  3173. return mask == XK_ANY_MOD || mask == (state & ~ignoremod);
  3174. }
  3175. void
  3176. numlock(const Arg *dummy) {
  3177. term.numlock ^= 1;
  3178. }
  3179. char*
  3180. kmap(KeySym k, uint state) {
  3181. Key *kp;
  3182. int i;
  3183. /* Check for mapped keys out of X11 function keys. */
  3184. for(i = 0; i < LEN(mappedkeys); i++) {
  3185. if(mappedkeys[i] == k)
  3186. break;
  3187. }
  3188. if(i == LEN(mappedkeys)) {
  3189. if((k & 0xFFFF) < 0xFD00)
  3190. return NULL;
  3191. }
  3192. for(kp = key; kp < key + LEN(key); kp++) {
  3193. if(kp->k != k)
  3194. continue;
  3195. if(!match(kp->mask, state))
  3196. continue;
  3197. if(IS_SET(MODE_APPKEYPAD) ? kp->appkey < 0 : kp->appkey > 0)
  3198. continue;
  3199. if(term.numlock && kp->appkey == 2)
  3200. continue;
  3201. if(IS_SET(MODE_APPCURSOR) ? kp->appcursor < 0 : kp->appcursor > 0)
  3202. continue;
  3203. if(IS_SET(MODE_CRLF) ? kp->crlf < 0 : kp->crlf > 0)
  3204. continue;
  3205. return kp->s;
  3206. }
  3207. return NULL;
  3208. }
  3209. void
  3210. kpress(XEvent *ev) {
  3211. XKeyEvent *e = &ev->xkey;
  3212. KeySym ksym;
  3213. char buf[32], *customkey;
  3214. int len;
  3215. long c;
  3216. Status status;
  3217. Shortcut *bp;
  3218. if(IS_SET(MODE_KBDLOCK))
  3219. return;
  3220. len = XmbLookupString(xw.xic, e, buf, sizeof buf, &ksym, &status);
  3221. /* 1. shortcuts */
  3222. for(bp = shortcuts; bp < shortcuts + LEN(shortcuts); bp++) {
  3223. if(ksym == bp->keysym && match(bp->mod, e->state)) {
  3224. bp->func(&(bp->arg));
  3225. return;
  3226. }
  3227. }
  3228. /* 2. custom keys from config.h */
  3229. if((customkey = kmap(ksym, e->state))) {
  3230. ttysend(customkey, strlen(customkey));
  3231. return;
  3232. }
  3233. /* 3. composed string from input method */
  3234. if(len == 0)
  3235. return;
  3236. if(len == 1 && e->state & Mod1Mask) {
  3237. if(IS_SET(MODE_8BIT)) {
  3238. if(*buf < 0177) {
  3239. c = *buf | 0x80;
  3240. len = utf8encode(c, buf, UTF_SIZ);
  3241. }
  3242. } else {
  3243. buf[1] = buf[0];
  3244. buf[0] = '\033';
  3245. len = 2;
  3246. }
  3247. }
  3248. ttysend(buf, len);
  3249. }
  3250. void
  3251. cmessage(XEvent *e) {
  3252. /*
  3253. * See xembed specs
  3254. * http://standards.freedesktop.org/xembed-spec/xembed-spec-latest.html
  3255. */
  3256. if(e->xclient.message_type == xw.xembed && e->xclient.format == 32) {
  3257. if(e->xclient.data.l[1] == XEMBED_FOCUS_IN) {
  3258. xw.state |= WIN_FOCUSED;
  3259. xseturgency(0);
  3260. } else if(e->xclient.data.l[1] == XEMBED_FOCUS_OUT) {
  3261. xw.state &= ~WIN_FOCUSED;
  3262. }
  3263. } else if(e->xclient.data.l[0] == xw.wmdeletewin) {
  3264. /* Send SIGHUP to shell */
  3265. kill(pid, SIGHUP);
  3266. exit(EXIT_SUCCESS);
  3267. }
  3268. }
  3269. void
  3270. cresize(int width, int height) {
  3271. int col, row;
  3272. if(width != 0)
  3273. xw.w = width;
  3274. if(height != 0)
  3275. xw.h = height;
  3276. col = (xw.w - 2 * borderpx) / xw.cw;
  3277. row = (xw.h - 2 * borderpx) / xw.ch;
  3278. tresize(col, row);
  3279. xresize(col, row);
  3280. ttyresize();
  3281. }
  3282. void
  3283. resize(XEvent *e) {
  3284. if(e->xconfigure.width == xw.w && e->xconfigure.height == xw.h)
  3285. return;
  3286. cresize(e->xconfigure.width, e->xconfigure.height);
  3287. }
  3288. void
  3289. run(void) {
  3290. XEvent ev;
  3291. int w = xw.w, h = xw.h;
  3292. fd_set rfd;
  3293. int xfd = XConnectionNumber(xw.dpy), xev, blinkset = 0, dodraw = 0;
  3294. struct timeval drawtimeout, *tv = NULL, now, last, lastblink;
  3295. /* Waiting for window mapping */
  3296. while(1) {
  3297. XNextEvent(xw.dpy, &ev);
  3298. if(ev.type == ConfigureNotify) {
  3299. w = ev.xconfigure.width;
  3300. h = ev.xconfigure.height;
  3301. } else if(ev.type == MapNotify) {
  3302. break;
  3303. }
  3304. }
  3305. ttynew();
  3306. if(!xw.isfixed)
  3307. cresize(w, h);
  3308. else
  3309. cresize(xw.fw, xw.fh);
  3310. gettimeofday(&lastblink, NULL);
  3311. gettimeofday(&last, NULL);
  3312. for(xev = actionfps;;) {
  3313. long deltatime;
  3314. FD_ZERO(&rfd);
  3315. FD_SET(cmdfd, &rfd);
  3316. FD_SET(xfd, &rfd);
  3317. if(select(MAX(xfd, cmdfd)+1, &rfd, NULL, NULL, tv) < 0) {
  3318. if(errno == EINTR)
  3319. continue;
  3320. die("select failed: %s\n", SERRNO);
  3321. }
  3322. if(FD_ISSET(cmdfd, &rfd)) {
  3323. ttyread();
  3324. if(blinktimeout) {
  3325. blinkset = tattrset(ATTR_BLINK);
  3326. if(!blinkset)
  3327. MODBIT(term.mode, 0, MODE_BLINK);
  3328. }
  3329. }
  3330. if(FD_ISSET(xfd, &rfd))
  3331. xev = actionfps;
  3332. gettimeofday(&now, NULL);
  3333. drawtimeout.tv_sec = 0;
  3334. drawtimeout.tv_usec = (1000/xfps) * 1000;
  3335. tv = &drawtimeout;
  3336. dodraw = 0;
  3337. if(blinktimeout && TIMEDIFF(now, lastblink) > blinktimeout) {
  3338. tsetdirtattr(ATTR_BLINK);
  3339. term.mode ^= MODE_BLINK;
  3340. gettimeofday(&lastblink, NULL);
  3341. dodraw = 1;
  3342. }
  3343. deltatime = TIMEDIFF(now, last);
  3344. if(deltatime > (xev? (1000/xfps) : (1000/actionfps))
  3345. || deltatime < 0) {
  3346. dodraw = 1;
  3347. last = now;
  3348. }
  3349. if(dodraw) {
  3350. while(XPending(xw.dpy)) {
  3351. XNextEvent(xw.dpy, &ev);
  3352. if(XFilterEvent(&ev, None))
  3353. continue;
  3354. if(handler[ev.type])
  3355. (handler[ev.type])(&ev);
  3356. }
  3357. draw();
  3358. XFlush(xw.dpy);
  3359. if(xev && !FD_ISSET(xfd, &rfd))
  3360. xev--;
  3361. if(!FD_ISSET(cmdfd, &rfd) && !FD_ISSET(xfd, &rfd)) {
  3362. if(blinkset) {
  3363. if(TIMEDIFF(now, lastblink) \
  3364. > blinktimeout) {
  3365. drawtimeout.tv_usec = 1;
  3366. } else {
  3367. drawtimeout.tv_usec = (1000 * \
  3368. (blinktimeout - \
  3369. TIMEDIFF(now,
  3370. lastblink)));
  3371. }
  3372. } else {
  3373. tv = NULL;
  3374. }
  3375. }
  3376. }
  3377. }
  3378. }
  3379. void
  3380. usage(void) {
  3381. die("%s " VERSION " (c) 2010-2013 st engineers\n" \
  3382. "usage: st [-a] [-v] [-c class] [-f font] [-g geometry] [-o file]" \
  3383. " [-t title] [-w windowid] [-e command ...]\n", argv0);
  3384. }
  3385. int
  3386. main(int argc, char *argv[]) {
  3387. int bitm, xr, yr;
  3388. uint wr, hr;
  3389. char *titles;
  3390. xw.fw = xw.fh = xw.fx = xw.fy = 0;
  3391. xw.isfixed = False;
  3392. ARGBEGIN {
  3393. case 'a':
  3394. allowaltscreen = false;
  3395. break;
  3396. case 'c':
  3397. opt_class = EARGF(usage());
  3398. break;
  3399. case 'e':
  3400. /* eat all remaining arguments */
  3401. if(argc > 1) {
  3402. opt_cmd = &argv[1];
  3403. if(argv[1] != NULL && opt_title == NULL) {
  3404. titles = xstrdup(argv[1]);
  3405. opt_title = basename(titles);
  3406. }
  3407. }
  3408. goto run;
  3409. case 'f':
  3410. opt_font = EARGF(usage());
  3411. break;
  3412. case 'g':
  3413. bitm = XParseGeometry(EARGF(usage()), &xr, &yr, &wr, &hr);
  3414. if(bitm & XValue)
  3415. xw.fx = xr;
  3416. if(bitm & YValue)
  3417. xw.fy = yr;
  3418. if(bitm & WidthValue)
  3419. xw.fw = (int)wr;
  3420. if(bitm & HeightValue)
  3421. xw.fh = (int)hr;
  3422. if(bitm & XNegative && xw.fx == 0)
  3423. xw.fx = -1;
  3424. if(bitm & YNegative && xw.fy == 0)
  3425. xw.fy = -1;
  3426. if(xw.fh != 0 && xw.fw != 0)
  3427. xw.isfixed = True;
  3428. break;
  3429. case 'o':
  3430. opt_io = EARGF(usage());
  3431. break;
  3432. case 't':
  3433. opt_title = EARGF(usage());
  3434. break;
  3435. case 'w':
  3436. opt_embed = EARGF(usage());
  3437. break;
  3438. case 'v':
  3439. default:
  3440. usage();
  3441. } ARGEND;
  3442. run:
  3443. setlocale(LC_CTYPE, "");
  3444. XSetLocaleModifiers("");
  3445. tnew(80, 24);
  3446. xinit();
  3447. selinit();
  3448. run();
  3449. return 0;
  3450. }