panel.cpp 16 KB

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