door.h 18 KB

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