panel.cpp 22 KB

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