space-ace.go 10 KB

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