panel.cpp 16 KB

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