st.c 73 KB

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