door.h 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820
  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. private:
  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. private:
  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. private:
  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. Maybe I don't want to use a line for this? It doesn't have location!
  513. (but if it is a line, you can put it into a panel,which does have
  514. location...)
  515. */
  516. enum class BarStyle { SOLID, HALF_STEP, GRADIENT, PERCENTAGE, PERCENT_SPACE };
  517. class Bar {
  518. private:
  519. unsigned long current_percent;
  520. BarStyle style;
  521. std::string text;
  522. void update_bar(void);
  523. int length;
  524. public:
  525. Line line;
  526. Bar(int width, BarStyle s = BarStyle::SOLID);
  527. // helper ...
  528. void set(int value, int max);
  529. void set(float percent);
  530. void set(unsigned long percent);
  531. };
  532. /**
  533. * The different Borders supported by Panel.
  534. *
  535. */
  536. enum class BorderStyle {
  537. /// NONE (0)
  538. NONE,
  539. /// SINGLE (1)
  540. SINGLE,
  541. /// DOUBLE (2)
  542. DOUBLE,
  543. /// SINGLE top DOUBLE side (3)
  544. SINGLE_DOUBLE,
  545. /// DOUBLE top SINGLE side (4)
  546. DOUBLE_SINGLE,
  547. /// BLANK (5)
  548. BLANK
  549. };
  550. class Panel {
  551. protected:
  552. int x;
  553. int y;
  554. int width; // or padding ?
  555. BorderStyle border_style;
  556. ANSIColor border_color;
  557. /**
  558. * @todo Fix this to use shared_ptr.
  559. * I don't think unique_ptr is the right way to go with this. I want to reuse
  560. * things, and that means shared_ptr!
  561. *
  562. */
  563. std::vector<std::unique_ptr<Line>> lines;
  564. bool hidden;
  565. // when you show panel, should it mark it as
  566. // redisplay everything?? maybe??
  567. bool shown_once; // ?? maybe shown_once_already ?
  568. std::unique_ptr<Line> title;
  569. int offset;
  570. public:
  571. Panel(int x, int y, int width);
  572. Panel(int width);
  573. // Panel(const Panel &);
  574. Panel(Panel &) = delete; // default;
  575. Panel(Panel &&ref);
  576. void set(int x, int y);
  577. void get(int &x, int &y) {
  578. x = this->x;
  579. y = this->y;
  580. };
  581. void setTitle(std::unique_ptr<Line> T, int off = 1);
  582. void setStyle(BorderStyle bs);
  583. void setColor(ANSIColor c);
  584. int getWidth(void) { return width; };
  585. int getHeight(void) {
  586. if (border_style == BorderStyle::NONE)
  587. return lines.size();
  588. else
  589. return lines.size() + 2;
  590. };
  591. void hide(void);
  592. void show(void);
  593. void addLine(std::unique_ptr<Line> l);
  594. // bool delLine(std::shared_ptr<Line> l); // ?
  595. /*
  596. void display(void);
  597. void update(void);
  598. */
  599. /**
  600. * @brief Updates a panel.
  601. *
  602. * returns True if something was changed (and cursor has moved)
  603. * False, nothing to do, cursor is ok.
  604. *
  605. * @param d
  606. * @return true
  607. * @return false
  608. */
  609. bool update(Door &d);
  610. void update(Door &d, int line);
  611. void update(void);
  612. door::Goto gotoEnd(void);
  613. std::unique_ptr<Line> spacer_line(bool single);
  614. void lineSetBack(ANSIColor back);
  615. friend std::ostream &operator<<(std::ostream &os, const Panel &p);
  616. };
  617. /*
  618. Menu - defaults to double lines.
  619. Has colorize for selected item / non-selected.
  620. Arrow keys + ENTER, or keypress to select an item.
  621. [O] Option Displayed Here
  622. [ + ] = c1
  623. O = c2
  624. Remaining UC TEXT = c3
  625. Remaining LC text = c4
  626. // Colors for CS and CU (color selected, color unselected)
  627. */
  628. class Menu : public Panel {
  629. private:
  630. unsigned int chosen;
  631. std::vector<char> options;
  632. renderFunction selectedRender;
  633. renderFunction unselectedRender;
  634. /*
  635. std::function<void(Door &d, std::string &)> selectedColorizer;
  636. std::function<void(Door &d, std::string &)> unselectedColorizer;
  637. */
  638. public:
  639. static renderFunction defaultSelectedRender;
  640. static renderFunction defaultUnselectedRender;
  641. /*
  642. static std::function<void(Door &d, std::string &)> defaultSelectedColorizer;
  643. static std::function<void(Door &d, std::string &)> defaultUnselectedColorizer;
  644. */
  645. Menu(int x, int y, int width);
  646. Menu(int width);
  647. // Menu(const Menu &);
  648. Menu(const Menu &) = delete;
  649. Menu(Menu &&);
  650. void addSelection(char c, const char *line);
  651. void addSelection(char c, const char *line, updateFunction update);
  652. void defaultSelection(int d);
  653. void setRender(bool selected, renderFunction render);
  654. int choose(Door &door);
  655. char which(int d);
  656. static renderFunction makeRender(ANSIColor c1, ANSIColor c2, ANSIColor c3,
  657. ANSIColor c4);
  658. };
  659. class Screen {
  660. private:
  661. // bool hidden;
  662. /**
  663. * @brief vector of panels.
  664. */
  665. std::vector<std::unique_ptr<Panel>> panels;
  666. public:
  667. Screen(void);
  668. Screen(Screen &) = default;
  669. void addPanel(std::unique_ptr<Panel> p);
  670. /*
  671. bool delPanel(std::shared_ptr<Panel> p);
  672. void hide(void);
  673. void show(void);
  674. */
  675. bool update(Door &d);
  676. void update(void);
  677. friend std::ostream &operator<<(std::ostream &os, const Screen &s);
  678. };
  679. /*
  680. screen - contains panels.
  681. - default to 1,1 X 80,24
  682. - refresh(style) could redraw panels by order they were added,
  683. or could redraw panels from top to bottom, left to right.
  684. crazy ideas:
  685. hide panels / z-order
  686. how to handle panel on top of other panels?
  687. Can I have you win + show animated final score calculations?
  688. panel - has X,Y and width, optional length. contains lines.
  689. length could be simply number of "lines".
  690. - has optional border. double/single/Ds/Sd TOPbottom
  691. - has optional title.
  692. - has optional footer.
  693. addLine()
  694. append() - Appends another line to current line.
  695. set(X,Y) - set a "line" at a given X,Y position.
  696. menu - another type of panel, contains menu options/lines.
  697. lightmenu - like above, but allows arrow keys to select menu options.
  698. line - contains text.
  699. (Maybe a "dirty" flag is needed here?)
  700. - has optional (width)
  701. - has optional (justify - L, R, Center)
  702. - has optional padding (# of blank chars)
  703. - has color (of text)
  704. - has formatter/coloring function (to colorize the text)
  705. Example would be one that sets capital letters to one color, lower to another.
  706. Another example would be one that displays Score: XXX, where Score is one
  707. color, : is another, and XXX is yet another. Properly padded, of course.
  708. - has "lambda" function to update the value? (Maybe?)
  709. Idea would be that I could update the score, and panel.update(). It would
  710. call all the line.update() functions and only update anything that has
  711. changed.
  712. Crazy ideas:
  713. Can I delete a line, and have it automatically removed from a panel?
  714. lightline - text, changes format/coloring if focus/nofocus is set?
  715. */
  716. } // namespace door
  717. #endif