deck.cpp 38 KB

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