deck.cpp 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470
  1. #include "deck.h"
  2. #include "space.h"
  3. #include "utils.h"
  4. #include "version.h"
  5. #include <algorithm>
  6. #include <map>
  7. #include <sstream>
  8. Deck::Deck(door::ANSIColor backcolor) : card_back_color{backcolor} {
  9. for (int i = 0; i < 52; ++i) {
  10. cards.push_back(cardOf(i));
  11. }
  12. // 0 = BLANK, 1-4 levels
  13. for (int i = 0; i < 5; ++i) {
  14. backs.push_back(backOf(i));
  15. }
  16. mark.push_back(markOf(0));
  17. mark.push_back(markOf(1));
  18. }
  19. Deck::~Deck() {
  20. /*
  21. for (auto c : cards) {
  22. delete c;
  23. }
  24. cards.clear();
  25. for (auto b : backs) {
  26. delete b;
  27. }
  28. backs.clear();
  29. for (auto m : mark) {
  30. delete m;
  31. }
  32. mark.clear();
  33. */
  34. }
  35. Deck::Deck(Deck &&ref) {
  36. card_back_color = ref.card_back_color;
  37. /*
  38. for (auto c : cards)
  39. delete c;
  40. cards.clear();
  41. */
  42. cards = ref.cards;
  43. ref.cards.clear();
  44. /*
  45. for (auto b : backs)
  46. delete b;
  47. backs.clear();
  48. */
  49. backs = ref.backs;
  50. ref.backs.clear();
  51. /*
  52. for (auto m : mark)
  53. delete m;
  54. mark.clear();
  55. */
  56. mark = ref.mark;
  57. ref.mark.clear();
  58. // card_height = ref.card_height;
  59. };
  60. Deck &Deck::operator=(Deck &&ref) {
  61. card_back_color = ref.card_back_color;
  62. /*
  63. for (auto c : cards)
  64. delete c;
  65. cards.clear();
  66. */
  67. cards = ref.cards;
  68. ref.cards.clear();
  69. /*
  70. for (auto b : backs)
  71. delete b;
  72. backs.clear();
  73. */
  74. backs = ref.backs;
  75. ref.backs.clear();
  76. /*
  77. for (auto m : mark)
  78. delete m;
  79. mark.clear();
  80. */
  81. mark = ref.mark;
  82. ref.mark.clear();
  83. // card_height = ref.card_height;
  84. return *this;
  85. }
  86. int Deck::getDeck(int c) { return c / 52; }
  87. int Deck::getSuit(int c) { return (c % 52) / 13; }
  88. int Deck::getRank(int c) { return (c % 52) % 13; }
  89. char Deck::rankSymbol(int c) {
  90. const char symbols[] = "A23456789TJQK";
  91. return symbols[c];
  92. }
  93. std::string Deck::suitSymbol(int c) {
  94. // unicode
  95. if (door::unicode) {
  96. switch (c) {
  97. case 0:
  98. return std::string("\u2665");
  99. case 1:
  100. return std::string("\u2666");
  101. case 2:
  102. return std::string("\u2663");
  103. case 3:
  104. return std::string("\u2660");
  105. }
  106. } else {
  107. if (door::full_cp437) {
  108. switch (c) {
  109. case 0:
  110. return std::string(1, '\x03');
  111. case 1:
  112. return std::string(1, '\x04');
  113. case 2:
  114. return std::string(1, '\x05');
  115. case 3:
  116. return std::string(1, '\x06');
  117. }
  118. } else {
  119. // These look horrible!
  120. switch (c) {
  121. case 0:
  122. return std::string(1, '*'); // H
  123. case 1:
  124. return std::string(1, '^'); // D
  125. case 2:
  126. return std::string(1, '%'); // C
  127. case 3:
  128. return std::string(1, '$'); // S
  129. }
  130. }
  131. }
  132. return std::string("!", 1);
  133. }
  134. shared_panel Deck::cardOf(int c) {
  135. int suit = getSuit(c);
  136. int rank = getRank(c);
  137. bool is_red = (suit < 2);
  138. door::ANSIColor color;
  139. if (is_red) {
  140. color = door::ANSIColor(door::COLOR::RED, door::COLOR::WHITE);
  141. } else {
  142. color = door::ANSIColor(door::COLOR::BLACK, door::COLOR::WHITE);
  143. }
  144. shared_panel p = std::make_shared<door::Panel>(0, 0, 5);
  145. // setColor sets border_color. NOT WHAT I WANT.
  146. // p->setColor(color);
  147. char r = rankSymbol(rank);
  148. std::string s = suitSymbol(suit);
  149. // build lines
  150. std::ostringstream oss;
  151. oss << r << s << " ";
  152. std::string str = oss.str();
  153. p->addLine(std::make_unique<door::Line>(str, 5, color));
  154. oss.str(std::string());
  155. oss.clear();
  156. if (card_height == 5)
  157. p->addLine(std::make_unique<door::Line>(" ", 5, color));
  158. oss << " " << s << " ";
  159. str = oss.str();
  160. p->addLine(std::make_unique<door::Line>(str, 5, color));
  161. oss.str(std::string());
  162. oss.clear();
  163. if (card_height == 5)
  164. p->addLine(std::make_unique<door::Line>(" ", 5, color));
  165. oss << " " << s << r;
  166. str = oss.str();
  167. p->addLine(std::make_unique<door::Line>(str, 5, color));
  168. oss.str(std::string());
  169. oss.clear();
  170. return p;
  171. }
  172. std::string Deck::backSymbol(int level) {
  173. std::string c;
  174. if (level == 0) {
  175. c = ' ';
  176. return c;
  177. }
  178. if (door::unicode) {
  179. switch (level) {
  180. case 1:
  181. c = "\u2591";
  182. break;
  183. case 2:
  184. c = "\u2592";
  185. break;
  186. case 3:
  187. c = "\u2593";
  188. break;
  189. case 4:
  190. c = "\u2588";
  191. break;
  192. }
  193. } else {
  194. switch (level) {
  195. case 1:
  196. c = "\xb0";
  197. break;
  198. case 2:
  199. c = "\xb1";
  200. break;
  201. case 3:
  202. c = "\xb2";
  203. break;
  204. case 4:
  205. c = "\xdb";
  206. break;
  207. }
  208. }
  209. return c;
  210. }
  211. shared_panel Deck::backOf(int level) {
  212. // using: \xb0, 0xb1, 0xb2, 0xdb
  213. // OR: \u2591, \u2592, \u2593, \u2588
  214. // door::ANSIColor color(door::COLOR::RED, door::COLOR::BLACK);
  215. shared_panel p = std::make_shared<door::Panel>(0, 0, 5);
  216. std::string c = backSymbol(level);
  217. std::string l = c + c + c + c + c;
  218. for (int x = 0; x < card_height; ++x) {
  219. p->addLine(std::make_unique<door::Line>(l, 5, card_back_color));
  220. };
  221. // p->addLine(std::make_unique<door::Line>(l, 5, card_back_color));
  222. // p->addLine(std::make_unique<door::Line>(l, 5, card_back_color));
  223. return p;
  224. }
  225. shared_panel Deck::markOf(int c) {
  226. shared_panel p = std::make_shared<door::Panel>(1);
  227. door::ANSIColor color = door::ANSIColor(
  228. door::COLOR::BLUE, door::COLOR::WHITE); // , door::ATTR::BOLD);
  229. std::string m;
  230. if (c == 0)
  231. m = " ";
  232. else {
  233. if (door::unicode) {
  234. m = "\u25a0";
  235. } else {
  236. m = "\xfe";
  237. }
  238. }
  239. p->addLine(std::make_unique<door::Line>(m, 1, color));
  240. return p;
  241. }
  242. shared_panel Deck::card(int c) { return cards[c]; }
  243. /**
  244. * @brief Return panel for back of card.
  245. *
  246. * - 0 = Blank
  247. * - 1 = level 1 (furthest/darkest)
  248. * - 2 = level 2
  249. * - 3 = level 3
  250. * - 4 = level 4 (closest/lightest)
  251. *
  252. * @param level
  253. * @return door::Panel*
  254. */
  255. shared_panel Deck::back(int level) { return backs[level]; }
  256. const std::array<std::pair<int, int>, 18> Deck::blocks = {
  257. make_pair(3, 4), make_pair(5, 6), make_pair(7, 8), // end row 1
  258. make_pair(9, 10), make_pair(10, 11), make_pair(12, 13),
  259. make_pair(13, 14), make_pair(15, 16), make_pair(16, 17),
  260. make_pair(18, 19), // end row 2
  261. make_pair(19, 20), make_pair(20, 21), make_pair(21, 22),
  262. make_pair(22, 23), make_pair(23, 24), make_pair(24, 25),
  263. make_pair(25, 26), make_pair(26, 27) // 27
  264. };
  265. /**
  266. * @brief Which card(s) are unblocked by this card?
  267. *
  268. * @param card
  269. * @return * int
  270. */
  271. std::vector<int> Deck::unblocks(int card) {
  272. std::vector<int> result;
  273. for (size_t i = 0; i < blocks.size(); ++i) {
  274. if ((blocks.at(i).first == card) || (blocks.at(i).second == card)) {
  275. result.push_back(i);
  276. }
  277. }
  278. return result;
  279. }
  280. /**
  281. * @brief Can this card play on this other card?
  282. *
  283. * @param card1
  284. * @param card2
  285. * @return true
  286. * @return false
  287. */
  288. bool Deck::canPlay(int card1, int card2) {
  289. int rank1, rank2;
  290. rank1 = getRank(card1);
  291. rank2 = getRank(card2);
  292. // this works %13 handles wrap-around for us.
  293. if ((rank1 + 1) % 13 == rank2)
  294. return true;
  295. if (rank1 == 0) {
  296. rank1 += 13;
  297. }
  298. if (rank1 - 1 == rank2)
  299. return true;
  300. return false;
  301. }
  302. /**
  303. * @brief Returns marker
  304. *
  305. * 0 = blank
  306. * 1 = [] symbol thing \xfe ■
  307. *
  308. * @param c
  309. * @return door::Panel*
  310. */
  311. shared_panel Deck::marker(int c) { return mark[c]; }
  312. /**
  313. * @brief removeCard
  314. *
  315. * This removes a card at a given position (c).
  316. * It needs to know if there are cards underneath
  317. * to the left or right. (If so, we restore those missing parts.)
  318. *
  319. * @param door
  320. * @param c
  321. * @param off_x
  322. * @param off_y
  323. * @param left
  324. * @param right
  325. */
  326. void Deck::removeCard(door::Door &door, int c, int off_x, int off_y, bool left,
  327. bool right) {
  328. int cx, cy, level;
  329. cardPosLevel(c, cx, cy, level);
  330. if (level > 1)
  331. --level;
  332. std::string cstr = backSymbol(level);
  333. door::Goto g(cx + off_x, cy + off_y);
  334. door << g << card_back_color;
  335. if (left)
  336. door << cstr;
  337. else
  338. door << " ";
  339. door << " ";
  340. if (right)
  341. door << cstr;
  342. else
  343. door << " ";
  344. g.set(cx + off_x, cy + off_y + 1);
  345. door << g << " ";
  346. g.set(cx + off_x, cy + off_y + 2);
  347. door << g << " ";
  348. }
  349. /*
  350. Layout spacing 1:
  351. 1 2 3 4 5 6
  352. 123456789012345678901234567890123456789012345678901234567890
  353. ░░░░░ ░░░░░ ░░░░░
  354. ░░░░░ ░░░░░ ░░░░░
  355. ▒▒▒▒▒░▒▒▒▒▒ #####░##### #####░#####
  356. ▒▒▒▒▒ ▒▒▒▒▒ ##### ##### ##### #####
  357. ▓▓▓▓▓▒▓▓▓▓▓▒▓▓▓▓▓ #####=#####=##### #####=#####=#####
  358. ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ##### ##### ##### ##### ##### #####
  359. █████▓█████▓█████▓#####=#####=#####=#####=#####=#####=#####
  360. █████ █████ █████ ##### ##### ##### ##### ##### ##### #####
  361. █████ █████ █████ ##### ##### ##### ##### ##### ##### #####
  362. width = 5 * 10 + (1*9) = 59 OK!
  363. Layout with spacing = 2:
  364. EEEEE
  365. ZZZZZ
  366. yyyyyZZZyyyyy
  367. yyyyy yyyyy
  368. XXXXXyyyXXXXXyyyXXXXX
  369. XXXXX XXXXX XXXXX
  370. width = 5 * 10 + (2 * 9) = 50+18 = 68 ! I could do that!
  371. */
  372. #ifdef NO
  373. /**
  374. * @brief Where does this card go in relation to everything else?
  375. *
  376. * This function is deprecated, see the other cardgo.
  377. *
  378. * @param pos
  379. * @param space
  380. * @param h
  381. * @param x
  382. * @param y
  383. * @param level
  384. */
  385. void cardgo(int pos, int space, int h, int &x, int &y, int &level) {
  386. // special cases here
  387. if (pos == 28) {
  388. // cardgo(23, space, h, x, y, level);
  389. cardgo(23, x, y, level);
  390. y += h + 1;
  391. --level;
  392. return;
  393. } else {
  394. if (pos == 29) {
  395. // cardgo(22, space, h, x, y, level);
  396. cardgo(22, x, y, level);
  397. y += h + 1;
  398. --level;
  399. return;
  400. }
  401. }
  402. const int CARD_WIDTH = 5;
  403. int HALF_WIDTH = 3;
  404. // space = 1 or 3
  405. // int space = 1;
  406. // space = 3;
  407. HALF_WIDTH += space / 2;
  408. /*
  409. int levels[4] = {3, 6, 9, 10};
  410. for (level = 0; level < 4; ++level) {
  411. if (pos < levels[level]) {
  412. level++;
  413. // we're here
  414. y = (level -1) * 2 + 1;
  415. } else {
  416. pos -= levels[level];
  417. }
  418. }
  419. */
  420. int between = CARD_WIDTH + space;
  421. if (pos < 3) {
  422. // top
  423. level = 1;
  424. y = (level - 1) * (h - 1) + 1;
  425. x = pos * (between * 3) + between + HALF_WIDTH + space; // 10
  426. return;
  427. } else {
  428. pos -= 3;
  429. }
  430. if (pos < 6) {
  431. level = 2;
  432. y = (level - 1) * (h - 1) + 1;
  433. int group = (pos) / 2;
  434. x = pos * between + (group * between) + CARD_WIDTH + space * 2;
  435. return;
  436. } else {
  437. pos -= 6;
  438. }
  439. if (pos < 9) {
  440. level = 3;
  441. y = (level - 1) * (h - 1) + 1;
  442. x = pos * between + HALF_WIDTH + space;
  443. return;
  444. } else {
  445. pos -= 9;
  446. }
  447. if (pos < 10) {
  448. level = 4;
  449. y = (level - 1) * (h - 1) + 1;
  450. x = (pos)*between + space;
  451. return;
  452. } else {
  453. // something is wrong.
  454. y = -1;
  455. x = -1;
  456. level = -1;
  457. }
  458. }
  459. #endif
  460. void cardPos(int pos, int &x, int &y) {
  461. const int space = 3;
  462. const int height = 3;
  463. // special cases here
  464. if (pos == 28) {
  465. cardPos(23, x, y);
  466. y += height + 1;
  467. return;
  468. } else {
  469. if (pos == 29) {
  470. cardPos(22, x, y);
  471. y += height + 1;
  472. return;
  473. }
  474. }
  475. const int CARD_WIDTH = 5;
  476. int HALF_WIDTH = 3;
  477. HALF_WIDTH += space / 2;
  478. int between = CARD_WIDTH + space;
  479. int level; // I still need level in my calculations
  480. if (pos < 3) {
  481. // top
  482. level = 1;
  483. y = (level - 1) * (height - 1) + 1;
  484. x = pos * (between * 3) + between + HALF_WIDTH + space; // 10
  485. return;
  486. } else {
  487. pos -= 3;
  488. }
  489. if (pos < 6) {
  490. level = 2;
  491. y = (level - 1) * (height - 1) + 1;
  492. int group = (pos) / 2;
  493. x = pos * between + (group * between) + CARD_WIDTH + space * 2;
  494. return;
  495. } else {
  496. pos -= 6;
  497. }
  498. if (pos < 9) {
  499. level = 3;
  500. y = (level - 1) * (height - 1) + 1;
  501. x = pos * between + HALF_WIDTH + space;
  502. return;
  503. } else {
  504. pos -= 9;
  505. }
  506. if (pos < 10) {
  507. level = 4;
  508. y = (level - 1) * (height - 1) + 1;
  509. x = (pos)*between + space;
  510. return;
  511. } else {
  512. // something is wrong.
  513. y = -1;
  514. x = -1;
  515. level = -1;
  516. }
  517. }
  518. void cardLevel(int pos, int &level) {
  519. /*
  520. const int space = 3;
  521. const int height = 3;
  522. */
  523. // special cases here
  524. if (pos == 28) {
  525. cardLevel(23, level);
  526. --level;
  527. return;
  528. } else {
  529. if (pos == 29) {
  530. cardLevel(22, level);
  531. --level;
  532. return;
  533. }
  534. }
  535. /*
  536. const int CARD_WIDTH = 5;
  537. int HALF_WIDTH = 3;
  538. HALF_WIDTH += space / 2;
  539. int between = CARD_WIDTH + space;
  540. */
  541. if (pos < 3) {
  542. // top
  543. level = 1;
  544. return;
  545. } else {
  546. pos -= 3;
  547. }
  548. if (pos < 6) {
  549. level = 2;
  550. return;
  551. } else {
  552. pos -= 6;
  553. }
  554. if (pos < 9) {
  555. level = 3;
  556. return;
  557. } else {
  558. pos -= 9;
  559. }
  560. if (pos < 10) {
  561. level = 4;
  562. return;
  563. } else {
  564. // something is wrong.
  565. level = -1;
  566. }
  567. }
  568. /**
  569. * @brief Given card pos, calculate x, y, and level values.
  570. *
  571. * level is used to determine the card background gradient.
  572. *
  573. * @param pos
  574. * @param x
  575. * @param y
  576. * @param level
  577. */
  578. void cardPosLevel(int pos, int &x, int &y, int &level) {
  579. const int space = 3;
  580. const int height = 3;
  581. // special cases here
  582. if (pos == 28) {
  583. cardPosLevel(23, x, y, level);
  584. y += height + 1;
  585. --level;
  586. return;
  587. } else {
  588. if (pos == 29) {
  589. cardPosLevel(22, x, y, level);
  590. y += height + 1;
  591. --level;
  592. return;
  593. }
  594. }
  595. const int CARD_WIDTH = 5;
  596. int HALF_WIDTH = 3;
  597. HALF_WIDTH += space / 2;
  598. int between = CARD_WIDTH + space;
  599. if (pos < 3) {
  600. // top
  601. level = 1;
  602. y = (level - 1) * (height - 1) + 1;
  603. x = pos * (between * 3) + between + HALF_WIDTH + space; // 10
  604. return;
  605. } else {
  606. pos -= 3;
  607. }
  608. if (pos < 6) {
  609. level = 2;
  610. y = (level - 1) * (height - 1) + 1;
  611. int group = (pos) / 2;
  612. x = pos * between + (group * between) + CARD_WIDTH + space * 2;
  613. return;
  614. } else {
  615. pos -= 6;
  616. }
  617. if (pos < 9) {
  618. level = 3;
  619. y = (level - 1) * (height - 1) + 1;
  620. x = pos * between + HALF_WIDTH + space;
  621. return;
  622. } else {
  623. pos -= 9;
  624. }
  625. if (pos < 10) {
  626. level = 4;
  627. y = (level - 1) * (height - 1) + 1;
  628. x = (pos)*between + space;
  629. return;
  630. } else {
  631. // something is wrong.
  632. y = -1;
  633. x = -1;
  634. level = -1;
  635. }
  636. }
  637. /**
  638. * @brief shuffle deck of cards
  639. *
  640. * example of seeding the deck for a given date 2/27/2021 game 1
  641. * std::seed_seq s1{2021, 2, 27, 1};
  642. * vector<int> deck1 = shuffleCards(s1, 1);
  643. * @param seed
  644. * @param decks
  645. * @return vector<int>
  646. */
  647. cards shuffleCards(std::seed_seq &seed, int decks) {
  648. std::mt19937 gen;
  649. // build deck of cards
  650. int size = decks * 52;
  651. std::vector<int> deck;
  652. deck.reserve(size);
  653. for (int x = 0; x < size; ++x) {
  654. deck.push_back(x);
  655. }
  656. // repeatable, but random
  657. gen.seed(seed);
  658. std::shuffle(deck.begin(), deck.end(), gen);
  659. return deck;
  660. }
  661. /**
  662. * @brief generate a vector of ints to track card states.
  663. *
  664. * This initializes everything to 0.
  665. *
  666. * @param decks
  667. * @return cards
  668. */
  669. cards makeCardStates(int decks) {
  670. // auto states = std::unique_ptr<std::vector<int>>(); // (decks * 52, 0)>;
  671. std::vector<int> states;
  672. states.assign(decks * 52, 0);
  673. return states;
  674. }
  675. /**
  676. * @brief Find the next card we can move the marker to.
  677. *
  678. * if left, look in the left - direction, otherwise the right + direction.
  679. * current is the current active card.
  680. * states is the card states (0 = down, 1 = in play, 2 = removed)
  681. *
  682. * updated: If we can't go any further left (or right), then
  683. * roll around to the other side.
  684. *
  685. * @param left
  686. * @param states
  687. * @param current
  688. * @return int
  689. */
  690. int findNextActiveCard(bool left, const cards &states, int current) {
  691. int cx, cy;
  692. int current_x;
  693. cardPos(current, cx, cy);
  694. current_x = cx;
  695. int x;
  696. int pos = -1;
  697. int pos_x;
  698. int max_pos = -1;
  699. int max_x = -1;
  700. int min_pos = -1;
  701. int min_x = 100;
  702. if (left)
  703. pos_x = 0;
  704. else
  705. pos_x = 100;
  706. for (x = 0; x < 28; x++) {
  707. if (states.at(x) == 1) {
  708. // possible location
  709. if (x == current)
  710. continue;
  711. cardPos(x, cx, cy);
  712. // find max and min while we're iterating here
  713. if (cx < min_x) {
  714. min_pos = x;
  715. min_x = cx;
  716. }
  717. if (cx > max_x) {
  718. max_pos = x;
  719. max_x = cx;
  720. }
  721. if (left) {
  722. if ((cx < current_x) and (cx > pos_x)) {
  723. pos_x = cx;
  724. pos = x;
  725. }
  726. } else {
  727. if ((cx > current_x) and (cx < pos_x)) {
  728. pos_x = cx;
  729. pos = x;
  730. }
  731. }
  732. }
  733. }
  734. if (pos == -1) {
  735. // we couldn't find one
  736. if (left) {
  737. // use max -- roll around to the right
  738. pos = max_pos;
  739. } else {
  740. // use min -- roll around to the left
  741. pos = min_pos;
  742. }
  743. }
  744. return pos;
  745. }
  746. /**
  747. * @brief Find the next closest card to move to.
  748. *
  749. * Given the card states, this finds the next closest card.
  750. * Uses current.
  751. *
  752. * return -1 there's no options to go to. (END OF GAME)
  753. * @param states
  754. * @param current
  755. * @return int
  756. */
  757. int findClosestActiveCard(const cards &states, int current) {
  758. int cx, cy;
  759. int current_x;
  760. cardPos(current, cx, cy);
  761. current_x = cx;
  762. int x;
  763. int pos = -1;
  764. int pos_x = -1;
  765. for (x = 0; x < 28; x++) {
  766. if (states.at(x) == 1) {
  767. // possible location
  768. if (x == current)
  769. continue;
  770. cardPos(x, cx, cy);
  771. if (pos == -1) {
  772. pos = x;
  773. pos_x = cx;
  774. } else {
  775. if (abs(current_x - cx) < abs(current_x - pos_x)) {
  776. pos = x;
  777. pos_x = cx;
  778. }
  779. }
  780. }
  781. }
  782. return pos;
  783. }
  784. vector<std::string> deck_colors = {std::string("All"), std::string("Blue"),
  785. std::string("Cyan"), std::string("Green"),
  786. std::string("Magenta"), std::string("Red")};
  787. /**
  788. * @brief menu render that sets the text color based on the color found in the
  789. * text itself. This only finds one color.
  790. *
  791. * @param c1 [] brackets
  792. * @param c2 text within brackets
  793. * @param c3 base color give (we set the FG, we use the BG)
  794. * @return door::renderFunction
  795. */
  796. door::renderFunction makeColorRender(door::ANSIColor c1, door::ANSIColor c2,
  797. door::ANSIColor c3) {
  798. door::renderFunction render = [c1, c2,
  799. c3](const std::string &txt) -> door::Render {
  800. door::Render r(txt);
  801. bool option = true;
  802. door::ColorOutput co;
  803. // I need this mutable
  804. door::ANSIColor textColor = c3;
  805. // Color update:
  806. {
  807. std::string found;
  808. for (auto &dc : deck_colors) {
  809. if (txt.find(dc) != string::npos) {
  810. found = dc;
  811. break;
  812. }
  813. }
  814. if (!found.empty()) {
  815. if (found == "All") {
  816. // handle this some other way.
  817. textColor.setFg(door::COLOR::WHITE);
  818. } else {
  819. door::ANSIColor c = stringToANSIColor(found);
  820. textColor.setFg(c.getFg());
  821. }
  822. }
  823. }
  824. co.pos = 0;
  825. co.len = 0;
  826. co.c = c1;
  827. int tpos = 0;
  828. for (char const &c : txt) {
  829. if (option) {
  830. if (c == '[' or c == ']') {
  831. if (co.c != c1)
  832. if (co.len != 0) {
  833. r.outputs.push_back(co);
  834. co.reset();
  835. co.pos = tpos;
  836. }
  837. co.c = c1;
  838. if (c == ']')
  839. option = false;
  840. } else {
  841. if (co.c != c2)
  842. if (co.len != 0) {
  843. r.outputs.push_back(co);
  844. co.reset();
  845. co.pos = tpos;
  846. }
  847. co.c = c2;
  848. }
  849. } else {
  850. if (co.c != textColor)
  851. if (co.len != 0) {
  852. r.outputs.push_back(co);
  853. co.reset();
  854. co.pos = tpos;
  855. }
  856. co.c = textColor;
  857. }
  858. co.len++;
  859. tpos++;
  860. }
  861. if (co.len != 0) {
  862. r.outputs.push_back(co);
  863. }
  864. return r;
  865. };
  866. return render;
  867. }
  868. /**
  869. * @brief menu render that sets the text color based on the color found in the
  870. * text itself. This finds all colors.
  871. *
  872. * @param c1 [] brackets
  873. * @param c2 text within brackets
  874. * @param c3 base color give (we set the FG, we use the BG)
  875. * @return door::renderFunction
  876. */
  877. door::renderFunction makeColorsRender(door::ANSIColor c1, door::ANSIColor c2,
  878. door::ANSIColor c3) {
  879. door::renderFunction render = [c1, c2,
  880. c3](const std::string &txt) -> door::Render {
  881. door::Render r(txt);
  882. // find all of the words here
  883. std::vector<std::pair<int, int>> words = find_words(txt);
  884. auto words_it = words.begin();
  885. // option is "[?]" part of the string
  886. bool option = true;
  887. // I need this mutable
  888. door::ANSIColor textColor = c3;
  889. door::ANSIColor normal = c3;
  890. normal.setFg(door::COLOR::WHITE);
  891. bool color_word = false;
  892. std::pair<int, int> word_pair;
  893. // Color update:
  894. /*
  895. {
  896. std::string found;
  897. for (auto &dc : deck_colors) {
  898. if (txt.find(dc) != string::npos) {
  899. found = dc;
  900. break;
  901. }
  902. }
  903. if (!found.empty()) {
  904. if (found == "All") {
  905. // handle this some other way.
  906. textColor.setFg(door::COLOR::WHITE);
  907. } else {
  908. door::ANSIColor c = stringToANSIColor(found);
  909. textColor.setFg(c.getFg());
  910. }
  911. }
  912. }
  913. */
  914. if (get_logger) {
  915. get_logger() << "makeColorsRender() " << txt << std::endl;
  916. for (auto word : words) {
  917. get_logger() << word.first << "," << word.second << std::endl;
  918. }
  919. }
  920. int tpos = 0;
  921. for (char const &c : txt) {
  922. if (option) {
  923. if (c == '[' or c == ']') {
  924. r.append(c1);
  925. if (c == ']')
  926. option = false;
  927. } else {
  928. r.append(c2);
  929. }
  930. } else {
  931. // Ok, we are out of the options now.
  932. if (color_word) {
  933. // we're in a COLOR word.
  934. if (tpos < word_pair.first + word_pair.second)
  935. r.append(textColor);
  936. else {
  937. color_word = false;
  938. r.append(normal);
  939. }
  940. } else {
  941. // look for COLOR word.
  942. while ((words_it != words.end()) and (words_it->first < tpos)) {
  943. if (get_logger) {
  944. get_logger() << "tpos " << tpos << "(next words_it)" << std::endl;
  945. }
  946. ++words_it;
  947. }
  948. if (words_it == words.end()) {
  949. // we're out.
  950. r.append(normal);
  951. } else {
  952. if (words_it->first == tpos) {
  953. // start of word -- check it!
  954. std::string color = txt.substr(words_it->first, words_it->second);
  955. bool found = false;
  956. if (!iequals(color, std::string("ALL")))
  957. for (auto &dc : deck_colors) {
  958. if (color.find(dc) != string::npos) {
  959. found = true;
  960. break;
  961. }
  962. }
  963. if (get_logger) {
  964. get_logger() << "word: [" << color << "] : deck_colors "
  965. << found << " pos: " << tpos
  966. << " word_start: " << words_it->first << std::endl;
  967. }
  968. if (found) {
  969. door::ANSIColor c = stringToANSIColor(color);
  970. textColor.setFg(c.getFg());
  971. word_pair = *words_it;
  972. r.append(textColor);
  973. color_word = true;
  974. } else {
  975. r.append(normal);
  976. }
  977. } else {
  978. r.append(normal);
  979. }
  980. }
  981. }
  982. }
  983. ++tpos;
  984. }
  985. return r;
  986. };
  987. return render;
  988. }
  989. // convert a string to an option
  990. // an option to the string to store
  991. // This needs to be updated to use deck_colors.
  992. door::ANSIColor stringToANSIColor(std::string colorCode) {
  993. std::map<std::string, door::ANSIColor> codeMap = {
  994. {std::string("BLUE"), door::ANSIColor(door::COLOR::BLUE)},
  995. {std::string("RED"), door::ANSIColor(door::COLOR::RED)},
  996. {std::string("CYAN"), door::ANSIColor(door::COLOR::CYAN)},
  997. {std::string("GREEN"), door::ANSIColor(door::COLOR::GREEN)},
  998. {std::string("MAGENTA"), door::ANSIColor(door::COLOR::MAGENTA)}};
  999. std::string code = colorCode;
  1000. string_toupper(code);
  1001. auto iter = codeMap.find(code);
  1002. if (iter != codeMap.end()) {
  1003. return iter->second;
  1004. }
  1005. // And if it doesn't match, and isn't ALL ... ?
  1006. // if (code.compare("ALL") == 0) {
  1007. std::random_device dev;
  1008. std::mt19937_64 rng(dev());
  1009. std::uniform_int_distribution<size_t> idDist(0, codeMap.size() - 1);
  1010. iter = codeMap.begin();
  1011. std::advance(iter, idDist(rng));
  1012. return iter->second;
  1013. // }
  1014. }
  1015. std::string stringFromColorOptions(int opt) { return deck_colors[opt]; }
  1016. door::Panel make_about(void) {
  1017. const int W = 60;
  1018. door::Panel about(W);
  1019. about.setStyle(door::BorderStyle::DOUBLE_SINGLE);
  1020. about.setColor(door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1021. door::ATTR::BOLD));
  1022. about.addLine(std::make_unique<door::Line>("About This Door", W));
  1023. about.addLine(std::make_unique<door::Line>(
  1024. "---------------------------------", W,
  1025. door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE, door::ATTR::BOLD)));
  1026. /*
  1027. 123456789012345678901234567890123456789012345678901234567890-60
  1028. This door was written by Bugz.
  1029. It is written in c++, only supports Linux, and replaces
  1030. opendoors.
  1031. It's written in c++, and replaces the outdated opendoors
  1032. library.
  1033. */
  1034. about.addLine(
  1035. std::make_unique<door::Line>(SPACEACE " v" SPACEACE_VERSION, W));
  1036. std::string copyright = SPACEACE_COPYRIGHT;
  1037. if (door::unicode) {
  1038. replace(copyright, "(C)", "\u00a9");
  1039. }
  1040. about.addLine(std::make_unique<door::Line>(copyright, W));
  1041. about.addLine(std::make_unique<door::Line>("", W));
  1042. about.addLine(
  1043. std::make_unique<door::Line>("This door was written by Bugz.", W));
  1044. about.addLine(std::make_unique<door::Line>("", W));
  1045. about.addLine(std::make_unique<door::Line>(
  1046. "It is written in door++ using c++ and only supports Linux.", W));
  1047. return about;
  1048. }
  1049. door::Panel make_help(void) {
  1050. const int W = 60;
  1051. door::Panel help(W);
  1052. help.setStyle(door::BorderStyle::DOUBLE_SINGLE);
  1053. help.setColor(door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1054. door::ATTR::BOLD));
  1055. help.addLine(std::make_unique<door::Line>("Help", W));
  1056. help.addLine(std::make_unique<door::Line>(
  1057. "---------------------------------", W,
  1058. door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE, door::ATTR::BOLD)));
  1059. /*
  1060. 123456789012345678901234567890123456789012345678901234567890-60
  1061. Use Left/Right arrow keys, or 4/6 keys to move marker.
  1062. Select card to play with Space or 5. Enter draws another card.
  1063. A card can play if it is higher or lower in rank by 1.
  1064. Example: A Jack could select either a Ten or a Queen.
  1065. Example: A King could select either an Ace or a Queen.
  1066. The more cards in your streak, the more points you earn.
  1067. */
  1068. help.addLine(std::make_unique<door::Line>(SPACEACE " v" SPACEACE_VERSION, W));
  1069. std::string copyright = SPACEACE_COPYRIGHT;
  1070. if (door::unicode) {
  1071. replace(copyright, "(C)", "\u00a9");
  1072. }
  1073. help.addLine(std::make_unique<door::Line>(copyright, W));
  1074. help.addLine(std::make_unique<door::Line>("", W));
  1075. help.addLine(std::make_unique<door::Line>(
  1076. "Use Left/Right arrow keys, or 4/6 keys to move marker.", W));
  1077. help.addLine(
  1078. std::make_unique<door::Line>("Select card to play with Space or 5.", W));
  1079. help.addLine(std::make_unique<door::Line>(
  1080. "A card can play if it is higher or lower in rank by 1.", W));
  1081. help.addLine(std::make_unique<door::Line>("", W));
  1082. help.addLine(std::make_unique<door::Line>("Enter draws another card.", W));
  1083. help.addLine(std::make_unique<door::Line>("", W));
  1084. help.addLine(std::make_unique<door::Line>(
  1085. "Example: A Jack could select either a Ten or a Queen.", W));
  1086. help.addLine(std::make_unique<door::Line>(
  1087. "Example: A King could select either an Ace or a Queen.", W));
  1088. help.addLine(std::make_unique<door::Line>("", W));
  1089. help.addLine(std::make_unique<door::Line>(
  1090. "The more cards in your streak, the more points you earn.", W));
  1091. return help;
  1092. }
  1093. void display_starfield(door::Door &door, std::mt19937 &rng) {
  1094. door << door::reset << door::cls;
  1095. int mx = door.width;
  1096. int my = door.height;
  1097. // display starfield
  1098. const char *stars[2];
  1099. stars[0] = ".";
  1100. if (door::unicode) {
  1101. stars[1] = "\u2219"; // "\u00b7";
  1102. } else {
  1103. stars[1] = "\xf9"; // "\xfa";
  1104. };
  1105. {
  1106. // Make uniform random distribution between 1 and MAX screen size X/Y
  1107. std::uniform_int_distribution<int> uni_x(1, mx);
  1108. std::uniform_int_distribution<int> uni_y(1, my);
  1109. door::ANSIColor white(door::COLOR::WHITE);
  1110. door::ANSIColor dark(door::COLOR::BLACK, door::ATTR::BRIGHT);
  1111. // 10 is too many, 100 is too few. 40 looks ok.
  1112. int MAX_STARS = ((mx * my) / 40);
  1113. // door.log() << "Generating starmap using " << mx << "," << my << " : "
  1114. // << MAX_STARS << " stars." << std::endl;
  1115. for (int x = 0; x < MAX_STARS; x++) {
  1116. door::Goto star_at(uni_x(rng), uni_y(rng));
  1117. door << star_at;
  1118. if (x % 5 < 2)
  1119. door << dark;
  1120. else
  1121. door << white;
  1122. if (x % 2 == 0)
  1123. door << stars[0];
  1124. else
  1125. door << stars[1];
  1126. }
  1127. }
  1128. }
  1129. void display_space_ace(door::Door &door) {
  1130. int mx = door.width;
  1131. int my = door.height;
  1132. // space_ace is 72 chars wide, 6 high
  1133. int sa_x = (mx - 72) / 2;
  1134. int sa_y = (my - 6) / 2;
  1135. // output the SpaceAce logo -- centered!
  1136. for (const auto s : space) {
  1137. door::Goto sa_at(sa_x, sa_y);
  1138. door << sa_at;
  1139. if (door::unicode) {
  1140. std::string unicode;
  1141. door::cp437toUnicode(s, unicode);
  1142. door << unicode; // << door::nl;
  1143. } else
  1144. door << s; // << door::nl;
  1145. sa_y++;
  1146. }
  1147. // pause 5 seconds so they can enjoy our awesome logo -- if they want.
  1148. door.sleep_key(5);
  1149. }
  1150. void display_starfield_space_ace(door::Door &door, std::mt19937 &rng) {
  1151. // mx = door.width;
  1152. // my = door.height;
  1153. display_starfield(door, rng);
  1154. display_space_ace(door);
  1155. door << door::reset;
  1156. }
  1157. door::Panel make_timeout(int mx, int my) {
  1158. door::ANSIColor yellowred =
  1159. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::RED, door::ATTR::BOLD);
  1160. std::string line_text("Sorry, you've been inactive for too long.");
  1161. int msgWidth = line_text.length() + (2 * 3); // + padding * 2
  1162. door::Panel timeout((mx - (msgWidth)) / 2, my / 2 + 4, msgWidth);
  1163. // place.setTitle(std::make_unique<door::Line>(title), 1);
  1164. timeout.setStyle(door::BorderStyle::DOUBLE);
  1165. timeout.setColor(yellowred);
  1166. door::Line base(line_text);
  1167. base.setColor(yellowred);
  1168. std::string pad1(3, ' ');
  1169. /*
  1170. std::string pad1(3, '\xb0');
  1171. if (door::unicode) {
  1172. std::string unicode;
  1173. door::cp437toUnicode(pad1.c_str(), unicode);
  1174. pad1 = unicode;
  1175. }
  1176. */
  1177. base.setPadding(pad1, yellowred);
  1178. // base.setColor(door::ANSIColor(door::COLOR::GREEN, door::COLOR::BLACK));
  1179. std::unique_ptr<door::Line> stuff = std::make_unique<door::Line>(base);
  1180. timeout.addLine(std::make_unique<door::Line>(base));
  1181. return timeout;
  1182. }
  1183. door::Panel make_notime(int mx, int my) {
  1184. door::ANSIColor yellowred =
  1185. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::RED, door::ATTR::BOLD);
  1186. std::string line_text("Sorry, you've used up all your time for today.");
  1187. int msgWidth = line_text.length() + (2 * 3); // + padding * 2
  1188. door::Panel timeout((mx - (msgWidth)) / 2, my / 2 + 4, msgWidth);
  1189. timeout.setStyle(door::BorderStyle::DOUBLE);
  1190. timeout.setColor(yellowred);
  1191. door::Line base(line_text);
  1192. base.setColor(yellowred);
  1193. std::string pad1(3, ' ');
  1194. /*
  1195. std::string pad1(3, '\xb0');
  1196. if (door::unicode) {
  1197. std::string unicode;
  1198. door::cp437toUnicode(pad1.c_str(), unicode);
  1199. pad1 = unicode;
  1200. }
  1201. */
  1202. base.setPadding(pad1, yellowred);
  1203. std::unique_ptr<door::Line> stuff = std::make_unique<door::Line>(base);
  1204. timeout.addLine(std::make_unique<door::Line>(base));
  1205. return timeout;
  1206. }
  1207. door::Menu make_main_menu(void) {
  1208. door::Menu m(5, 5, 25);
  1209. door::Line mtitle(SPACEACE " Main Menu");
  1210. door::ANSIColor border_color(door::COLOR::CYAN, door::COLOR::BLUE);
  1211. door::ANSIColor title_color(door::COLOR::CYAN, door::COLOR::BLUE,
  1212. door::ATTR::BOLD);
  1213. m.setColor(border_color);
  1214. mtitle.setColor(title_color);
  1215. mtitle.setPadding(" ", title_color);
  1216. m.setTitle(std::make_unique<door::Line>(mtitle), 1);
  1217. // m.setColorizer(true,
  1218. m.setRender(true, door::Menu::makeRender(
  1219. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1220. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD),
  1221. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1222. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD)));
  1223. // m.setColorizer(false,
  1224. m.setRender(false, door::Menu::makeRender(
  1225. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1226. door::ATTR::BOLD),
  1227. door::ANSIColor(door::COLOR::WHITE, door::COLOR::BLUE,
  1228. door::ATTR::BOLD),
  1229. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1230. door::ATTR::BOLD),
  1231. door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE,
  1232. door::ATTR::BOLD)));
  1233. m.addSelection('P', "Play Cards");
  1234. m.addSelection('S', "View Scores");
  1235. m.addSelection('C', "Configure");
  1236. m.addSelection('H', "Help");
  1237. m.addSelection('A', "About this game");
  1238. m.addSelection('Q', "Quit");
  1239. return m;
  1240. }
  1241. door::Menu make_config_menu(void) {
  1242. door::Menu m(5, 5, 31);
  1243. door::Line mtitle(SPACEACE " Configuration Menu");
  1244. door::ANSIColor border_color(door::COLOR::CYAN, door::COLOR::BLUE);
  1245. door::ANSIColor title_color(door::COLOR::CYAN, door::COLOR::BLUE,
  1246. door::ATTR::BOLD);
  1247. m.setColor(border_color);
  1248. mtitle.setColor(title_color);
  1249. mtitle.setPadding(" ", title_color);
  1250. m.setTitle(std::make_unique<door::Line>(mtitle), 1);
  1251. // m.setColorizer(true,
  1252. m.setRender(true, door::Menu::makeRender(
  1253. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1254. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD),
  1255. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1256. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD)));
  1257. // m.setColorizer(false,
  1258. m.setRender(false, door::Menu::makeRender(
  1259. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1260. door::ATTR::BOLD),
  1261. door::ANSIColor(door::COLOR::WHITE, door::COLOR::BLUE,
  1262. door::ATTR::BOLD),
  1263. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1264. door::ATTR::BOLD),
  1265. door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE,
  1266. door::ATTR::BOLD)));
  1267. m.addSelection('D', "Deck Colors");
  1268. m.addSelection('V', "View Settings");
  1269. m.addSelection('Q', "Quit");
  1270. return m;
  1271. }
  1272. /*
  1273. // all the possible deck colors
  1274. vector<std::string> deck_colors = {std::string("All"), std::string("Blue"),
  1275. std::string("Cyan"), std::string("Green"),
  1276. std::string("Magenta"), std::string("Red")};
  1277. */
  1278. door::Menu make_deck_menu(void) {
  1279. door::Menu m(5, 5, 31);
  1280. door::Line mtitle(SPACEACE " Deck Menu");
  1281. door::ANSIColor border_color(door::COLOR::CYAN, door::COLOR::BLUE);
  1282. door::ANSIColor title_color(door::COLOR::CYAN, door::COLOR::BLUE,
  1283. door::ATTR::BOLD);
  1284. m.setColor(border_color);
  1285. mtitle.setColor(title_color);
  1286. mtitle.setPadding(" ", title_color);
  1287. m.setTitle(std::make_unique<door::Line>(mtitle), 1);
  1288. m.setRender(true, makeColorsRender(
  1289. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1290. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD),
  1291. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD)));
  1292. m.setRender(false, makeColorsRender(
  1293. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1294. door::ATTR::BOLD),
  1295. door::ANSIColor(door::COLOR::WHITE, door::COLOR::BLUE,
  1296. door::ATTR::BOLD),
  1297. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1298. door::ATTR::BOLD)));
  1299. // build the menu options from the colors. First character = single letter
  1300. // option trigger.
  1301. for (auto iter = deck_colors.begin(); iter != deck_colors.end(); ++iter) {
  1302. char c = (*iter)[0];
  1303. m.addSelection(c, (*iter).c_str());
  1304. }
  1305. // This verifies the render routine is working great.
  1306. // Now, I just need to support multiple color selections like this.
  1307. // m.addSelection('S', "Yellow Red Blue Green Cyan");
  1308. /*
  1309. m.addSelection('A', "All");
  1310. m.addSelection('B', "Blue");
  1311. m.addSelection('C', "Cyan");
  1312. m.addSelection('G', "Green");
  1313. m.addSelection('M', "Magenta");
  1314. m.addSelection('R', "Red");
  1315. */
  1316. return m;
  1317. }