deck.cpp 37 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445
  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("Brown"), std::string("Cyan"),
  771. std::string("Green"), std::string("Magenta"),
  772. std::string("Red"), std::string("White")};
  773. /**
  774. * @brief menu render that sets the text color based on the color found in the
  775. * text itself. This only finds one color.
  776. *
  777. * @param c1 [] brackets
  778. * @param c2 text within brackets
  779. * @param c3 base color give (we set the FG, we use the BG)
  780. * @return door::renderFunction
  781. */
  782. door::renderFunction makeColorRender(door::ANSIColor c1, door::ANSIColor c2,
  783. door::ANSIColor c3) {
  784. door::renderFunction render = [c1, c2,
  785. c3](const std::string &txt) -> door::Render {
  786. door::Render r(txt);
  787. bool option = true;
  788. door::ColorOutput co;
  789. // I need this mutable
  790. door::ANSIColor textColor = c3;
  791. // Color update:
  792. {
  793. std::string found;
  794. for (auto &dc : deck_colors) {
  795. if (txt.find(dc) != string::npos) {
  796. found = dc;
  797. break;
  798. }
  799. }
  800. if (!found.empty()) {
  801. if (found == "All") {
  802. // handle this some other way.
  803. textColor.setFg(door::COLOR::WHITE);
  804. } else {
  805. door::ANSIColor c = stringToANSIColor(found);
  806. textColor.setFg(c.getFg());
  807. }
  808. }
  809. }
  810. co.pos = 0;
  811. co.len = 0;
  812. co.c = c1;
  813. int tpos = 0;
  814. for (char const &c : txt) {
  815. if (option) {
  816. if (c == '[' or c == ']') {
  817. if (co.c != c1)
  818. if (co.len != 0) {
  819. r.outputs.push_back(co);
  820. co.reset();
  821. co.pos = tpos;
  822. }
  823. co.c = c1;
  824. if (c == ']')
  825. option = false;
  826. } else {
  827. if (co.c != c2)
  828. if (co.len != 0) {
  829. r.outputs.push_back(co);
  830. co.reset();
  831. co.pos = tpos;
  832. }
  833. co.c = c2;
  834. }
  835. } else {
  836. if (co.c != textColor)
  837. if (co.len != 0) {
  838. r.outputs.push_back(co);
  839. co.reset();
  840. co.pos = tpos;
  841. }
  842. co.c = textColor;
  843. }
  844. co.len++;
  845. tpos++;
  846. }
  847. if (co.len != 0) {
  848. r.outputs.push_back(co);
  849. }
  850. return r;
  851. };
  852. return render;
  853. }
  854. /**
  855. * @brief menu render that sets the text color based on the color found in the
  856. * text itself. This finds all colors.
  857. *
  858. * @param c1 [] brackets
  859. * @param c2 text within brackets
  860. * @param c3 base color give (we set the FG, we use the BG)
  861. * @return door::renderFunction
  862. */
  863. door::renderFunction makeColorsRender(door::ANSIColor c1, door::ANSIColor c2,
  864. door::ANSIColor c3) {
  865. door::renderFunction render = [c1, c2,
  866. c3](const std::string &txt) -> door::Render {
  867. door::Render r(txt);
  868. // find all of the words here
  869. std::vector<std::pair<int, int>> words = find_words(txt);
  870. auto words_it = words.begin();
  871. // option is "[?]" part of the string
  872. bool option = true;
  873. // I need this mutable
  874. door::ANSIColor textColor = c3;
  875. door::ANSIColor normal = c3;
  876. normal.setFg(door::COLOR::WHITE);
  877. bool color_word = false;
  878. std::pair<int, int> word_pair;
  879. #ifdef DEBUG_OUTPUT
  880. if (get_logger) {
  881. get_logger() << "makeColorsRender() " << txt << std::endl;
  882. for (auto word : words) {
  883. get_logger() << word.first << "," << word.second << std::endl;
  884. }
  885. }
  886. #endif
  887. int tpos = 0;
  888. for (char const &c : txt) {
  889. if (option) {
  890. if (c == '[' or c == ']') {
  891. r.append(c1);
  892. if (c == ']')
  893. option = false;
  894. } else {
  895. r.append(c2);
  896. }
  897. } else {
  898. // Ok, we are out of the options now.
  899. if (color_word) {
  900. // we're in a COLOR word.
  901. if (tpos < word_pair.first + word_pair.second)
  902. r.append(textColor);
  903. else {
  904. color_word = false;
  905. r.append(normal);
  906. }
  907. } else {
  908. // look for COLOR word.
  909. while ((words_it != words.end()) and (words_it->first < tpos)) {
  910. #ifdef DEBUG_OUTPUT
  911. if (get_logger) {
  912. get_logger() << "tpos " << tpos << "(next words_it)" << std::endl;
  913. }
  914. #endif
  915. ++words_it;
  916. }
  917. if (words_it == words.end()) {
  918. // we're out.
  919. r.append(normal);
  920. } else {
  921. if (words_it->first == tpos) {
  922. // start of word -- check it!
  923. std::string color = txt.substr(words_it->first, words_it->second);
  924. bool found = false;
  925. if (!iequals(color, std::string("ALL")))
  926. for (auto &dc : deck_colors) {
  927. if (color.find(dc) != string::npos) {
  928. found = true;
  929. break;
  930. }
  931. }
  932. #ifdef DEBUG_OUTPUT
  933. if (get_logger) {
  934. get_logger() << "word: [" << color << "] : deck_colors "
  935. << found << " pos: " << tpos
  936. << " word_start: " << words_it->first << std::endl;
  937. }
  938. #endif
  939. if (found) {
  940. door::ANSIColor c = stringToANSIColor(color);
  941. textColor.setFg(c.getFg());
  942. // check
  943. if (textColor.getFg() == textColor.getBg()) {
  944. // problem detected!
  945. textColor.setBg(door::COLOR::WHITE);
  946. }
  947. word_pair = *words_it;
  948. r.append(textColor);
  949. color_word = true;
  950. } else {
  951. r.append(normal);
  952. }
  953. } else {
  954. r.append(normal);
  955. }
  956. }
  957. }
  958. }
  959. ++tpos;
  960. }
  961. return r;
  962. };
  963. return render;
  964. }
  965. // convert a string to an option
  966. // an option to the string to store
  967. // This needs to be updated to use deck_colors.
  968. door::ANSIColor stringToANSIColor(std::string colorCode) {
  969. std::map<std::string, door::ANSIColor> codeMap = {
  970. {std::string("BLUE"), door::ANSIColor(door::COLOR::BLUE)},
  971. {std::string("BROWN"), door::ANSIColor(door::COLOR::BROWN)},
  972. {std::string("RED"), door::ANSIColor(door::COLOR::RED)},
  973. {std::string("CYAN"), door::ANSIColor(door::COLOR::CYAN)},
  974. {std::string("GREEN"), door::ANSIColor(door::COLOR::GREEN)},
  975. {std::string("MAGENTA"), door::ANSIColor(door::COLOR::MAGENTA)},
  976. {std::string("WHITE"), door::ANSIColor(door::COLOR::WHITE)}};
  977. std::string code = colorCode;
  978. string_toupper(code);
  979. auto iter = codeMap.find(code);
  980. if (iter != codeMap.end()) {
  981. return iter->second;
  982. }
  983. // And if it doesn't match, and isn't ALL ... ?
  984. // if (code.compare("ALL") == 0) {
  985. std::random_device dev;
  986. std::mt19937_64 rng(dev());
  987. std::uniform_int_distribution<size_t> idDist(0, codeMap.size() - 1);
  988. iter = codeMap.begin();
  989. std::advance(iter, idDist(rng));
  990. return iter->second;
  991. // }
  992. }
  993. std::string stringFromColorOptions(int opt) { return deck_colors[opt]; }
  994. door::Panel make_about(void) {
  995. const int W = 60;
  996. door::Panel about(W);
  997. about.setStyle(door::BorderStyle::DOUBLE_SINGLE);
  998. about.setColor(door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  999. door::ATTR::BOLD));
  1000. about.addLine(std::make_unique<door::Line>("About This Door", W));
  1001. about.addLine(std::make_unique<door::Line>(
  1002. "---------------------------------", W,
  1003. door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE, door::ATTR::BOLD)));
  1004. /*
  1005. 123456789012345678901234567890123456789012345678901234567890-60
  1006. This door was written by Bugz.
  1007. It is written in c++, only supports Linux, and replaces
  1008. opendoors.
  1009. It's written in c++, and replaces the outdated opendoors
  1010. library.
  1011. */
  1012. about.addLine(
  1013. std::make_unique<door::Line>(SPACEACE " v" SPACEACE_VERSION, W));
  1014. std::string copyright = SPACEACE_COPYRIGHT;
  1015. if (door::unicode) {
  1016. replace(copyright, "(C)", "\u00a9");
  1017. }
  1018. about.addLine(std::make_unique<door::Line>(copyright, W));
  1019. about.addLine(std::make_unique<door::Line>("", W));
  1020. about.addLine(
  1021. std::make_unique<door::Line>("This door was written by Bugz.", W));
  1022. about.addLine(std::make_unique<door::Line>("", W));
  1023. about.addLine(std::make_unique<door::Line>(
  1024. "It is written in door++ using c++ and only supports Linux.", W));
  1025. return about;
  1026. }
  1027. door::Panel make_help(void) {
  1028. const int W = 60;
  1029. door::Panel help(W);
  1030. help.setStyle(door::BorderStyle::DOUBLE_SINGLE);
  1031. help.setColor(door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1032. door::ATTR::BOLD));
  1033. help.addLine(std::make_unique<door::Line>("Help", W));
  1034. help.addLine(std::make_unique<door::Line>(
  1035. "---------------------------------", W,
  1036. door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE, door::ATTR::BOLD)));
  1037. /*
  1038. 123456789012345678901234567890123456789012345678901234567890-60
  1039. Use Left/Right arrow keys, or 4/6 keys to move marker.
  1040. Select card to play with Space or 5. Enter draws another card.
  1041. A card can play if it is higher or lower in rank by 1.
  1042. Example: A Jack could select either a Ten or a Queen.
  1043. Example: A King could select either an Ace or a Queen.
  1044. The more cards in your streak, the more points you earn.
  1045. */
  1046. help.addLine(std::make_unique<door::Line>(SPACEACE " v" SPACEACE_VERSION, W));
  1047. std::string copyright = SPACEACE_COPYRIGHT;
  1048. if (door::unicode) {
  1049. replace(copyright, "(C)", "\u00a9");
  1050. }
  1051. help.addLine(std::make_unique<door::Line>(copyright, W));
  1052. help.addLine(std::make_unique<door::Line>("", W));
  1053. help.addLine(std::make_unique<door::Line>(
  1054. "Use Left/Right arrow keys, or 4/6 keys to move marker.", W));
  1055. help.addLine(
  1056. std::make_unique<door::Line>("Select card to play with Space or 5.", W));
  1057. help.addLine(std::make_unique<door::Line>(
  1058. "A card can play if it is higher or lower in rank by 1.", W));
  1059. help.addLine(std::make_unique<door::Line>("", W));
  1060. help.addLine(std::make_unique<door::Line>("Enter draws another card.", W));
  1061. help.addLine(std::make_unique<door::Line>("", W));
  1062. help.addLine(std::make_unique<door::Line>(
  1063. "Example: A Jack could select either a Ten or a Queen.", W));
  1064. help.addLine(std::make_unique<door::Line>(
  1065. "Example: A King could select either an Ace or a Queen.", W));
  1066. help.addLine(std::make_unique<door::Line>("", W));
  1067. help.addLine(std::make_unique<door::Line>(
  1068. "The more cards in your streak, the more points you earn.", W));
  1069. return help;
  1070. }
  1071. void display_starfield(door::Door &door, std::mt19937 &rng) {
  1072. door << door::reset << door::cls;
  1073. int mx = door.width;
  1074. int my = door.height;
  1075. // display starfield
  1076. const char *stars[2];
  1077. stars[0] = ".";
  1078. if (door::unicode) {
  1079. stars[1] = "\u2219"; // "\u00b7";
  1080. } else {
  1081. stars[1] = "\xf9"; // "\xfa";
  1082. };
  1083. {
  1084. // Make uniform random distribution between 1 and MAX screen size X/Y
  1085. std::uniform_int_distribution<int> uni_x(1, mx);
  1086. std::uniform_int_distribution<int> uni_y(1, my);
  1087. door::ANSIColor white(door::COLOR::WHITE);
  1088. door::ANSIColor dark(door::COLOR::BLACK, door::ATTR::BRIGHT);
  1089. // 10 is too many, 100 is too few. 40 looks ok.
  1090. int MAX_STARS = ((mx * my) / 40);
  1091. // door.log() << "Generating starmap using " << mx << "," << my << " : "
  1092. // << MAX_STARS << " stars." << std::endl;
  1093. for (int x = 0; x < MAX_STARS; x++) {
  1094. door::Goto star_at(uni_x(rng), uni_y(rng));
  1095. door << star_at;
  1096. if (x % 5 < 2)
  1097. door << dark;
  1098. else
  1099. door << white;
  1100. if (x % 2 == 0)
  1101. door << stars[0];
  1102. else
  1103. door << stars[1];
  1104. }
  1105. }
  1106. }
  1107. void display_space_ace(door::Door &door) {
  1108. int mx = door.width;
  1109. int my = door.height;
  1110. // space_ace is 72 chars wide, 6 high
  1111. int sa_x = (mx - 72) / 2;
  1112. int sa_y = (my - 6) / 2;
  1113. // output the SpaceAce logo -- centered!
  1114. for (const auto s : space) {
  1115. door::Goto sa_at(sa_x, sa_y);
  1116. door << sa_at;
  1117. if (door::unicode) {
  1118. std::string unicode;
  1119. door::cp437toUnicode(s, unicode);
  1120. door << unicode; // << door::nl;
  1121. } else
  1122. door << s; // << door::nl;
  1123. sa_y++;
  1124. }
  1125. // pause 5 seconds so they can enjoy our awesome logo -- if they want.
  1126. door.sleep_key(5);
  1127. }
  1128. void display_starfield_space_ace(door::Door &door, std::mt19937 &rng) {
  1129. // mx = door.width;
  1130. // my = door.height;
  1131. display_starfield(door, rng);
  1132. display_space_ace(door);
  1133. door << door::reset;
  1134. }
  1135. door::Panel make_timeout(int mx, int my) {
  1136. door::ANSIColor yellowred =
  1137. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::RED, door::ATTR::BOLD);
  1138. std::string line_text("Sorry, you've been inactive for too long.");
  1139. int msgWidth = line_text.length() + (2 * 3); // + padding * 2
  1140. door::Panel timeout((mx - (msgWidth)) / 2, my / 2 + 4, msgWidth);
  1141. // place.setTitle(std::make_unique<door::Line>(title), 1);
  1142. timeout.setStyle(door::BorderStyle::DOUBLE);
  1143. timeout.setColor(yellowred);
  1144. door::Line base(line_text);
  1145. base.setColor(yellowred);
  1146. std::string pad1(3, ' ');
  1147. /*
  1148. std::string pad1(3, '\xb0');
  1149. if (door::unicode) {
  1150. std::string unicode;
  1151. door::cp437toUnicode(pad1.c_str(), unicode);
  1152. pad1 = unicode;
  1153. }
  1154. */
  1155. base.setPadding(pad1, yellowred);
  1156. // base.setColor(door::ANSIColor(door::COLOR::GREEN, door::COLOR::BLACK));
  1157. std::unique_ptr<door::Line> stuff = std::make_unique<door::Line>(base);
  1158. timeout.addLine(std::make_unique<door::Line>(base));
  1159. return timeout;
  1160. }
  1161. door::Panel make_notime(int mx, int my) {
  1162. door::ANSIColor yellowred =
  1163. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::RED, door::ATTR::BOLD);
  1164. std::string line_text("Sorry, you've used up all your time for today.");
  1165. int msgWidth = line_text.length() + (2 * 3); // + padding * 2
  1166. door::Panel timeout((mx - (msgWidth)) / 2, my / 2 + 4, msgWidth);
  1167. timeout.setStyle(door::BorderStyle::DOUBLE);
  1168. timeout.setColor(yellowred);
  1169. door::Line base(line_text);
  1170. base.setColor(yellowred);
  1171. std::string pad1(3, ' ');
  1172. /*
  1173. std::string pad1(3, '\xb0');
  1174. if (door::unicode) {
  1175. std::string unicode;
  1176. door::cp437toUnicode(pad1.c_str(), unicode);
  1177. pad1 = unicode;
  1178. }
  1179. */
  1180. base.setPadding(pad1, yellowred);
  1181. std::unique_ptr<door::Line> stuff = std::make_unique<door::Line>(base);
  1182. timeout.addLine(std::make_unique<door::Line>(base));
  1183. return timeout;
  1184. }
  1185. door::Menu make_main_menu(void) {
  1186. door::Menu m(5, 5, 25);
  1187. door::Line mtitle(SPACEACE " Main Menu");
  1188. door::ANSIColor border_color(door::COLOR::CYAN, door::COLOR::BLUE);
  1189. door::ANSIColor title_color(door::COLOR::CYAN, door::COLOR::BLUE,
  1190. door::ATTR::BOLD);
  1191. m.setColor(border_color);
  1192. mtitle.setColor(title_color);
  1193. mtitle.setPadding(" ", title_color);
  1194. m.setTitle(std::make_unique<door::Line>(mtitle), 1);
  1195. // m.setColorizer(true,
  1196. m.setRender(true, door::Menu::makeRender(
  1197. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1198. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD),
  1199. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1200. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD)));
  1201. // m.setColorizer(false,
  1202. m.setRender(false, door::Menu::makeRender(
  1203. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1204. door::ATTR::BOLD),
  1205. door::ANSIColor(door::COLOR::WHITE, door::COLOR::BLUE,
  1206. door::ATTR::BOLD),
  1207. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1208. door::ATTR::BOLD),
  1209. door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE,
  1210. door::ATTR::BOLD)));
  1211. m.addSelection('P', "Play Cards");
  1212. m.addSelection('S', "View Scores");
  1213. m.addSelection('C', "Configure");
  1214. m.addSelection('H', "Help");
  1215. m.addSelection('A', "About this game");
  1216. m.addSelection('Q', "Quit");
  1217. return m;
  1218. }
  1219. door::Menu make_config_menu(void) {
  1220. door::Menu m(5, 5, 31);
  1221. door::Line mtitle(SPACEACE " Configuration Menu");
  1222. door::ANSIColor border_color(door::COLOR::CYAN, door::COLOR::BLUE);
  1223. door::ANSIColor title_color(door::COLOR::CYAN, door::COLOR::BLUE,
  1224. door::ATTR::BOLD);
  1225. m.setColor(border_color);
  1226. mtitle.setColor(title_color);
  1227. mtitle.setPadding(" ", title_color);
  1228. m.setTitle(std::make_unique<door::Line>(mtitle), 1);
  1229. // m.setColorizer(true,
  1230. m.setRender(true, door::Menu::makeRender(
  1231. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1232. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD),
  1233. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1234. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD)));
  1235. // m.setColorizer(false,
  1236. m.setRender(false, door::Menu::makeRender(
  1237. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1238. door::ATTR::BOLD),
  1239. door::ANSIColor(door::COLOR::WHITE, door::COLOR::BLUE,
  1240. door::ATTR::BOLD),
  1241. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1242. door::ATTR::BOLD),
  1243. door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLUE,
  1244. door::ATTR::BOLD)));
  1245. m.addSelection('D', "Deck Colors");
  1246. m.addSelection('V', "View Settings");
  1247. m.addSelection('Q', "Quit");
  1248. return m;
  1249. }
  1250. /*
  1251. // all the possible deck colors
  1252. vector<std::string> deck_colors = {std::string("All"), std::string("Blue"),
  1253. std::string("Cyan"), std::string("Green"),
  1254. std::string("Magenta"), std::string("Red")};
  1255. */
  1256. door::Menu make_deck_menu(void) {
  1257. door::Menu m(5, 5, 31);
  1258. door::Line mtitle(SPACEACE " Deck Menu");
  1259. door::ANSIColor border_color(door::COLOR::CYAN, door::COLOR::BLUE);
  1260. door::ANSIColor title_color(door::COLOR::CYAN, door::COLOR::BLUE,
  1261. door::ATTR::BOLD);
  1262. m.setColor(border_color);
  1263. mtitle.setColor(title_color);
  1264. mtitle.setPadding(" ", title_color);
  1265. m.setTitle(std::make_unique<door::Line>(mtitle), 1);
  1266. m.setRender(true, makeColorsRender(
  1267. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD),
  1268. door::ANSIColor(door::COLOR::BLUE, door::ATTR::BOLD),
  1269. door::ANSIColor(door::COLOR::CYAN, door::ATTR::BOLD)));
  1270. m.setRender(false, makeColorsRender(
  1271. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1272. door::ATTR::BOLD),
  1273. door::ANSIColor(door::COLOR::WHITE, door::COLOR::BLUE,
  1274. door::ATTR::BOLD),
  1275. door::ANSIColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  1276. door::ATTR::BOLD)));
  1277. // build the menu options from the colors. First character = single letter
  1278. // option trigger.
  1279. for (auto iter = deck_colors.begin(); iter != deck_colors.end(); ++iter) {
  1280. char c = (*iter)[0];
  1281. m.addSelection(c, (*iter).c_str());
  1282. }
  1283. // This verifies the render routine is working great.
  1284. // Now, I just need to support multiple color selections like this.
  1285. // m.addSelection('S', "Yellow Red Blue Green Cyan");
  1286. /*
  1287. m.addSelection('A', "All");
  1288. m.addSelection('B', "Blue");
  1289. m.addSelection('C', "Cyan");
  1290. m.addSelection('G', "Green");
  1291. m.addSelection('M', "Magenta");
  1292. m.addSelection('R', "Red");
  1293. */
  1294. return m;
  1295. }