panel.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  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. /*
  184. void Panel::display(void) {
  185. }
  186. void Panel::update(void) {
  187. }
  188. */
  189. bool Panel::update(Door &d) {
  190. int row = y;
  191. int style = (int)border_style;
  192. if (style > 0)
  193. ++row;
  194. bool updated = false;
  195. for (auto &line : lines) {
  196. if (line->update()) {
  197. /*
  198. std::string output = d.previous.debug();
  199. d.log(output);
  200. output = "update():";
  201. output.append(line->debug());
  202. d.log(output);
  203. */
  204. updated = true;
  205. int col = x;
  206. if (style > 0)
  207. ++col;
  208. d << door::Goto(col, row);
  209. d << *line;
  210. }
  211. ++row;
  212. }
  213. return updated;
  214. }
  215. void Panel::update(Door &d, int line) {
  216. int row = y;
  217. int style = (int)border_style;
  218. if (style > 0)
  219. ++row;
  220. // ok, I have the line number to update.
  221. auto &l = lines[line];
  222. row += line;
  223. int col = x;
  224. if (style > 0)
  225. ++col;
  226. d << door::Goto(col, row);
  227. d << *l;
  228. }
  229. void Panel::update(void) {
  230. for (auto &line : lines) {
  231. line->update();
  232. }
  233. }
  234. door::Goto Panel::gotoEnd(void) {
  235. int row = y;
  236. int style = (int)border_style;
  237. if (style > 0)
  238. ++row;
  239. row += lines.size();
  240. int col = x;
  241. if (style > 0)
  242. col += 2;
  243. col += width;
  244. return door::Goto(col, row);
  245. }
  246. /**
  247. * @brief Create a spacer line using block drawing characters.
  248. *
  249. * Return a Line of single or double characters the width of the panel.
  250. * @param single
  251. * @return std::unique_ptr<Line>
  252. */
  253. std::unique_ptr<Line> Panel::spacer_line(bool single) {
  254. std::string spacer_text;
  255. if (door::unicode) {
  256. for (int x = 0; x < width; ++x) {
  257. if (single)
  258. spacer_text.append(UBOXES[0].top);
  259. else
  260. spacer_text.append(UBOXES[1].top);
  261. }
  262. } else {
  263. if (single)
  264. spacer_text = std::string(width, BOXES[0].top[0]);
  265. else
  266. spacer_text = std::string(width, BOXES[1].top[0]);
  267. }
  268. std::unique_ptr<Line> line = make_unique<Line>(spacer_text, width);
  269. return line;
  270. }
  271. // operator<< Panel is called to output the Menu.
  272. // Menu has been massively changed to use Render instead of Colorizer.
  273. std::ostream &operator<<(std::ostream &os, const Panel &p) {
  274. if (p.hidden)
  275. return os;
  276. // Handle borders
  277. int style = (int)p.border_style;
  278. struct box_styles s;
  279. // If there's no style, then everything works.
  280. // If I try style, it prints out first line
  281. // and dies. (Yet it says there's 4 lines!)
  282. if (style > 0) {
  283. // Ok, there needs to be something in this style;
  284. if (style < 5) {
  285. if (unicode)
  286. s = UBOXES[style - 1];
  287. else
  288. s = BOXES[style - 1];
  289. } else {
  290. s.bl = s.br = s.mr = s.ml = " ";
  291. s.top = s.side = " ";
  292. s.tl = s.tr = " ";
  293. }
  294. }
  295. /*
  296. Door *d = dynamic_cast<Door *>(&os);
  297. if (d != nullptr) {
  298. */
  299. /*
  300. os << "style " << style << "."
  301. << " width " << p.width;
  302. os << " SIZE " << p.lines.size() << " ! " << nl;
  303. */
  304. // os << s.tl << s.top << s.tr << s.side << s.br << s.bl;
  305. int row = p.y;
  306. if (style > 0) {
  307. // Top line of border (if needed)
  308. os << door::Goto(p.x, row);
  309. os << p.border_color << s.tl;
  310. if (p.title) {
  311. for (int c = 0; c < p.offset; c++)
  312. os << s.top;
  313. os << *(p.title);
  314. os << p.border_color;
  315. int left = p.width - (p.offset + (p.title)->length());
  316. if (left > 0) {
  317. for (int c = 0; c < left; c++)
  318. os << s.top;
  319. };
  320. os << s.tr;
  321. } else {
  322. for (int c = 0; c < p.width; c++)
  323. os << s.top;
  324. os << s.tr;
  325. };
  326. // os << "";
  327. ++row;
  328. };
  329. for (auto &line : p.lines) {
  330. os << door::Goto(p.x, row);
  331. if (style > 0) {
  332. os << p.border_color << s.side;
  333. };
  334. // os << "[" << row << "," << p.x << "] ";
  335. os << *line;
  336. if (style > 0) {
  337. os << p.border_color << s.side;
  338. };
  339. // os << "row " << row;
  340. row++;
  341. // forcing reset works. But why doesn't it work without this?
  342. // os << Color();
  343. }
  344. // Display bottom (if needed)
  345. if (style > 0) {
  346. os << door::Goto(p.x, row);
  347. os << p.border_color << s.bl;
  348. for (int c = 0; c < p.width; c++)
  349. os << s.top;
  350. // os << "";
  351. os << s.br;
  352. };
  353. // };
  354. // os << flush;
  355. return os;
  356. } // namespace door
  357. /*
  358. std::function<void(Door &d, std::string &)> Menu::defaultSelectedColorizer =
  359. Menu::makeColorizer(ANSIColor(COLOR::BLUE, COLOR::WHITE),
  360. ANSIColor(COLOR::BLUE, COLOR::WHITE),
  361. ANSIColor(COLOR::BLUE, COLOR::WHITE),
  362. ANSIColor(COLOR::BLUE, COLOR::WHITE));
  363. std::function<void(Door &d, std::string &)> Menu::defaultUnselectedColorizer
  364. = makeColorizer(ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  365. ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  366. ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  367. ANSIColor(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD));
  368. */
  369. renderFunction Menu::defaultSelectedRender = Menu::makeRender(
  370. ANSIColor(COLOR::BLUE, COLOR::WHITE), ANSIColor(COLOR::BLUE, COLOR::WHITE),
  371. ANSIColor(COLOR::BLUE, COLOR::WHITE), ANSIColor(COLOR::BLUE, COLOR::WHITE));
  372. renderFunction Menu::defaultUnselectedRender =
  373. Menu::makeRender(ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  374. ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  375. ANSIColor(COLOR::WHITE, COLOR::BLUE, ATTR::BOLD),
  376. ANSIColor(COLOR::YELLOW, COLOR::BLUE, ATTR::BOLD));
  377. Menu::Menu(int x, int y, int width) : Panel(x, y, width) {
  378. setStyle(BorderStyle::DOUBLE);
  379. // Setup initial sensible default values.
  380. // setColorizer(true, defaultSelectedColorizer);
  381. setRender(true, defaultSelectedRender);
  382. /* makeColorizer(Color(Colors::BLUE, Colors::WHITE, 0),
  383. Color(Colors::BLUE, Colors::WHITE, 0),
  384. Color(Colors::BLUE, Colors::WHITE, 0),
  385. Color(Colors::BLUE, Colors::WHITE, 0)));
  386. */
  387. setRender(false, defaultUnselectedRender);
  388. // setColorizer(false, defaultUnselectedColorizer);
  389. /* makeColorizer(Color(Colors::LWHITE, Colors::BLUE, 0),
  390. Color(Colors::LWHITE, Colors::BLUE),
  391. Color(Colors::LWHITE, Colors::BLUE, 0),
  392. Color(Colors::LYELLOW, Colors::BLUE)));
  393. */
  394. chosen = 0;
  395. }
  396. Menu::Menu(int width) : Panel(width) {
  397. setStyle(BorderStyle::DOUBLE);
  398. setRender(true, defaultSelectedRender);
  399. setRender(false, defaultUnselectedRender);
  400. chosen = 0;
  401. }
  402. /*
  403. Menu::Menu(const Menu &original)
  404. : Panel(original.x, original.y, original.width) {
  405. x = original.x;
  406. y = original.y;
  407. width = original.width;
  408. setStyle(original.border_style);
  409. setRender(true, original.selectedRender);
  410. setRender(false, original.unselectedRender);
  411. options = original.options;
  412. chosen = 0;
  413. }
  414. */
  415. Menu::Menu(Menu &&ref) : Panel(ref.x, ref.y, ref.width) {
  416. x = ref.x;
  417. y = ref.y;
  418. width = ref.width;
  419. border_style = ref.border_style;
  420. setRender(true, ref.selectedRender);
  421. setRender(false, ref.unselectedRender);
  422. options = ref.options;
  423. lines = std::move(ref.lines);
  424. chosen = ref.chosen;
  425. }
  426. void Menu::addSelection(char c, const char *line) {
  427. std::string menuline;
  428. menuline.reserve(5 + strlen(line));
  429. menuline = "[ ] ";
  430. menuline[1] = c;
  431. menuline += line;
  432. // problem: How do I update the "Lines" from this point?
  433. // L->makeWidth(width);
  434. addLine(std::make_unique<Line>(menuline, width));
  435. options.push_back(c);
  436. }
  437. void Menu::defaultSelection(int d) { chosen = d; }
  438. char Menu::which(int d) { return options[d]; }
  439. /*
  440. void Menu::setColorizer(bool selected,
  441. std::function<void(Door &d, std::string &)>
  442. colorizer) { if (selected) selectedColorizer = colorizer; else
  443. unselectedColorizer = colorizer;
  444. }
  445. */
  446. void Menu::setRender(bool selected, renderFunction render) {
  447. if (selected)
  448. selectedRender = render;
  449. else
  450. unselectedRender = render;
  451. }
  452. /**
  453. * make Render function for menus
  454. *
  455. * [O] Menu Item Text
  456. *
  457. * "[" and "]" are in c1, the "O" in c2
  458. *
  459. * "Menu Item Text" upper case letters are in c3, everything else c4.
  460. */
  461. renderFunction Menu::makeRender(ANSIColor c1, ANSIColor c2, ANSIColor c3,
  462. ANSIColor c4) {
  463. renderFunction render = [c1, c2, c3, c4](const std::string &txt) -> Render {
  464. Render r(txt);
  465. bool option = true;
  466. for (char const &c : txt) {
  467. if (option) {
  468. if (c == '[' or c == ']') {
  469. r.append(c1);
  470. option = (c == '[');
  471. } else {
  472. r.append(c2);
  473. }
  474. } else {
  475. if (isupper(c))
  476. r.append(c3);
  477. else
  478. r.append(c4);
  479. }
  480. }
  481. return r;
  482. };
  483. return render;
  484. }
  485. /*
  486. Should this return the index number, or
  487. the actual option?
  488. */
  489. /**
  490. * @todo Fix this, so it only updates the lines that have been changed when
  491. * the user selects something. Also, add the "Up/Down Move" maybe to the
  492. * bottom?
  493. *
  494. * Needs timeout.
  495. *
  496. * Should we return the index offset, or return the actual char? (Like in
  497. * the case of Quit or Help?)
  498. *
  499. * @param door
  500. * @return int
  501. */
  502. int Menu::choose(Door &door) {
  503. // Display menu and make a choice
  504. // step 1: fix up the lines
  505. bool updated = true;
  506. bool update_and_exit = false;
  507. std::set<int> changed;
  508. while (true) {
  509. if (updated) {
  510. for (unsigned int x = 0; x < lines.size(); ++x) {
  511. if (x == chosen) {
  512. lines[x]->setRender(
  513. selectedRender); // setColorize(selectedColorizer);
  514. } else {
  515. lines[x]->setRender(
  516. unselectedRender); // setColorize(unselectedColorizer);
  517. }
  518. }
  519. // this outputs the entire menu
  520. if (changed.empty())
  521. door << *this;
  522. else {
  523. // update just the lines that have changed.
  524. for (auto si : changed) {
  525. // *this->update(door, si);
  526. update(door, si);
  527. }
  528. // Cursor is positioned at the end of the panel/menu.
  529. // The cursor changes colors as you arrow up or down.
  530. // Interesting!
  531. door << gotoEnd();
  532. }
  533. // door << flush;
  534. // door.update();
  535. };
  536. if (update_and_exit)
  537. return chosen + 1;
  538. // Maybe we want to position the cursor on the currently
  539. // selected item?
  540. updated = false;
  541. // Ok, when the option changes, can I control what gets updated??!?
  542. int event = door.sleep_key(door.inactivity);
  543. if (event < 0) {
  544. // timeout!
  545. return event;
  546. }
  547. unsigned int previous_choice = chosen;
  548. changed.clear();
  549. bool use_numberpad = true;
  550. // Don't use the numberpad, if any of the options are 8 or 2 (up/down)
  551. for (const char &c : options) {
  552. if ((c == '8') or (c == '2'))
  553. use_numberpad = false;
  554. }
  555. switch (event) {
  556. case '8':
  557. if (!use_numberpad)
  558. break;
  559. case XKEY_UP_ARROW:
  560. if (chosen > 0) {
  561. chosen--;
  562. updated = true;
  563. }
  564. break;
  565. case '2':
  566. if (!use_numberpad)
  567. break;
  568. case XKEY_DOWN_ARROW:
  569. if (chosen < lines.size() - 1) {
  570. chosen++;
  571. updated = true;
  572. }
  573. break;
  574. case XKEY_HOME:
  575. if (chosen != 0) {
  576. chosen = 0;
  577. updated = true;
  578. }
  579. break;
  580. case XKEY_END:
  581. if (chosen != lines.size() - 1) {
  582. chosen = lines.size() - 1;
  583. updated = true;
  584. }
  585. }
  586. if (event == 0x0d) {
  587. // ENTER -- use current selection
  588. return chosen + 1;
  589. }
  590. for (unsigned int x = 0; x < lines.size(); x++) {
  591. if (toupper(options[x]) == toupper(event)) {
  592. // is the selected one current chosen?
  593. if (chosen == x) {
  594. return x + 1;
  595. }
  596. // No, it isn't!
  597. // Update the screen, and then exit
  598. updated = true;
  599. chosen = x;
  600. update_and_exit = true;
  601. }
  602. }
  603. if (previous_choice != chosen) {
  604. changed.insert(previous_choice);
  605. changed.insert(chosen);
  606. }
  607. }
  608. return 0;
  609. }
  610. Screen::Screen(){}; // hidden = false; }
  611. /*
  612. Screen::Screen(Screen &s) {
  613. hidden = s.hidden;
  614. parts = s.parts;
  615. }
  616. */
  617. void Screen::addPanel(std::unique_ptr<Panel> p) {
  618. panels.push_back(std::move(p));
  619. }
  620. /*
  621. void Screen::hide(void) { hidden = true; }
  622. void Screen::show(void) { hidden = false; }
  623. */
  624. bool Screen::update(Door &d) {
  625. bool updated = false;
  626. for (auto &panel : panels) {
  627. if (panel->update(d))
  628. updated = true;
  629. }
  630. return updated;
  631. }
  632. void Screen::update(void) {
  633. for (auto &panel : panels) {
  634. panel->update();
  635. }
  636. }
  637. std::ostream &operator<<(std::ostream &os, const Screen &s) {
  638. // if (!s.hidden) {
  639. for (auto &panel : s.panels) {
  640. os << *panel;
  641. };
  642. // os << flush;
  643. // }
  644. return os;
  645. }
  646. } // namespace door