space-ace.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  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. func pctUpdate(pct *int64) func() int64 {
  17. return func() int64 {
  18. return *pct
  19. }
  20. }
  21. func find_words(text string) [][]int {
  22. word, _ := regexp.Compile("([A-Za-z]+)")
  23. return word.FindAllStringIndex(text, -1)
  24. }
  25. func press_a_key(d *door.Door) int {
  26. green := door.ColorText("BOLD GREEN")
  27. blue := door.ColorText("BOLD BLUE")
  28. yellow := door.ColorText("BOLD YELLOW")
  29. any_caps := green
  30. any_lower := yellow
  31. any_color := func(text string) string {
  32. var output string
  33. var lastColor string
  34. for _, letter := range text {
  35. if unicode.IsUpper(letter) {
  36. if lastColor != any_caps {
  37. lastColor = any_caps
  38. output += any_caps
  39. }
  40. output += string(letter)
  41. } else {
  42. if lastColor != any_lower {
  43. lastColor = any_lower
  44. output += any_lower
  45. }
  46. output += string(letter)
  47. }
  48. }
  49. return output
  50. }
  51. text := "Press a key to continue..."
  52. work_text := []rune(text)
  53. d.Write(door.Reset + any_color(text))
  54. var r int = -1
  55. var t int
  56. sleep_ms := 250
  57. ms_sleep := 0
  58. words := find_words(text)
  59. var word int = 0
  60. var wpos int = 0
  61. current_word := text[words[word][0]:words[word][1]]
  62. t = 0
  63. r = d.WaitKey(0, int64(sleep_ms)*1000)
  64. for r == -1 {
  65. ms_sleep += sleep_ms
  66. if ms_sleep > 1000 {
  67. ms_sleep -= 1000
  68. t++
  69. if t >= int(door.Inactivity) {
  70. d.Write(strings.Repeat("\b", len(text)))
  71. d.Write(any_color(text) + door.CRNL)
  72. return -1
  73. }
  74. }
  75. wpos++
  76. if wpos == len(current_word) {
  77. word++
  78. wpos = 0
  79. work_text = []rune(text)
  80. if word == len(words) {
  81. word = 0
  82. if any_caps == green {
  83. any_caps = blue
  84. } else {
  85. any_caps = green
  86. }
  87. d.Write(strings.Repeat("\b", len(text)))
  88. d.Write(any_color(string(work_text)))
  89. current_word = text[words[word][0]:words[word][1]]
  90. goto READKEY
  91. }
  92. current_word = text[words[word][0]:words[word][1]]
  93. }
  94. {
  95. c := rune(current_word[wpos])
  96. for !unicode.IsLower(c) {
  97. wpos++
  98. if wpos == len(current_word) {
  99. wpos = 0
  100. word++
  101. work_text = []rune(text)
  102. if word == len(words) {
  103. word = 0
  104. }
  105. current_word = text[words[word][0]:words[word][1]]
  106. }
  107. c = rune(current_word[wpos])
  108. }
  109. // Ok, we found something that's lower case
  110. work_text[words[word][0]+wpos] = unicode.ToUpper(c)
  111. }
  112. d.Write(strings.Repeat("\b", len(text)))
  113. d.Write(any_color(string(work_text)))
  114. READKEY:
  115. r = d.WaitKey(0, int64(sleep_ms)*1000)
  116. }
  117. d.Write(strings.Repeat("\b", len(text)))
  118. d.Write(any_color(text))
  119. return r
  120. }
  121. func MainMenu() door.Menu {
  122. // Make the main menu
  123. m := door.Menu{Panel: door.Panel{Width: 45,
  124. X: 5,
  125. Y: 5,
  126. Style: door.DOUBLE,
  127. Title: "[ Main Menu: ]",
  128. TitleOffset: 3,
  129. BorderColor: door.ColorText("BRI CYAN ON BLA")}}
  130. m.SelectedR = door.MakeMenuRender(door.ColorText("BOLD CYAN"),
  131. door.ColorText("BOLD BLUE"),
  132. door.ColorText("BOLD CYAN"),
  133. door.ColorText("BOLD BLUE"))
  134. m.UnselectedR = door.MakeMenuRender(door.ColorText("BOLD YEL ON BLUE"),
  135. door.ColorText("BOLD WHI ON BLUE"),
  136. door.ColorText("BOLD YEL ON BLUE"),
  137. door.ColorText("BOLD CYAN ON BLUE"))
  138. m.AddSelection("A", "ANSI Display")
  139. m.AddSelection("D", "Display Information (dropfile, screen)")
  140. m.AddSelection("I", "Input Prompt Demo")
  141. m.AddSelection("P", "Progress Bars Demo")
  142. m.AddSelection("S", "Show Panel")
  143. m.AddSelection("Q", "Quit")
  144. return m
  145. }
  146. func display_information(d *door.Door) {
  147. d.Write(door.Clrscr)
  148. keyColor := door.ColorText("BRI GREEN")
  149. sepColor := door.ColorText("BRI YEL")
  150. valColor := door.ColorText("CYAN")
  151. nice_format := func(key string, value string) string {
  152. return fmt.Sprintf("%s%-20s %s: %s%s", keyColor, key, sepColor, valColor, value) + door.CRNL
  153. }
  154. d.Write(nice_format("BBS Software", d.Config.BBSID))
  155. d.Write(nice_format("Real Name", d.Config.Real_name))
  156. d.Write(nice_format("Handle", d.Config.Handle))
  157. d.Write(nice_format("User #", strconv.Itoa(d.Config.User_number)))
  158. d.Write(nice_format("Security Level", strconv.Itoa(d.Config.Security_level)))
  159. d.Write(nice_format("Node #", strconv.Itoa(d.Config.Node)))
  160. d.Write(nice_format("Unicode", strconv.FormatBool(door.Unicode)))
  161. d.Write(nice_format("CP437", strconv.FormatBool(door.CP437)))
  162. d.Write(nice_format("Screen Size", fmt.Sprintf("%d X %d", door.Width, door.Height)))
  163. }
  164. func display_ansi(d *door.Door) {
  165. space := SPACE()
  166. d.Write(door.Clrscr)
  167. for _, line := range space {
  168. if door.Unicode {
  169. d.Write(door.CP437_to_Unicode(line) + door.CRNL)
  170. } else {
  171. d.Write(line + door.CRNL)
  172. }
  173. }
  174. }
  175. func input_demo(d *door.Door) {
  176. inputColor := door.ColorText("BRI WHI ON BLUE")
  177. inputColor2 := door.ColorText("BRI WHI ON GREEN")
  178. prompt := door.Line{Text: "What is YOUR Name: "}
  179. prompt.RenderF = door.RenderBlueYellow
  180. d.Write(prompt.Output() + inputColor)
  181. name := d.Input(25)
  182. d.Write(door.Reset + door.CRNL)
  183. prompt.Text = "What is Your Quest: "
  184. d.Write(prompt.Output() + inputColor2)
  185. quest := d.Input(35)
  186. d.Write(door.Reset + door.CRNL)
  187. prompt.Text = "What is your Favorite CoLoR: "
  188. d.Write(prompt.Output() + inputColor2)
  189. color := d.Input(15)
  190. d.Write(door.Reset + door.CRNL)
  191. d.Write(fmt.Sprintf("You're %s on the %s quest, and fond of %s."+door.CRNL, name, quest, color))
  192. }
  193. func progress_bars(d *door.Door) {
  194. d.Write(door.Clrscr)
  195. bar := door.BarLine{Line: door.Line{DefaultColor: door.ColorText("BOLD YELLOW")}, Width: 20, Style: door.HALF_STEP}
  196. bar2 := door.BarLine{Width: 30, Style: door.SOLID, PercentStyle: door.PERCENT_SPACE}
  197. bar2.ColorRange = []door.BarRange{
  198. {2500, door.ColorText("RED")},
  199. {5000, door.ColorText("BROWN")},
  200. {7500, door.ColorText("BOLD YEL")},
  201. {9500, door.ColorText("GREEN")},
  202. {10100, door.ColorText("BRI GRE")}}
  203. bar3 := door.BarLine{Width: 15, Style: door.GRADIENT, Line: door.Line{DefaultColor: door.ColorText("CYAN")}}
  204. var percentage int64
  205. bar.UpdateP = pctUpdate(&percentage)
  206. bar2.UpdateP = pctUpdate(&percentage)
  207. bar3.UpdateP = pctUpdate(&percentage)
  208. update_bars := func() {
  209. bar.Update()
  210. bar2.Update()
  211. bar3.Update()
  212. }
  213. d.Write(door.Goto(3, 12) + "Half-Step")
  214. d.Write(door.Goto(25, 12) + "% with space and Color Range")
  215. d.Write(door.Goto(57, 12) + "Gradient")
  216. bar_start := door.Goto(3, 15)
  217. for f := 0; f <= 100; f++ {
  218. percentage = int64(f * 100)
  219. update_bars()
  220. d.Write(bar_start + bar.Output() + " " + door.Reset + bar2.Output() + door.Reset + " " + bar3.Output())
  221. if d.Disconnected {
  222. // don't continue to sleep if we're disconnected
  223. break
  224. }
  225. time.Sleep(time.Millisecond * 100)
  226. }
  227. }
  228. func panel_demo(d *door.Door) {
  229. width := 55
  230. fmtStr := "%-55s"
  231. p := door.Panel{X: 5, Y: 5, Width: width, Style: door.DOUBLE, BorderColor: door.ColorText("CYAN ON BLUE"), Title: "[ Panel Demo ]"}
  232. lineColor := door.ColorText("BRIGHT WHI ON BLUE")
  233. // Add lines to the panel
  234. for _, line := range []string{"The BBS Door Panel Demo", "(C) 2021 Red Green Software, https://red-green.com"} {
  235. if door.Unicode {
  236. line = strings.Replace(line, "(C)", "\u00a9", -1)
  237. }
  238. l := door.Line{Text: fmt.Sprintf(fmtStr, line), DefaultColor: lineColor}
  239. p.Lines = append(p.Lines, l)
  240. }
  241. p.Lines = append(p.Lines, p.Spacer())
  242. p.Lines = append(p.Lines, door.Line{Text: fmt.Sprintf(fmtStr, "Welcome to golang!"), DefaultColor: lineColor})
  243. d.Write(door.Clrscr)
  244. d.Write(p.Output() + door.CRNL)
  245. }
  246. func main() {
  247. var message string
  248. // Get path to binary, and chdir to it.
  249. binaryPath, _ := os.Executable()
  250. binaryPath = filepath.Dir(binaryPath)
  251. _ = os.Chdir(binaryPath)
  252. fmt.Println("Starting space-ace")
  253. rng := rand.New(mt19937.New())
  254. rng.Seed(time.Now().UnixNano())
  255. /*
  256. sqliteDatabase, err := sql.Open("sqlite3", "./space-database.db")
  257. if err != nil {
  258. fmt.Printf("%#v\n", err)
  259. }
  260. defer sqliteDatabase.Close()
  261. createTable(sqliteDatabase)
  262. */
  263. d := door.Door{}
  264. d.Init("space-ace")
  265. db := DBData{}
  266. db.Open("space-database.db")
  267. defer db.Close()
  268. db.User = d.Config.Real_name // or d.Config.Handle
  269. var Config map[string]string
  270. const config_filename = "space-ace.yaml"
  271. if FileExists(config_filename) {
  272. Config = LoadConfig(config_filename)
  273. } else {
  274. Config = make(map[string]string)
  275. }
  276. var update_config bool = false
  277. config_defaults := map[string]string{"hands_per_day": "3",
  278. "date_format": "%B %d",
  279. "date_score": "%m/%d/%Y",
  280. "makeup_per_day": "5",
  281. "play_days_ahead": "2",
  282. "date_monthly": "%B %Y"}
  283. // _seed
  284. for key, value := range config_defaults {
  285. if SetConfigDefault(&Config, key, value) {
  286. update_config = true
  287. }
  288. }
  289. if update_config {
  290. SaveConfig(config_filename, Config)
  291. }
  292. s := StarField{}
  293. s.Regenerate()
  294. s.Display(&d)
  295. d.Write(door.Goto(1, 1) + door.Reset)
  296. last_call, _ := strconv.ParseInt(db.GetSetting("LastCall", "0"), 10, 64)
  297. now := time.Now()
  298. db.SetSetting("LastCall", fmt.Sprintf("%d", now.Unix()))
  299. if last_call != 0 {
  300. d.Write("Welcome Back!" + door.CRNL)
  301. delta := now.Sub(time.Unix(last_call, 0))
  302. hours := delta.Hours()
  303. if hours > 24 {
  304. d.Write(fmt.Sprintf("It's been %0.1f days since you last played."+door.CRNL, hours/24))
  305. } else {
  306. if hours > 1 {
  307. d.Write(fmt.Sprintf("It's been %0.1f hours since you last played."+door.CRNL, hours))
  308. } else {
  309. minutes := delta.Minutes()
  310. d.Write(fmt.Sprintf("It's been %0.1f minutes since you last played."+door.CRNL, minutes))
  311. }
  312. }
  313. }
  314. bold := door.Color(1, 37, 40)
  315. bolder := door.ColorText("BLI BOLD YEL ON BLUE")
  316. d.Write("Welcome to " + bolder + "door32.sys" + door.Reset + door.CRNL + "..." + door.CRNL)
  317. key := press_a_key(&d)
  318. d.Write(fmt.Sprintf("Key %s%d / %x%s", bold, key, key, door.Reset) + door.CRNL)
  319. b := door.AlertBox("Warning: golang is in use!", 1)
  320. d.Write(door.ColorText("BRI WHI ON GREEN"))
  321. for _, line := range b {
  322. d.Write(line + door.CRNL)
  323. }
  324. d.Write(door.Reset + door.CRNL)
  325. left := d.TimeLeft()
  326. message = fmt.Sprintf("You have %0.2f minutes / %0.2f seconds remaining..."+door.CRNL, left.Minutes(), left.Seconds())
  327. d.Write(message)
  328. press_a_key(&d)
  329. mainmenu := MainMenu()
  330. var choice int
  331. for choice >= 0 {
  332. d.Write(door.Clrscr)
  333. s.Display(&d)
  334. choice = mainmenu.Choose(&d)
  335. if choice < 0 {
  336. break
  337. }
  338. option := mainmenu.GetOption(choice)
  339. // fmt.Printf("Choice: %d, Option: %c\n", choice, option)
  340. switch option {
  341. case 'A':
  342. display_ansi(&d)
  343. press_a_key(&d)
  344. case 'D':
  345. display_information(&d)
  346. press_a_key(&d)
  347. case 'I':
  348. d.Write(door.Reset + door.CRNL + door.CRNL)
  349. input_demo(&d)
  350. press_a_key(&d)
  351. case 'P':
  352. progress_bars(&d)
  353. press_a_key(&d)
  354. case 'S':
  355. panel_demo(&d)
  356. press_a_key(&d)
  357. case 'Q':
  358. choice = -1
  359. // break
  360. }
  361. }
  362. d.Write(door.Reset + door.CRNL)
  363. message = fmt.Sprintf("Returning to %s ..."+door.CRNL, d.Config.BBSID)
  364. d.Write(message)
  365. d.WaitKey(1, 0)
  366. left = d.TimeLeft()
  367. message = fmt.Sprintf("You had %0.2f minutes / %0.2f seconds remaining!"+door.CRNL, left.Minutes(), left.Seconds())
  368. d.Write(message)
  369. left = d.TimeUsed()
  370. d.Write(fmt.Sprintf("You used %0.2f seconds / %0.2f minutes."+door.CRNL, left.Seconds(), left.Minutes()))
  371. fmt.Println("Exiting space-ace")
  372. }