panel.cpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854
  1. #include "door.h"
  2. #include <set>
  3. #include <string.h>
  4. // #include <memory>
  5. namespace door {
  6. Panel::Panel(int xp, int yp, int panelWidth) : border_color() {
  7. x = xp;
  8. y = yp;
  9. width = panelWidth;
  10. hidden = false;
  11. border_style = BorderStyle::NONE;
  12. // border_color = ANSIColor();
  13. }
  14. Panel::Panel(int panelWidth) : border_color() {
  15. x = 0;
  16. y = 0;
  17. width = panelWidth;
  18. hidden = false;
  19. border_style = BorderStyle::NONE;
  20. }
  21. Panel::Panel(Panel &&ref) {
  22. x = ref.x;
  23. y = ref.y;
  24. width = ref.width;
  25. hidden = ref.hidden;
  26. border_style = ref.border_style;
  27. title = std::move(ref.title);
  28. offset = ref.offset;
  29. lines = std::move(ref.lines);
  30. }
  31. /*
  32. Panel::Panel(const Panel &original) : border_color(original.border_color) {
  33. x = original.x;
  34. y = original.y;
  35. width = original.width;
  36. hidden = original.hidden;
  37. border_style = original.border_style;
  38. // door::Line title_copy(*original.title);
  39. // title = std::move(std::make_unique<door::Line>(title_copy));
  40. // What's wrong with making copies of unique_ptr objects?
  41. title = std::move(std::make_unique<door::Line>(*original.title));
  42. offset = original.offset;
  43. for (auto &line : original.lines) {
  44. // door::Line l(*line);
  45. // lines.push_back(std::move(std::make_unique<door::Line>(l)));
  46. // door::Line l(*line);
  47. lines.push_back(std::move(std::make_unique<door::Line>(*line)));
  48. }
  49. }
  50. */
  51. void Panel::set(int xp, int yp) {
  52. x = xp;
  53. y = yp;
  54. }
  55. void Panel::setTitle(std::unique_ptr<Line> t, int off) {
  56. title = std::move(t);
  57. offset = off;
  58. }
  59. void Panel::setStyle(BorderStyle bs) { border_style = bs; }
  60. // Panel::Panel(Panel &old) = { }
  61. void Panel::setColor(ANSIColor c) { border_color = c; }
  62. void Panel::hide(void) { hidden = true; }
  63. void Panel::show(void) { hidden = false; }
  64. void Panel::addLine(std::unique_ptr<Line> l) {
  65. l->fit();
  66. lines.push_back(std::move(l));
  67. }
  68. // or possibly std::move(l)); }
  69. /*
  70. bool Panel::delLine(std::shared_ptr<Line> l) {
  71. size_t size = lines.size();
  72. remove(lines.begin(), lines.end(), l);
  73. return (size != lines.size());
  74. }
  75. */
  76. /**
  77. * Utility structure that stores the characters needed to
  78. * render boxes.
  79. *
  80. * We assume that Top can be used in Bottom and Middle.
  81. * We assume that Side can be used on Left and Right.
  82. */
  83. struct box_styles {
  84. /// Top Left
  85. const char *tl;
  86. /// Top Right
  87. const char *tr;
  88. /// Top
  89. const char *top;
  90. /// Side
  91. const char *side;
  92. /// Bottom Left
  93. const char *bl;
  94. /// Bottom Right
  95. const char *br;
  96. /// Middle Left
  97. const char *ml;
  98. /// Middle Right
  99. const char *mr;
  100. };
  101. /**
  102. *
  103. * use https://en.wikipedia.org/wiki/Code_page_437 for translations between
  104. * CP437 and unicode symbols.
  105. *
  106. * This holds the characters needed to render the different box styles.
  107. * tl tr top side bl br ml mr
  108. */
  109. struct box_styles UBOXES[] = {{"\u250c", "\u2510", "\u2500", "\u2502", "\u2514",
  110. "\u2518", "\u251c", "\u2524"},
  111. {"\u2554", "\u2557", "\u2550", "\u2551", "\u255a",
  112. "\u255d", "\u2560", "\u2563"},
  113. {"\u2553", "\u2556", "\u2500", "\u2551", "\u2559",
  114. "\u255c", "\u255f", "\u2562"},
  115. {"\u2552", "\u2555", "\u2550", "\u2502", "\u2558",
  116. "\u255b", "\u255e", "\u2561"}};
  117. struct box_styles BOXES[] = {
  118. /*
  119. # ┌──┐
  120. # │ │
  121. # ├──┤
  122. # └──┘
  123. */
  124. {
  125. "\xda",
  126. "\xbf",
  127. "\xc4",
  128. "\xb3",
  129. "\xc0",
  130. "\xd9",
  131. "\xc3",
  132. "\xb4",
  133. },
  134. /*
  135. # ╔══╗
  136. # ║ ║
  137. # ╠══╣
  138. # ╚══╝
  139. */
  140. {
  141. "\xc9",
  142. "\xbb",
  143. "\xcd",
  144. "\xba",
  145. "\xc8",
  146. "\xbc",
  147. "\xcc",
  148. "\xb9",
  149. },
  150. /*
  151. # ╓──╖
  152. # ║ ║
  153. # ╟──╢
  154. # ╙──╜
  155. */
  156. {
  157. "\xd6",
  158. "\xb7",
  159. "\xc4",
  160. "\xba",
  161. "\xd3",
  162. "\xbd",
  163. "\xc7",
  164. "\xb6",
  165. },
  166. /*
  167. # ╒══╕
  168. # │ │
  169. # ╞══╡
  170. # ╘══╛
  171. */
  172. {
  173. "\xd5",
  174. "\xb8",
  175. "\xcd",
  176. "\xb3",
  177. "\xd4",
  178. "\xbe",
  179. "\xc6",
  180. "\xb5",
  181. },
  182. };
  183. const char *JOIN[2][2][2] = {{
  184. {"\xc3", "\xb4"}, // SS 00
  185. {"\xc6", "\xb5"} // SD 01
  186. },
  187. {
  188. {"\xc7", "\xb6"}, // DS 10
  189. {"\xcc", "\xb9"}, // DD 11
  190. }};
  191. const char *UJOIN[2][2][2] = {{
  192. {"\u251c", "\u2524"}, // SS ├ ┤
  193. {"\u255e", "\u2561"} // SD ╞ ╡
  194. },
  195. {
  196. {"\u255f", "\u2562"}, // DS ╟ ╢
  197. {"\u2560", "\u2563"}, // DD ╠ ╣
  198. }};
  199. /*
  200. void Panel::display(void) {
  201. }
  202. void Panel::update(void) {
  203. }
  204. */
  205. bool Panel::update(Door &d) {
  206. int row = y;
  207. int style = (int)border_style;
  208. if (style > 0)
  209. ++row;
  210. bool updated = false;
  211. for (auto &line : lines) {
  212. if (line->update()) {
  213. /*
  214. std::string output = d.previous.debug();
  215. d.log(output);
  216. output = "update():";
  217. output.append(line->debug());
  218. d.log(output);
  219. */
  220. updated = true;
  221. int col = x;
  222. if (style > 0)
  223. ++col;
  224. d << door::Goto(col, row);
  225. d << *line;
  226. }
  227. ++row;
  228. }
  229. return updated;
  230. }
  231. void Panel::update(Door &d, int line) {
  232. int row = y;
  233. int style = (int)border_style;
  234. if (style > 0)
  235. ++row;
  236. // ok, I have the line number to update.
  237. auto &l = lines[line];
  238. row += line;
  239. int col = x;
  240. if (style > 0)
  241. ++col;
  242. d << door::Goto(col, row);
  243. d << *l;
  244. }
  245. void Panel::update(void) {
  246. for (auto &line : lines) {
  247. line->update();
  248. }
  249. }
  250. door::Goto Panel::gotoEnd(void) {
  251. int row = y;
  252. int style = (int)border_style;
  253. if (style > 0)
  254. ++row;
  255. row += lines.size();
  256. int col = x;
  257. if (style > 0)
  258. col += 2;
  259. col += width;
  260. return door::Goto(col, row);
  261. }
  262. /**
  263. * @brief Set background of all lines in the panel.
  264. *
  265. * @param back
  266. */
  267. void Panel::lineSetBack(ANSIColor back) {
  268. for (auto &line : lines) {
  269. line->setColor(back);
  270. }
  271. }
  272. /**
  273. * @brief Create a spacer line using block drawing characters.
  274. *
  275. * Return a Line of single or double characters the width of the panel.
  276. * @param single
  277. * @return std::unique_ptr<Line>
  278. */
  279. std::unique_ptr<Line> Panel::spacer_line(bool single) {
  280. std::string spacer_text;
  281. if (door::unicode) {
  282. for (int x = 0; x < width; ++x) {
  283. if (single)
  284. spacer_text.append(UBOXES[0].top);
  285. else
  286. spacer_text.append(UBOXES[1].top);
  287. }
  288. } else {
  289. if (single)
  290. spacer_text = std::string(width, BOXES[0].top[0]);
  291. else
  292. spacer_text = std::string(width, BOXES[1].top[0]);
  293. }
  294. std::unique_ptr<Line> line = make_unique<Line>(spacer_text, width);
  295. return line;
  296. }
  297. // operator<< Panel is called to output the Menu.
  298. // Menu has been massively changed to use Render instead of Colorizer.
  299. std::ostream &operator<<(std::ostream &os, const Panel &p) {
  300. if (p.hidden)
  301. return os;
  302. // Handle borders
  303. int style = (int)p.border_style;
  304. struct box_styles s;
  305. // If there's no style, then everything works.
  306. // If I try style, it prints out first line
  307. // and dies. (Yet it says there's 4 lines!)
  308. if (style > 0) {
  309. // Ok, there needs to be something in this style;
  310. if (style < 5) {
  311. if (unicode)
  312. s = UBOXES[style - 1];
  313. else
  314. s = BOXES[style - 1];
  315. } else {
  316. s.bl = s.br = s.mr = s.ml = " ";
  317. s.top = s.side = " ";
  318. s.tl = s.tr = " ";
  319. }
  320. }
  321. /*
  322. Door *d = dynamic_cast<Door *>(&os);
  323. if (d != nullptr) {
  324. */
  325. /*
  326. os << "style " << style << "."
  327. << " width " << p.width;
  328. os << " SIZE " << p.lines.size() << " ! " << nl;
  329. */
  330. // os << s.tl << s.top << s.tr << s.side << s.br << s.bl;
  331. int row = p.y;
  332. if (style > 0) {
  333. // Top line of border (if needed)
  334. os << door::Goto(p.x, row);
  335. os << p.border_color << s.tl;
  336. if (p.title) {
  337. for (int c = 0; c < p.offset; c++)
  338. os << s.top;
  339. os << *(p.title);
  340. os << p.border_color;
  341. int left = p.width - (p.offset + (p.title)->length());
  342. if (left > 0) {
  343. for (int c = 0; c < left; c++)
  344. os << s.top;
  345. };
  346. os << s.tr;
  347. } else {
  348. for (int c = 0; c < p.width; c++)
  349. os << s.top;
  350. os << s.tr;
  351. };
  352. // os << "";
  353. ++row;
  354. };
  355. for (auto &line : p.lines) {
  356. os << door::Goto(p.x, row);
  357. bool join = false;
  358. int line_is = -1;
  359. int border_is = -1;
  360. // is this a weird line?
  361. {
  362. const char *line_text = line->getText();
  363. if (door::unicode) {
  364. if (strncmp(UBOXES[0].top, line_text, strlen(UBOXES[0].top)) == 0) {
  365. join = true;
  366. line_is = 0;
  367. }
  368. if (strncmp(UBOXES[1].top, line_text, strlen(UBOXES[1].top)) == 0) {
  369. join = true;
  370. line_is = 1;
  371. }
  372. } else {
  373. if (BOXES[0].top[0] == line_text[0]) {
  374. join = true;
  375. line_is = 0;
  376. }
  377. if (BOXES[1].top[0] == line_text[0]) {
  378. join = true;
  379. line_is = 1;
  380. }
  381. }
  382. }
  383. if (style > 0) {
  384. if (join) {
  385. switch (p.border_style) {
  386. case door::BorderStyle::SINGLE:
  387. case door::BorderStyle::DOUBLE_SINGLE:
  388. border_is = 0;
  389. break;
  390. case door::BorderStyle::DOUBLE:
  391. case door::BorderStyle::SINGLE_DOUBLE:
  392. border_is = 1;
  393. break;
  394. default:
  395. break;
  396. }
  397. os << p.border_color;
  398. if (door::unicode)
  399. os << UJOIN[border_is][line_is][0]; // LEFT
  400. else
  401. os << JOIN[border_is][line_is][0]; // LEFT
  402. } else {
  403. os << p.border_color << s.side;
  404. };
  405. };
  406. // os << "[" << row << "," << p.x << "] ";
  407. os << *line;
  408. if (style > 0) {
  409. if (join) {
  410. os << p.border_color;
  411. if (door::unicode)
  412. os << UJOIN[border_is][line_is][1]; // RIGHT
  413. else
  414. os << JOIN[border_is][line_is][1]; // RIGHT
  415. } else
  416. os << p.border_color << s.side;
  417. };
  418. // os << "row " << row;
  419. row++;
  420. // forcing reset works. But why doesn't it work without this?
  421. // os << Color();
  422. }
  423. // Display bottom (if needed)
  424. if (style > 0) {
  425. os << door::Goto(p.x, row);
  426. os << p.border_color << s.bl;
  427. for (int c = 0; c < p.width; c++)
  428. os << s.top;
  429. // os << "";
  430. os << s.br;
  431. };
  432. // };
  433. // os << flush;
  434. return os;
  435. } // namespace door
  436. /*
  437. std::function<void(Door &d, std::string &)> Menu::defaultSelectedColorizer =
  438. Menu::makeColorizer(ANSIColor(COLOR::BLUE, COLOR::WHITE),
  439. ANSIColor(COLOR::BLUE, COLOR::WHITE),
  440. ANSIColor(COLOR::BLUE, COLOR::WHITE),
  441. ANSIColor(COLOR::BLUE, COLOR::WHITE));
  442. std::function<void(Door &d, std::string &)> Menu::defaultUnselectedColorizer
  443. = makeColorizer(ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  444. ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  445. ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  446. ANSIColor(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD));
  447. */
  448. renderFunction Menu::defaultSelectedRender = Menu::makeRender(
  449. ANSIColor(COLOR::BLUE, COLOR::WHITE), ANSIColor(COLOR::BLUE, COLOR::WHITE),
  450. ANSIColor(COLOR::BLUE, COLOR::WHITE), ANSIColor(COLOR::BLUE, COLOR::WHITE));
  451. renderFunction Menu::defaultUnselectedRender =
  452. Menu::makeRender(ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  453. ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  454. ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  455. ANSIColor(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD));
  456. Menu::Menu(int x, int y, int width) : Panel(x, y, width) {
  457. setStyle(BorderStyle::DOUBLE);
  458. // Setup initial sensible default values.
  459. // setColorizer(true, defaultSelectedColorizer);
  460. setRender(true, defaultSelectedRender);
  461. /* makeColorizer(Color(Colors::BLUE, Colors::WHITE, 0),
  462. Color(Colors::BLUE, Colors::WHITE, 0),
  463. Color(Colors::BLUE, Colors::WHITE, 0),
  464. Color(Colors::BLUE, Colors::WHITE, 0)));
  465. */
  466. setRender(false, defaultUnselectedRender);
  467. // setColorizer(false, defaultUnselectedColorizer);
  468. /* makeColorizer(Color(Colors::LWHITE, Colors::BLUE, 0),
  469. Color(Colors::LWHITE, Colors::BLUE),
  470. Color(Colors::LWHITE, Colors::BLUE, 0),
  471. Color(Colors::LYELLOW, Colors::BLUE)));
  472. */
  473. chosen = 0;
  474. }
  475. Menu::Menu(int width) : Panel(width) {
  476. setStyle(BorderStyle::DOUBLE);
  477. setRender(true, defaultSelectedRender);
  478. setRender(false, defaultUnselectedRender);
  479. chosen = 0;
  480. }
  481. /*
  482. Menu::Menu(const Menu &original)
  483. : Panel(original.x, original.y, original.width) {
  484. x = original.x;
  485. y = original.y;
  486. width = original.width;
  487. setStyle(original.border_style);
  488. setRender(true, original.selectedRender);
  489. setRender(false, original.unselectedRender);
  490. options = original.options;
  491. chosen = 0;
  492. }
  493. */
  494. Menu::Menu(Menu &&ref) : Panel(ref.x, ref.y, ref.width) {
  495. x = ref.x;
  496. y = ref.y;
  497. width = ref.width;
  498. border_style = ref.border_style;
  499. setRender(true, ref.selectedRender);
  500. setRender(false, ref.unselectedRender);
  501. options = ref.options;
  502. lines = std::move(ref.lines);
  503. chosen = ref.chosen;
  504. }
  505. void Menu::addSelection(char c, const char *line) {
  506. std::string menuline;
  507. menuline.reserve(5 + strlen(line));
  508. menuline = "[ ] ";
  509. menuline[1] = c;
  510. menuline += line;
  511. // problem: How do I update the "Lines" from this point?
  512. // L->makeWidth(width);
  513. addLine(std::make_unique<Line>(menuline, width));
  514. options.push_back(c);
  515. }
  516. /**
  517. * @brief This allows for menus with updater functions
  518. *
  519. * Note: The update function only needs to update just the text part.
  520. * We wrap it with another updateFuntion to append the "[M] " part.
  521. *
  522. * @param c
  523. * @param line
  524. * @param update
  525. */
  526. void Menu::addSelection(char c, const char *line, updateFunction update) {
  527. std::string menuline;
  528. menuline.reserve(5 + strlen(line));
  529. menuline = "[ ] ";
  530. menuline[1] = c;
  531. updateFunction fullUpdate = [menuline, update](void) -> std::string {
  532. std::string text = menuline;
  533. text += update();
  534. return text;
  535. };
  536. menuline += line;
  537. std::unique_ptr<Line> l = std::make_unique<Line>(menuline, width);
  538. l->setUpdater(fullUpdate);
  539. // addLine(std::make_unique<Line>(menuline, width));
  540. addLine(std::move(l));
  541. options.push_back(c);
  542. }
  543. void Menu::defaultSelection(int d) { chosen = d; }
  544. char Menu::which(int d) { return options[d]; }
  545. /*
  546. void Menu::setColorizer(bool selected,
  547. std::function<void(Door &d, std::string &)>
  548. colorizer) { if (selected) selectedColorizer = colorizer; else
  549. unselectedColorizer = colorizer;
  550. }
  551. */
  552. void Menu::setRender(bool selected, renderFunction render) {
  553. if (selected)
  554. selectedRender = render;
  555. else
  556. unselectedRender = render;
  557. }
  558. /**
  559. * make Render function for menus
  560. *
  561. * [O] Menu Item Text
  562. *
  563. * "[" and "]" are in c1, the "O" in c2
  564. *
  565. * "Menu Item Text" upper case letters are in c3, everything else c4.
  566. */
  567. renderFunction Menu::makeRender(ANSIColor c1, ANSIColor c2, ANSIColor c3,
  568. ANSIColor c4) {
  569. renderFunction render = [c1, c2, c3, c4](const std::string &txt) -> Render {
  570. Render r(txt);
  571. bool option = true;
  572. for (char const &c : txt) {
  573. if (option) {
  574. if (c == '[' or c == ']') {
  575. r.append(c1);
  576. option = (c == '[');
  577. } else {
  578. r.append(c2);
  579. }
  580. } else {
  581. if (isupper(c))
  582. r.append(c3);
  583. else
  584. r.append(c4);
  585. }
  586. }
  587. return r;
  588. };
  589. return render;
  590. }
  591. /*
  592. Should this return the index number, or
  593. the actual option?
  594. */
  595. /**
  596. * @todo Fix this, so it only updates the lines that have been changed when
  597. * the user selects something. Also, add the "Up/Down Move" maybe to the
  598. * bottom?
  599. *
  600. * Needs timeout.
  601. *
  602. * Should we return the index offset, or return the actual char? (Like in
  603. * the case of Quit or Help?)
  604. *
  605. * @param door
  606. * @return int
  607. */
  608. int Menu::choose(Door &door) {
  609. // Display menu and make a choice
  610. // step 1: fix up the lines
  611. bool updated = true;
  612. bool update_and_exit = false;
  613. std::set<int> changed;
  614. while (true) {
  615. if (updated) {
  616. for (unsigned int x = 0; x < lines.size(); ++x) {
  617. if (x == chosen) {
  618. lines[x]->setRender(
  619. selectedRender); // setColorize(selectedColorizer);
  620. } else {
  621. lines[x]->setRender(
  622. unselectedRender); // setColorize(unselectedColorizer);
  623. }
  624. }
  625. // this outputs the entire menu
  626. if (changed.empty())
  627. door << *this;
  628. else {
  629. // update just the lines that have changed.
  630. for (auto si : changed) {
  631. // *this->update(door, si);
  632. update(door, si);
  633. }
  634. // Cursor is positioned at the end of the panel/menu.
  635. // The cursor changes colors as you arrow up or down.
  636. // Interesting!
  637. door << gotoEnd();
  638. }
  639. // door << flush;
  640. // door.update();
  641. };
  642. if (update_and_exit)
  643. return chosen + 1;
  644. // Maybe we want to position the cursor on the currently
  645. // selected item?
  646. updated = false;
  647. // Ok, when the option changes, can I control what gets updated??!?
  648. int event = door.sleep_key(door.inactivity);
  649. if (event < 0) {
  650. // timeout!
  651. return event;
  652. }
  653. unsigned int previous_choice = chosen;
  654. changed.clear();
  655. bool use_numberpad = true;
  656. // Don't use the numberpad, if any of the options are 8 or 2 (up/down)
  657. for (const char &c : options) {
  658. if ((c == '8') or (c == '2'))
  659. use_numberpad = false;
  660. }
  661. switch (event) {
  662. case '8':
  663. if (!use_numberpad)
  664. break;
  665. case XKEY_UP_ARROW:
  666. if (chosen > 0) {
  667. chosen--;
  668. updated = true;
  669. }
  670. break;
  671. case '2':
  672. if (!use_numberpad)
  673. break;
  674. case XKEY_DOWN_ARROW:
  675. if (chosen < lines.size() - 1) {
  676. chosen++;
  677. updated = true;
  678. }
  679. break;
  680. case XKEY_HOME:
  681. if (chosen != 0) {
  682. chosen = 0;
  683. updated = true;
  684. }
  685. break;
  686. case XKEY_END:
  687. if (chosen != lines.size() - 1) {
  688. chosen = lines.size() - 1;
  689. updated = true;
  690. }
  691. }
  692. if (event == 0x0d) {
  693. // ENTER -- use current selection
  694. return chosen + 1;
  695. }
  696. for (unsigned int x = 0; x < lines.size(); x++) {
  697. if (toupper(options[x]) == toupper(event)) {
  698. // is the selected one current chosen?
  699. if (chosen == x) {
  700. return x + 1;
  701. }
  702. // No, it isn't!
  703. // Update the screen, and then exit
  704. updated = true;
  705. chosen = x;
  706. update_and_exit = true;
  707. }
  708. }
  709. if (previous_choice != chosen) {
  710. changed.insert(previous_choice);
  711. changed.insert(chosen);
  712. }
  713. }
  714. return 0;
  715. }
  716. Screen::Screen(){}; // hidden = false; }
  717. /*
  718. Screen::Screen(Screen &s) {
  719. hidden = s.hidden;
  720. parts = s.parts;
  721. }
  722. */
  723. void Screen::addPanel(std::unique_ptr<Panel> p) {
  724. panels.push_back(std::move(p));
  725. }
  726. /*
  727. void Screen::hide(void) { hidden = true; }
  728. void Screen::show(void) { hidden = false; }
  729. */
  730. bool Screen::update(Door &d) {
  731. bool updated = false;
  732. for (auto &panel : panels) {
  733. if (panel->update(d))
  734. updated = true;
  735. }
  736. return updated;
  737. }
  738. void Screen::update(void) {
  739. for (auto &panel : panels) {
  740. panel->update();
  741. }
  742. }
  743. std::ostream &operator<<(std::ostream &os, const Screen &s) {
  744. // if (!s.hidden) {
  745. for (auto &panel : s.panels) {
  746. os << *panel;
  747. };
  748. // os << flush;
  749. // }
  750. return os;
  751. }
  752. } // namespace door