panel.cpp 16 KB

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