st.c 74 KB

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