about.go 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. package main
  2. import (
  3. "fmt"
  4. "red-green/door"
  5. "strings"
  6. "github.com/mitchellh/go-wordwrap"
  7. )
  8. func about_test_door(d *door.Door) {
  9. var W int = 58
  10. // We're colliding with MemStats window.
  11. // (80 - 60) / 2 = 10
  12. var center_x int = (door.Width - W) / 2
  13. // MaxX = 80 - 20 = 60
  14. if MaxX < center_x+W {
  15. // Problem.
  16. center_x = (MaxX - W) / 2
  17. if center_x < 0 {
  18. //Problem #2
  19. W = 48
  20. center_x = (MaxX - W) / 2
  21. }
  22. }
  23. var center_y int = (door.Height - 16) / 2
  24. var about door.Panel = door.Panel{X: center_x,
  25. Y: center_y,
  26. Width: W,
  27. Style: door.SINGLE_DOUBLE,
  28. BorderColor: door.ColorText("BOLD YELLOW ON BLUE"),
  29. }
  30. about.Lines = append(about.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, "About This Door"),
  31. DefaultColor: door.ColorText("BOLD CYAN ON BLUE")})
  32. about.Lines = append(about.Lines, about.Spacer())
  33. about.Lines = append(about.Lines, door.Line{Text: fmt.Sprintf("%*s", -W, "Test Door written in go, using go door.")})
  34. var copyright string = "(C) 2022 Bugz, Red Green Software"
  35. if door.Unicode {
  36. copyright = strings.Replace(copyright, "(C)", "\u00a9", -1)
  37. }
  38. about.Lines = append(about.Lines,
  39. door.Line{Text: copyright, Width: W,
  40. DefaultColor: door.ColorText("BOLD WHITE ON BLUE")})
  41. for _, text := range []string{"",
  42. "This door was written by Bugz.",
  43. ""} {
  44. about.Lines = append(about.Lines, door.Line{Text: text, Width: W})
  45. }
  46. var mainText string = "It is written in Go, detects CP437/unicode, detects screen " +
  47. "size, supports door.sys & door32.sys, supports TheDraw Fonts " +
  48. "(the fonts are compiled into the door), has NoMoreSecrets " +
  49. "and SpinRite effects, and runs on Linux " +
  50. "and sometimes even Windows..."
  51. var wrapped string = wordwrap.WrapString(mainText, uint(W))
  52. for _, text := range strings.Split(wrapped, "\n") {
  53. about.Lines = append(about.Lines, door.Line{Text: text, Width: W})
  54. }
  55. var better door.NoMoreSecretsConfig = door.NoMoreSecretsDefault
  56. better.Jumble_Loop_Speed = 75 // 35
  57. better.Reveal_Loop_Speed = 100 // 50
  58. better.Color = door.ColorText("BRI CYAN ON BLUE")
  59. door.NoMoreSecrets(about.Output(), d, &better)
  60. }