door.h 16 KB

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