door.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850
  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 <list>
  11. #include <memory>
  12. #include <ostream>
  13. #include <vector>
  14. // raw mode
  15. #include <termios.h>
  16. #include <unistd.h>
  17. #define CSI "\x1b["
  18. // getkey definitions
  19. #define XKEY_START 0x1000
  20. #define XKEY_UP_ARROW 0x1001
  21. #define XKEY_DOWN_ARROW 0x1002
  22. #define XKEY_RIGHT_ARROW 0x1003
  23. #define XKEY_LEFT_ARROW 0x1004
  24. #define XKEY_HOME 0x1010
  25. #define XKEY_END 0x1011
  26. #define XKEY_PGUP 0x1012
  27. #define XKEY_PGDN 0x1023
  28. #define XKEY_INSERT 0x1024
  29. #define XKEY_DELETE 0x7f
  30. #define XKEY_F1 0x1021
  31. #define XKEY_F2 0x1022
  32. #define XKEY_F3 0x1023
  33. #define XKEY_F4 0x1024
  34. #define XKEY_F5 0x1025
  35. #define XKEY_F6 0x1026
  36. #define XKEY_F7 0x1027
  37. #define XKEY_F8 0x1028
  38. #define XKEY_F9 0x1029
  39. #define XKEY_F10 0x102a
  40. #define XKEY_F11 0x102b
  41. #define XKEY_F12 0x102c
  42. #define XKEY_UNKNOWN 0x1111
  43. #define TIMEOUT -1
  44. #define HANGUP -2
  45. #define OUTOFTIME -3
  46. /**
  47. * @brief The BBS door project.
  48. * This is an attempt at writing a C++ BBS door toolkit.
  49. */
  50. namespace door {
  51. extern bool unicode;
  52. extern bool full_cp437;
  53. extern bool debug_capture;
  54. extern std::list<char> pushback;
  55. /*
  56. Translate CP437 strings to unicode for output.
  57. if (door::unicode) {
  58. // perform translation
  59. }
  60. */
  61. void cp437toUnicode(std::string input, std::string &out);
  62. void cp437toUnicode(const char *input, std::string &out);
  63. /*
  64. door 2.0
  65. */
  66. /**
  67. * ANSI Color codes
  68. */
  69. /**
  70. * @brief The colors available under ANSI-BBS
  71. */
  72. enum class COLOR : std::int8_t {
  73. /// BLACK (0)
  74. BLACK,
  75. /// RED (1)
  76. RED,
  77. /// GREEN (2)
  78. GREEN,
  79. /// BROWN (3)
  80. BROWN,
  81. /// YELLOW (3)
  82. YELLOW = 3,
  83. /// BLUE (4)
  84. BLUE,
  85. /// MAGENTA (5)
  86. MAGENTA,
  87. /// CYAN (6)
  88. CYAN,
  89. /// WHITE (7)
  90. WHITE
  91. };
  92. /**
  93. * @brief ANSI-BBS text attributes
  94. */
  95. enum class ATTR : std::int8_t {
  96. /// RESET forces all attributes (and Colors) to be sent.
  97. RESET,
  98. /// BOLD is the same as BRIGHT.
  99. BOLD,
  100. /// BRIGHT is the same as BOLD.
  101. BRIGHT = 1,
  102. /// SLOW BLINK
  103. BLINK = 5,
  104. /// INVERSE is Background on Foreground.
  105. INVERSE = 7
  106. };
  107. /**
  108. * @class ANSIColor
  109. * This holds foreground, background and ANSI-BBS attribute
  110. * information.
  111. * The special attribute RESET forces attribute and color
  112. * output always.
  113. *
  114. * @brief Foreground, Background and Attributes
  115. *
  116. */
  117. class ANSIColor {
  118. /** Foreground color */
  119. COLOR fg;
  120. /** Background color */
  121. COLOR bg;
  122. // Track attributes (ATTR)
  123. /** reset flag / always send color and attributes */
  124. unsigned int reset : 1;
  125. /** bold / bright flag */
  126. unsigned int bold : 1;
  127. /** blink slow blinking text */
  128. unsigned int blink : 1;
  129. /** inverse */
  130. unsigned int inverse : 1;
  131. public:
  132. ANSIColor();
  133. ANSIColor(ATTR a);
  134. ANSIColor(COLOR f);
  135. ANSIColor(COLOR f, ATTR a);
  136. ANSIColor(COLOR f, ATTR a1, ATTR a2);
  137. ANSIColor(COLOR f, COLOR b);
  138. ANSIColor(COLOR f, COLOR b, ATTR a);
  139. ANSIColor(COLOR f, COLOR b, ATTR a1, ATTR a2);
  140. ANSIColor &Attr(ATTR a);
  141. bool operator==(const ANSIColor &c) const;
  142. bool operator!=(const ANSIColor &c) const;
  143. void setFg(COLOR f);
  144. void setFg(COLOR f, ATTR a);
  145. void setBg(COLOR b);
  146. /**
  147. * Get the foreground color
  148. * @return COLOR
  149. */
  150. COLOR getFg() { return fg; };
  151. /**
  152. * Get the background color
  153. * @return COLOR
  154. */
  155. COLOR getBg() { return bg; };
  156. void attr(ATTR a);
  157. std::string output(void) const;
  158. std::string debug(void);
  159. std::string output(ANSIColor &previous) const;
  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. class Door : public std::ostream, private std::streambuf {
  168. private:
  169. std::streamsize xsputn(const char *s, std::streamsize n) override;
  170. int overflow(int c) override;
  171. /** The name used for logfile */
  172. std::string doorname;
  173. void parse_dropfile(const char *filepath);
  174. void init(void);
  175. std::time_t startup;
  176. /** Initial terminal defaults. */
  177. struct termios tio_default;
  178. signed int getch(void);
  179. signed int getkey_or_pushback(void);
  180. /** Did we read a dropfile? */
  181. bool has_dropfile;
  182. bool debugging;
  183. /** Name of the dropfile. */
  184. std::string dropfilename;
  185. /** Contents of the dropfile. */
  186. vector<std::string> dropfilelines;
  187. /** Logfile */
  188. ofstream logf;
  189. void detect_unicode_and_screen(void);
  190. /** Allow us to stop the time_thread. */
  191. std::promise<void> stop_thread;
  192. /** Used by time_thread to know when a minute has passed. */
  193. int seconds_elapsed;
  194. void time_thread_run(std::future<void> future);
  195. /** Thread used to update time_left and time_used. */
  196. std::thread time_thread;
  197. public:
  198. Door(std::string dname, int argc, char *argv[]);
  199. Door(Door &) = delete;
  200. virtual ~Door();
  201. ofstream &log(void);
  202. /** Commandline options parser. */
  203. AnyOption opt;
  204. /** Buffer that holds the output for testing. */
  205. std::string debug_buffer;
  206. /**
  207. * Previous ANSI-BBS colors and attributes sent.
  208. * This is used to optimize ANSI Color output.
  209. * \see ANSIColor::output()
  210. */
  211. ANSIColor previous;
  212. /** \todo Enable tracking cursor position. */
  213. bool track;
  214. /** \todo Current cursor X position. */
  215. int cx;
  216. /** \todo Current cursor Y position. */
  217. int cy;
  218. /** Detected screen width. \ref Door::detect_unicode_and_screen */
  219. int width;
  220. /** Detected screen height. */
  221. int height;
  222. /**
  223. * @brief Number of seconds before timing out.
  224. *
  225. * When prompting for user input, this is the number of seconds they have to
  226. * respond before we give up and timeout on them. (Default 120/2 minutes)
  227. */
  228. int inactivity;
  229. /** BBS Dropfile username */
  230. std::string username;
  231. /** BBS Dropfile handle */
  232. std::string handle;
  233. /** BBS Dropfile location */
  234. std::string location;
  235. /** BBS Dropfile sysop name */
  236. std::string sysop;
  237. // std::string bbsname;
  238. /** BBS Dropfile node number */
  239. int node;
  240. /** time left in minutes */
  241. atomic<int> time_left;
  242. /** time used in minutes */
  243. atomic<int> time_used;
  244. signed int getkey(void);
  245. bool haskey(void);
  246. signed int sleep_key(int secs);
  247. signed int sleep_ms_key(int msecs);
  248. std::string input_string(int max);
  249. int get_one_of(const char *keys);
  250. };
  251. // Use this to define the deprecated colorizer [POC]
  252. // typedef std::function<void(Door &, std::string &)> colorFunction;
  253. /**
  254. * @class ColorOutput
  255. * This works with \ref Render to create the output. This consists
  256. * of ANSIColor and text position + length.
  257. *
  258. * @brief This holds an ANSIColor and text position + length
  259. *
  260. */
  261. class ColorOutput {
  262. public:
  263. ColorOutput();
  264. void reset(void);
  265. /// Color to use for this fragment
  266. ANSIColor c;
  267. /// Starting position of Render.text
  268. int pos;
  269. /// Length
  270. int len;
  271. };
  272. /*
  273. No, don't do this.
  274. Instead, return an iterator/generator.
  275. */
  276. /**
  277. * @class Render
  278. * This holds the string, and a vector that contains ColorOutput parts.
  279. *
  280. * @see Render::output()
  281. *
  282. * @brief Rendering a string with ANSIColor
  283. *
  284. */
  285. class Render {
  286. /// Complete text to be rendered.
  287. std::string text;
  288. public:
  289. Render(const std::string txt);
  290. /// Vector of ColorOutput object.
  291. std::vector<ColorOutput> outputs;
  292. void append(ANSIColor color, int len = 1);
  293. void output(std::ostream &os);
  294. };
  295. /**
  296. * This defines the render output function. Given the line text, we output the
  297. * color codes needs to display the line.
  298. *
  299. * ~~~{.cpp}
  300. * door::ANSIColor upperColor, lowerColor;
  301. *
  302. * door::RenderFunction render = [upperColor, lowerColor]
  303. * (const std::string &text) -> door::Render {
  304. * door::Render r(text);
  305. * for (char const &c : text) {
  306. * if (std::isupper(c))
  307. * r.append(upperColor);
  308. * else
  309. * r.append(lowerColor);
  310. * }
  311. * return r;
  312. * };
  313. * ~~~
  314. *
  315. * @brief Render output function
  316. *
  317. */
  318. typedef std::function<Render(const std::string &)> renderFunction;
  319. /**
  320. * This defines the update function.
  321. *
  322. * This updates the text.
  323. *
  324. * ~~~{.cpp}
  325. * int score = 0;
  326. *
  327. * door::updateFunction updater = [](void) -> std::string {
  328. * std::string text = "Score: ";
  329. * text += std::to_string(score);
  330. * return text;
  331. * };
  332. *
  333. * fancyLine.setUpdater(updater);
  334. * ~~~
  335. */
  336. typedef std::function<std::string(void)> updateFunction;
  337. /**
  338. * @class Clrscr
  339. * Clear the screen
  340. * @brief Clear the screen
  341. */
  342. class Clrscr {
  343. public:
  344. Clrscr(void);
  345. friend std::ostream &operator<<(std::ostream &os, const Clrscr &clr);
  346. };
  347. /**
  348. * Clear the BBS terminal.
  349. *
  350. */
  351. extern Clrscr cls;
  352. /**
  353. * @class NewLine
  354. * Carriage return + Newline
  355. * @brief CR+LF
  356. */
  357. class NewLine {
  358. public:
  359. NewLine(void);
  360. friend std::ostream &operator<<(std::ostream &os, const NewLine &nl);
  361. };
  362. /**
  363. * CRLF
  364. */
  365. extern NewLine nl;
  366. /**
  367. * This resets the colors to normal state.
  368. *
  369. * @brief reset colors to normal
  370. */
  371. extern ANSIColor reset;
  372. /// @deprecated Not used
  373. enum class Justify { NONE, LEFT, RIGHT, CENTER };
  374. /**
  375. * @class Goto
  376. * This handles outputting ANSI codes to position the cursor on the screen.
  377. *
  378. * @brief ANSI Goto X, Y position
  379. */
  380. class Goto {
  381. /// X-Position
  382. int x;
  383. /// Y-Position
  384. int y;
  385. public:
  386. Goto(int xpos, int ypos);
  387. /**
  388. * Default Goto constructor copier
  389. */
  390. Goto(const Goto &) = default;
  391. void set(int xpos, int ypos);
  392. friend std::ostream &operator<<(std::ostream &os, const Goto &g);
  393. };
  394. extern const char SaveCursor[];
  395. extern const char RestoreCursor[];
  396. #ifdef EXPERIMENTAL
  397. /* should we try to derive a base class, so you can have multilines of
  398. * multilines? */
  399. class LineBase {
  400. public:
  401. virtual ~LineBase() = default;
  402. virtual bool update(void) = 0;
  403. // friend std::ostream &operator<<(std::ostream &os, const LineBase &lb) = 0;
  404. };
  405. class BasicLine {
  406. protected:
  407. std::string text;
  408. bool hasColor;
  409. ANSIColor color;
  410. /// renderFunction to use when rendering Line.
  411. renderFunction render;
  412. /// updateFunction to use when updating.
  413. updateFunction updater;
  414. public:
  415. BasicLine(std::string txt);
  416. BasicLine(std::string txt, ANSIColor c);
  417. BasicLine(const BasicLine &rhs) = default;
  418. virtual ~BasicLine() = default;
  419. bool hasRender(void);
  420. void setText(std::string txt);
  421. void setColor(ANSIColor c);
  422. void setRender(renderFunction rf);
  423. void setUpdater(updateFunction uf);
  424. bool update(void);
  425. friend std::ostream &operator<<(std::ostream &os, const BasicLine &l);
  426. };
  427. class MultiLine {
  428. protected:
  429. std::vector<std::shared_ptr<BasicLine>> lines;
  430. public:
  431. MultiLine();
  432. void append(std::shared_ptr<BasicLine> bl);
  433. bool update(void);
  434. friend std::ostream &operator<<(std::ostream &os, const MultiLine &l);
  435. };
  436. #endif
  437. /**
  438. * @class Line
  439. * This holds text and ANSIColor information, and knows how to
  440. * send them out to the Door.
  441. * @brief Text and ANSIColor
  442. */
  443. class Line {
  444. protected:
  445. /// Text of the line
  446. std::string text;
  447. /// Do we have color?
  448. bool hasColor;
  449. /// Line color
  450. ANSIColor color;
  451. /// Padding characters
  452. std::string padding;
  453. /// Padding color
  454. ANSIColor paddingColor;
  455. /// renderFunction to use when rendering Line.
  456. renderFunction render;
  457. /// updateFunction to use when updating.
  458. updateFunction updater;
  459. int width;
  460. /**
  461. * @param width int
  462. */
  463. // void makeWidth(int width);
  464. public:
  465. Line(const std::string &txt, int width = 0);
  466. Line(const char *txt, int width = 0);
  467. Line(const std::string &txt, int width, ANSIColor c);
  468. Line(const char *txt, int width, ANSIColor c);
  469. Line(const std::string &txt, int width, renderFunction rf);
  470. Line(const char *txt, int width, renderFunction rf);
  471. Line(const Line &rhs);
  472. Line(Line &&rhs);
  473. // ~Line();
  474. bool hasRender(void);
  475. int length(void); // const;
  476. void fit(void);
  477. /**
  478. * @param padstring std::string &
  479. * @param padColor ANSIColor
  480. */
  481. void setPadding(std::string &padstring, ANSIColor padColor);
  482. /**
  483. * @param padstring const char *
  484. * @param padColor ANSIColor
  485. */
  486. void setPadding(const char *padstring, ANSIColor padcolor);
  487. void setText(std::string &txt);
  488. void setText(const char *txt);
  489. const char *getText(void) { return text.c_str(); };
  490. void setColor(ANSIColor c);
  491. void setRender(renderFunction rf);
  492. void setUpdater(updateFunction uf);
  493. bool update(void);
  494. std::string debug(void);
  495. /**
  496. * @todo This might be a problem, because const Line wouldn't
  497. * allow me to track "updates". I.E. I send the line, I'd
  498. * need to change the line's State to "nothing changed".
  499. * Then, if something did change, the next update request would
  500. * be able to know that yes, this does indeed need to be sent.
  501. *
  502. * @bug This also might cause problems if I display a shared
  503. * BasicLine (in multiple places), and then update it. It
  504. * would only update in the first place (the others wouldn't
  505. * show it needs an update).
  506. */
  507. friend std::ostream &operator<<(std::ostream &os, const Line &l);
  508. };
  509. /// Example BlueYellow renderFunction
  510. extern renderFunction rBlueYellow;
  511. /*
  512. Progress Bar Styles:
  513. solid chars.
  514. half step chars.
  515. gradient (1/4 %25, %50, %75) chars.
  516. percentage (solid chars, percentage is XX% or 100)
  517. percent_space (solid chars, percentage is " XX% " or " 100 ")
  518. */
  519. enum class BarStyle { SOLID, HALF_STEP, GRADIENT, PERCENTAGE, PERCENT_SPACE };
  520. /**
  521. * BarColorRange
  522. *
  523. * vector<door::BarColorRange> colorRange = {
  524. * {2500, door::ANSIColor(door::COLOR::RED)},
  525. * {5000, door::ANSIColor(door::COLOR::BROWN)},
  526. * {7500, door::ANSIColor(door::COLOR::YELLOW, door::ATTR::BOLD)},
  527. * {9500, door::ANSIColor(door::COLOR::GREEN)},
  528. * {10100, door::ANSIColor(door::COLOR::GREEN, door::ATTR::BOLD)}};
  529. * BarLine.setColorRange(colorRange);
  530. *
  531. */
  532. struct BarColorRange {
  533. unsigned long percent;
  534. ANSIColor c;
  535. };
  536. class BarLine : public Line {
  537. protected:
  538. BarStyle barstyle;
  539. unsigned long current_percent;
  540. void init(void);
  541. std::string update_bar(void);
  542. int length;
  543. vector<BarColorRange> colorRange;
  544. public:
  545. BarLine(int width);
  546. BarLine(int width, BarStyle style);
  547. BarLine(int width, BarStyle style, ANSIColor c);
  548. void watch(float &percent);
  549. void watch(int &value, int &max);
  550. void setStyle(BarStyle s);
  551. void set(int value, int max);
  552. void set(float percent);
  553. void set(unsigned long percent);
  554. void setColorRange(vector<BarColorRange> bcr);
  555. // friend std::ostream &operator<<(std::ostream &os, const BarLine &b);
  556. };
  557. /**
  558. * The different Borders supported by Panel.
  559. *
  560. */
  561. enum class BorderStyle {
  562. /// NONE (0)
  563. NONE,
  564. /// SINGLE (1)
  565. SINGLE,
  566. /// DOUBLE (2)
  567. DOUBLE,
  568. /// SINGLE top DOUBLE side (3)
  569. SINGLE_DOUBLE,
  570. /// DOUBLE top SINGLE side (4)
  571. DOUBLE_SINGLE,
  572. /// BLANK (5)
  573. BLANK
  574. };
  575. class Panel {
  576. protected:
  577. int x;
  578. int y;
  579. int width; // or padding ?
  580. BorderStyle border_style;
  581. ANSIColor border_color;
  582. /**
  583. * @todo Fix this to use shared_ptr.
  584. * I don't think unique_ptr is the right way to go with this. I want to reuse
  585. * things, and that means shared_ptr!
  586. *
  587. */
  588. std::vector<std::unique_ptr<Line>> lines;
  589. bool hidden;
  590. // when you show panel, should it mark it as
  591. // redisplay everything?? maybe??
  592. bool shown_once; // ?? maybe shown_once_already ?
  593. std::unique_ptr<Line> title;
  594. int offset;
  595. public:
  596. Panel(int x, int y, int width);
  597. Panel(int width);
  598. // Panel(const Panel &);
  599. Panel(Panel &) = delete; // default;
  600. Panel(Panel &&ref);
  601. void set(int x, int y);
  602. void get(int &x, int &y) {
  603. x = this->x;
  604. y = this->y;
  605. };
  606. void setTitle(std::unique_ptr<Line> T, int off = 1);
  607. void setStyle(BorderStyle bs);
  608. void setColor(ANSIColor c);
  609. int getWidth(void) { return width; };
  610. int getHeight(void) {
  611. if (border_style == BorderStyle::NONE)
  612. return lines.size();
  613. else
  614. return lines.size() + 2;
  615. };
  616. void hide(void);
  617. void show(void);
  618. void addLine(std::unique_ptr<Line> l);
  619. // bool delLine(std::shared_ptr<Line> l); // ?
  620. /*
  621. void display(void);
  622. void update(void);
  623. */
  624. /**
  625. * @brief Updates a panel.
  626. *
  627. * returns True if something was changed (and cursor has moved)
  628. * False, nothing to do, cursor is ok.
  629. *
  630. * @param d
  631. * @return true
  632. * @return false
  633. */
  634. bool update(Door &d);
  635. void update(Door &d, int line);
  636. void update(void);
  637. door::Goto gotoEnd(void);
  638. std::unique_ptr<Line> spacer_line(bool single);
  639. void lineSetBack(ANSIColor back);
  640. friend std::ostream &operator<<(std::ostream &os, const Panel &p);
  641. };
  642. /*
  643. Menu - defaults to double lines.
  644. Has colorize for selected item / non-selected.
  645. Arrow keys + ENTER, or keypress to select an item.
  646. [O] Option Displayed Here
  647. [ + ] = c1
  648. O = c2
  649. Remaining UC TEXT = c3
  650. Remaining LC text = c4
  651. // Colors for CS and CU (color selected, color unselected)
  652. */
  653. class Menu : public Panel {
  654. protected:
  655. unsigned int chosen;
  656. std::vector<char> options;
  657. renderFunction selectedRender;
  658. renderFunction unselectedRender;
  659. /*
  660. std::function<void(Door &d, std::string &)> selectedColorizer;
  661. std::function<void(Door &d, std::string &)> unselectedColorizer;
  662. */
  663. public:
  664. static renderFunction defaultSelectedRender;
  665. static renderFunction defaultUnselectedRender;
  666. /*
  667. static std::function<void(Door &d, std::string &)> defaultSelectedColorizer;
  668. static std::function<void(Door &d, std::string &)> defaultUnselectedColorizer;
  669. */
  670. Menu(int x, int y, int width);
  671. Menu(int width);
  672. // Menu(const Menu &);
  673. Menu(const Menu &) = delete;
  674. Menu(Menu &&);
  675. void addSelection(char c, const char *line);
  676. void addSelection(char c, const char *line, updateFunction update);
  677. void defaultSelection(int d);
  678. void setRender(bool selected, renderFunction render);
  679. int choose(Door &door);
  680. char which(int d);
  681. static renderFunction makeRender(ANSIColor c1, ANSIColor c2, ANSIColor c3,
  682. ANSIColor c4);
  683. };
  684. class Screen {
  685. protected:
  686. // bool hidden;
  687. /**
  688. * @brief vector of panels.
  689. */
  690. std::vector<std::unique_ptr<Panel>> panels;
  691. public:
  692. Screen(void);
  693. Screen(Screen &) = default;
  694. void addPanel(std::unique_ptr<Panel> p);
  695. /*
  696. bool delPanel(std::shared_ptr<Panel> p);
  697. void hide(void);
  698. void show(void);
  699. */
  700. bool update(Door &d);
  701. void update(void);
  702. friend std::ostream &operator<<(std::ostream &os, const Screen &s);
  703. };
  704. /*
  705. screen - contains panels.
  706. - default to 1,1 X 80,24
  707. - refresh(style) could redraw panels by order they were added,
  708. or could redraw panels from top to bottom, left to right.
  709. crazy ideas:
  710. hide panels / z-order
  711. how to handle panel on top of other panels?
  712. Can I have you win + show animated final score calculations?
  713. panel - has X,Y and width, optional length. contains lines.
  714. length could be simply number of "lines".
  715. - has optional border. double/single/Ds/Sd TOPbottom
  716. - has optional title.
  717. - has optional footer.
  718. addLine()
  719. append() - Appends another line to current line.
  720. set(X,Y) - set a "line" at a given X,Y position.
  721. menu - another type of panel, contains menu options/lines.
  722. lightmenu - like above, but allows arrow keys to select menu options.
  723. line - contains text.
  724. (Maybe a "dirty" flag is needed here?)
  725. - has optional (width)
  726. - has optional (justify - L, R, Center)
  727. - has optional padding (# of blank chars)
  728. - has color (of text)
  729. - has formatter/coloring function (to colorize the text)
  730. Example would be one that sets capital letters to one color, lower to another.
  731. Another example would be one that displays Score: XXX, where Score is one
  732. color, : is another, and XXX is yet another. Properly padded, of course.
  733. - has "lambda" function to update the value? (Maybe?)
  734. Idea would be that I could update the score, and panel.update(). It would
  735. call all the line.update() functions and only update anything that has
  736. changed.
  737. Crazy ideas:
  738. Can I delete a line, and have it automatically removed from a panel?
  739. lightline - text, changes format/coloring if focus/nofocus is set?
  740. */
  741. } // namespace door
  742. #endif