door.h 17 KB

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