panel.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. package door
  2. import (
  3. "log"
  4. "strings"
  5. )
  6. type BorderStyle int
  7. const (
  8. NONE BorderStyle = iota
  9. SINGLE
  10. DOUBLE
  11. DOUBLE_SINGLE
  12. SINGLE_DOUBLE
  13. )
  14. type Panel struct {
  15. X int
  16. Y int
  17. Width int
  18. Style BorderStyle
  19. BorderColor string
  20. Lines []Line
  21. Title string
  22. TitleColor string
  23. TitleOffset int
  24. }
  25. func (p *Panel) Range(withBorder bool) (sx, sy, ex, ey int) {
  26. sx = p.X
  27. sy = p.Y
  28. ex = p.X + p.Width
  29. ey = p.Y + len(p.Lines)
  30. if p.Style > 0 {
  31. if withBorder {
  32. ex += 2
  33. ey += 2
  34. } else {
  35. sx += 1
  36. sy += 1
  37. }
  38. }
  39. return
  40. }
  41. // Clear out the panel
  42. func (p *Panel) Clear() string {
  43. var style int = int(p.Style)
  44. var output string
  45. var row int = p.Y
  46. var blank string
  47. if style > 0 {
  48. blank = strings.Repeat(" ", p.Width+2)
  49. output += Goto(p.X, row) + blank
  50. row++
  51. } else {
  52. blank = strings.Repeat(" ", p.Width)
  53. }
  54. for _ = range p.Lines {
  55. output += Goto(p.X, row) + blank
  56. row++
  57. }
  58. if style > 0 {
  59. output += Goto(p.X, row) + blank
  60. }
  61. return output
  62. }
  63. // Output the panel
  64. func (p *Panel) Output() string {
  65. var style int = int(p.Style)
  66. var box_style *BoxStyle
  67. var output string
  68. if style > 0 {
  69. box_style = &BOXES[style-1]
  70. }
  71. var row int = p.Y
  72. if style > 0 {
  73. // Top line / border
  74. output += Goto(p.X, row) + p.BorderColor + box_style.Top_Left
  75. if p.Title != "" {
  76. if p.TitleOffset+len(p.Title) > p.Width {
  77. log.Panicf("Panel (not wide enough) Width %d : Title size %d + offset %d = %d\n",
  78. p.Width, len(p.Title), p.TitleOffset, p.TitleOffset+len(p.Title))
  79. }
  80. output += strings.Repeat(box_style.Top, p.TitleOffset) + p.TitleColor + p.Title + p.BorderColor
  81. }
  82. output += strings.Repeat(box_style.Top, p.Width-(p.TitleOffset+len(p.Title))) + box_style.Top_Right
  83. row++
  84. }
  85. for _, line := range p.Lines {
  86. output += Goto(p.X, row)
  87. line.LineLength(&line.Text)
  88. var joined bool = false
  89. if style > 0 {
  90. top := box_style.Top
  91. if line.Text[0:len(top)] == top {
  92. // Yes, this line needs to be joined...
  93. output += p.BorderColor + box_style.Middle_Left + line.Output() + p.BorderColor + box_style.Middle_Right
  94. joined = true
  95. }
  96. }
  97. if !joined {
  98. if style > 0 {
  99. output += p.BorderColor + box_style.Side
  100. }
  101. output += line.Output()
  102. if style > 0 {
  103. output += p.BorderColor + box_style.Side
  104. }
  105. }
  106. row++
  107. }
  108. if style > 0 {
  109. // Bottom / border
  110. output += Goto(p.X, row) + p.BorderColor + box_style.Bottom_Left
  111. output += strings.Repeat(box_style.Top, p.Width) + box_style.Bottom_Right
  112. }
  113. return output
  114. }
  115. // Output anything that has updated
  116. func (p *Panel) Update() string {
  117. var output string
  118. var style int = int(p.Style)
  119. var row, col int
  120. row = p.Y
  121. col = p.X
  122. if style > 0 {
  123. row++
  124. col++
  125. }
  126. for idx := range p.Lines {
  127. if p.Lines[idx].Update() {
  128. // Yes, line was updated
  129. output += Goto(col, row) + p.Lines[idx].Output()
  130. }
  131. row++
  132. }
  133. return output
  134. }
  135. // Output the updated line
  136. func (p *Panel) UpdateLine(index int) string {
  137. var output string
  138. var style int = int(p.Style)
  139. p.Lines[index].Update()
  140. var row, col int
  141. row = p.Y + index
  142. col = p.X
  143. if style > 0 {
  144. row++
  145. col++
  146. }
  147. var line *Line = &p.Lines[index]
  148. output += Goto(col, row) + line.Output()
  149. return output
  150. }
  151. // Position Cursor at the "end" of the panel
  152. func (p *Panel) GotoEnd() string {
  153. var row, col int
  154. row = p.Y
  155. col = p.X
  156. if p.Style > 0 {
  157. row++
  158. col += 2
  159. }
  160. row += len(p.Lines)
  161. col += p.Width
  162. return Goto(col, row)
  163. }
  164. // Is the top line of this style a single line?
  165. func Single(bs BorderStyle) bool {
  166. switch bs {
  167. case SINGLE, SINGLE_DOUBLE:
  168. return true
  169. default:
  170. return false
  171. }
  172. }
  173. // Create a spacer line that will be connected maybe to the sides.
  174. func (p *Panel) Spacer() Line {
  175. var l Line = Line{}
  176. var pos int
  177. if Single(p.Style) {
  178. pos = 0
  179. } else {
  180. pos = 1
  181. }
  182. l.Text = strings.Repeat(BOXES[pos].Top, p.Width)
  183. return l
  184. }
  185. func (p *Panel) Center() {
  186. p.CenterX()
  187. p.CenterY()
  188. }
  189. func (p *Panel) CenterX() {
  190. p.X = (Width - p.Width) / 2
  191. }
  192. func (p *Panel) CenterY() {
  193. p.Y = (Height - len(p.Lines)) / 2
  194. }
  195. // Panel Clicked?
  196. // If onBorder == true, returns true, 0 for border click.
  197. // Otherwise true, line clicked on (starting with 1)/
  198. func (p *Panel) Clicked(m Mouse, onBorder bool) (bool, int) {
  199. var sx, sy, ex, ey = p.Range(onBorder)
  200. var mx = int(m.X)
  201. var my = int(m.Y)
  202. if (mx >= sx) && (mx <= ex) {
  203. if (my >= sy) && (my <= ey) {
  204. if onBorder {
  205. if my == sy || my == ey {
  206. return true, 0
  207. }
  208. return true, my - sy
  209. } else {
  210. return true, (my - sy) + 1
  211. }
  212. }
  213. }
  214. return false, 0
  215. }