door.h 15 KB

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