panel.cpp 15 KB

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