panel.cpp 17 KB

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