door.h 16 KB

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