testdoor.go 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. package main
  2. import (
  3. "fmt"
  4. "log"
  5. "red-green/door"
  6. "runtime/debug"
  7. "time"
  8. // "net/http"
  9. // _ "net/http/pprof"
  10. )
  11. // Max X value we can use before hitting MemStats panel.
  12. var MaxX int = 0
  13. func press_keys(d *door.Door) {
  14. d.Write(door.Reset + door.CRNL + "Press some keys... <ENTER> to exit.")
  15. var r rune
  16. var ex door.Extended
  17. var err error
  18. for (r != 0x0d) && (err == nil) {
  19. r, ex, err = d.WaitKey(door.Inactivity)
  20. if ex == door.MOUSE {
  21. m, ok := d.GetMouse()
  22. if ok {
  23. // var m door.MouseInfo = door.Mouse
  24. d.Write(fmt.Sprintf("M %d (%d,%d) ", m.Button, m.X, m.Y))
  25. }
  26. } else {
  27. if ex == door.NOP {
  28. d.Write(fmt.Sprintf("%d (%x) ", r, r))
  29. } else {
  30. d.Write(fmt.Sprintf("<%s> ", ex.String()))
  31. }
  32. }
  33. }
  34. d.Write(door.Reset + door.CRNL)
  35. }
  36. func press_a_key(d *door.Door) error {
  37. var err error
  38. var ex door.Extended
  39. d.Write(door.Reset + door.CRNL + "Press a key, or LEFT mouse click to continue...")
  40. for {
  41. _, ex, err = d.WaitKey(door.Inactivity)
  42. if ex == door.MOUSE {
  43. m, ok := d.GetMouse()
  44. if ok {
  45. if m.Button == 1 {
  46. break
  47. }
  48. }
  49. } else {
  50. break
  51. }
  52. }
  53. d.Write(door.CRNL)
  54. return err
  55. }
  56. func main() {
  57. var message string
  58. /*
  59. go func() {
  60. http.ListenAndServe(":6060", nil)
  61. }()
  62. */
  63. var d door.Door = door.Door{}
  64. d.Init("testdoor")
  65. defer func() {
  66. if err := recover(); err != nil {
  67. // This displays stack trace stderr
  68. debug.PrintStack()
  69. fmt.Println("ERROR:", err)
  70. log.Println("FAILURE:", err)
  71. // Display error to user
  72. d.Write(fmt.Sprintf(door.Reset+door.CRNL+"Exception: %v"+door.CRNL, err))
  73. }
  74. }()
  75. defer d.Close()
  76. // Updaters work best when the screen doesn't scroll, so start
  77. // us off at the very top.
  78. d.Write(door.Clrscr)
  79. // Start spinrite effects
  80. var ticker *time.Ticker = time.NewTicker(time.Millisecond * time.Duration(100))
  81. var spin door.SpinRiteMsg = door.SpinRiteMsgInit(15, 5,
  82. door.ColorText("RED ON GREEN"),
  83. []string{"RED", "GREEN", "SOFTWARE"})
  84. /*
  85. var spin2 door.SpinRite = door.SpinRiteInit(13, 5,
  86. door.ColorText("BRI CYA ON BLUE"))
  87. */
  88. // Add in the GoRoutine Status panel
  89. MaxX = door.Width - 20
  90. var goPanel door.Panel = door.Panel{X: door.Width - 19,
  91. Y: 3,
  92. Width: 16,
  93. Style: door.DOUBLE,
  94. Title: "] GoRuntime [",
  95. BorderColor: door.ColorText("BOLD YELL"),
  96. }
  97. goLineUpdater := func() string {
  98. status := GoRoutinesStatus()
  99. // log.Println(status)
  100. return status
  101. }
  102. var goLine door.Line = door.Line{
  103. UpdateF: goLineUpdater,
  104. Width: goPanel.Width,
  105. DefaultColor: door.ColorText("CYAN"),
  106. }
  107. // goLine.Update() // Force Update
  108. goPanel.Lines = append(goPanel.Lines, goLine)
  109. // Display Legend on GoRuntime panel
  110. const DisplayGoRoutineLegend bool = false
  111. // Display Memory
  112. const DisplayMemory bool = true
  113. var MemoryStats map[string]string
  114. if DisplayGoRoutineLegend {
  115. // Line for legend.
  116. goPanel.Lines = append(goPanel.Lines, door.Line{Width: goPanel.Width})
  117. }
  118. if DisplayMemory {
  119. memoryUpdater := func() string {
  120. MemoryStats = Memory()
  121. return fmt.Sprintf("%-8s%8s", "Sys", MemoryStats["Sys"])
  122. }
  123. goPanel.Lines = append(goPanel.Lines, door.Line{UpdateF: memoryUpdater,
  124. Width: goPanel.Width,
  125. DefaultColor: door.ColorText("BLU")})
  126. heapUpdater := func() string {
  127. return fmt.Sprintf("%-8s%8s", "HeapSys", MemoryStats["Heap"])
  128. }
  129. goPanel.Lines = append(goPanel.Lines, door.Line{UpdateF: heapUpdater,
  130. Width: goPanel.Width,
  131. DefaultColor: door.ColorText("BLU")})
  132. stackUpdater := func() string {
  133. return fmt.Sprintf("%-8s%8s", "StackSys", MemoryStats["StackSys"])
  134. }
  135. goPanel.Lines = append(goPanel.Lines, door.Line{UpdateF: stackUpdater,
  136. Width: goPanel.Width,
  137. DefaultColor: door.ColorText("BLU")})
  138. }
  139. var lIndex int = 0
  140. var legendCount int = 0
  141. const legendUpdate = 20
  142. go func() {
  143. var output string
  144. var legend []string = []string{
  145. "R=run r=Runnable",
  146. "S=Select s=Syscall",
  147. "Chan <read >write",
  148. "Z=Sleep P=Preempt",
  149. "I=Idle D=Dead",
  150. "W=Wait C=Copystk",
  151. }
  152. if DisplayGoRoutineLegend {
  153. goPanel.Lines[1].Text = legend[0]
  154. }
  155. for range ticker.C {
  156. // output = door.SavePos + door.Goto(door.Width-16, 1) + spin.Output() +
  157. // door.Goto(door.Width-15, 3) + spin2.Output() + door.RestorePos
  158. if DisplayGoRoutineLegend {
  159. legendCount++
  160. if legendCount >= legendUpdate {
  161. legendCount = 0
  162. lIndex++
  163. if lIndex == len(legend) {
  164. lIndex = 0
  165. }
  166. goPanel.Lines[1].Text = legend[lIndex]
  167. }
  168. }
  169. if goPanel.X == 0 {
  170. goPanel.X = door.Width - 40
  171. }
  172. goPanel.Update()
  173. output = door.Goto(door.Width-16, 1) + spin.Output() + goPanel.Output()
  174. /*
  175. +
  176. door.Goto(door.Width-15, 3) + spin2.Output()
  177. */
  178. if !d.Disconnect() {
  179. d.Update(output)
  180. } else {
  181. ticker.Stop()
  182. return
  183. }
  184. }
  185. }()
  186. var wopr door.WOPR
  187. wopr.Init(d.StartTime, d.TimeOut, "")
  188. wopr.ElapsedPanel.X = door.Width - 19
  189. wopr.ElapsedPanel.Y = door.Height - 15
  190. wopr.RemainingPanel.X = door.Width - 19
  191. wopr.RemainingPanel.Y = door.Height - 8
  192. wopr.Animate(&d)
  193. // bold := door.Color(1, 37, 40)
  194. var bolder string = door.ColorText("BOLD YEL ON BLUE")
  195. d.Write("Welcome to " + bolder + "go door go TestDoor." + door.Reset + door.CRNL + "..." + door.CRNL)
  196. d.EnableMouse(door.Normal)
  197. press_a_key(&d)
  198. d.Write(door.CRNL)
  199. var b []string
  200. if door.CP437 {
  201. b = door.AlertBox("Alert: go \xfb is in use!", 1)
  202. } else {
  203. b = door.AlertBox("Alert: go \u221a is in use!", 1)
  204. }
  205. warningColor := door.ColorText("BRI WHI ON GREEN")
  206. for _, line := range b {
  207. // Prevent color bleeding.
  208. d.Write(warningColor + line + door.Reset + door.CRNL)
  209. }
  210. d.Write(door.Reset + door.CRNL)
  211. var left time.Duration = d.TimeLeft()
  212. message = fmt.Sprintf("You have %0.2f minutes / %0.2f seconds remaining..."+door.CRNL, left.Minutes(), left.Seconds())
  213. d.Write(message)
  214. press_a_key(&d)
  215. var mainmenu door.Menu = MainMenu()
  216. var choice int
  217. for choice >= 0 {
  218. d.Write(door.Clrscr + door.HideCursor)
  219. choice = mainmenu.Choose(&d)
  220. d.Write(door.ShowCursor)
  221. if choice < 0 {
  222. break
  223. }
  224. option := mainmenu.GetOption(choice)
  225. wopr.Stop()
  226. // Clear WOPR panels.
  227. d.Write(door.Reset + wopr.Clear())
  228. r, b := mainmenu.Panel.RightBottomPos()
  229. d.Write(door.Goto(r, b))
  230. // fmt.Printf("Choice: %d, Option: %c\n", choice, option)
  231. switch option {
  232. case 'A':
  233. display_ansi(&d)
  234. press_a_key(&d)
  235. case 'D':
  236. display_information(&d)
  237. press_a_key(&d)
  238. case 'F':
  239. font_demo(&d)
  240. press_a_key(&d)
  241. case 'I':
  242. d.Write(door.Reset + door.CRNL + door.CRNL)
  243. input_demo(&d)
  244. press_a_key(&d)
  245. case 'M':
  246. // Why is this so far down on the screen? (Scrolls)
  247. d.Write(door.Reset + door.CRNL + "TO DO: Provide menu of options to select from..." + door.CRNL)
  248. press_a_key(&d)
  249. case 'P':
  250. progress_bars(&d)
  251. press_a_key(&d)
  252. case 'S':
  253. panel_demo(&d)
  254. press_a_key(&d)
  255. case 'T':
  256. about_test_door(&d)
  257. press_a_key(&d)
  258. case 'W':
  259. width_demo(&d)
  260. case 'Q':
  261. // This is also far down on the screen ...
  262. choice = -1
  263. case 'C': // Disabled
  264. var a, z int
  265. z = 0
  266. a = 10 / z
  267. z = a
  268. _ = a
  269. _ = z
  270. }
  271. wopr.Animate(&d)
  272. }
  273. // d.Write("\x1b[?1000l") // disable mouse
  274. // d.Write("\x1b[?1002l")
  275. d.DisableMouse()
  276. d.Write(door.Reset + door.CRNL)
  277. if d.Config.BBSID != "" {
  278. message = fmt.Sprintf("Returning to the %s BBS..."+door.CRNL, d.Config.BBSID)
  279. } else {
  280. message = "Returning to the BBS..." + door.CRNL
  281. }
  282. d.Write(message)
  283. d.WaitKey(time.Second)
  284. left = d.TimeLeft()
  285. ticker.Stop()
  286. message = fmt.Sprintf("You had %0.2f minutes remaining!"+door.CRNL, left.Minutes())
  287. d.Write(message)
  288. left = d.TimeUsed()
  289. d.Write(fmt.Sprintf("You used %0.2f seconds / %0.2f minutes."+door.CRNL, left.Seconds(), left.Minutes()))
  290. fmt.Println("Ending testdoor.go")
  291. }