space-ace.go 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615
  1. package main
  2. import (
  3. "fmt"
  4. "math/rand"
  5. "os"
  6. "path/filepath"
  7. "red-green/door"
  8. "strconv"
  9. "strings"
  10. "time"
  11. "unicode"
  12. "github.com/seehuhn/mt19937"
  13. )
  14. var Config map[string]string
  15. func press_a_key(d *door.Door) rune {
  16. green := door.ColorText("BOLD GREEN")
  17. blue := door.ColorText("BOLD BLUE")
  18. yellow := door.ColorText("BOLD YELLOW")
  19. any_caps := green
  20. any_lower := yellow
  21. any_color := func(text string) string {
  22. var output string
  23. var lastColor string
  24. for _, letter := range text {
  25. if unicode.IsUpper(letter) {
  26. if lastColor != any_caps {
  27. lastColor = any_caps
  28. output += any_caps
  29. }
  30. output += string(letter)
  31. } else {
  32. if lastColor != any_lower {
  33. lastColor = any_lower
  34. output += any_lower
  35. }
  36. output += string(letter)
  37. }
  38. }
  39. return output
  40. }
  41. text := "Press a key to continue..."
  42. work_text := []rune(text)
  43. d.Write(door.Reset + any_color(text))
  44. var r rune
  45. var ex door.Extended
  46. var err error
  47. var t int
  48. sleep_ms := 250
  49. ms_sleep := 0
  50. words := find_words(text)
  51. var word int = 0
  52. var wpos int = 0
  53. current_word := text[words[word][0]:words[word][1]]
  54. t = 0
  55. r, ex, err = d.WaitKey(time.Duration(sleep_ms) * time.Millisecond) // 0, int64(sleep_ms)*1000)
  56. for err == door.ErrTimeout && ex == door.NOP { // r == -1 {
  57. ms_sleep += sleep_ms
  58. if ms_sleep > 1000 {
  59. ms_sleep -= 1000
  60. t++
  61. if t >= int(door.Inactivity) {
  62. d.Write(strings.Repeat("\b", len(text)))
  63. d.Write(any_color(text) + door.CRNL)
  64. return -1
  65. }
  66. }
  67. wpos++
  68. if wpos == len(current_word) {
  69. word++
  70. wpos = 0
  71. work_text = []rune(text)
  72. if word == len(words) {
  73. word = 0
  74. if any_caps == green {
  75. any_caps = blue
  76. } else {
  77. any_caps = green
  78. }
  79. d.Write(strings.Repeat("\b", len(text)))
  80. d.Write(any_color(string(work_text)))
  81. current_word = text[words[word][0]:words[word][1]]
  82. goto READKEY
  83. }
  84. current_word = text[words[word][0]:words[word][1]]
  85. }
  86. {
  87. c := rune(current_word[wpos])
  88. for !unicode.IsLower(c) {
  89. wpos++
  90. if wpos == len(current_word) {
  91. wpos = 0
  92. word++
  93. work_text = []rune(text)
  94. if word == len(words) {
  95. word = 0
  96. }
  97. current_word = text[words[word][0]:words[word][1]]
  98. }
  99. c = rune(current_word[wpos])
  100. }
  101. // Ok, we found something that's lower case
  102. work_text[words[word][0]+wpos] = unicode.ToUpper(c)
  103. }
  104. d.Write(strings.Repeat("\b", len(text)))
  105. d.Write(any_color(string(work_text)))
  106. READKEY:
  107. r, ex, err = d.WaitKey(time.Duration(sleep_ms) * time.Millisecond) // 0, int64(sleep_ms)*1000)
  108. }
  109. d.Write(strings.Repeat("\b", len(text)))
  110. d.Write(any_color(text))
  111. return r
  112. }
  113. func display_information(d *door.Door) {
  114. d.Write(door.Clrscr)
  115. keyColor := door.ColorText("BRI GREEN")
  116. sepColor := door.ColorText("BRI YEL")
  117. valColor := door.ColorText("CYAN")
  118. nice_format := func(key string, value string) string {
  119. return fmt.Sprintf("%s%-20s %s: %s%s", keyColor, key, sepColor, valColor, value) + door.CRNL
  120. }
  121. d.Write(nice_format("BBS Software", d.Config.BBSID))
  122. d.Write(nice_format("Real Name", d.Config.Real_name))
  123. d.Write(nice_format("Handle", d.Config.Handle))
  124. d.Write(nice_format("User #", strconv.Itoa(d.Config.User_number)))
  125. d.Write(nice_format("Security Level", strconv.Itoa(d.Config.Security_level)))
  126. d.Write(nice_format("Node #", strconv.Itoa(d.Config.Node)))
  127. d.Write(nice_format("Unicode", strconv.FormatBool(door.Unicode)))
  128. d.Write(nice_format("CP437", strconv.FormatBool(door.CP437)))
  129. d.Write(nice_format("Screen Size", fmt.Sprintf("%d X %d", door.Width, door.Height)))
  130. }
  131. func panel_demo(d *door.Door) {
  132. width := 55
  133. fmtStr := "%-55s"
  134. p := door.Panel{X: 5, Y: 5, Width: width, Style: door.DOUBLE, BorderColor: door.ColorText("CYAN ON BLUE"), Title: "[ Panel Demo ]"}
  135. lineColor := door.ColorText("BRIGHT WHI ON BLUE")
  136. // Add lines to the panel
  137. for _, line := range []string{"The BBS Door Panel Demo", "(C) 2021 Red Green Software, https://red-green.com"} {
  138. if door.Unicode {
  139. line = strings.Replace(line, "(C)", "\u00a9", -1)
  140. }
  141. l := door.Line{Text: fmt.Sprintf(fmtStr, line), DefaultColor: lineColor}
  142. p.Lines = append(p.Lines, l)
  143. }
  144. p.Lines = append(p.Lines, p.Spacer())
  145. p.Lines = append(p.Lines, door.Line{Text: fmt.Sprintf(fmtStr, "Welcome to golang!"), DefaultColor: lineColor})
  146. d.Write(door.Clrscr)
  147. d.Write(p.Output() + door.CRNL)
  148. }
  149. /*
  150. door::renderFunction statusValue(door::ANSIColor status,
  151. door::ANSIColor value) {
  152. door::renderFunction rf = [status,
  153. value](const std::string &txt) -> door::Render {
  154. door::Render r(txt);
  155. size_t pos = txt.find(':');
  156. if (pos == std::string::npos) {
  157. for (char const &c : txt) {
  158. if (std::isdigit(c))
  159. r.append(value);
  160. else
  161. r.append(status);
  162. }
  163. } else {
  164. pos++;
  165. r.append(status, pos);
  166. r.append(value, txt.length() - pos);
  167. }
  168. return r;
  169. };
  170. return rf;
  171. }
  172. */
  173. func RenderStatusValue(status string, value string) func(string) string {
  174. renderF := func(text string) string {
  175. pos := strings.Index(text, ":")
  176. if pos != -1 {
  177. return status + text[:pos] + value + text[pos:]
  178. } else {
  179. var r door.Render = door.Render{Line: text}
  180. for _, letter := range text {
  181. if unicode.IsDigit(letter) {
  182. r.Append(value, 1)
  183. } else {
  184. r.Append(status, 1)
  185. }
  186. }
  187. return r.Result
  188. }
  189. }
  190. return renderF
  191. }
  192. // Display the SysOp settings in the Config/yaml file
  193. func DisplaySettings(d *door.Door) {
  194. d.Write(door.Clrscr + door.Reset)
  195. W := 35
  196. panel := door.Panel{Width: W,
  197. X: 5,
  198. Y: 5,
  199. Style: door.DOUBLE,
  200. BorderColor: door.ColorText("BOLD CYAN ON BLUE"),
  201. }
  202. l := door.Line{Text: fmt.Sprintf("%*s", W, "Game Settings - SysOp Configurable"),
  203. DefaultColor: door.ColorText("BOLD GREEN ON BLUE")}
  204. panel.Lines = append(panel.Lines, l)
  205. renderF := RenderStatusValue(door.ColorText("BOLD YELLOW ON BLUE"), door.ColorText("BOLD GREEN ON BLUE"))
  206. for key, value := range Config {
  207. if key[0] == '_' {
  208. continue
  209. }
  210. key = strings.Replace(key, "_", " ", -1)
  211. l = door.Line{Text: fmt.Sprintf("%20s : %*s", key, -(W - 23), value), RenderF: renderF}
  212. panel.Lines = append(panel.Lines, l)
  213. }
  214. d.Write(panel.Output() + door.Reset + door.CRNL)
  215. press_a_key(d)
  216. }
  217. func Configure(d *door.Door, db *DBData) {
  218. menu := ConfigMenu()
  219. // deckcolor := "DeckColor"
  220. // save_deckcolor := false
  221. var choice int
  222. for choice >= 0 {
  223. d.Write(door.Clrscr)
  224. choice = menu.Choose(d)
  225. if choice < 0 {
  226. break
  227. }
  228. option := menu.GetOption(choice)
  229. switch option {
  230. case 'D':
  231. // Deck color
  232. current_color := db.GetSetting("DeckColor", "All")
  233. colormenu := DeckColorMenu(current_color)
  234. d.Write(door.Clrscr)
  235. c := colormenu.Choose(d)
  236. if c > 0 {
  237. db.SetSetting("DeckColor", DeckColors[c-1])
  238. }
  239. d.Write(door.CRNL)
  240. press_a_key(d)
  241. case 'V':
  242. // View settings
  243. DisplaySettings(d)
  244. case 'Q':
  245. choice = -1
  246. }
  247. }
  248. }
  249. func Help() door.Panel {
  250. W := 60
  251. center_x := (door.Width - W) / 2
  252. center_y := (door.Height - 16) / 2
  253. help := door.Panel{X: center_x,
  254. Y: center_y,
  255. Width: W,
  256. Style: door.DOUBLE,
  257. BorderColor: door.ColorText("BOLD YELLOW ON BLUE")}
  258. help.Lines = append(help.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, "Help"),
  259. DefaultColor: door.ColorText("BOLD CYAN ON BLUE")})
  260. help.Lines = append(help.Lines, help.Spacer())
  261. copyright := SPACEACE + " v" + SPACEACE_VERSION
  262. help.Lines = append(help.Lines,
  263. door.Line{Text: fmt.Sprintf("%*s", -W, copyright),
  264. DefaultColor: door.ColorText("BOLD WHITE ON BLUE")})
  265. copyright = SPACEACE_COPYRIGHT
  266. if door.Unicode {
  267. copyright = strings.Replace(copyright, "(C)", "\u00a9", -1)
  268. }
  269. help.Lines = append(help.Lines,
  270. door.Line{Text: fmt.Sprintf("%*s", -W, copyright),
  271. DefaultColor: door.ColorText("BOLD WHITE ON BLUE")})
  272. for _, text := range []string{"",
  273. "Use Left/Right arrow keys, or 4/6 keys to move marker.",
  274. "The marker wraps around the sides of the screen.", "",
  275. "Select card to play with Space or 5.",
  276. "A card can play if it is higher or lower in rank by 1.",
  277. "",
  278. "Enter draws another card.",
  279. "",
  280. "Example: A Jack could play either a Ten or a Queen.",
  281. "Example: A King could play either an Ace or a Queen.",
  282. "",
  283. "The more cards in your streak, the more points earn.",
  284. } {
  285. help.Lines = append(help.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, text)})
  286. }
  287. return help
  288. }
  289. func About() door.Panel {
  290. W := 60
  291. center_x := (door.Width - W) / 2
  292. center_y := (door.Height - 16) / 2
  293. about := door.Panel{X: center_x,
  294. Y: center_y,
  295. Width: W,
  296. Style: door.SINGLE_DOUBLE,
  297. BorderColor: door.ColorText("BOLD YELLOW ON BLUE"),
  298. }
  299. about.Lines = append(about.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, "About This Door"),
  300. DefaultColor: door.ColorText("BOLD CYAN ON BLUE")})
  301. about.Lines = append(about.Lines, about.Spacer())
  302. copyright := SPACEACE + " v" + SPACEACE_VERSION
  303. about.Lines = append(about.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, copyright)})
  304. copyright = SPACEACE_COPYRIGHT
  305. if door.Unicode {
  306. copyright = strings.Replace(copyright, "(C)", "\u00a9", -1)
  307. }
  308. about.Lines = append(about.Lines,
  309. door.Line{Text: fmt.Sprintf("%*s", -W, copyright),
  310. DefaultColor: door.ColorText("BOLD WHITE ON BLUE")})
  311. for _, text := range []string{"",
  312. "This door was written by Bugz.",
  313. "",
  314. "It is written in Go, understands CP437 and unicode, adapts",
  315. "to screen sizes, uses door32.sys, supports TheDraw Fonts,",
  316. "and runs on Linux and Windows."} {
  317. about.Lines = append(about.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, text)})
  318. }
  319. return about
  320. }
  321. func MakeScoresRender(dateColor string, datelen int, nickColor string, nicklen int, scoreColor string) func(string) string {
  322. renderF := func(text string) string {
  323. var r door.Render = door.Render{Line: text}
  324. r.Append(dateColor, datelen)
  325. r.Append(nickColor, nicklen)
  326. r.Append(scoreColor, len(text)-(datelen+nicklen))
  327. return r.Result
  328. }
  329. return renderF
  330. }
  331. func DisplayScores(Door *door.Door, db *DBData, config *map[string]string) {
  332. // Scores::score()
  333. // make_top_scores_panel()
  334. W := 38
  335. var top_scores_panel door.Panel = door.Panel{Width: W,
  336. Style: door.DOUBLE,
  337. BorderColor: door.ColorText("CYAN ON BLUE"),
  338. Title: "[ The TOP Monthly Scores: ]",
  339. }
  340. const nick_len int = 17 // Max Nick Length
  341. var date_monthly string
  342. var ok bool
  343. date_monthly, ok = (*config)["date_monthly"]
  344. if !ok {
  345. date_monthly = "January"
  346. }
  347. var longest_month int = len(FormatDate(1631280600, date_monthly))
  348. monthly := db.GetMonthlyScores(15)
  349. if len(monthly) == 0 {
  350. top_scores_panel.Lines = append(top_scores_panel.Lines,
  351. door.Line{Text: fmt.Sprintf("%*s", -W, "No, Not Yet!"),
  352. DefaultColor: door.ColorText("BRI YELLOW ON BLUE"),
  353. })
  354. } else {
  355. ScoresRender := MakeScoresRender(door.ColorText("BOLD WHITE ON BLUE"),
  356. longest_month,
  357. door.ColorText("CYAN ON BLUE"),
  358. nick_len,
  359. door.ColorText("BOLD CYAN ON BLUE"))
  360. YourScoresRender := MakeScoresRender(
  361. door.ColorText("BOLD WHITE ON BLUE"),
  362. longest_month,
  363. door.ColorText("BOLD GREEN ON BLUE"),
  364. nick_len,
  365. door.ColorText("BOLD YELLOW ON BLUE"))
  366. for idx := range monthly {
  367. var result string = fmt.Sprintf("%*s", -longest_month,
  368. FormatDate(monthly[idx].Date, date_monthly))
  369. result += " " + fmt.Sprintf("%*s", -(nick_len-1), monthly[idx].User)
  370. result += fmt.Sprintf(" %d", monthly[idx].Score)
  371. result += strings.Repeat(" ", W-len(result))
  372. if monthly[idx].User == Door.Config.Real_name || monthly[idx].User == Door.Config.Handle {
  373. top_scores_panel.Lines = append(top_scores_panel.Lines,
  374. door.Line{Text: result, RenderF: YourScoresRender})
  375. } else {
  376. top_scores_panel.Lines = append(top_scores_panel.Lines,
  377. door.Line{Text: result, RenderF: ScoresRender})
  378. }
  379. }
  380. }
  381. // end make_top_scores_panel
  382. // make_top_this_month_panel()
  383. W = 38
  384. var title string = fmt.Sprintf("[ The TOP Scores for %s: ]",
  385. FormatDate(time.Now().Unix(), date_monthly))
  386. var top_month_panel door.Panel = door.Panel{Width: W,
  387. Style: door.DOUBLE,
  388. BorderColor: door.ColorText(""),
  389. Title: fmt.Sprintf("%*s", -W, title),
  390. }
  391. scores := db.GetScores(15)
  392. if len(scores) == 0 {
  393. top_month_panel.Lines = append(top_month_panel.Lines,
  394. door.Line{Text: fmt.Sprintf("%*s", -W, "No, Not Yet!"),
  395. DefaultColor: door.ColorText("BRI YELLOW ON BLUE"),
  396. })
  397. } else {
  398. }
  399. // Scores.display_scores()
  400. }
  401. func main() {
  402. var message string
  403. // Get path to binary, and chdir to it.
  404. binaryPath, _ := os.Executable()
  405. binaryPath = filepath.Dir(binaryPath)
  406. _ = os.Chdir(binaryPath)
  407. fmt.Println("Starting space-ace")
  408. rng := rand.New(mt19937.New())
  409. rng.Seed(time.Now().UnixNano())
  410. d := door.Door{}
  411. d.Init("space-ace")
  412. defer d.Close()
  413. db := DBData{}
  414. db.Open("space-database.db")
  415. defer db.Close()
  416. // Use Real_name or Handle? Or read config?
  417. db.User = d.Config.Real_name
  418. const config_filename = "space-ace.yaml"
  419. if FileExists(config_filename) {
  420. Config = LoadConfig(config_filename)
  421. } else {
  422. Config = make(map[string]string)
  423. }
  424. var update_config bool = false
  425. // Guessing at this point as to what settings I actually want.
  426. config_defaults := map[string]string{"hands_per_day": "3",
  427. "date_format": "January 2",
  428. "date_score": "01/02/2006",
  429. "makeup_per_day": "5",
  430. "play_days_ahead": "2",
  431. "date_monthly": "January 2006"}
  432. // _seed
  433. _, ok := Config["_seed"]
  434. if !ok {
  435. // Initialize the seed
  436. Config["_seed"] = fmt.Sprintf("%d,%d,%d", rng.Int31(), rng.Int31(), rng.Int31())
  437. update_config = true
  438. }
  439. for key, value := range config_defaults {
  440. if SetConfigDefault(&Config, key, value) {
  441. update_config = true
  442. }
  443. }
  444. if update_config {
  445. SaveConfig(config_filename, Config)
  446. }
  447. starfield := StarField{}
  448. starfield.Regenerate(rng)
  449. starfield.Display(&d)
  450. d.Write(door.Goto(1, 1) + door.Reset)
  451. // Get the last call value (if they have called before)
  452. last_call, _ := strconv.ParseInt(db.GetSetting("LastCall", "0"), 10, 64)
  453. now := time.Now()
  454. db.SetSetting("LastCall", fmt.Sprintf("%d", now.Unix()))
  455. // Check for maint run -- get FirstOfMonthDate, and see if
  456. // records are older then it is. (If so, yes -- run maint)!
  457. db.ExpireScores(0)
  458. if last_call != 0 {
  459. d.Write("Welcome Back!" + door.CRNL)
  460. delta := now.Sub(time.Unix(last_call, 0))
  461. hours := delta.Hours()
  462. if hours > 24 {
  463. d.Write(fmt.Sprintf("It's been %0.1f days since you last played."+door.CRNL, hours/24))
  464. } else {
  465. if hours > 1 {
  466. d.Write(fmt.Sprintf("It's been %0.1f hours since you last played."+door.CRNL, hours))
  467. } else {
  468. minutes := delta.Minutes()
  469. d.Write(fmt.Sprintf("It's been %0.1f minutes since you last played."+door.CRNL, minutes))
  470. }
  471. }
  472. }
  473. left := d.TimeLeft()
  474. message = fmt.Sprintf("You have %0.2f minutes / %0.2f seconds remaining..."+door.CRNL, left.Minutes(), left.Seconds())
  475. d.Write(message)
  476. press_a_key(&d)
  477. mainmenu := MainMenu()
  478. var choice int
  479. for choice >= 0 {
  480. d.Write(door.Clrscr)
  481. starfield.Display(&d)
  482. choice = mainmenu.Choose(&d)
  483. if choice < 0 {
  484. break
  485. }
  486. option := mainmenu.GetOption(choice)
  487. // fmt.Printf("Choice: %d, Option: %c\n", choice, option)
  488. switch option {
  489. case 'P':
  490. // Play cards
  491. pc := PlayCards{Door: &d,
  492. DB: &db,
  493. Config: &Config,
  494. RNG: rng,
  495. }
  496. pc.Init()
  497. pc.Play()
  498. case 'S':
  499. // View Scores
  500. DisplayScores(&d, &db, &Config)
  501. press_a_key(&d)
  502. case 'C':
  503. // Configure
  504. Configure(&d, &db)
  505. case 'H':
  506. // Help
  507. h := Help()
  508. d.Write(door.Clrscr + h.Output() + door.Reset + door.CRNL)
  509. press_a_key(&d)
  510. case 'A':
  511. // About
  512. a := About()
  513. d.Write(door.Clrscr + a.Output() + door.Reset + door.CRNL)
  514. press_a_key(&d)
  515. case 'Q':
  516. choice = -1
  517. }
  518. }
  519. d.Write(door.Reset + door.CRNL)
  520. message = fmt.Sprintf("Returning to %s ..."+door.CRNL, d.Config.BBSID)
  521. d.Write(message)
  522. // d.WaitKey(1, 0)
  523. left = d.TimeLeft()
  524. message = fmt.Sprintf("You had %0.2f minutes / %0.2f seconds remaining!"+door.CRNL, left.Minutes(), left.Seconds())
  525. d.Write(message)
  526. left = d.TimeUsed()
  527. d.Write(fmt.Sprintf("You used %0.2f seconds / %0.2f minutes."+door.CRNL, left.Seconds(), left.Minutes()))
  528. fmt.Println("Exiting space-ace")
  529. }