panel.cpp 17 KB

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