testdoor.go 9.0 KB

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