display.go 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. package main
  2. import (
  3. "bytes"
  4. "fmt"
  5. "red-green/door"
  6. "strconv"
  7. "strings"
  8. "time"
  9. )
  10. func display_information(d *door.Door) {
  11. d.WriteS(door.Clrscr)
  12. var headerColor string = door.ColorText("BRI CYAN")
  13. var keyColor string = door.ColorText("BRI GREEN")
  14. var sepColor string = door.ColorText("BRI YEL")
  15. var valColor string = door.ColorText("CYAN")
  16. var nice_format func(string, string) string = func(key string, value string) string {
  17. return fmt.Sprintf("%s%-20s %s: %s%s", keyColor, key, sepColor, valColor, value) + door.CRNL
  18. }
  19. var offset string
  20. var header string = "DropFile: "
  21. offset = strings.Repeat(" ", len(header))
  22. d.WriteA(headerColor, header)
  23. d.WriteA(nice_format("Comm Type", strconv.Itoa(d.Config.Comm_type)))
  24. if d.Config.BBSID != "" {
  25. d.WriteA(offset, nice_format("BBS Software", d.Config.BBSID))
  26. }
  27. d.WriteA(offset, nice_format("Time Left", strconv.Itoa(d.Config.Time_left)))
  28. d.WriteA(offset, nice_format("Real Name", d.Config.Real_name))
  29. // d.Write(nice_format("Comm Handle", strconv.Itoa(d.Config.Comm_handle)))
  30. d.WriteA(offset, nice_format("Handle", d.Config.Handle))
  31. d.WriteA(offset, nice_format("User #", strconv.Itoa(d.Config.User_number)))
  32. d.WriteA(offset, nice_format("Security Level", strconv.Itoa(d.Config.Security_level)))
  33. d.WriteA(offset, nice_format("Node #", strconv.Itoa(d.Config.Node)))
  34. header = "Detected: "
  35. offset = strings.Repeat(" ", len(header))
  36. d.WriteA(door.CRNL, headerColor, header)
  37. d.WriteA(nice_format("Unicode", strconv.FormatBool(door.Unicode)))
  38. d.WriteA(offset, nice_format("CP437", strconv.FormatBool(door.CP437)))
  39. d.WriteA(offset, nice_format("Full CP437", strconv.FormatBool(door.Full_CP437)))
  40. d.WriteA(offset, nice_format("Screen Size", fmt.Sprintf("%d X %d", door.Width, door.Height)))
  41. var time time.Duration = d.TimeLeft()
  42. d.WriteA(offset, nice_format("Door Time Left", fmt.Sprintf("%d Hours, %d Minutes, %d Seconds", int(time.Hours()), int(time.Minutes())%60, int(time.Seconds())%60)))
  43. time = d.TimeUsed()
  44. d.WriteA(offset, nice_format("Door Time Used", fmt.Sprintf("%d Minutes, %d Seconds", int(time.Minutes()), int(time.Seconds())%60)))
  45. press_a_key(d)
  46. d.WriteA(door.Clrscr, door.CRNL, door.CRNL, door.CRNL)
  47. modules := GetModules()
  48. header = "Build: "
  49. offset = strings.Repeat(" ", len(header))
  50. d.WriteA(headerColor, header)
  51. gover, gitver, goarch, goos := GetVersion()
  52. d.WriteA(nice_format("go version", gover))
  53. d.WriteA(offset, nice_format("git commit", gitver))
  54. d.WriteA(offset, nice_format("Arch", goarch))
  55. d.WriteA(offset, nice_format("OS", goos))
  56. for mod, version := range modules {
  57. d.WriteA(offset, nice_format(mod, version))
  58. }
  59. }
  60. func display_ansi(d *door.Door) {
  61. var art []string = ANSIGrowl()
  62. d.WriteS(door.Clrscr)
  63. for _, line := range art {
  64. d.WriteS(line + door.CRNL)
  65. }
  66. }
  67. func input_demo(d *door.Door) {
  68. var ticker *time.Ticker = time.NewTicker(time.Second)
  69. var StopIt = make(chan bool)
  70. go func() {
  71. for {
  72. select {
  73. case <-StopIt:
  74. return
  75. case t := <-ticker.C:
  76. const tf = "January 2, 2006 03:04:05 PM MST"
  77. output := door.SavePos + door.GotoS(5, 2) + door.ColorText("BRI WHI ON CYAN") + t.Format(tf) + door.RestorePos
  78. d.WriteS(output)
  79. }
  80. }
  81. }()
  82. var inputColor string = door.ColorText("BRI WHI ON BLUE")
  83. var inputColor2 string = door.ColorText("BRI WHI ON GREEN")
  84. var prompt door.Line = door.NewLine("What is YOUR Name: ")
  85. prompt.RenderF = door.RenderBlueYellow
  86. d.WriteA(prompt.Output(), inputColor)
  87. var name string = d.Input(25)
  88. d.WriteA(door.Reset, door.CRNL)
  89. prompt.Text.Reset()
  90. prompt.Text.WriteString("What is Your Quest:")
  91. d.WriteA(prompt.Output(), inputColor2)
  92. var quest string = d.Input(35)
  93. d.WriteA(door.Reset, door.CRNL)
  94. prompt.Text.Reset()
  95. prompt.Text.WriteString("What is your Favorite CoLoR: ")
  96. d.WriteA(prompt.Output(), inputColor)
  97. var color string = d.Input(15)
  98. d.WriteA(door.Reset, door.CRNL)
  99. ticker.Stop()
  100. StopIt <- true
  101. d.WriteA(fmt.Sprintf("You're %s on the %s quest, and fond of %s."+door.CRNL, name, quest, color))
  102. }
  103. func pctUpdate(pct *int64) func() int64 {
  104. return func() int64 {
  105. return *pct
  106. }
  107. }
  108. func progress_bars(d *door.Door) {
  109. d.WriteA(door.Clrscr)
  110. var barHalf door.BarLine = door.BarLine{Line: door.Line{DefaultColor: door.ColorText("BOLD YELLOW")}, Width: 20, Style: door.HALF_STEP}
  111. var barPercent door.BarLine = door.BarLine{Width: 30, Style: door.SOLID, PercentStyle: door.PERCENT_SPACE}
  112. barPercent.ColorRange = []door.BarRange{
  113. {Percent: 2500, Color: door.ColorText("RED")},
  114. {Percent: 5000, Color: door.ColorText("BROWN")},
  115. {Percent: 7500, Color: door.ColorText("BOLD YEL")},
  116. {Percent: 9500, Color: door.ColorText("GREEN")},
  117. {Percent: 10100, Color: door.ColorText("BRI GRE")}}
  118. var barGradient door.BarLine = door.BarLine{Width: 15, Style: door.GRADIENT, Line: door.Line{DefaultColor: door.ColorText("CYAN")}}
  119. var percentage int64
  120. barHalf.UpdateP = pctUpdate(&percentage)
  121. barPercent.UpdateP = pctUpdate(&percentage)
  122. barGradient.UpdateP = pctUpdate(&percentage)
  123. update_bars := func() {
  124. barHalf.Update()
  125. barPercent.Update()
  126. barGradient.Update()
  127. }
  128. d.WriteA(door.Goto(3, 12), "Half-Step")
  129. d.WriteA(door.Goto(25, 12), "% with space and Color Range")
  130. d.WriteA(door.Goto(57, 12), "Gradient")
  131. d.WriteA(door.HideCursor)
  132. bar_start := door.Goto(3, 15)
  133. for f := 0; f <= 100; f++ {
  134. d.WriteA(door.Goto(3, 10), door.Reset+fmt.Sprintf("Value: %d", f))
  135. percentage = int64(f * 100)
  136. update_bars()
  137. d.WriteA(bar_start, barHalf.Output(), " ", door.Reset, barPercent.Output(), door.Reset+" ", barGradient.Output())
  138. if d.Disconnect() {
  139. // don't continue to sleep if we're disconnected
  140. break
  141. }
  142. time.Sleep(time.Millisecond * 100)
  143. }
  144. d.WriteA(door.ShowCursor)
  145. }
  146. func width_demo(d *door.Door) {
  147. var w int = door.Width
  148. var panel door.Panel = door.Panel{X: 1, Y: 1, Width: w}
  149. var lineColor string = door.ColorText("WHI")
  150. var line string
  151. for y := 1; y <= door.Height; y++ {
  152. if y%10 == 0 {
  153. line = strings.Repeat("1234567890", w/10)
  154. for x := len(line); x < w; x++ {
  155. line += strconv.Itoa((x + 1) % 10)
  156. }
  157. } else {
  158. line = ""
  159. for x := 1; x < w; x++ {
  160. if x%10 == 0 {
  161. line += strconv.Itoa(y % 10)
  162. } else {
  163. line += " "
  164. }
  165. }
  166. }
  167. var l door.Line = door.Line{Text: bytes.NewBuffer([]byte(line)), DefaultColor: lineColor}
  168. panel.Lines = append(panel.Lines, l)
  169. }
  170. var message string = fmt.Sprintf("Screen Size: %d X %d", door.Width, door.Height)
  171. d.Write(panel.Output())
  172. // Output alert on top of panel
  173. var cx, cy int
  174. cx = (door.Width - len(message) + 2) / 2
  175. cy = (door.Height - 3) / 2
  176. var alert []string = door.AlertBox(message, 1)
  177. d.WriteA(door.ColorText("BRI YEL ON BLUE"))
  178. for idx, ab := range alert {
  179. d.WriteA(door.Goto(cx, cy+idx), ab)
  180. }
  181. d.WriteA(door.Reset, panel.GotoEnd())
  182. // Pause for key
  183. d.WaitKey(door.Inactivity)
  184. panel.Lines = make([]door.Line, 0)
  185. var background string = "BUGZ Test Door in GO "
  186. var bl int = len(background)
  187. for y := 1; y <= door.Height; y++ {
  188. offset := (y - 1) % bl
  189. line = background[offset:]
  190. for len(line) < w {
  191. if len(line)+bl <= w {
  192. line += background
  193. } else {
  194. line += background[0 : w-len(line)]
  195. }
  196. }
  197. var l door.Line = door.Line{Text: bytes.NewBuffer([]byte(line)), RenderF: door.RenderBlueYellow}
  198. panel.Lines = append(panel.Lines, l)
  199. }
  200. d.Write(panel.Output())
  201. d.WaitKey(door.Inactivity)
  202. }