space-ace.go 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667
  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. func RenderStatusValue(status string, value string) func(string) string {
  329. renderF := func(text string) string {
  330. var result string
  331. pos := strings.Index(text, ":")
  332. result = status + text[:pos] + value + text[pos:]
  333. return result
  334. }
  335. return renderF
  336. }
  337. // Display the SysOp settings in the Config/yaml file
  338. func DisplaySettings(d *door.Door) {
  339. d.Write(door.Clrscr + door.Reset)
  340. W := 35
  341. panel := door.Panel{Width: W,
  342. X: 5,
  343. Y: 5,
  344. Style: door.DOUBLE,
  345. BorderColor: door.ColorText("BOLD CYAN ON BLUE"),
  346. }
  347. l := door.Line{Text: fmt.Sprintf("%*s", W, "Game Settings - SysOp Configurable"),
  348. DefaultColor: door.ColorText("BOLD GREEN ON BLUE")}
  349. panel.Lines = append(panel.Lines, l)
  350. renderF := RenderStatusValue(door.ColorText("BOLD YELLOW ON BLUE"), door.ColorText("BOLD GREEN ON BLUE"))
  351. for key, value := range Config {
  352. if key[0] == '_' {
  353. continue
  354. }
  355. key = strings.Replace(key, "_", " ", -1)
  356. l = door.Line{Text: fmt.Sprintf("%20s : %*s", key, -(W - 23), value), RenderF: renderF}
  357. panel.Lines = append(panel.Lines, l)
  358. }
  359. d.Write(panel.Output() + door.Reset + door.CRNL)
  360. press_a_key(d)
  361. }
  362. func Configure(d *door.Door, db *DBData) {
  363. menu := ConfigMenu()
  364. // deckcolor := "DeckColor"
  365. // save_deckcolor := false
  366. var choice int
  367. for choice >= 0 {
  368. d.Write(door.Clrscr)
  369. choice = menu.Choose(d)
  370. if choice < 0 {
  371. break
  372. }
  373. option := menu.GetOption(choice)
  374. switch option {
  375. case 'D':
  376. // Deck color
  377. current_color := db.GetSetting("DeckColor", "All")
  378. colormenu := DeckColorMenu(current_color)
  379. d.Write(door.Clrscr)
  380. c := colormenu.Choose(d)
  381. if c > 0 {
  382. db.SetSetting("DeckColor", DeckColors[c-1])
  383. }
  384. press_a_key(d)
  385. case 'V':
  386. // View settings
  387. DisplaySettings(d)
  388. case 'Q':
  389. choice = -1
  390. }
  391. }
  392. }
  393. func Help() door.Panel {
  394. W := 60
  395. center_x := (door.Width - W) / 2
  396. center_y := (door.Height - 16) / 2
  397. help := door.Panel{X: center_x,
  398. Y: center_y,
  399. Width: W,
  400. Style: door.DOUBLE,
  401. BorderColor: door.ColorText("BOLD YELLOW ON BLUE")}
  402. help.Lines = append(help.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, "Help"),
  403. DefaultColor: door.ColorText("BOLD CYAN ON BLUE")})
  404. help.Lines = append(help.Lines, help.Spacer())
  405. copyright := SPACEACE + " v" + SPACEACE_VERSION
  406. help.Lines = append(help.Lines,
  407. door.Line{Text: fmt.Sprintf("%*s", -W, copyright),
  408. DefaultColor: door.ColorText("BOLD WHITE ON BLUE")})
  409. copyright = SPACEACE_COPYRIGHT
  410. if door.Unicode {
  411. copyright = strings.Replace(copyright, "(C)", "\u00a9", -1)
  412. }
  413. help.Lines = append(help.Lines,
  414. door.Line{Text: fmt.Sprintf("%*s", -W, copyright),
  415. DefaultColor: door.ColorText("BOLD WHITE ON BLUE")})
  416. for _, text := range []string{"",
  417. "Use Left/Right arrow keys, or 4/6 keys to move marker.",
  418. "The marker wraps around the sides of the screen.", "",
  419. "Select card to play with Space or 5.",
  420. "A card can play if it is higher or lower in rank by 1.",
  421. "",
  422. "Enter draws another card.",
  423. "",
  424. "Example: A Jack could play either a Ten or a Queen.",
  425. "Example: A King could play either an Ace or a Queen.",
  426. "",
  427. "The more cards in your streak, the more points earn.",
  428. } {
  429. help.Lines = append(help.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, text)})
  430. }
  431. return help
  432. }
  433. func About() door.Panel {
  434. W := 60
  435. center_x := (door.Width - W) / 2
  436. center_y := (door.Height - 16) / 2
  437. about := door.Panel{X: center_x,
  438. Y: center_y,
  439. Width: W,
  440. Style: door.SINGLE_DOUBLE,
  441. BorderColor: door.ColorText("BOLD YELLOW ON BLUE"),
  442. }
  443. about.Lines = append(about.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, "About This Door"),
  444. DefaultColor: door.ColorText("BOLD CYAN ON BLUE")})
  445. about.Lines = append(about.Lines, about.Spacer())
  446. copyright := SPACEACE + " v" + SPACEACE_VERSION
  447. about.Lines = append(about.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, copyright)})
  448. copyright = SPACEACE_COPYRIGHT
  449. if door.Unicode {
  450. copyright = strings.Replace(copyright, "(C)", "\u00a9", -1)
  451. }
  452. about.Lines = append(about.Lines,
  453. door.Line{Text: fmt.Sprintf("%*s", -W, copyright),
  454. DefaultColor: door.ColorText("BOLD WHITE ON BLUE")})
  455. for _, text := range []string{"",
  456. "This door was written by Bugz.",
  457. "",
  458. "It is written in Go, understands CP437 and unicode, adapts",
  459. "to screen sizes, uses door32.sys, supports TheDraw Fonts,",
  460. "and runs on Linux and Windows."} {
  461. about.Lines = append(about.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, text)})
  462. }
  463. return about
  464. }
  465. func main() {
  466. var message string
  467. // Get path to binary, and chdir to it.
  468. binaryPath, _ := os.Executable()
  469. binaryPath = filepath.Dir(binaryPath)
  470. _ = os.Chdir(binaryPath)
  471. fmt.Println("Starting space-ace")
  472. rng := rand.New(mt19937.New())
  473. rng.Seed(time.Now().UnixNano())
  474. d := door.Door{}
  475. d.Init("space-ace")
  476. db := DBData{}
  477. db.Open("space-database.db")
  478. defer db.Close()
  479. // Use Real_name or Handle? Or read config?
  480. db.User = d.Config.Real_name
  481. const config_filename = "space-ace.yaml"
  482. if FileExists(config_filename) {
  483. Config = LoadConfig(config_filename)
  484. } else {
  485. Config = make(map[string]string)
  486. }
  487. var update_config bool = false
  488. // Guessing at this point as to what settings I actually want.
  489. config_defaults := map[string]string{"hands_per_day": "3",
  490. "date_format": "January 2",
  491. "date_score": "01/02/2006",
  492. "makeup_per_day": "5",
  493. "play_days_ahead": "2",
  494. "date_monthly": "January 2006"}
  495. // _seed
  496. _, ok := Config["_seed"]
  497. if !ok {
  498. // Initialize the seed
  499. Config["_seed"] = fmt.Sprintf("%d,%d,%d", rng.Int31(), rng.Int31(), rng.Int31())
  500. update_config = true
  501. }
  502. for key, value := range config_defaults {
  503. if SetConfigDefault(&Config, key, value) {
  504. update_config = true
  505. }
  506. }
  507. if update_config {
  508. SaveConfig(config_filename, Config)
  509. }
  510. starfield := StarField{}
  511. starfield.Regenerate(rng)
  512. starfield.Display(&d)
  513. d.Write(door.Goto(1, 1) + door.Reset)
  514. // Get the last call value (if they have called before)
  515. last_call, _ := strconv.ParseInt(db.GetSetting("LastCall", "0"), 10, 64)
  516. now := time.Now()
  517. db.SetSetting("LastCall", fmt.Sprintf("%d", now.Unix()))
  518. // Check for maint run -- get FirstOfMonthDate, and see if
  519. // records are older then it is. (If so, yes -- run maint)!
  520. if last_call != 0 {
  521. d.Write("Welcome Back!" + door.CRNL)
  522. delta := now.Sub(time.Unix(last_call, 0))
  523. hours := delta.Hours()
  524. if hours > 24 {
  525. d.Write(fmt.Sprintf("It's been %0.1f days since you last played."+door.CRNL, hours/24))
  526. } else {
  527. if hours > 1 {
  528. d.Write(fmt.Sprintf("It's been %0.1f hours since you last played."+door.CRNL, hours))
  529. } else {
  530. minutes := delta.Minutes()
  531. d.Write(fmt.Sprintf("It's been %0.1f minutes since you last played."+door.CRNL, minutes))
  532. }
  533. }
  534. }
  535. left := d.TimeLeft()
  536. message = fmt.Sprintf("You have %0.2f minutes / %0.2f seconds remaining..."+door.CRNL, left.Minutes(), left.Seconds())
  537. d.Write(message)
  538. press_a_key(&d)
  539. mainmenu := MainMenu()
  540. var choice int
  541. for choice >= 0 {
  542. d.Write(door.Clrscr)
  543. starfield.Display(&d)
  544. choice = mainmenu.Choose(&d)
  545. if choice < 0 {
  546. break
  547. }
  548. option := mainmenu.GetOption(choice)
  549. // fmt.Printf("Choice: %d, Option: %c\n", choice, option)
  550. switch option {
  551. case 'P':
  552. // Play cards
  553. case 'S':
  554. // View Scores
  555. case 'C':
  556. // Configure
  557. Configure(&d, &db)
  558. case 'H':
  559. // Help
  560. h := Help()
  561. d.Write(door.Clrscr + h.Output() + door.Reset + door.CRNL)
  562. press_a_key(&d)
  563. case 'A':
  564. // About
  565. a := About()
  566. d.Write(door.Clrscr + a.Output() + door.Reset + door.CRNL)
  567. press_a_key(&d)
  568. case 'Q':
  569. choice = -1
  570. }
  571. }
  572. d.Write(door.Reset + door.CRNL)
  573. message = fmt.Sprintf("Returning to %s ..."+door.CRNL, d.Config.BBSID)
  574. d.Write(message)
  575. // d.WaitKey(1, 0)
  576. left = d.TimeLeft()
  577. message = fmt.Sprintf("You had %0.2f minutes / %0.2f seconds remaining!"+door.CRNL, left.Minutes(), left.Seconds())
  578. d.Write(message)
  579. left = d.TimeUsed()
  580. d.Write(fmt.Sprintf("You used %0.2f seconds / %0.2f minutes."+door.CRNL, left.Seconds(), left.Minutes()))
  581. fmt.Println("Exiting space-ace")
  582. }