deck.cpp 37 KB

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