panel.cpp 20 KB

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