space-ace.go 12 KB

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