door.h 15 KB

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