play.cpp 54 KB

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