panel.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767
  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. renderFunction Menu::makeRender(ANSIColor c1, ANSIColor c2, ANSIColor c3,
  428. ANSIColor c4) {
  429. renderFunction render = [c1, c2, c3, c4](const std::string &txt) -> Render {
  430. Render r(txt);
  431. bool option = true;
  432. ColorOutput co;
  433. /*
  434. bool uc = true;
  435. ANSIColor blue(COLOR::BLUE, ATTR::BOLD);
  436. ANSIColor cyan(COLOR::YELLOW, ATTR::BOLD);
  437. */
  438. co.pos = 0;
  439. co.len = 0;
  440. co.c = c1;
  441. // d << blue;
  442. int tpos = 0;
  443. for (char const &c : txt) {
  444. if (option) {
  445. if (c == '[' or c == ']') {
  446. if (co.c != c1)
  447. if (co.len != 0) {
  448. r.outputs.push_back(co);
  449. co.reset();
  450. co.pos = tpos;
  451. }
  452. co.c = c1;
  453. if (c == ']')
  454. option = false;
  455. } else {
  456. if (co.c != c2)
  457. if (co.len != 0) {
  458. r.outputs.push_back(co);
  459. co.reset();
  460. co.pos = tpos;
  461. }
  462. co.c = c2;
  463. }
  464. } else {
  465. if (isupper(c)) {
  466. // possible color change
  467. if (co.c != c3)
  468. if (co.len != 0) {
  469. r.outputs.push_back(co);
  470. co.reset();
  471. co.pos = tpos;
  472. }
  473. co.c = c3;
  474. } else {
  475. if (co.c != c4)
  476. if (co.len != 0) {
  477. r.outputs.push_back(co);
  478. co.reset();
  479. co.pos = tpos;
  480. }
  481. co.c = c4;
  482. }
  483. }
  484. co.len++;
  485. tpos++;
  486. }
  487. if (co.len != 0) {
  488. r.outputs.push_back(co);
  489. }
  490. return r;
  491. };
  492. return render;
  493. }
  494. /*
  495. std::function<void(Door &d, std::string &)>
  496. Menu::makeColorizer(ANSIColor c1, ANSIColor c2, ANSIColor c3, ANSIColor c4)
  497. { std::function<void(Door & d, std::string & txt)> colorize = [c1, c2, c3,
  498. c4](Door &d, std::string txt) { bool option = true; for (char const &c :
  499. txt) { if (option) { if (c == '[' or c == ']') { d << c1 << c; if (c == ']')
  500. option = false;
  501. } else {
  502. d << c2 << c;
  503. }
  504. } else {
  505. if (isupper(c)) {
  506. d << c3 << c;
  507. } else {
  508. d << c4 << c;
  509. }
  510. }
  511. }
  512. };
  513. return colorize;
  514. }
  515. */
  516. /*
  517. Should this return the index number, or
  518. the actual option?
  519. */
  520. /**
  521. * @todo Fix this, so it only updates the lines that have been changed when
  522. * the user selects something. Also, add the "Up/Down Move" maybe to the
  523. * bottom?
  524. *
  525. * Needs timeout.
  526. *
  527. * Should we return the index offset, or return the actual char? (Like in
  528. * the case of Quit or Help?)
  529. *
  530. * @param door
  531. * @return int
  532. */
  533. int Menu::choose(Door &door) {
  534. // Display menu and make a choice
  535. // step 1: fix up the lines
  536. bool updated = true;
  537. bool update_and_exit = false;
  538. std::set<int> changed;
  539. while (true) {
  540. if (updated) {
  541. for (unsigned int x = 0; x < lines.size(); ++x) {
  542. if (x == chosen) {
  543. lines[x]->setRender(
  544. selectedRender); // setColorize(selectedColorizer);
  545. } else {
  546. lines[x]->setRender(
  547. unselectedRender); // setColorize(unselectedColorizer);
  548. }
  549. }
  550. // this outputs the entire menu
  551. if (changed.empty())
  552. door << *this;
  553. else {
  554. // update just the lines that have changed.
  555. for (auto si : changed) {
  556. // *this->update(door, si);
  557. update(door, si);
  558. }
  559. // Cursor is positioned at the end of the panel/menu.
  560. // The cursor changes colors as you arrow up or down.
  561. // Interesting!
  562. door << gotoEnd();
  563. }
  564. // door << flush;
  565. // door.update();
  566. };
  567. if (update_and_exit)
  568. return chosen + 1;
  569. // Maybe we want to position the cursor on the currently
  570. // selected item?
  571. updated = false;
  572. // Ok, when the option changes, can I control what gets updated??!?
  573. int event = door.sleep_key(door.inactivity);
  574. if (event < 0) {
  575. // timeout!
  576. return event;
  577. }
  578. unsigned int previous_choice = chosen;
  579. changed.clear();
  580. bool use_numberpad = true;
  581. // Don't use the numberpad, if any of the options are 8 or 2 (up/down)
  582. for (const char &c : options) {
  583. if ((c == '8') or (c == '2'))
  584. use_numberpad = false;
  585. }
  586. switch (event) {
  587. case '8':
  588. if (!use_numberpad)
  589. break;
  590. case XKEY_UP_ARROW:
  591. if (chosen > 0) {
  592. chosen--;
  593. updated = true;
  594. }
  595. break;
  596. case '2':
  597. if (!use_numberpad)
  598. break;
  599. case XKEY_DOWN_ARROW:
  600. if (chosen < lines.size() - 1) {
  601. chosen++;
  602. updated = true;
  603. }
  604. break;
  605. case XKEY_HOME:
  606. if (chosen != 0) {
  607. chosen = 0;
  608. updated = true;
  609. }
  610. break;
  611. case XKEY_END:
  612. if (chosen != lines.size() - 1) {
  613. chosen = lines.size() - 1;
  614. updated = true;
  615. }
  616. }
  617. if (event == 0x0d) {
  618. // ENTER -- use current selection
  619. return chosen + 1;
  620. }
  621. for (unsigned int x = 0; x < lines.size(); x++) {
  622. if (toupper(options[x]) == toupper(event)) {
  623. // is the selected one current chosen?
  624. if (chosen == x) {
  625. return x + 1;
  626. }
  627. // No, it isn't!
  628. // Update the screen, and then exit
  629. updated = true;
  630. chosen = x;
  631. update_and_exit = true;
  632. }
  633. }
  634. if (previous_choice != chosen) {
  635. changed.insert(previous_choice);
  636. changed.insert(chosen);
  637. }
  638. }
  639. return 0;
  640. }
  641. Screen::Screen(){}; // hidden = false; }
  642. /*
  643. Screen::Screen(Screen &s) {
  644. hidden = s.hidden;
  645. parts = s.parts;
  646. }
  647. */
  648. void Screen::addPanel(std::unique_ptr<Panel> p) {
  649. panels.push_back(std::move(p));
  650. }
  651. /*
  652. void Screen::hide(void) { hidden = true; }
  653. void Screen::show(void) { hidden = false; }
  654. */
  655. bool Screen::update(Door &d) {
  656. bool updated = false;
  657. for (auto &panel : panels) {
  658. if (panel->update(d))
  659. updated = true;
  660. }
  661. return updated;
  662. }
  663. void Screen::update(void) {
  664. for (auto &panel : panels) {
  665. panel->update();
  666. }
  667. }
  668. std::ostream &operator<<(std::ostream &os, const Screen &s) {
  669. // if (!s.hidden) {
  670. for (auto &panel : s.panels) {
  671. os << *panel;
  672. };
  673. // os << flush;
  674. // }
  675. return os;
  676. }
  677. } // namespace door