space-ace.go 18 KB

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