panels.go 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. package main
  2. import (
  3. "log"
  4. "red-green/door"
  5. "strings"
  6. )
  7. type TrackPanels struct {
  8. Panel *door.Panel
  9. XPos int
  10. YPos int
  11. BColor string
  12. }
  13. // Find the Panel that was mouse clicked.
  14. func FindPanel(m door.Mouse, panels []TrackPanels) int {
  15. for idx, p := range panels {
  16. hit, _, _ := p.Panel.Within(int(m.X), int(m.Y))
  17. if hit {
  18. return idx
  19. }
  20. }
  21. return -1
  22. }
  23. func panel_demo(d *door.Door) {
  24. var width int = 55
  25. var panel door.Panel = door.Panel{X: 5, Y: 5, Width: width, Style: door.DOUBLE, BorderColor: door.ColorText("CYAN ON BLUE"), Title: "[ Panel Demo ]"}
  26. var moveColor string = door.ColorText("CYAN ON BLACK")
  27. var lineColor string = door.ColorText("BRIGHT WHI ON BLUE")
  28. // Add lines to the panel
  29. for _, line := range []string{"The BBS Door Panel Demo", "(C) 2021 Red Green Software, https://red-green.com"} {
  30. if door.Unicode {
  31. line = strings.Replace(line, "(C)", "\u00a9", -1)
  32. }
  33. var l door.Line = door.Line{Text: line, Width: width, DefaultColor: lineColor}
  34. panel.Lines = append(panel.Lines, l)
  35. }
  36. panel.Lines = append(panel.Lines, panel.Spacer())
  37. panel.Lines = append(panel.Lines, door.Line{Text: "Welcome to golang!", Width: width, DefaultColor: lineColor})
  38. width = 10
  39. var single door.Panel = door.Panel{X: 6, Y: 12, Width: width, Style: door.SINGLE, BorderColor: door.ColorText("WHITE ON BLUE"), Title: "< Single >"}
  40. single.Lines = append(single.Lines, door.Line{Text: "Example", Width: width, DefaultColor: door.ColorText("WHI ON BLACK")})
  41. single.Lines = append(single.Lines, single.Spacer())
  42. single.Lines = append(single.Lines, door.Line{Text: "More Text", Width: width, DefaultColor: door.ColorText("BRI GREEN ON BLACK")})
  43. width = 15
  44. var double_single door.Panel = door.Panel{X: 26, Y: 12, Width: width, Style: door.DOUBLE_SINGLE, BorderColor: door.ColorText("BRI CYAN ON GREEN"), Title: "Double", TitleOffset: 3}
  45. double_single.Lines = append(double_single.Lines, door.Line{Text: "Double / Single", Width: width, DefaultColor: door.ColorText("BRI WHI ON GREEN")})
  46. double_single.Lines = append(double_single.Lines, double_single.Spacer())
  47. double_single.Lines = append(double_single.Lines, door.Line{Text: "Some Other Text", Width: width, DefaultColor: door.ColorText("BRI CYAN ON GREEN")})
  48. var single_double door.Panel = door.Panel{X: 46, Y: 12, Width: width, Style: door.SINGLE_DOUBLE, BorderColor: door.ColorText("BRI YELL ON RED")}
  49. single_double.Lines = append(single_double.Lines, door.Line{Text: "Single / Double", Width: width, DefaultColor: door.ColorText("BRI WHI ON RED")})
  50. single_double.Lines = append(single_double.Lines, single_double.Spacer())
  51. single_double.Lines = append(single_double.Lines, door.Line{Text: "Text Goes Here ", Width: width, DefaultColor: door.ColorText("BRI GREEN ON RED")})
  52. d.Write(door.Clrscr)
  53. d.Write(panel.Output())
  54. d.Write(single.Output())
  55. d.Write(double_single.Output())
  56. d.Write(single_double.Output())
  57. d.Write(door.Goto(1, 20) + door.Reset + "Use MOUSE to click/drag panels, Right-Click Exits, R to Reset, Q to quit...")
  58. var panels []TrackPanels = []TrackPanels{
  59. {&panel, panel.X, panel.Y, panel.BorderColor},
  60. {&single, single.X, single.Y, single.BorderColor},
  61. {&double_single, double_single.X, double_single.Y, single.BorderColor},
  62. {&single_double, single_double.X, single_double.Y, single_double.BorderColor}}
  63. var movingPanel *door.Panel
  64. var moveX, moveY int
  65. var panelColor string
  66. for {
  67. key, ex, err := d.WaitKey(door.Inactivity)
  68. if err != nil {
  69. return
  70. }
  71. if ex == door.MOUSE {
  72. m, ok := d.GetMouse()
  73. if ok {
  74. // Process Mouse Event
  75. if m.Button == 3 {
  76. // Exit on right click
  77. return
  78. }
  79. if m.Button == 1 {
  80. idx := FindPanel(m, panels)
  81. if idx != -1 {
  82. movingPanel = panels[idx].Panel
  83. panelColor = movingPanel.BorderColor
  84. moveX = int(m.X)
  85. moveY = int(m.Y)
  86. } else {
  87. continue
  88. }
  89. // Should we do something to the panel? Yes!
  90. movingPanel.BorderColor = moveColor
  91. d.Update(movingPanel.Output())
  92. } else if m.Button == 4 {
  93. if movingPanel != nil {
  94. PR, PB := movingPanel.RightBottomPos()
  95. log.Printf("Panel (%d,%d) End(%d,%d) W %d, L %d\n", movingPanel.X, movingPanel.Y, PR, PB, movingPanel.Width, movingPanel.Length())
  96. // Ok, panel is move!
  97. d.Update(movingPanel.Clear())
  98. // Restore panel border
  99. movingPanel.BorderColor = panelColor
  100. // move panel
  101. movingPanel.X -= (moveX - int(m.X))
  102. movingPanel.Y -= (moveY - int(m.Y))
  103. // sanity checks
  104. if movingPanel.X < 1 {
  105. movingPanel.X = 1
  106. }
  107. // var edgeX bool
  108. if movingPanel.X+movingPanel.Width >= door.Width {
  109. movingPanel.X = door.Width - movingPanel.Width - 1
  110. // edgeX = true
  111. }
  112. if movingPanel.Y < 1 {
  113. movingPanel.Y = 1
  114. }
  115. // var edgeY bool
  116. if movingPanel.Y+movingPanel.Length() >= door.Height {
  117. movingPanel.Y = door.Height - movingPanel.Length() - 1
  118. // edgeY = true
  119. }
  120. PR, PB = movingPanel.RightBottomPos()
  121. log.Printf("Panel Now (%d,%d) End (%d,%d) %d, %d\n", movingPanel.X, movingPanel.Y, PR, PB, movingPanel.Width, movingPanel.Length()) //, edgeX, edgeY)
  122. // If panel is at the end of the screen -- it scrolls (syncterm)
  123. // This "fixes" it. (Maybe a better way would be to not use last
  124. // line on the screen?)
  125. // Or another way:
  126. if PR == door.Width && PB == door.Height {
  127. movingPanel.X--
  128. }
  129. /*
  130. if edgeX && edgeY {
  131. movingPanel.X--
  132. log.Printf("Panel adjust X\n")
  133. }
  134. */
  135. d.Update(movingPanel.Output())
  136. }
  137. movingPanel = nil
  138. }
  139. }
  140. } else {
  141. if (key == 'Q') || (key == 'q') || (key == '\x1b') {
  142. return
  143. }
  144. if (key == 'R') || (key == 'r') {
  145. for _, p := range panels {
  146. d.Update(p.Panel.Clear())
  147. }
  148. for _, p := range panels {
  149. p.Panel.X = p.XPos
  150. p.Panel.Y = p.YPos
  151. p.Panel.BorderColor = p.BColor
  152. d.Update(p.Panel.Output())
  153. }
  154. }
  155. if key == '0' {
  156. d.Write(panels[0].Panel.GotoEnd())
  157. }
  158. if key == '1' {
  159. d.Write(panels[1].Panel.GotoEnd())
  160. }
  161. }
  162. }
  163. }