main.cpp 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613
  1. #include "door.h"
  2. #include "yaml-cpp/yaml.h"
  3. #include <chrono> // chrono::system_clock
  4. #include <ctime> // localtime
  5. #include <iomanip> // put_time
  6. #include <iostream>
  7. #include <random>
  8. #include <string>
  9. #include "db.h"
  10. #include "deck.h"
  11. #include "play.h"
  12. #include "scores.h"
  13. #include "utils.h"
  14. #include "version.h"
  15. #include <algorithm> // transform
  16. // configuration here -- access via extern
  17. YAML::Node config;
  18. door::ANSIColor stringToANSIColor(std::string colorCode);
  19. std::function<std::ofstream &(void)> get_logger;
  20. std::function<void(void)> cls_display_starfield;
  21. std::function<int(void)> press_a_key;
  22. std::string return_current_time_and_date() {
  23. auto now = std::chrono::system_clock::now();
  24. auto in_time_t = std::chrono::system_clock::to_time_t(now);
  25. std::stringstream ss;
  26. // ss << std::put_time(std::localtime(&in_time_t), "%Y-%m-%d %X");
  27. ss << std::put_time(std::localtime(&in_time_t), "%Y-%m-%d %r");
  28. return ss.str();
  29. }
  30. int press_any_key(door::Door &door) {
  31. door::ANSIColor green{door::COLOR::GREEN, door::ATTR::BOLD};
  32. door::ANSIColor blue{door::COLOR::BLUE, door::ATTR::BOLD};
  33. door::ANSIColor yellow{door::COLOR::YELLOW, door::ATTR::BOLD};
  34. door::ANSIColor any_caps = green;
  35. door::ANSIColor any_lower = yellow;
  36. door::renderFunction any_color =
  37. [&any_caps, &any_lower](const std::string &txt) -> door::Render {
  38. door::Render r(txt);
  39. // door::ANSIColor blue(door::COLOR::GREEN, door::ATTR::BOLD);
  40. // door::ANSIColor cyan(door::COLOR::YELLOW, door::ATTR::BOLD);
  41. for (char const &c : txt) {
  42. if (isupper(c))
  43. r.append(any_caps);
  44. else
  45. r.append(any_lower);
  46. }
  47. return r;
  48. };
  49. static std::default_random_engine generator;
  50. static std::uniform_int_distribution<int> distribution(0, 1);
  51. int use_set = distribution(generator);
  52. std::string text = "Press a key to continue...";
  53. door << door::reset;
  54. any_color(text).output(door);
  55. // << text;
  56. int r;
  57. int t = 0;
  58. // alternate animation
  59. #define ALT_ANIMATION
  60. #ifdef ALT_ANIMATION
  61. std::vector<std::pair<int, int>> words = find_words(text);
  62. std::string work_text = text;
  63. int text_length = text.size();
  64. // current word
  65. unsigned int word = 0;
  66. std::string current_word = text.substr(words[word].first, words[word].second);
  67. unsigned int wpos = 0;
  68. int ms_sleep = 0;
  69. int sleep_ms = 250;
  70. t = 0;
  71. while ((r = door.sleep_ms_key(sleep_ms)) == TIMEOUT) {
  72. ms_sleep += sleep_ms;
  73. if (ms_sleep > 1000) {
  74. ms_sleep -= 1000;
  75. t++;
  76. if (t >= door.inactivity) {
  77. // restore text
  78. door << std::string(text_length, '\b');
  79. any_color(text).output(door);
  80. // << text;
  81. door << door::nl;
  82. return TIMEOUT;
  83. }
  84. }
  85. ++wpos;
  86. if (wpos == current_word.size()) {
  87. ++word;
  88. work_text = text;
  89. wpos = 0;
  90. if (word == words.size()) {
  91. // we've reached the end
  92. word = 0;
  93. if (any_caps == green)
  94. any_caps = blue;
  95. else
  96. any_caps = green;
  97. door << std::string(text_length, '\b');
  98. any_color(work_text).output(door);
  99. current_word = text.substr(words[word].first, words[word].second);
  100. continue;
  101. }
  102. current_word = text.substr(words[word].first, words[word].second);
  103. }
  104. int c = current_word[wpos];
  105. while (!std::islower(c)) {
  106. // It is not lower case
  107. wpos++;
  108. if (wpos == current_word.size()) {
  109. // Ok, this word is done.
  110. wpos = 0;
  111. word++;
  112. work_text = text;
  113. if (word == words.size()) {
  114. word = 0;
  115. }
  116. current_word = text.substr(words[word].first, words[word].second);
  117. wpos = 0;
  118. }
  119. c = current_word[wpos];
  120. }
  121. // Ok, I found something that's lower case.
  122. work_text[words[word].first + wpos] = std::toupper(c);
  123. // std::toupper(words[word].first + wpos);
  124. door << std::string(text_length, '\b');
  125. any_color(work_text).output(door);
  126. // << work_text;
  127. }
  128. // ok, restore the original string
  129. door << std::string(text_length, '\b');
  130. any_color(text).output(door);
  131. //<< text;
  132. return r;
  133. #endif
  134. #ifdef ALT_ANIMATION_2
  135. // This can be cleaned up to be simpler -- and do the same effect. We don't
  136. // need the words here, we're not really using them.
  137. std::vector<std::pair<int, int>> words = find_words(text);
  138. std::string work_text = text;
  139. int text_length = text.size();
  140. // current word
  141. unsigned int word = 0;
  142. std::string current_word = text.substr(words[word].first, words[word].second);
  143. unsigned int wpos = 0;
  144. // DOES NOT HONOR door.inactivity (AT THIS TIME)
  145. while ((r = door.sleep_ms_key(200)) == TIMEOUT) {
  146. ++wpos;
  147. if (wpos == current_word.size()) {
  148. ++word;
  149. wpos = 0;
  150. if (word == words.size())
  151. word = 0;
  152. current_word = text.substr(words[word].first, words[word].second);
  153. }
  154. int c = current_word[wpos];
  155. while (!std::islower(c)) {
  156. // It is not lower case
  157. wpos++;
  158. if (wpos == current_word.size()) {
  159. // Ok, this word is done.
  160. wpos = 0;
  161. word++;
  162. if (word == words.size())
  163. word = 0;
  164. current_word = text.substr(words[word].first, words[word].second);
  165. wpos = 0;
  166. }
  167. c = current_word[wpos];
  168. }
  169. // Ok, I found something that's lower case.
  170. work_text = text;
  171. work_text[words[word].first + wpos] = std::toupper(c);
  172. // std::toupper(words[word].first + wpos);
  173. door << std::string(text_length, '\b') << work_text;
  174. }
  175. // ok, restore the original string
  176. door << std::string(text_length, '\b') << text;
  177. return r;
  178. #endif
  179. // animation spinner that reverses itself. /-\| and blocks.
  180. t = 0;
  181. int loop = 0;
  182. const char *loop_chars[3][4] = {{"/", "-", "\\", "|"},
  183. {"\xde", "\xdc", "\xdd", "\xdf"},
  184. {"\u2590", "\u2584", "\u258c", "\u2580"}};
  185. std::array<int, 11> sleeps = {1000, 700, 500, 300, 200, 200,
  186. 200, 300, 500, 700, 1000};
  187. // start out at
  188. int sleep_number = 5;
  189. bool forward = true;
  190. if (door::unicode) {
  191. if (use_set == 1)
  192. use_set = 2;
  193. }
  194. door << loop_chars[use_set][loop % 4];
  195. ms_sleep = 0;
  196. bool check_speed = false;
  197. while ((r = door.sleep_ms_key(sleeps[sleep_number])) == TIMEOUT) {
  198. ms_sleep += sleeps[sleep_number];
  199. if (ms_sleep > 1000) {
  200. ms_sleep -= 1000;
  201. t++;
  202. if (t >= door.inactivity) {
  203. door << "\b \b";
  204. door << door::nl;
  205. return TIMEOUT;
  206. }
  207. }
  208. if (forward) {
  209. loop++;
  210. if (loop == 4) {
  211. loop = 0;
  212. check_speed = true;
  213. }
  214. } else {
  215. --loop;
  216. if (loop < 0) {
  217. loop = 3;
  218. check_speed = true;
  219. }
  220. }
  221. if (check_speed) {
  222. sleep_number++;
  223. if (sleep_number >= (int)sleeps.size()) {
  224. sleep_number = 0;
  225. forward = !forward;
  226. }
  227. check_speed = false;
  228. }
  229. door << "\b" << loop_chars[use_set][loop];
  230. }
  231. door << "\b \b";
  232. door << door::nl;
  233. return r;
  234. }
  235. // This does not seem to be working. I keep getting zero.
  236. int opt_from_string(std::string colorCode) {
  237. for (std::size_t pos = 0; pos != deck_colors.size(); ++pos) {
  238. // if (caseInsensitiveStringCompare(colorCode, deck_colors[pos]) == 0) {
  239. if (iequals(colorCode, deck_colors[pos])) {
  240. return pos;
  241. }
  242. }
  243. return 0;
  244. }
  245. int configure(door::Door &door, DBData &db) {
  246. // pre-warm the parser
  247. find_words(std::string(""));
  248. auto menu = make_config_menu();
  249. int r = 0;
  250. bool save_deckcolor = false;
  251. const char *deckcolor = "DeckColor";
  252. std::string newColor;
  253. while (r >= 0) {
  254. if (save_deckcolor) {
  255. door << menu;
  256. db.setSetting(deckcolor, newColor);
  257. save_deckcolor = false;
  258. }
  259. if (cls_display_starfield)
  260. cls_display_starfield();
  261. else
  262. door << door::reset << door::cls;
  263. r = menu.choose(door);
  264. if (r > 0) {
  265. door << door::reset << door::cls;
  266. char c = menu.which(r - 1);
  267. if (c == 'D') {
  268. // Ok, deck colors
  269. // get default
  270. std::string currentDefault = db.getSetting(deckcolor, "ALL");
  271. int currentOpt = opt_from_string(currentDefault);
  272. door << door::reset << door::cls;
  273. auto deck = make_deck_menu();
  274. deck.defaultSelection(currentOpt);
  275. if (cls_display_starfield)
  276. cls_display_starfield();
  277. else
  278. door << door::reset << door::cls;
  279. int newOpt = deck.choose(door);
  280. door << door::reset << door::cls;
  281. if (newOpt >= 0) {
  282. newOpt--;
  283. newColor = stringFromColorOptions(newOpt);
  284. if (newOpt != currentOpt) {
  285. door.log() << deckcolor << " was " << currentDefault << ", "
  286. << currentOpt << ". Now " << newColor << ", " << newOpt
  287. << std::endl;
  288. save_deckcolor = true;
  289. }
  290. }
  291. }
  292. if (c == 'V') {
  293. // view settings -- Sysop Configuration
  294. if (cls_display_starfield)
  295. cls_display_starfield();
  296. else
  297. door << door::reset << door::cls;
  298. door::Panel config_panel = make_sysop_config();
  299. // config_panel.set(1, 1);
  300. door << config_panel << door::reset << door::nl;
  301. r = press_a_key();
  302. if (r < 0)
  303. return r;
  304. door << door::reset << door::cls;
  305. }
  306. if (c == 'Q') {
  307. return r;
  308. }
  309. }
  310. }
  311. return r;
  312. }
  313. int main(int argc, char *argv[]) {
  314. door::Door door("space-ace", argc, argv);
  315. // store the door log so we can easily access it.
  316. get_logger = [&door]() -> ofstream & { return door.log(); };
  317. press_a_key = [&door]() -> int { return press_any_key(door); };
  318. std::random_device rd;
  319. std::mt19937 rng(rd());
  320. cls_display_starfield = [&door, &rng]() -> void {
  321. display_starfield(door, rng);
  322. };
  323. DBData spacedb;
  324. spacedb.setUser(door.username);
  325. if (file_exists("space-ace.yaml")) {
  326. config = YAML::LoadFile("space-ace.yaml");
  327. }
  328. bool update_config = false;
  329. // populate with "good" defaults
  330. if (!config["hands_per_day"]) {
  331. config["hands_per_day"] = 3;
  332. update_config = true;
  333. }
  334. if (!config["date_format"]) {
  335. config["date_format"] = "%B %d"; // Month day or "%b %d,%Y" Mon,d YYYY
  336. update_config = true;
  337. }
  338. if (!config["date_score"]) {
  339. config["date_score"] = "%m/%d/%Y"; // or "%Y/%0m/%0d";
  340. update_config = true;
  341. }
  342. if (!config["makeup_per_day"]) {
  343. config["makeup_per_day"] = 5;
  344. update_config = true;
  345. }
  346. if (!config["play_days_ahead"]) {
  347. config["play_days_ahead"] = 2;
  348. update_config = true;
  349. }
  350. if (!config["date_monthly"]) {
  351. config["date_monthly"] = "%B %Y";
  352. update_config = true;
  353. }
  354. if (!config["_seed"]) {
  355. // pick numbers to use for seed
  356. std::string seeds;
  357. seeds += std::to_string(rng());
  358. seeds += ",";
  359. seeds += std::to_string(rng());
  360. seeds += ",";
  361. seeds += std::to_string(rng());
  362. config["_seed"] = seeds;
  363. update_config = true;
  364. }
  365. // save configuration -- something was updated
  366. if (update_config) {
  367. std::ofstream fout("space-ace.yaml");
  368. fout << config << std::endl;
  369. }
  370. // retrieve lastcall
  371. time_t last_call = std::stol(spacedb.getSetting("LastCall", "0"));
  372. std::chrono::_V2::system_clock::time_point now =
  373. std::chrono::system_clock::now();
  374. // store now as lastcall
  375. time_t now_t = std::chrono::system_clock::to_time_t(now);
  376. spacedb.setSetting("LastCall", std::to_string(now_t));
  377. // run maint
  378. {
  379. std::chrono::_V2::system_clock::time_point maint_date = now;
  380. firstOfMonthDate(maint_date);
  381. if (spacedb.expireScores(
  382. std::chrono::system_clock::to_time_t(maint_date))) {
  383. if (get_logger)
  384. get_logger() << "maint completed" << std::endl;
  385. door << "Thanks for waiting..." << door::nl;
  386. }
  387. }
  388. // Have they used this door before?
  389. if (last_call != 0) {
  390. door << door::ANSIColor(door::COLOR::YELLOW, door::ATTR::BOLD)
  391. << "Welcome Back!" << door::nl;
  392. auto nowClock = std::chrono::system_clock::from_time_t(now_t);
  393. auto lastClock = std::chrono::system_clock::from_time_t(last_call);
  394. auto delta = nowClock - lastClock;
  395. // int days = chrono::duration_cast<chrono::days>(delta).count(); //
  396. // c++ 20
  397. int hours = chrono::duration_cast<chrono::hours>(delta).count();
  398. int days = hours / 24;
  399. int minutes = chrono::duration_cast<chrono::minutes>(delta).count();
  400. int secs = chrono::duration_cast<chrono::seconds>(delta).count();
  401. if (days > 1) {
  402. door << door::ANSIColor(door::COLOR::GREEN, door::ATTR::BOLD)
  403. << "It's been " << days << " days since you last played."
  404. << door::nl;
  405. } else {
  406. if (hours > 1) {
  407. door << door::ANSIColor(door::COLOR::CYAN) << "It's been " << hours
  408. << " hours since you last played." << door::nl;
  409. } else {
  410. if (minutes > 1) {
  411. door << door::ANSIColor(door::COLOR::CYAN) << "It's been " << minutes
  412. << " minutes since you last played." << door::nl;
  413. } else {
  414. door << door::ANSIColor(door::COLOR::YELLOW, door::ATTR::BOLD)
  415. << "It's been " << secs << " seconds since you last played."
  416. << door::nl;
  417. door << "It's like you never left." << door::nl;
  418. }
  419. }
  420. }
  421. if (press_a_key() < 0)
  422. return 0;
  423. }
  424. int mx, my; // Max screen width/height
  425. if (door.width == 0) {
  426. // screen detect failed, use sensible defaults
  427. door.width = mx = 80;
  428. door.height = my = 23;
  429. } else {
  430. mx = door.width;
  431. my = door.height;
  432. }
  433. // We assume here that the width and height aren't something crazy like
  434. // 10x15. :P (or 24x923!)
  435. display_starfield_space_ace(door, rng);
  436. // for testing inactivity timeout
  437. // door.inactivity = 10;
  438. door::Panel timeout = make_timeout(mx, my);
  439. door::Menu m = make_main_menu();
  440. door::Panel about = make_about(); // 8 lines
  441. door::Panel help = make_help();
  442. // center the about box
  443. about.set((mx - 60) / 2, (my - 9) / 2);
  444. // center the help box
  445. help.set((mx - 60) / 2, (my - 15) / 2);
  446. PlayCards pc(door, spacedb, rng);
  447. int r = 0;
  448. while ((r >= 0) and (r != 6)) {
  449. // starfield + menu ?
  450. display_starfield(door, rng);
  451. r = m.choose(door);
  452. // need to reset the colors. (whoops!)
  453. door << door::reset << door::cls; // door::nl;
  454. // OK! The screen is blank at this point!
  455. switch (r) {
  456. case 1: // play game
  457. {
  458. // PlayCards pc(door, spacedb, rng);
  459. r = pc.play();
  460. // r = play_cards(door, spacedb, rng);
  461. }; break;
  462. case 2: // view scores
  463. // door << door::cls;
  464. {
  465. Scores score(door, spacedb);
  466. score.display_scores(door);
  467. }
  468. r = press_a_key();
  469. break;
  470. case 3: // configure
  471. r = configure(door, spacedb);
  472. // r = press_a_key();
  473. break;
  474. case 4: // help
  475. display_starfield(door, rng);
  476. door << help << door::nl;
  477. r = press_a_key();
  478. break;
  479. case 5: // about
  480. display_starfield(door, rng);
  481. door << about << door::nl;
  482. r = press_a_key();
  483. break;
  484. case 6: // quit
  485. break;
  486. }
  487. }
  488. if (r < 0) {
  489. // DOOR_ERROR:
  490. if (r == TIMEOUT) {
  491. door.log() << "TIMEOUT" << std::endl;
  492. door << timeout << door::reset << door::nl << door::nl;
  493. } else {
  494. if (r == OUTOFTIME) {
  495. door.log() << "OUTTA TIME" << std::endl;
  496. door::Panel notime = make_notime(mx, my);
  497. door << notime << door::reset << door::nl;
  498. }
  499. }
  500. return 0;
  501. }
  502. door << door::nl;
  503. // door << door::reset << door::cls;
  504. display_starfield(door, rng);
  505. door << m << door::reset << door::nl;
  506. // Normal DOOR exit goes here...
  507. door << door::nl << "Returning you to the BBS, please wait..." << door::nl;
  508. press_a_key = nullptr;
  509. get_logger = nullptr;
  510. cls_display_starfield = nullptr;
  511. return 0;
  512. }