play.cpp 52 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675
  1. #include "play.h"
  2. #include "db.h"
  3. #include "deck.h"
  4. #include "utils.h"
  5. #include "version.h"
  6. #include <ctime>
  7. #include <iomanip> // put_time
  8. #include <sstream>
  9. /**
  10. * @brief This config option allow any card to be played on any other card.
  11. *
  12. * This is for testing BONUS and scoring, etc. This disables saving of streak.
  13. *
  14. */
  15. #define CHEATER "_CHEAT_YOUR_ASS_OFF"
  16. PlayCards::PlayCards(door::Door &d, DBData &dbd, std::mt19937 &r)
  17. : door{d}, db{dbd}, rng{r} {
  18. init_values();
  19. play_day = std::chrono::system_clock::now();
  20. normalizeDate(play_day);
  21. time_t play_day_t = std::chrono::system_clock::to_time_t(play_day);
  22. // check last_played
  23. time_t last_played;
  24. {
  25. std::string last_played_str = dbd.getSetting("last_played", "0");
  26. last_played = std::stoi(last_played_str);
  27. std::string days_played_str = dbd.getSetting("days_played", "0");
  28. days_played = std::stoi(days_played_str);
  29. }
  30. if (last_played != play_day_t) {
  31. // Ok, they haven't played today, so:
  32. get_logger() << "reset days_played = 0" << std::endl;
  33. dbd.setSetting("last_played", std::to_string(play_day_t));
  34. dbd.setSetting("days_played", std::to_string(0));
  35. days_played = 0;
  36. }
  37. /*
  38. * TODO: Check the date with the db. Have they already played up today? If
  39. * so, display calendar and find a day they can play. Or, play missed hands
  40. * for today.
  41. */
  42. hand = 0;
  43. total_hands = 0;
  44. spaceAceTriPeaks = make_tripeaks();
  45. score_panel = make_score_panel();
  46. streak_panel = make_streak_panel();
  47. left_panel = make_left_panel();
  48. cmd_panel = make_command_panel();
  49. next_quit_panel = make_next_panel();
  50. calendar = make_calendar();
  51. /*
  52. int mx = door.width;
  53. int my = door.height;
  54. */
  55. }
  56. PlayCards::~PlayCards() {}
  57. void PlayCards::init_values(void) {
  58. // beware of hand=1 ! We might not be playing the first hand here!
  59. // hand = 1;
  60. if (config["hands_per_day"]) {
  61. total_hands = config["hands_per_day"].as<int>();
  62. } else
  63. total_hands = 3;
  64. play_card = 28;
  65. current_streak = 0;
  66. best_streak = 0;
  67. {
  68. std::string best;
  69. best = db.getSetting("best_streak", "0");
  70. best_streak = std::stoi(best);
  71. }
  72. select_card = 23;
  73. score = 0;
  74. }
  75. /**
  76. * @brief Display the bonus text, when you remove a peak.
  77. *
  78. */
  79. void PlayCards::bonus(void) {
  80. door << door::ANSIColor(door::COLOR::YELLOW, door::ATTR::BOLD) << "BONUS";
  81. }
  82. int PlayCards::press_a_key(void) {
  83. door << door::reset << "Press a key to continue...";
  84. int r = door.sleep_key(door.inactivity);
  85. door << door::nl;
  86. return r;
  87. }
  88. /**
  89. * @brief Play
  90. *
  91. * This will display the calendar (if needed), otherwise takes player into
  92. * play_cards using now() as play_day.
  93. * \sa PlayCards::play_cards()
  94. *
  95. * @return int
  96. */
  97. int PlayCards::play(void) {
  98. play_day = std::chrono::system_clock::now();
  99. normalizeDate(play_day);
  100. if (config["hands_per_day"]) {
  101. total_hands = config["hands_per_day"].as<int>();
  102. } else
  103. total_hands = 3;
  104. // check to see if played already today
  105. time_t play_day_t = std::chrono::system_clock::to_time_t(play_day);
  106. int played = db.handsPlayedOnDay(play_day_t);
  107. #ifdef DEBUG_OUTPUT
  108. if (get_logger) {
  109. get_logger() << "played today (" << play_day_t << ")= " << played
  110. << std::endl;
  111. }
  112. #endif
  113. int r;
  114. if (played == 0) {
  115. // playing today
  116. door << "Let's play today..." << door::nl;
  117. std::this_thread::sleep_for(std::chrono::seconds(1));
  118. hand = 1;
  119. r = play_cards();
  120. if (r != 'D')
  121. return r;
  122. } else {
  123. if (played < total_hands) {
  124. door << "Let's finish today..." << door::nl;
  125. std::this_thread::sleep_for(std::chrono::seconds(1));
  126. hand = played + 1;
  127. r = play_cards();
  128. if (r != 'D')
  129. return r;
  130. }
  131. }
  132. // Ok, we need to select a day.
  133. std::unique_ptr<door::Screen> calendar = make_calendar();
  134. if (false) {
  135. CALENDAR_UPDATE:
  136. if (get_logger) {
  137. get_logger() << "update calendar days" << std::endl;
  138. }
  139. update_calendar_days();
  140. calendar->update();
  141. }
  142. if (cls_display_starfield)
  143. cls_display_starfield();
  144. else
  145. door << door::reset << door::cls;
  146. door << *calendar;
  147. bool has_playable_day = false;
  148. for (int x = 0; x < 31; ++x) {
  149. int status = calendar_day_status[x];
  150. if ((status == 0) or (status == 1)) {
  151. has_playable_day = true;
  152. break;
  153. }
  154. }
  155. if (!has_playable_day) {
  156. door << door::nl;
  157. door << "Sorry, there are no days available to play." << door::nl;
  158. r = press_a_key();
  159. if (r < 0)
  160. return r;
  161. return 'Q';
  162. }
  163. door << door::nl;
  164. door << "Please choose day : " << door::SaveCursor;
  165. AGAIN:
  166. std::string toplay = door.input_string(3);
  167. door << door::RestoreCursor;
  168. int number;
  169. try {
  170. number = std::stoi(toplay);
  171. } catch (std::exception &e) {
  172. number = 0;
  173. }
  174. if (number == 0)
  175. return ' ';
  176. int status;
  177. if (number <= 31) {
  178. status = calendar_day_status[number - 1];
  179. if (status == 0) {
  180. // play full day -- how do I figure out the date for this?
  181. hand = 1;
  182. play_day_t = calendar_day_t[number - 1];
  183. play_day = std::chrono::system_clock::from_time_t(play_day_t);
  184. r = play_cards();
  185. if (r == 'D')
  186. goto CALENDAR_UPDATE;
  187. return r;
  188. }
  189. if (status == 1) {
  190. // play half day
  191. play_day_t = calendar_day_t[number - 1];
  192. play_day = std::chrono::system_clock::from_time_t(play_day_t);
  193. played = db.handsPlayedOnDay(play_day_t);
  194. if (played < total_hands) {
  195. hand = played + 1;
  196. r = play_cards();
  197. if (r == 'D')
  198. goto CALENDAR_UPDATE;
  199. return r;
  200. }
  201. }
  202. goto AGAIN;
  203. };
  204. return ' ';
  205. }
  206. /**
  207. * @brief play_cards
  208. *
  209. * Play cards for the given play_day and hand.
  210. *
  211. * This should be called by play with the correct #play_day set.
  212. * \sa PlayCards::play()
  213. *
  214. * @return int
  215. */
  216. int PlayCards::play_cards(void) {
  217. init_values();
  218. // Calculate the game size
  219. int game_width;
  220. int game_height = 20;
  221. {
  222. int cx, cy;
  223. cardPos(27, cx, cy);
  224. game_width = cx + 5;
  225. }
  226. int mx = door.width;
  227. int my = door.height;
  228. off_x = (mx - game_width) / 2;
  229. off_y = (my - game_height) / 2;
  230. // int true_off_y = off_y;
  231. // we can now position things properly centered
  232. int tp_off_x = (mx - spaceAceTriPeaks->getWidth()) / 2;
  233. spaceAceTriPeaks->set(tp_off_x, off_y);
  234. off_y += 3; // adjust for tripeaks panel
  235. next_hand:
  236. // Make sure we pick the deck color here. We want it to (possibly) change
  237. // between hands.
  238. std::string currentDefault = db.getSetting("DeckColor", "ALL");
  239. get_logger() << "DeckColor shows as " << currentDefault << std::endl;
  240. deck_color = stringToANSIColor(currentDefault);
  241. dp = Deck(deck_color);
  242. play_card = 28;
  243. select_card = 23;
  244. score = 0;
  245. current_streak = 0;
  246. // Use play_day to seed the rng
  247. {
  248. time_t tt = std::chrono::system_clock::to_time_t(play_day);
  249. tm local_tm = *localtime(&tt);
  250. std::seed_seq seq{local_tm.tm_year + 1900, local_tm.tm_mon + 1,
  251. local_tm.tm_mday, hand};
  252. deck = shuffleCards(seq, 1);
  253. state = makeCardStates();
  254. }
  255. /*
  256. door::Panel score_panel = make_score_panel();
  257. door::Panel streak_panel = make_streak_panel();
  258. door::Panel left_panel = make_left_panel();
  259. door::Panel cmd_panel = make_command_panel();
  260. */
  261. {
  262. int off_yp = off_y + 11;
  263. int cx, cy;
  264. int left_panel_x, right_panel_x;
  265. // find position of card, to position the panels
  266. cardPos(18, cx, cy);
  267. left_panel_x = cx;
  268. cardPos(15, cx, cy);
  269. right_panel_x = cx;
  270. score_panel->set(left_panel_x + off_x, off_yp);
  271. streak_panel->set(right_panel_x + off_x, off_yp);
  272. cmd_panel->set(left_panel_x + off_x, off_yp + 5);
  273. // next panel position (top = card 10, centered)
  274. cardPos(10, cx, cy);
  275. int next_off_x = (mx - next_quit_panel->getWidth()) / 2;
  276. next_quit_panel->set(next_off_x, cy + off_y);
  277. }
  278. bool dealing = true;
  279. int r = 0;
  280. redraw(dealing);
  281. dealing = false;
  282. left_panel->update(door);
  283. door << door::reset;
  284. shared_panel c;
  285. bool in_game = true;
  286. bool save_streak = false;
  287. while (in_game) {
  288. // time might have updated, so update score panel too.
  289. score_panel->update(door);
  290. // do the save here -- try to hide the database lag
  291. if (save_streak) {
  292. save_streak = false;
  293. std::string best = std::to_string(best_streak);
  294. db.setSetting("best_streak", best);
  295. }
  296. r = door.sleep_key(door.inactivity);
  297. if (r > 0) {
  298. // not a timeout or expire.
  299. if (r < 0x1000) // not a function key
  300. r = std::toupper(r);
  301. switch (r) {
  302. case '\x0d':
  303. if (current_streak > best_streak) {
  304. best_streak = current_streak;
  305. if (!config[CHEATER]) {
  306. save_streak = true;
  307. }
  308. streak_panel->update(door);
  309. }
  310. if (play_card < 51) {
  311. play_card++;
  312. current_streak = 0;
  313. streak_panel->update(door);
  314. // update the cards left_panel
  315. left_panel->update(door);
  316. // Ok, deal next card from the pile.
  317. int cx, cy, level;
  318. if (play_card == 51) {
  319. cardPosLevel(29, cx, cy, level);
  320. level = 0; // out of cards
  321. c = dp.back(level);
  322. c->set(cx + off_x, cy + off_y);
  323. door << *c;
  324. }
  325. cardPos(28, cx, cy);
  326. c = dp.card(deck.at(play_card));
  327. c->set(cx + off_x, cy + off_y);
  328. door << *c;
  329. }
  330. break;
  331. case 'R':
  332. redraw(false);
  333. break;
  334. case 'Q':
  335. // possibly prompt here for [N]ext hand or [Q]uit ?
  336. if (current_streak > best_streak) {
  337. best_streak = current_streak;
  338. if (!config[CHEATER]) {
  339. save_streak = true;
  340. }
  341. streak_panel->update(door);
  342. }
  343. next_quit_panel->update();
  344. door << *next_quit_panel;
  345. // use some other variable here for what we get from the get_one_of.
  346. if (hand < total_hands) {
  347. r = door.get_one_of("CNQ");
  348. } else {
  349. r = door.get_one_of("CDQ");
  350. }
  351. if (r == 'C') {
  352. // continue
  353. redraw(false);
  354. break;
  355. }
  356. if ((r == 'D') or (r == 'Q')) {
  357. // Ok, we are calling it quits.
  358. // save score if > 0
  359. if (score >= 50) {
  360. time_t right_now = std::chrono::system_clock::to_time_t(
  361. std::chrono::system_clock::now());
  362. db.saveScore(right_now,
  363. std::chrono::system_clock::to_time_t(play_day), hand,
  364. 0, score);
  365. }
  366. in_game = false;
  367. // r = 'Q';
  368. }
  369. if (r == 'N') {
  370. // no. If you want to play the next hand, we have to save this.
  371. get_logger() << "SCORE: " << score << std::endl;
  372. time_t right_now = std::chrono::system_clock::to_time_t(
  373. std::chrono::system_clock::now());
  374. db.saveScore(right_now,
  375. std::chrono::system_clock::to_time_t(play_day), hand, 0,
  376. score);
  377. hand++;
  378. goto next_hand;
  379. }
  380. // in_game = false;
  381. break;
  382. case ' ':
  383. case '5':
  384. // can we play this card?
  385. /*
  386. get_logger() << "canPlay( " << select_card << ":"
  387. << deck1.at(select_card) << "/"
  388. << d.getRank(deck1.at(select_card)) << " , "
  389. << play_card << "/" <<
  390. d.getRank(deck1.at(play_card))
  391. << ") = "
  392. << d.canPlay(deck1.at(select_card),
  393. deck1.at(play_card))
  394. << std::endl;
  395. */
  396. if (dp.canPlay(deck.at(select_card), deck.at(play_card)) or
  397. config[CHEATER]) {
  398. // if (true) {
  399. // yes we can.
  400. ++current_streak;
  401. // update best_streak when they draw the next card.
  402. /*
  403. if (current_streak > best_streak) {
  404. best_streak = current_streak;
  405. if (!config[CHEATER]) {
  406. save_streak = true;
  407. }
  408. }
  409. */
  410. streak_panel->update(door);
  411. score += 10;
  412. if (current_streak > 1)
  413. score += current_streak * 5;
  414. score_panel->update(door);
  415. /*
  416. if (get_logger)
  417. get_logger() << "score_panel update : " << score << std::endl;
  418. */
  419. // play card!
  420. state.at(select_card) = 2;
  421. {
  422. // swap the select card with play_card
  423. int temp = deck.at(select_card);
  424. deck.at(select_card) = deck.at(play_card);
  425. deck.at(play_card) = temp;
  426. // select_card is -- invalidated here! find "new" card.
  427. int cx, cy;
  428. // erase/clear select_card
  429. std::vector<int> check = dp.unblocks(select_card);
  430. bool left = false, right = false;
  431. for (const int c : check) {
  432. std::pair<int, int> blockers = dp.blocks[c];
  433. if (blockers.first == select_card)
  434. right = true;
  435. if (blockers.second == select_card)
  436. left = true;
  437. }
  438. dp.removeCard(door, select_card, off_x, off_y, left, right);
  439. /* // old way of doing this that leaves holes.
  440. cardPosLevel(select_card, cx, cy, level);
  441. c = d.back(0);
  442. c->set(cx + off_x, cy + off_y);
  443. door << *c;
  444. */
  445. // redraw play card #28. (Which is the "old" select_card)
  446. cardPos(28, cx, cy);
  447. c = dp.card(deck.at(play_card));
  448. c->set(cx + off_x, cy + off_y);
  449. door << *c;
  450. // Did we unhide a card here?
  451. // std::vector<int> check = d.unblocks(select_card);
  452. /*
  453. get_logger() << "select_card = " << select_card
  454. << " unblocks: " << check.size() << std::endl;
  455. */
  456. int new_card_shown = -1;
  457. if (!check.empty()) {
  458. for (const int to_check : check) {
  459. std::pair<int, int> blockers = dp.blocks[to_check];
  460. /*
  461. get_logger()
  462. << "Check: " << to_check << " " << blockers.first << ","
  463. << blockers.second << " " << state.at(blockers.first)
  464. << "," << state.at(blockers.second) << std::endl;
  465. */
  466. if ((state.at(blockers.first) == 2) and
  467. (state.at(blockers.second) == 2)) {
  468. // WOOT! Card uncovered.
  469. /*
  470. get_logger() << "showing: " << to_check << std::endl;
  471. */
  472. state.at(to_check) = 1;
  473. cardPos(to_check, cx, cy);
  474. c = dp.card(deck.at(to_check));
  475. c->set(cx + off_x, cy + off_y);
  476. door << *c;
  477. new_card_shown = to_check;
  478. }
  479. }
  480. } else {
  481. // top card cleared
  482. // get_logger() << "top card cleared?" << std::endl;
  483. // display something at select_card position
  484. int cx, cy;
  485. cardPos(select_card, cx, cy);
  486. door << door::Goto(cx + off_x, cy + off_y);
  487. bonus();
  488. score += 100;
  489. state.at(select_card) = 3; // handle this in the "redraw"
  490. score_panel->update(door);
  491. }
  492. // Find new "number" for select_card to be.
  493. if (new_card_shown != -1) {
  494. select_card = new_card_shown;
  495. } else {
  496. // select_card++;
  497. int new_select = findClosestActiveCard(state, select_card);
  498. if (new_select != -1) {
  499. select_card = new_select;
  500. } else {
  501. get_logger() << "Winner!" << std::endl;
  502. select_card = -1; // winner marker?
  503. // bonus for cards left
  504. int bonus = 15 * (51 - play_card);
  505. score += 15 * (51 - play_card);
  506. score_panel->update(door);
  507. // maybe display this somewhere?
  508. // door << " BONUS: " << bonus << door::nl;
  509. get_logger()
  510. << "SCORE: " << score << ", " << bonus << std::endl;
  511. // if (!config[CHEATER]) {
  512. time_t right_now = std::chrono::system_clock::to_time_t(
  513. std::chrono::system_clock::now());
  514. db.saveScore(right_now,
  515. std::chrono::system_clock::to_time_t(play_day),
  516. hand, 1, score);
  517. //}
  518. next_quit_panel->update();
  519. door << *next_quit_panel;
  520. if (hand < total_hands) {
  521. r = door.get_one_of("NQ");
  522. } else {
  523. r = door.get_one_of("DQ");
  524. }
  525. if (r == 'N') {
  526. hand++;
  527. goto next_hand;
  528. }
  529. in_game = false;
  530. if (r == 'D') {
  531. // done?
  532. // maybe r = 'Q'; ?
  533. }
  534. if (r == 'Q') {
  535. r = 'Q';
  536. }
  537. /*
  538. press_a_key(door);
  539. if (hand < total_hands) {
  540. hand++;
  541. // current_streak = 0;
  542. door << door::reset << door::cls;
  543. goto next_hand;
  544. }
  545. r = 'Q';
  546. */
  547. // in_game = false;
  548. }
  549. }
  550. // update the select_card marker!
  551. cardPos(select_card, cx, cy);
  552. c = dp.marker(1);
  553. c->set(cx + off_x + 2, cy + off_y + 2);
  554. door << *c;
  555. }
  556. }
  557. break;
  558. case XKEY_LEFT_ARROW:
  559. case '4': {
  560. int new_select = findNextActiveCard(true, state, select_card);
  561. /*
  562. int new_active = active_card - 1;
  563. while (new_active >= 0) {
  564. if (state.at(new_active) == 1)
  565. break;
  566. --new_active;
  567. }*/
  568. if (new_select >= 0) {
  569. int cx, cy;
  570. cardPos(select_card, cx, cy);
  571. c = dp.marker(0);
  572. c->set(cx + off_x + 2, cy + off_y + 2);
  573. door << *c;
  574. select_card = new_select;
  575. cardPos(select_card, cx, cy);
  576. c = dp.marker(1);
  577. c->set(cx + off_x + 2, cy + off_y + 2);
  578. door << *c;
  579. }
  580. } break;
  581. case XKEY_RIGHT_ARROW:
  582. case '6': {
  583. int new_select = findNextActiveCard(false, state, select_card);
  584. /*
  585. int new_active = active_card + 1;
  586. while (new_active < 28) {
  587. if (state.at(new_active) == 1)
  588. break;
  589. ++new_active;
  590. }
  591. */
  592. if (new_select >= 0) { //(new_active < 28) {
  593. int cx, cy;
  594. cardPos(select_card, cx, cy);
  595. c = dp.marker(0);
  596. c->set(cx + off_x + 2, cy + off_y + 2);
  597. door << *c;
  598. select_card = new_select;
  599. cardPos(select_card, cx, cy);
  600. c = dp.marker(1);
  601. c->set(cx + off_x + 2, cy + off_y + 2);
  602. door << *c;
  603. }
  604. }
  605. break;
  606. }
  607. } else
  608. in_game = false;
  609. }
  610. if (r == 'Q') {
  611. // continue, play next hand (if applicable), or quit?
  612. // if score < 50, don't bother saving.
  613. // continue -- eat r & redraw.
  614. // quit, save score and exit (unless score is zero).
  615. }
  616. return r;
  617. }
  618. /**
  619. * @brief Redraw the entire play cards screen.
  620. *
  621. * If dealing then show delays when displaying cards, or turning them over.
  622. *
  623. * Otherwise, the user has requested a redraw -- and don't delay.
  624. *
  625. * @param dealing
  626. */
  627. void PlayCards::redraw(bool dealing) {
  628. shared_panel c;
  629. display_starfield(door, rng);
  630. // door << door::reset << door::cls;
  631. door << *spaceAceTriPeaks;
  632. {
  633. // step 1:
  634. // draw the deck "source"
  635. int cx, cy, level;
  636. cardPosLevel(29, cx, cy, level);
  637. if (play_card == 51)
  638. level = 0; // out of cards!
  639. c = dp.back(level);
  640. c->set(cx + off_x, cy + off_y);
  641. // p3 is heigh below
  642. left_panel->set(cx + off_x, cy + off_y + height);
  643. // how do I update these? (hand >1)
  644. score_panel->update();
  645. left_panel->update();
  646. streak_panel->update();
  647. cmd_panel->update();
  648. door << *score_panel << *left_panel << *streak_panel << *cmd_panel;
  649. door << *c;
  650. if (dealing)
  651. std::this_thread::sleep_for(std::chrono::seconds(1));
  652. }
  653. for (int x = 0; x < (dealing ? 28 : 29); x++) {
  654. int cx, cy, level;
  655. cardPosLevel(x, cx, cy, level);
  656. // This is hardly visible.
  657. // door << door::Goto(cx + off_x - 1, cy + off_y + 1);
  658. if (dealing)
  659. std::this_thread::sleep_for(std::chrono::milliseconds(75));
  660. if (dealing) {
  661. c = dp.back(level);
  662. c->set(cx + off_x, cy + off_y);
  663. door << *c;
  664. } else {
  665. // redrawing -- draw the cards with their correct "state"
  666. int s = state.at(x);
  667. switch (s) {
  668. case 0:
  669. c = dp.back(level);
  670. c->set(cx + off_x, cy + off_y);
  671. door << *c;
  672. break;
  673. case 1:
  674. // cardPosLevel(x, space, height, cx, cy, level);
  675. if (x == 28)
  676. c = dp.card(deck.at(play_card));
  677. else
  678. c = dp.card(deck.at(x));
  679. c->set(cx + off_x, cy + off_y);
  680. door << *c;
  681. break;
  682. case 2:
  683. // no card to draw. :)
  684. break;
  685. case 3:
  686. // peak cleared, draw bonus
  687. door << door::Goto(cx + off_x, cy + off_y);
  688. bonus();
  689. break;
  690. }
  691. }
  692. }
  693. if (dealing)
  694. for (int x = 18; x < 29; x++) {
  695. int cx, cy;
  696. state.at(x) = 1;
  697. cardPos(x, cx, cy);
  698. // door << door::Goto(cx + off_x - 1, cy + off_y + 1);
  699. std::this_thread::sleep_for(std::chrono::milliseconds(200));
  700. c = dp.card(deck.at(x));
  701. c->set(cx + off_x, cy + off_y);
  702. door << *c;
  703. }
  704. {
  705. int cx, cy;
  706. cardPos(select_card, cx, cy);
  707. c = dp.marker(1);
  708. c->set(cx + off_x + 2, cy + off_y + 2);
  709. door << *c;
  710. }
  711. }
  712. door::renderFunction statusValue(door::ANSIColor status,
  713. door::ANSIColor value) {
  714. door::renderFunction rf = [status,
  715. value](const std::string &txt) -> door::Render {
  716. door::Render r(txt);
  717. size_t pos = txt.find(':');
  718. if (pos == std::string::npos) {
  719. for (char const &c : txt) {
  720. if (std::isdigit(c))
  721. r.append(value);
  722. else
  723. r.append(status);
  724. }
  725. } else {
  726. pos++;
  727. r.append(status, pos);
  728. r.append(value, txt.length() - pos);
  729. }
  730. return r;
  731. };
  732. return rf;
  733. }
  734. /**
  735. * @brief make the score panel
  736. * This displays: Name, Score, Time Used, Hands Played.
  737. *
  738. * @return std::unique_ptr<door::Panel>
  739. */
  740. std::unique_ptr<door::Panel> PlayCards::make_score_panel() {
  741. const int W = 25;
  742. std::unique_ptr<door::Panel> p = std::make_unique<door::Panel>(W);
  743. p->setStyle(door::BorderStyle::NONE);
  744. door::ANSIColor statusColor(door::COLOR::WHITE, door::COLOR::BLUE,
  745. door::ATTR::BOLD);
  746. door::ANSIColor valueColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  747. door::ATTR::BOLD);
  748. door::renderFunction svRender = statusValue(statusColor, valueColor);
  749. // or use renderStatus as defined above.
  750. // We'll stick with these for now.
  751. {
  752. std::string userString = "Name: ";
  753. userString += door.username;
  754. std::unique_ptr<door::Line> username =
  755. std::make_unique<door::Line>(userString, W);
  756. username->setRender(svRender);
  757. p->addLine(std::move(username));
  758. }
  759. {
  760. door::updateFunction scoreUpdate = [this](void) -> std::string {
  761. std::string text = "Score: ";
  762. text.append(std::to_string(score));
  763. return text;
  764. };
  765. std::string scoreString = scoreUpdate();
  766. std::unique_ptr<door::Line> scoreline =
  767. std::make_unique<door::Line>(scoreString, W);
  768. scoreline->setRender(svRender);
  769. scoreline->setUpdater(scoreUpdate);
  770. p->addLine(std::move(scoreline));
  771. }
  772. {
  773. door::updateFunction timeUpdate = [this](void) -> std::string {
  774. std::stringstream ss;
  775. std::string text;
  776. ss << "Time used: " << setw(3) << door.time_used << " / " << setw(3)
  777. << door.time_left;
  778. text = ss.str();
  779. return text;
  780. };
  781. std::string timeString = timeUpdate();
  782. door::Line time(timeString, W);
  783. time.setRender(svRender);
  784. time.setUpdater(timeUpdate);
  785. p->addLine(std::make_unique<door::Line>(time));
  786. }
  787. {
  788. door::updateFunction handUpdate = [this](void) -> std::string {
  789. std::string text = "Playing Hand ";
  790. text.append(std::to_string(hand));
  791. text.append(" of ");
  792. text.append(std::to_string(total_hands));
  793. return text;
  794. };
  795. std::string handString = handUpdate();
  796. door::Line hands(handString, W);
  797. hands.setRender(svRender);
  798. hands.setUpdater(handUpdate);
  799. p->addLine(std::make_unique<door::Line>(hands));
  800. }
  801. return p;
  802. }
  803. std::unique_ptr<door::Panel> PlayCards::make_streak_panel(void) {
  804. const int W = 20;
  805. std::unique_ptr<door::Panel> p = std::make_unique<door::Panel>(W);
  806. p->setStyle(door::BorderStyle::NONE);
  807. door::ANSIColor statusColor(door::COLOR::WHITE, door::COLOR::BLUE,
  808. door::ATTR::BOLD);
  809. door::ANSIColor valueColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  810. door::ATTR::BOLD);
  811. door::renderFunction svRender = statusValue(statusColor, valueColor);
  812. {
  813. door::updateFunction dateUpdate = [this](void) -> std::string {
  814. std::string text = "Playing: ";
  815. auto in_time_t = std::chrono::system_clock::to_time_t(play_day);
  816. std::stringstream ss;
  817. if (config["date_format"]) {
  818. std::string fmt = config["date_format"].as<std::string>();
  819. ss << std::put_time(std::localtime(&in_time_t), fmt.c_str());
  820. } else
  821. ss << std::put_time(std::localtime(&in_time_t), "%B %d");
  822. text.append(ss.str());
  823. return text;
  824. };
  825. std::string text = dateUpdate();
  826. door::Line current(text, W);
  827. current.setRender(svRender);
  828. current.setUpdater(dateUpdate);
  829. p->addLine(std::make_unique<door::Line>(current));
  830. }
  831. {
  832. door::updateFunction currentUpdate = [this](void) -> std::string {
  833. std::string text = "Current Streak: ";
  834. text.append(std::to_string(current_streak));
  835. return text;
  836. };
  837. std::string currentString = currentUpdate();
  838. door::Line current(currentString, W);
  839. current.setRender(svRender);
  840. current.setUpdater(currentUpdate);
  841. p->addLine(std::make_unique<door::Line>(current));
  842. }
  843. {
  844. door::updateFunction currentUpdate = [this](void) -> std::string {
  845. std::string text = "Longest Streak: ";
  846. text.append(std::to_string(best_streak));
  847. return text;
  848. };
  849. std::string currentString = currentUpdate();
  850. door::Line current(currentString, W);
  851. current.setRender(svRender);
  852. current.setUpdater(currentUpdate);
  853. p->addLine(std::make_unique<door::Line>(current));
  854. }
  855. return p;
  856. }
  857. std::unique_ptr<door::Panel> PlayCards::make_left_panel(void) {
  858. const int W = 13;
  859. std::unique_ptr<door::Panel> p = std::make_unique<door::Panel>(W);
  860. p->setStyle(door::BorderStyle::NONE);
  861. door::ANSIColor statusColor(door::COLOR::WHITE, door::COLOR::BLUE,
  862. door::ATTR::BOLD);
  863. door::ANSIColor valueColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  864. door::ATTR::BOLD);
  865. door::renderFunction svRender = statusValue(statusColor, valueColor);
  866. {
  867. door::updateFunction cardsleftUpdate = [this](void) -> std::string {
  868. std::string text = "Cards left:";
  869. text.append(std::to_string(51 - play_card));
  870. return text;
  871. };
  872. std::string cardsleftString = "Cards left:--";
  873. door::Line cardsleft(cardsleftString, W);
  874. cardsleft.setRender(svRender);
  875. cardsleft.setUpdater(cardsleftUpdate);
  876. p->addLine(std::make_unique<door::Line>(cardsleft));
  877. }
  878. return p;
  879. }
  880. door::renderFunction commandLineRender(door::ANSIColor bracket,
  881. door::ANSIColor inner,
  882. door::ANSIColor outer) {
  883. door::renderFunction rf = [bracket, inner,
  884. outer](const std::string &txt) -> door::Render {
  885. door::Render r(txt);
  886. bool inOuter = true;
  887. for (char const &c : txt) {
  888. if (c == '[') {
  889. inOuter = false;
  890. r.append(bracket);
  891. continue;
  892. }
  893. if (c == ']') {
  894. inOuter = true;
  895. r.append(bracket);
  896. continue;
  897. }
  898. if (inOuter)
  899. r.append(outer);
  900. else
  901. r.append(inner);
  902. }
  903. return r;
  904. };
  905. return rf;
  906. }
  907. std::unique_ptr<door::Panel> PlayCards::make_command_panel(void) {
  908. const int W = 76;
  909. std::unique_ptr<door::Panel> p = make_unique<door::Panel>(W);
  910. p->setStyle(door::BorderStyle::NONE);
  911. std::string commands;
  912. if (door::unicode) {
  913. commands = "[4/\u25c4] Left [6/\u25ba] Right [Space] Play Card [Enter] "
  914. "Draw [Q]uit "
  915. "[R]edraw [H]elp";
  916. } else {
  917. commands =
  918. "[4/\x11] Left [6/\x10] Right [Space] Play Card [Enter] Draw [Q]uit "
  919. "[R]edraw [H]elp";
  920. }
  921. door::ANSIColor bracketColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  922. door::ATTR::BOLD);
  923. door::ANSIColor outerColor(door::COLOR::CYAN, door::COLOR::BLUE,
  924. door::ATTR::BOLD);
  925. door::ANSIColor innerColor(door::COLOR::GREEN, door::COLOR::BLUE,
  926. door::ATTR::BOLD);
  927. door::renderFunction cmdRender =
  928. commandLineRender(bracketColor, innerColor, outerColor);
  929. door::Line cmd(commands, W);
  930. cmd.setRender(cmdRender);
  931. p->addLine(std::make_unique<door::Line>(cmd));
  932. return p;
  933. }
  934. std::unique_ptr<door::Panel> PlayCards::make_next_panel(void) {
  935. const int W = 50; // 50;
  936. std::unique_ptr<door::Panel> p = make_unique<door::Panel>(W);
  937. door::ANSIColor panelColor(door::COLOR::YELLOW, door::COLOR::GREEN,
  938. door::ATTR::BOLD);
  939. p->setStyle(door::BorderStyle::DOUBLE);
  940. p->setColor(panelColor);
  941. door::updateFunction nextUpdate = [this](void) -> std::string {
  942. std::string text;
  943. if (select_card != -1)
  944. text = "[C]ontinue this hand";
  945. if (hand < total_hands)
  946. text += " [N]ext Hand [Q]uit";
  947. else
  948. text += " [D]one [Q]uit";
  949. return text;
  950. };
  951. std::string text;
  952. text = nextUpdate();
  953. door::ANSIColor bracketColor(door::COLOR::YELLOW, door::COLOR::BLUE,
  954. door::ATTR::BOLD);
  955. door::ANSIColor innerColor(door::COLOR::CYAN, door::COLOR::BLUE,
  956. door::ATTR::BOLD);
  957. door::ANSIColor outerColor(door::COLOR::GREEN, door::COLOR::BLUE,
  958. door::ATTR::BOLD);
  959. door::renderFunction textRender =
  960. commandLineRender(bracketColor, innerColor, outerColor);
  961. door::Line nextLine(text, W);
  962. nextLine.setRender(textRender);
  963. nextLine.setPadding(" ", panelColor);
  964. nextLine.setUpdater(nextUpdate);
  965. nextLine.fit();
  966. p->addLine(std::make_unique<door::Line>(nextLine));
  967. return p;
  968. }
  969. std::unique_ptr<door::Panel> PlayCards::make_tripeaks(void) {
  970. std::string tripeaksText(" " SPACEACE
  971. " - Tri-Peaks Solitaire v" SPACEACE_VERSION " ");
  972. std::unique_ptr<door::Panel> spaceAceTriPeaks =
  973. std::make_unique<door::Panel>(tripeaksText.size());
  974. spaceAceTriPeaks->setStyle(door::BorderStyle::SINGLE);
  975. spaceAceTriPeaks->setColor(
  976. door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLACK));
  977. spaceAceTriPeaks->addLine(
  978. std::make_unique<door::Line>(tripeaksText, tripeaksText.size()));
  979. return spaceAceTriPeaks;
  980. }
  981. std::unique_ptr<door::Panel> PlayCards::make_month(std::string month) {
  982. const int W = 3;
  983. std::unique_ptr<door::Panel> p = make_unique<door::Panel>(W);
  984. door::ANSIColor panelColor(door::COLOR::YELLOW, door::COLOR::BLACK,
  985. door::ATTR::BOLD);
  986. p->setStyle(door::BorderStyle::DOUBLE);
  987. p->setColor(panelColor);
  988. for (auto c : month) {
  989. std::string text = " ";
  990. text += c;
  991. text += " ";
  992. door::Line line(text);
  993. p->addLine(std::make_unique<door::Line>(line));
  994. }
  995. return p;
  996. }
  997. std::unique_ptr<door::Panel> PlayCards::make_weekdays(void) {
  998. const int W = 41;
  999. std::string text = " SUN MON TUE WED THU FRI SAT ";
  1000. std::unique_ptr<door::Panel> p = make_unique<door::Panel>(W);
  1001. door::ANSIColor panelColor(door::COLOR::CYAN, door::COLOR::BLACK,
  1002. door::ATTR::BOLD);
  1003. p->setStyle(door::BorderStyle::DOUBLE);
  1004. p->setColor(panelColor);
  1005. door::Line line(text);
  1006. p->addLine(std::make_unique<door::Line>(line));
  1007. return p;
  1008. }
  1009. std::unique_ptr<door::Panel> PlayCards::make_calendar_panel(void) {
  1010. const int W = 41;
  1011. std::unique_ptr<door::Panel> p = make_unique<door::Panel>(W);
  1012. p->setStyle(door::BorderStyle::DOUBLE);
  1013. p->setColor(door::ANSIColor(door::COLOR::CYAN, door::COLOR::BLACK));
  1014. door::renderFunction calendarRender =
  1015. [](const std::string &txt) -> door::Render {
  1016. door::Render r(txt);
  1017. // normal digits color
  1018. door::ANSIColor digits(door::COLOR::CYAN, door::COLOR::BLACK);
  1019. // digits/days that can be played
  1020. door::ANSIColor digits_play(door::COLOR::CYAN, door::COLOR::BLACK,
  1021. door::ATTR::BOLD);
  1022. // spaces color
  1023. door::ANSIColor spaces(door::COLOR::WHITE, door::COLOR::BLACK);
  1024. // o - open days
  1025. door::ANSIColor open(door::COLOR::GREEN, door::COLOR::BLACK,
  1026. door::ATTR::BOLD);
  1027. // h - hands can be played
  1028. door::ANSIColor hands(door::COLOR::YELLOW, door::COLOR::BLACK,
  1029. door::ATTR::BOLD);
  1030. // x - already played
  1031. door::ANSIColor full(door::COLOR::RED, door::COLOR::BLACK);
  1032. // u - No, Not Yet! unavailable
  1033. door::ANSIColor nny(door::COLOR::BLACK, door::COLOR::BLACK,
  1034. door::ATTR::BOLD);
  1035. int days;
  1036. /*
  1037. if (get_logger) {
  1038. get_logger() << "Line [" << txt << "]" << std::endl;
  1039. }
  1040. */
  1041. // B _ BBBB _ BBBB _ BBBB _ BBBB _ BBBB _ BBBB _ B
  1042. for (days = 0; days < 7; ++days) {
  1043. std::string dayText;
  1044. if (days == 0) {
  1045. r.append(spaces);
  1046. // dayText = txt.substr(1, 3);
  1047. } // else {
  1048. /*
  1049. if (get_logger)
  1050. get_logger() << days << " " << 1 + (days * 6) << std::endl;
  1051. */
  1052. dayText = txt.substr(1 + (days * 6), 3);
  1053. // }
  1054. /*
  1055. if (get_logger) {
  1056. get_logger() << days << " "
  1057. << "[" << dayText << "] " << std::endl;
  1058. }
  1059. */
  1060. if (dayText[1] == ' ') {
  1061. // Ok, nothing there!
  1062. r.append(spaces, 3);
  1063. } else {
  1064. // Something is there
  1065. char cday = dayText[2];
  1066. if ((cday == 'o') or (cday == 'h'))
  1067. r.append(digits_play, 2);
  1068. else
  1069. r.append(digits, 2);
  1070. switch (dayText[2]) {
  1071. case 'o':
  1072. r.append(open);
  1073. break;
  1074. case 'h':
  1075. r.append(hands);
  1076. break;
  1077. case 'x':
  1078. r.append(full);
  1079. break;
  1080. case 'u':
  1081. r.append(nny);
  1082. break;
  1083. }
  1084. }
  1085. if (days == 6)
  1086. r.append(spaces);
  1087. else
  1088. r.append(spaces, 3);
  1089. }
  1090. return r;
  1091. };
  1092. int row;
  1093. for (row = 0; row < 6; ++row) {
  1094. door::updateFunction calendarUpdate = [this, row]() -> std::string {
  1095. std::string text;
  1096. for (int d = 0; d < 7; ++d) {
  1097. text += " ";
  1098. int v = this->calendar_panel_days[(row * 7) + d];
  1099. if (v == 0)
  1100. text += " ";
  1101. else {
  1102. std::string number = std::to_string(v);
  1103. if (number.length() == 1)
  1104. text += " ";
  1105. text += number;
  1106. // Now, translate the status
  1107. int status = this->calendar_day_status[v - 1];
  1108. switch (status) {
  1109. case 0:
  1110. text += "o";
  1111. break;
  1112. case 1:
  1113. text += "h";
  1114. break;
  1115. case 2:
  1116. text += "x";
  1117. break;
  1118. case 3:
  1119. text += "u";
  1120. break;
  1121. }
  1122. }
  1123. if (d == 6)
  1124. text += " ";
  1125. else
  1126. text += " ";
  1127. }
  1128. return text;
  1129. };
  1130. std::string text;
  1131. text = calendarUpdate();
  1132. door::Line line(text, W);
  1133. line.setRender(calendarRender);
  1134. line.setUpdater(calendarUpdate);
  1135. p->addLine(std::make_unique<door::Line>(line));
  1136. }
  1137. return p;
  1138. }
  1139. /**
  1140. * @brief make calendar
  1141. * We assume the calendar is for this month now()
  1142. * Jaunary
  1143. * February
  1144. * March
  1145. * April
  1146. * May
  1147. * June
  1148. * July
  1149. * August
  1150. * September
  1151. * October
  1152. * November
  1153. * December
  1154. * 123456789012345678901234567890123456789012345678901234567890
  1155. * ▒▒░▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀░▒▒
  1156. * N ▒▒▌SUN MON TUE WED THU FRI SAT▐▒▒
  1157. * O ▒▒░───▄───▄───▄───▄───▄───▄───░▒▒
  1158. * V ▒▒▌ 1x│ 2x│ 3o│ 4o│ 5o│ 6o│ 7o▐▒▒ X = Day Completed
  1159. * E ▒▒▌ 8o│ 9x│10o│11o│12x│13x│14o▐▒▒ O = Day Playable
  1160. * M ▒▒▌15x│16u│17u│18u│19u│20u│21u▐▒▒ U = Day Unavailable
  1161. * B ▒▒▌22u│23u│24u│25u│26u│27u│28u▐▒▒ H = Day Uncompleted
  1162. * E ▒▒▌29u│30u│ │ │ │ │ ▐▒▒
  1163. * R ▒▒▌ │ │ │ │ │ │ ▐▒▒
  1164. * ▒▒░▄▄▄█▄▄▄█▄▄▄█▄▄▄█▄▄▄█▄▄▄█▄▄▄░▒▒
  1165. *
  1166. * 123456789012345678901234567890123456789012345678901234567890123456789012345
  1167. *
  1168. * ▒▒░▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀░▒▒
  1169. * N ▒▒▌ SUN MON TUE WED THU FRI SAT ▐▒▒
  1170. * O ▒▒░─────▄─────▄─────▄─────▄─────▄─────▄─────░▒▒
  1171. * V ▒▒▌ 1x │ 2x │ 3o │ 4o │ 5o │ 6o │ 7o ▐▒▒ X = Day Completed
  1172. * E ▒▒▌ 8o │ 9x │ 10o │ 11o │ 12x │ 13x │ 14o ▐▒▒ O = Day Playable
  1173. * M ▒▒▌ 15x │ 16u │ 17u │ 18u │ 19u │ 20u │ 21u ▐▒▒ U = Day Unavailable
  1174. * B ▒▒▌ 22u │ 23u │ 24u │ 25u │ 26u │ 27u │ 28u ▐▒▒ H = Day Uncompleted
  1175. * E ▒▒▌ 29u │ 30u │ │ │ │ │ ▐▒▒
  1176. * R ▒▒▌ │ │ │ │ │ │ ▐▒▒
  1177. * ▒▒░▄▄▄▄▄█▄▄▄▄▄█▄▄▄▄▄█▄▄▄▄▄█▄▄▄▄▄█▄▄▄▄▄█▄▄▄▄▄░▒▒
  1178. * X Extra Days Allowed Per Day
  1179. *
  1180. * 123456789012345678901234567890123456789012345678901234567890123456789012345
  1181. * ╔═══╗ ╔═════════════════════════════════════════╗
  1182. * ║ N ║ ║ SUN MON TUE WED THU FRI SAT ║
  1183. * ║ O ║ ╚═════════════════════════════════════════╝
  1184. * ║ V ║ ╔═════════════════════════════════════════╗
  1185. * ║ E ║ ║ 1x 2x 3o 4o 5o 6o 7o ║
  1186. * ║ M ║ ║ 8x 9x 10o 11o 12o 13o 14o ║
  1187. * ║ B ║ ║ 15h 16h 17h 18h 19u 20u 21u ║
  1188. * ║ E ║ ║ 22u 23u 24u 25u 26u 27u 28u ║
  1189. * ║ R ║ ║ 29u 30u 31u ║
  1190. * ╚═══╝ ║ ║
  1191. * ╚═════════════════════════════════════════╝
  1192. *
  1193. *
  1194. * Sunday
  1195. * Monday
  1196. * Tuesday
  1197. * Wednesday
  1198. * Thursday
  1199. * Friday
  1200. * Saturday
  1201. *
  1202. * 12345678901234567890123456789012345678901234567890123456789012345678901234567890
  1203. *
  1204. *╔═══╗╔═══════════════════════════════════════════════════════════════════════╗
  1205. *║ N ║║ Sunday Monday Tuesday Wednesday Thursday Friday Saturday
  1206. *║ ║ O
  1207. *║╚═══════════════════════════════════════════════════════════════════════╝
  1208. * 1 ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗
  1209. * ║ 1 x ║ ║ 2 x ║ ║ 3 o ║ ║ 4 o ║ ║ 5 o ║ ║ 6 o ║ ║ 7 o ║
  1210. * ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝
  1211. * 4 ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗
  1212. * ║ 8 x ║ ║ 9 x ║ ║ 10 o ║ ║ 11 o ║ ║ 12 o ║ ║ 13 o ║ ║ 14 o ║
  1213. * ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝
  1214. * 7 ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗
  1215. * ║ 15 x ║ ║ 16 x ║ ║ 17 o ║ ║ 18 o ║ ║ 19 o ║ ║ 20 o ║ ║ 21 o ║
  1216. * ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝
  1217. * 10 ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗ ╔══════╗
  1218. * ║ 22 x ║ ║ 23 x ║ ║ 24 o ║ ║ 25 o ║ ║ 26 o ║ ║ 27 o ║ ║ 28 o ║
  1219. * ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝ ╚══════╝
  1220. * 13 ╔══════╗ ╔══════╗ ╔══════╗
  1221. * ║ 29 x ║ ║ 30 u ║ ║ 31 u ║
  1222. * ╚══════╝ ╚══════╝ ╚══════╝
  1223. *
  1224. * +2 +12 +22 +32 +42 +52 +62
  1225. *
  1226. *
  1227. *
  1228. *
  1229. *
  1230. *
  1231. *
  1232. *
  1233. *
  1234. *
  1235. * 123456789012345678901234567890123456789012345678901234567890123456789012345
  1236. * ╔═══╗ ╔═════════════════════════════════════════════════════╗
  1237. * ║ N ║ ║ SUN MON TUE WED THU FRI SAT ║
  1238. * ║ O ║ ╚═════════════════════════════════════════════════════╝
  1239. * ║ V ║ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗
  1240. * ║ E ║ ║ 1x ║ ║ 2x ║ ║ 3o ║ ║ 4o ║ ║ 5o ║ ║ 6o ║ ║ 7o ║
  1241. * ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝
  1242. * ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗
  1243. * ║ 8x ║ ║ 9x ║ ║ 10o ║ ║ 11o ║ ║ 12o ║ ║ 13o ║ ║ 14o ║
  1244. * ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝
  1245. * ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗
  1246. * ║ 15x ║ ║ 16x ║ ║ 17o ║ ║ 18o ║ ║ 19o ║ ║ 20o ║ ║ 21o ║
  1247. * ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝
  1248. * ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗ ╔═════╗
  1249. * ║ 22x ║ ║ 23x ║ ║ 24o ║ ║ 25o ║ ║ 26o ║ ║ 27o ║ ║ 28o ║
  1250. * ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝ ╚═════╝
  1251. * ╔═════╗ ╔═════╗ ╔═════╗
  1252. * ║ 29x ║ ║ 30u ║ ║ 31u ║
  1253. * ╚═════╝ ╚═════╝ ╚═════╝
  1254. *
  1255. * ^ Actually single lines, not double lines here ^
  1256. *
  1257. * ║ M ║ ║ 8x 9x 10o 11o 12o 13o 14o ║
  1258. * ║ B ║ ║ 15h 16h 17h 18h 19u 20u 21u ║
  1259. * ║ E ║ ║ 22u 23u 24u 25u 26u 27u 28u ║
  1260. * ║ R ║ ║ 29u 30u 31u ║
  1261. * ╚═══╝ ║ ║
  1262. * ╚═════════════════════════════════════════╝
  1263. *
  1264. *
  1265. *
  1266. * @return std::unique_ptr<door::Panel>
  1267. */
  1268. std::string
  1269. PlayCards::current_month(std::chrono::_V2::system_clock::time_point now) {
  1270. time_t now_t = std::chrono::system_clock::to_time_t(now);
  1271. std::tm *now_tm = localtime(&now_t);
  1272. ostringstream os;
  1273. std::string text;
  1274. os << std::put_time(now_tm, "%B");
  1275. text = os.str();
  1276. return text;
  1277. }
  1278. /**
  1279. * @brief Update the calendar with days played so far.
  1280. *
  1281. * This is before redisplaying the calendar.
  1282. *
  1283. */
  1284. void PlayCards::update_calendar_days(void) {
  1285. time_t month_t = calendar_day_t[0];
  1286. std::tm month_lt;
  1287. localtime_r(&month_t, &month_lt);
  1288. int this_month = month_lt.tm_mon;
  1289. // int this_day = month_lt.tm_mday;
  1290. int this_year = month_lt.tm_year + 1900;
  1291. // calendar_day_status.fill(0);
  1292. auto last_played = db.whenPlayed();
  1293. /*
  1294. int play_days_ahead = 0;
  1295. if (config["play_days_ahead"]) {
  1296. play_days_ahead = config["play_days_ahead"].as<int>();
  1297. }
  1298. */
  1299. // until maint is setup, we need to verify that the month and year is
  1300. // correct.
  1301. for (auto played : last_played) {
  1302. #ifdef DEBUG_OUTPUT
  1303. get_logger() << "played " << played.first << " hands: " << played.second
  1304. << std::endl;
  1305. #endif
  1306. time_t play_t = played.first;
  1307. std::tm played_tm;
  1308. localtime_r(&play_t, &played_tm);
  1309. #ifdef DEBUG_OUTPUT
  1310. if (get_logger) {
  1311. get_logger() << played_tm.tm_mon + 1 << "/" << played_tm.tm_mday << "/"
  1312. << played_tm.tm_year + 1900 << " : " << played.second << " "
  1313. << play_t << std::endl;
  1314. }
  1315. #endif
  1316. if ((played_tm.tm_mon == this_month) &&
  1317. (played_tm.tm_year + 1900 == this_year)) {
  1318. // Ok!
  1319. int hands = played.second;
  1320. if (hands < total_hands) {
  1321. calendar_day_status[played_tm.tm_mday - 1] = 1;
  1322. } else {
  1323. if (hands >= total_hands) {
  1324. calendar_day_status[played_tm.tm_mday - 1] = 2;
  1325. }
  1326. }
  1327. }
  1328. }
  1329. }
  1330. /**
  1331. * make_calendar
  1332. *
  1333. * This needs the screen size information so it can place the
  1334. * panels in the correct location.
  1335. */
  1336. std::unique_ptr<door::Screen> PlayCards::make_calendar() {
  1337. std::unique_ptr<door::Screen> s = std::make_unique<door::Screen>();
  1338. /*
  1339. * This has potential of jumping ahead if player is on after midnight.
  1340. * I'd rather this be stable. When they start the game, is where
  1341. * we count things. (Also last day of month + midnight -- means
  1342. * we need maint ran! No!)
  1343. */
  1344. std::chrono::system_clock::time_point month =
  1345. std::chrono::system_clock::now();
  1346. // std::chrono::_V2::system_clock::time_point month =
  1347. // std::chrono::system_clock::now();
  1348. time_t month_t = std::chrono::system_clock::to_time_t(month);
  1349. // adjust to first day of the month
  1350. std::tm month_lt;
  1351. localtime_r(&month_t, &month_lt);
  1352. int this_month = month_lt.tm_mon;
  1353. int this_day = month_lt.tm_mday;
  1354. int this_year = month_lt.tm_year + 1900;
  1355. firstOfMonthDate(month);
  1356. month_t = std::chrono::system_clock::to_time_t(month);
  1357. calendar_day_t.fill(0);
  1358. calendar_day_t[0] = month_t;
  1359. #ifdef DEBUG_OUTPUT
  1360. get_logger() << "1st of Month is "
  1361. << std::put_time(std::localtime(&month_t), "%c %Z") << std::endl;
  1362. #endif
  1363. localtime_r(&month_t, &month_lt);
  1364. const int FIRST_WEEKDAY = month_lt.tm_wday; // 0-6
  1365. #ifdef DEBUG_OUTPUT
  1366. get_logger() << "1st of the Month starts on " << FIRST_WEEKDAY << std::endl;
  1367. #endif
  1368. // find the last day of this month.
  1369. auto month_l = month;
  1370. time_t month_last_day_t = month_t;
  1371. std::tm mld_tm;
  1372. do {
  1373. month_l += 24h;
  1374. normalizeDate(month_l);
  1375. month_last_day_t = std::chrono::system_clock::to_time_t(month_l);
  1376. localtime_r(&month_last_day_t, &mld_tm);
  1377. if (mld_tm.tm_mday != 1) {
  1378. month_last_day = mld_tm.tm_mday;
  1379. calendar_day_t[month_last_day - 1] = month_last_day_t;
  1380. }
  1381. } while (mld_tm.tm_mday != 1);
  1382. #ifdef DEBUG_OUTPUT
  1383. get_logger() << "Last day is " << month_last_day << std::endl;
  1384. #endif
  1385. calendar_panel_days.fill(0);
  1386. int row = 0;
  1387. for (int x = 0; x < month_last_day; x++) {
  1388. int dow = (x + FIRST_WEEKDAY) % 7;
  1389. if ((x != 0) and (dow == 0))
  1390. row++;
  1391. /*
  1392. get_logger() << "x = " << x << " dow = " << dow << " row = " << row
  1393. << std::endl;
  1394. */
  1395. // we actually want x+1 (1 to month_last_day)
  1396. // get_logger() << row * 7 + dow << " = " << x + 1 << std::endl;
  1397. calendar_panel_days[row * 7 + dow] = x + 1;
  1398. }
  1399. calendar_day_status.fill(0);
  1400. // update_calendar_days(month_t);
  1401. auto last_played = db.whenPlayed();
  1402. int play_days_ahead = 0;
  1403. if (config["play_days_ahead"]) {
  1404. play_days_ahead = config["play_days_ahead"].as<int>();
  1405. }
  1406. // until maint is setup, we need to verify that the month and year is
  1407. // correct.
  1408. for (auto played : last_played) {
  1409. #ifdef DEBUG_OUTPUT
  1410. get_logger() << "played " << played.first << " hands: " << played.second
  1411. << std::endl;
  1412. #endif
  1413. time_t play_t = played.first;
  1414. std::tm played_tm;
  1415. localtime_r(&play_t, &played_tm);
  1416. #ifdef DEBUG_OUTPUT
  1417. if (get_logger) {
  1418. get_logger() << played_tm.tm_mon + 1 << "/" << played_tm.tm_mday << "/"
  1419. << played_tm.tm_year + 1900 << " : " << played.second << " "
  1420. << play_t << std::endl;
  1421. }
  1422. #endif
  1423. if ((played_tm.tm_mon == this_month) &&
  1424. (played_tm.tm_year + 1900 == this_year)) {
  1425. // Ok!
  1426. int hands = played.second;
  1427. #ifdef DEBUG_OUTPUT
  1428. if (get_logger) {
  1429. get_logger() << "hands " << hands << " total " << total_hands
  1430. << std::endl;
  1431. }
  1432. #endif
  1433. if (hands < total_hands) {
  1434. calendar_day_status[played_tm.tm_mday - 1] = 1;
  1435. } else {
  1436. if (hands >= total_hands) {
  1437. calendar_day_status[played_tm.tm_mday - 1] = 2;
  1438. }
  1439. }
  1440. }
  1441. }
  1442. #ifdef DEBUG_OUTPUT
  1443. if (get_logger) {
  1444. get_logger() << "last day " << month_last_day << " today " << this_day
  1445. << " plays ahead " << play_days_ahead << std::endl;
  1446. }
  1447. #endif
  1448. // mark days ahead as NNY.
  1449. for (int d = 0; d < month_last_day; ++d) {
  1450. if (this_day + play_days_ahead - 1 < d) {
  1451. calendar_day_status[d] = 3;
  1452. }
  1453. }
  1454. #ifdef DEBUG_OUTPUT
  1455. {
  1456. // output all of the calendar information
  1457. ofstream &of = get_logger();
  1458. of << "Calendar_panel_days:" << std::endl;
  1459. for (int x = 0; x < (int)calendar_panel_days.size(); ++x) {
  1460. of << std::setw(2) << calendar_panel_days[x] << ":";
  1461. int c = calendar_panel_days[x];
  1462. if (c == 0)
  1463. of << " ";
  1464. else {
  1465. of << calendar_day_status[c - 1];
  1466. };
  1467. of << " ";
  1468. if ((x != 0) and (((x + 1) % 7) == 0)) {
  1469. of << std::endl;
  1470. }
  1471. }
  1472. of << std::endl;
  1473. }
  1474. #endif
  1475. std::string current = current_month(month);
  1476. string_toupper(current);
  1477. if (current.length() < 6) {
  1478. current.insert(0, " ");
  1479. current += " ";
  1480. }
  1481. std::unique_ptr<door::Panel> p = make_month(current);
  1482. p->set(3, 3);
  1483. s->addPanel(std::move(p));
  1484. p = make_weekdays();
  1485. p->set(8, 3);
  1486. s->addPanel(std::move(p));
  1487. p = make_calendar_panel();
  1488. p->set(8, 6);
  1489. s->addPanel(std::move(p));
  1490. return s;
  1491. }