door.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722
  1. #ifndef DOOR_H
  2. #define DOOR_H
  3. #include "anyoption.h"
  4. #include <cstdint>
  5. #include <ctime>
  6. #include <fstream>
  7. #include <functional>
  8. #include <future>
  9. #include <iostream>
  10. #include <memory>
  11. #include <ostream>
  12. #include <vector>
  13. // raw mode
  14. #include <termios.h>
  15. #include <unistd.h>
  16. #define CSI "\x1b["
  17. // getkey definitions
  18. #define XKEY_START 0x1000
  19. #define XKEY_UP_ARROW 0x1001
  20. #define XKEY_DOWN_ARROW 0x1002
  21. #define XKEY_RIGHT_ARROW 0x1003
  22. #define XKEY_LEFT_ARROW 0x1004
  23. #define XKEY_HOME 0x1010
  24. #define XKEY_END 0x1011
  25. #define XKEY_PGUP 0x1012
  26. #define XKEY_PGDN 0x1023
  27. #define XKEY_INSERT 0x1024
  28. #define XKEY_DELETE 0x7f
  29. #define XKEY_F1 0x1021
  30. #define XKEY_F2 0x1022
  31. #define XKEY_F3 0x1023
  32. #define XKEY_F4 0x1024
  33. #define XKEY_F5 0x1025
  34. #define XKEY_F6 0x1026
  35. #define XKEY_F7 0x1027
  36. #define XKEY_F8 0x1028
  37. #define XKEY_F9 0x1029
  38. #define XKEY_F10 0x102a
  39. #define XKEY_F11 0x102b
  40. #define XKEY_F12 0x102c
  41. #define XKEY_UNKNOWN 0x1111
  42. /**
  43. * @brief The BBS door project.
  44. * This is an attempt at writing a C++ BBS door toolkit.
  45. */
  46. namespace door {
  47. extern bool unicode;
  48. extern bool full_cp437;
  49. extern bool debug_capture;
  50. /*
  51. Translate CP437 strings to unicode for output.
  52. if (door::unicode) {
  53. // perform translation
  54. }
  55. */
  56. void cp437toUnicode(std::string input, std::string &out);
  57. void cp437toUnicode(const char *input, std::string &out);
  58. /*
  59. door 2.0
  60. */
  61. /**
  62. * ANSI Color codes
  63. */
  64. /**
  65. * @brief The colors available under ANSI-BBS
  66. */
  67. enum class COLOR : std::int8_t {
  68. /// BLACK (0)
  69. BLACK,
  70. /// RED (1)
  71. RED,
  72. /// GREEN (2)
  73. GREEN,
  74. /// BROWN (3)
  75. BROWN,
  76. /// YELLOW (3)
  77. YELLOW = 3,
  78. /// BLUE (4)
  79. BLUE,
  80. /// MAGENTA (5)
  81. MAGENTA,
  82. /// CYAN (6)
  83. CYAN,
  84. /// WHITE (7)
  85. WHITE
  86. };
  87. /**
  88. * @brief ANSI-BBS text attributes
  89. */
  90. enum class ATTR : std::int8_t {
  91. /// RESET forces all attributes (and Colors) to be sent.
  92. RESET,
  93. /// BOLD is the same as BRIGHT.
  94. BOLD,
  95. /// BRIGHT is the same as BOLD.
  96. BRIGHT = 1,
  97. /// SLOW BLINK
  98. BLINK = 5,
  99. /// INVERSE is Background on Foreground.
  100. INVERSE = 7
  101. };
  102. /**
  103. * @class ANSIColor
  104. * This holds foreground, background and ANSI-BBS attribute
  105. * information.
  106. * The special attribute RESET forces attribute and color
  107. * output always.
  108. *
  109. * @brief Foreground, Background and Attributes
  110. *
  111. */
  112. class ANSIColor {
  113. /// Foreground color
  114. COLOR fg;
  115. /// Background color
  116. COLOR bg;
  117. // Track attributes (ATTR)
  118. /// reset flag / always send color and attributes
  119. unsigned int reset : 1;
  120. /// bold / bright flag
  121. unsigned int bold : 1;
  122. /// blink slow blinking text
  123. unsigned int blink : 1;
  124. /// inverse
  125. unsigned int inverse : 1;
  126. public:
  127. // default initialization here
  128. ANSIColor();
  129. ANSIColor(ATTR a);
  130. ANSIColor(COLOR f);
  131. ANSIColor(COLOR f, ATTR a);
  132. ANSIColor(COLOR f, ATTR a1, ATTR a2);
  133. ANSIColor(COLOR f, COLOR b);
  134. ANSIColor(COLOR f, COLOR b, ATTR a);
  135. ANSIColor(COLOR f, COLOR b, ATTR a1, ATTR a2);
  136. ANSIColor &Attr(ATTR a);
  137. bool operator==(const ANSIColor &c) const;
  138. bool operator!=(const ANSIColor &c) const;
  139. void setFg(COLOR f);
  140. void setBg(COLOR b);
  141. void attr(ATTR a);
  142. /**
  143. * @return std::string
  144. */
  145. std::string output(void) const;
  146. std::string debug(void);
  147. /**
  148. * @param previous the previous attributes and colors
  149. * @return std::string
  150. */
  151. std::string output(ANSIColor &previous) const;
  152. /**
  153. * @param os Output stream
  154. * @param c ANSIColor
  155. * @return std::ostream&
  156. */
  157. friend std::ostream &operator<<(std::ostream &os, const ANSIColor &c);
  158. };
  159. /**
  160. * @class Door
  161. *
  162. * This handles output to the caller, via ostream.
  163. *
  164. */
  165. class Door : public std::ostream, private std::streambuf {
  166. private:
  167. virtual std::streamsize xsputn(const char *s, std::streamsize n);
  168. virtual int overflow(char c);
  169. std::string doorname;
  170. void parse_dropfile(const char *filepath);
  171. void init(void);
  172. std::time_t startup;
  173. struct termios tio_default;
  174. // getkey functions
  175. signed int getch(void);
  176. void unget(char c);
  177. char get(void);
  178. char buffer[5];
  179. unsigned int bpos;
  180. bool has_dropfile;
  181. bool debugging;
  182. std::string dropfilename;
  183. vector<std::string> dropfilelines;
  184. ofstream logf;
  185. void detect_unicode_and_screen(void);
  186. // time thread - time left
  187. std::promise<void> stop_thread;
  188. // std::future<void> stop_future;
  189. // atomic seconds_elapsed ?
  190. int seconds_elapsed;
  191. void time_thread_run(std::future<void> future);
  192. std::thread time_thread;
  193. public:
  194. /**
  195. * @param argc int
  196. * @param argv char *[]
  197. */
  198. Door(std::string dname, int argc, char *argv[]);
  199. /// Default copy ctor deleted
  200. Door(Door &) = delete;
  201. virtual ~Door();
  202. ofstream &log(void);
  203. // void log(std::string output);
  204. AnyOption opt;
  205. std::string debug_buffer;
  206. /**
  207. * Previous ANSI-BBS colors and attributes sent.
  208. * This is used to optimize our output.
  209. * \see ANSIColor::output()
  210. */
  211. ANSIColor previous;
  212. bool track;
  213. int cx;
  214. int cy;
  215. int width;
  216. int height;
  217. int inactivity;
  218. std::string username;
  219. std::string handle;
  220. std::string location;
  221. std::string sysop;
  222. // std::string bbsname;
  223. int node;
  224. atomic<int> time_left;
  225. signed int getkey(void);
  226. bool haskey(void);
  227. int get_input(void);
  228. signed int sleep_key(int secs);
  229. std::string input_string(int max);
  230. };
  231. // Use this to define the deprecated colorizer [POC]
  232. // typedef std::function<void(Door &, std::string &)> colorFunction;
  233. /**
  234. * @class ColorOutput
  235. * This works with \ref Render to create the output. This consists
  236. * of ANSIColor and text position + length.
  237. *
  238. * @brief This holds an ANSIColor and text position + length
  239. *
  240. */
  241. class ColorOutput {
  242. public:
  243. ColorOutput();
  244. void reset(void);
  245. /// Color to use for this fragment
  246. ANSIColor c;
  247. /// Starting position of Render.text
  248. int pos;
  249. /// Length
  250. int len;
  251. };
  252. /*
  253. No, don't do this.
  254. Instead, return an iterator/generator.
  255. */
  256. /**
  257. * @class Render
  258. * This holds the string, and a vector that contains ColorOutput parts.
  259. *
  260. * @see Render::output()
  261. *
  262. * @brief Rendering a string with ANSIColor
  263. *
  264. */
  265. class Render {
  266. public:
  267. Render(const std::string txt);
  268. /// Complete text to be rendered.
  269. const std::string text;
  270. /// Vector of ColorOutput object.
  271. std::vector<ColorOutput> outputs;
  272. void output(std::ostream &os);
  273. };
  274. /**
  275. * This defines the render output function. This is used
  276. * to define the setRender functions, as well as the creation
  277. * of render functions.
  278. *
  279. * @brief Render output function
  280. *
  281. */
  282. typedef std::function<Render(const std::string &)> renderFunction;
  283. /**
  284. * This defines the update function.
  285. *
  286. * This updates the text.
  287. */
  288. typedef std::function<std::string(void)> updateFunction;
  289. /**
  290. * @class Clrscr
  291. * Clear the screen
  292. * @brief Clear the screen
  293. */
  294. class Clrscr {
  295. public:
  296. Clrscr(void);
  297. friend std::ostream &operator<<(std::ostream &os, const Clrscr &clr);
  298. };
  299. /**
  300. * Clear the BBS terminal.
  301. *
  302. */
  303. extern Clrscr cls;
  304. /**
  305. * @class NewLine
  306. * Carriage return + Newline
  307. * @brief CR+LF
  308. */
  309. class NewLine {
  310. public:
  311. NewLine(void);
  312. friend std::ostream &operator<<(std::ostream &os, const NewLine &nl);
  313. };
  314. /**
  315. * CRLF
  316. */
  317. extern NewLine nl;
  318. /**
  319. * This resets the colors to normal state.
  320. *
  321. * @brief reset colors to normal
  322. */
  323. extern ANSIColor reset;
  324. /// @deprecated Not used
  325. enum class Justify { NONE, LEFT, RIGHT, CENTER };
  326. /**
  327. * @class Goto
  328. * This handles outputting ANSI codes to position the cursor on the screen.
  329. *
  330. * @brief ANSI Goto X, Y position
  331. */
  332. class Goto {
  333. /// X-Position
  334. int x;
  335. /// Y-Position
  336. int y;
  337. public:
  338. Goto(int xpos, int ypos);
  339. /**
  340. * Default Goto constructor copier
  341. */
  342. Goto(Goto &) = default;
  343. void set(int xpos, int ypos);
  344. friend std::ostream &operator<<(std::ostream &os, const Goto &g);
  345. };
  346. extern const char SaveCursor[];
  347. extern const char RestoreCursor[];
  348. /* should we try to derive a base class, so you can have multilines of
  349. * multilines? */
  350. class LineBase {
  351. public:
  352. virtual ~LineBase() = default;
  353. virtual bool update(void) = 0;
  354. // friend std::ostream &operator<<(std::ostream &os, const LineBase &lb) = 0;
  355. };
  356. class BasicLine {
  357. private:
  358. std::string text;
  359. bool hasColor;
  360. ANSIColor color;
  361. /// renderFunction to use when rendering Line.
  362. renderFunction render;
  363. /// updateFunction to use when updating.
  364. updateFunction updater;
  365. public:
  366. BasicLine(std::string txt);
  367. BasicLine(std::string txt, ANSIColor c);
  368. BasicLine(const BasicLine &rhs) = default;
  369. virtual ~BasicLine() = default;
  370. bool hasRender(void);
  371. void setText(std::string txt);
  372. void setColor(ANSIColor c);
  373. void setRender(renderFunction rf);
  374. void setUpdater(updateFunction uf);
  375. bool update(void);
  376. friend std::ostream &operator<<(std::ostream &os, const BasicLine &l);
  377. };
  378. class MultiLine {
  379. private:
  380. std::vector<std::shared_ptr<BasicLine>> lines;
  381. public:
  382. MultiLine();
  383. void append(std::shared_ptr<BasicLine> bl);
  384. bool update(void);
  385. friend std::ostream &operator<<(std::ostream &os, const MultiLine &l);
  386. };
  387. /**
  388. * @class Line
  389. * This holds text and ANSIColor information, and knows how to
  390. * send them out to the Door.
  391. * @brief Text and ANSIColor
  392. */
  393. class Line {
  394. private:
  395. /// Text of the line
  396. std::string text;
  397. /// Do we have color?
  398. bool hasColor;
  399. /// Line color
  400. ANSIColor color;
  401. /// Padding characters
  402. std::string padding;
  403. /// Padding color
  404. ANSIColor paddingColor;
  405. /// renderFunction to use when rendering Line.
  406. renderFunction render;
  407. /// updateFunction to use when updating.
  408. updateFunction updater;
  409. public:
  410. Line(std::string &txt, int width = 0);
  411. Line(const char *txt, int width = 0);
  412. Line(std::string &txt, int width, ANSIColor c);
  413. Line(const char *txt, int width, ANSIColor c);
  414. Line(std::string &txt, int width, renderFunction rf);
  415. Line(const char *txt, int width, renderFunction rf);
  416. Line(const Line &rhs);
  417. // ~Line();
  418. bool hasRender(void);
  419. int length(void); // const;
  420. /**
  421. * @param width int
  422. */
  423. void makeWidth(int width);
  424. /**
  425. * @param padstring std::string &
  426. * @param padColor ANSIColor
  427. */
  428. void setPadding(std::string &padstring, ANSIColor padColor);
  429. /**
  430. * @param padstring const char *
  431. * @param padColor ANSIColor
  432. */
  433. void setPadding(const char *padstring, ANSIColor padcolor);
  434. void setText(std::string &txt);
  435. void setText(const char *txt);
  436. void setColor(ANSIColor c);
  437. void setRender(renderFunction rf);
  438. void setUpdater(updateFunction uf);
  439. bool update(void);
  440. std::string debug(void);
  441. /**
  442. * @todo This might be a problem, because const Line wouldn't
  443. * allow me to track "updates". I.E. I send the line, I'd
  444. * need to change the line's State to "nothing changed".
  445. * Then, if something did change, the next update request would
  446. * be able to know that yes, this does indeed need to be sent.
  447. *
  448. * @bug This also might cause problems if I display a shared
  449. * BasicLine (in multiple places), and then update it. It
  450. * would only update in the first place (the others wouldn't
  451. * show it needs an update).
  452. */
  453. friend std::ostream &operator<<(std::ostream &os, const Line &l);
  454. };
  455. /// Example BlueYellow renderFunction
  456. extern renderFunction rBlueYellow;
  457. /**
  458. * The different Borders supported by Panel.
  459. *
  460. */
  461. enum class BorderStyle {
  462. /// NONE (0)
  463. NONE,
  464. /// SINGLE (1)
  465. SINGLE,
  466. /// DOUBLE (2)
  467. DOUBLE,
  468. /// SINGLE top DOUBLE side (3)
  469. SINGLE_DOUBLE,
  470. /// DOUBLE top SINGLE side (4)
  471. DOUBLE_SINGLE,
  472. /// BLANK (5)
  473. BLANK
  474. };
  475. class Panel {
  476. protected:
  477. int x;
  478. int y;
  479. int width; // or padding ?
  480. BorderStyle border_style;
  481. ANSIColor border_color;
  482. /**
  483. * @todo Fix this to use shared_ptr.
  484. * I don't think unique_ptr is the right way to go with this. I want to reuse
  485. * things, and that means shared_ptr!
  486. *
  487. */
  488. std::vector<std::unique_ptr<Line>> lines;
  489. bool hidden;
  490. // when you show panel, should it mark it as
  491. // redisplay everything?? maybe??
  492. bool shown_once; // ?? maybe shown_once_already ?
  493. std::unique_ptr<Line> title;
  494. int offset;
  495. public:
  496. Panel(int x, int y, int width);
  497. // Panel(const Panel &);
  498. Panel(Panel &) = delete; // default;
  499. Panel(Panel &&ref);
  500. void set(int x, int y);
  501. void setTitle(std::unique_ptr<Line> T, int off = 1);
  502. void setStyle(BorderStyle bs);
  503. void setColor(ANSIColor c);
  504. void hide(void);
  505. void show(void);
  506. void addLine(std::unique_ptr<Line> l);
  507. // bool delLine(std::shared_ptr<Line> l); // ?
  508. /*
  509. void display(void);
  510. void update(void);
  511. */
  512. /**
  513. * @brief Updates a panel.
  514. *
  515. * returns True if something was changed (and cursor has moved)
  516. * False, nothing to do, cursor is ok.
  517. *
  518. * @param d
  519. * @return true
  520. * @return false
  521. */
  522. bool update(Door &d);
  523. void update(Door &d, int line);
  524. friend std::ostream &operator<<(std::ostream &os, const Panel &p);
  525. };
  526. /*
  527. Menu - defaults to double lines.
  528. Has colorize for selected item / non-selected.
  529. Arrow keys + ENTER, or keypress to select an item.
  530. [O] Option Displayed Here
  531. [ + ] = c1
  532. O = c2
  533. Remaining UC TEXT = c3
  534. Remaining LC text = c4
  535. // Colors for CS and CU (color selected, color unselected)
  536. */
  537. class Menu : public Panel {
  538. private:
  539. unsigned int chosen;
  540. std::vector<char> options;
  541. renderFunction selectedRender;
  542. renderFunction unselectedRender;
  543. /*
  544. std::function<void(Door &d, std::string &)> selectedColorizer;
  545. std::function<void(Door &d, std::string &)> unselectedColorizer;
  546. */
  547. public:
  548. static renderFunction defaultSelectedRender;
  549. static renderFunction defaultUnselectedRender;
  550. /*
  551. static std::function<void(Door &d, std::string &)> defaultSelectedColorizer;
  552. static std::function<void(Door &d, std::string &)> defaultUnselectedColorizer;
  553. */
  554. Menu(int x, int y, int width);
  555. // Menu(const Menu &);
  556. Menu(const Menu &) = delete;
  557. Menu(Menu &&);
  558. void addSelection(char c, const char *line);
  559. void defaultSelection(int d);
  560. void setRender(bool selected, renderFunction render);
  561. /*
  562. void setColorizer(bool selected,
  563. std::function<void(Door &d, std::string &)> colorizer);
  564. */
  565. int choose(Door &door);
  566. char which(int d);
  567. static renderFunction makeRender(ANSIColor c1, ANSIColor c2, ANSIColor c3,
  568. ANSIColor c4);
  569. // static std::function<void(Door &d, std::string &)>
  570. // makeColorizer(ANSIColor c1, ANSIColor c2, ANSIColor c3, ANSIColor c4);
  571. };
  572. renderFunction renderStatusValue(ANSIColor state, ANSIColor value);
  573. class Screen {
  574. private:
  575. bool hidden;
  576. std::vector<std::shared_ptr<Panel>> parts;
  577. public:
  578. Screen(void);
  579. Screen(Screen &) = default;
  580. void addPanel(std::shared_ptr<Panel> p);
  581. bool delPanel(std::shared_ptr<Panel> p); // HMM. Or ptr?
  582. void hide(void);
  583. void show(void);
  584. friend std::ostream &operator<<(std::ostream &os, const Screen &s);
  585. };
  586. /*
  587. screen - contains panels.
  588. - default to 1,1 X 80,24
  589. - refresh(style) could redraw panels by order they were added,
  590. or could redraw panels from top to bottom, left to right.
  591. crazy ideas:
  592. hide panels / z-order
  593. how to handle panel on top of other panels?
  594. Can I have you win + show animated final score calculations?
  595. panel - has X,Y and width, optional length. contains lines.
  596. length could be simply number of "lines".
  597. - has optional border. double/single/Ds/Sd TOPbottom
  598. - has optional title.
  599. - has optional footer.
  600. addLine()
  601. append() - Appends another line to current line.
  602. set(X,Y) - set a "line" at a given X,Y position.
  603. menu - another type of panel, contains menu options/lines.
  604. lightmenu - like above, but allows arrow keys to select menu options.
  605. line - contains text.
  606. (Maybe a "dirty" flag is needed here?)
  607. - has optional (width)
  608. - has optional (justify - L, R, Center)
  609. - has optional padding (# of blank chars)
  610. - has color (of text)
  611. - has formatter/coloring function (to colorize the text)
  612. Example would be one that sets capital letters to one color, lower to another.
  613. Another example would be one that displays Score: XXX, where Score is one
  614. color, : is another, and XXX is yet another. Properly padded, of course.
  615. - has "lambda" function to update the value? (Maybe?)
  616. Idea would be that I could update the score, and panel.update(). It would
  617. call all the line.update() functions and only update anything that has
  618. changed.
  619. Crazy ideas:
  620. Can I delete a line, and have it automatically removed from a panel?
  621. lightline - text, changes format/coloring if focus/nofocus is set?
  622. */
  623. } // namespace door
  624. #endif