space-ace.go 13 KB

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