Przeglądaj źródła

Changed to *door.Line in panels.

Steve Thielemann 1 rok temu
rodzic
commit
90c0179367
5 zmienionych plików z 32 dodań i 30 usunięć
  1. 5 5
      testdoor/about.go
  2. 6 6
      testdoor/display.go
  3. 1 1
      testdoor/mainmenu.go
  4. 8 8
      testdoor/panels.go
  5. 12 10
      testdoor/testdoor.go

+ 5 - 5
testdoor/about.go

@@ -36,11 +36,11 @@ func about_test_door(d *door.Door) {
 		BorderColor: door.ColorText("BOLD YELLOW ON BLUE"),
 	}
 
-	about.Lines = append(about.Lines, door.Line{Text: bytes.NewBuffer([]byte(fmt.Sprintf("%*s", -W, "About This Door"))),
+	about.Lines = append(about.Lines, &door.Line{Text: bytes.NewBuffer([]byte(fmt.Sprintf("%*s", -W, "About This Door"))),
 		DefaultColor: door.ColorText("BOLD CYAN ON BLUE")})
 	about.Lines = append(about.Lines, about.Spacer())
 
-	about.Lines = append(about.Lines, door.Line{Text: bytes.NewBuffer([]byte(fmt.Sprintf("%*s", -W, "Test Door written in go, using go door.")))})
+	about.Lines = append(about.Lines, &door.Line{Text: bytes.NewBuffer([]byte(fmt.Sprintf("%*s", -W, "Test Door written in go, using go door.")))})
 	var copyright string = "(C) 2022 Bugz, Red Green Software"
 
 	if door.Unicode {
@@ -48,12 +48,12 @@ func about_test_door(d *door.Door) {
 	}
 
 	about.Lines = append(about.Lines,
-		door.Line{Text: bytes.NewBuffer([]byte(copyright)), Width: W,
+		&door.Line{Text: bytes.NewBuffer([]byte(copyright)), Width: W,
 			DefaultColor: door.ColorText("BOLD WHITE ON BLUE")})
 	for _, text := range []string{"",
 		"This door was written by Bugz.",
 		""} {
-		about.Lines = append(about.Lines, door.Line{Text: bytes.NewBuffer([]byte(text)), Width: W})
+		about.Lines = append(about.Lines, &door.Line{Text: bytes.NewBuffer([]byte(text)), Width: W})
 	}
 
 	var mainText string = "It is written in Go, detects CP437/unicode, detects screen " +
@@ -63,7 +63,7 @@ func about_test_door(d *door.Door) {
 		"and sometimes even Windows..."
 	var wrapped string = wordwrap.WrapString(mainText, uint(W))
 	for _, text := range strings.Split(wrapped, "\n") {
-		about.Lines = append(about.Lines, door.Line{Text: bytes.NewBuffer([]byte(text)), Width: W})
+		about.Lines = append(about.Lines, &door.Line{Text: bytes.NewBuffer([]byte(text)), Width: W})
 	}
 
 	var better door.NoMoreSecretsConfig = door.NoMoreSecretsDefault

+ 6 - 6
testdoor/display.go

@@ -96,7 +96,7 @@ func input_demo(d *door.Door) {
 
 	var inputColor string = door.ColorText("BRI WHI ON BLUE")
 	var inputColor2 string = door.ColorText("BRI WHI ON GREEN")
-	var prompt door.Line = door.NewLine("What is YOUR Name: ")
+	var prompt *door.Line = door.NewLine("What is YOUR Name: ")
 
 	prompt.RenderF = door.RenderBlueYellow
 	log.Println("BEGIN INPUT DEMO")
@@ -129,8 +129,8 @@ func pctUpdate(pct *int64) func() int64 {
 func progress_bars(d *door.Door) {
 	d.WriteA(door.Clrscr)
 
-	var barHalf door.BarLine = door.BarLine{Line: door.Line{DefaultColor: door.ColorText("BOLD YELLOW")}, Width: 20, Style: door.HALF_STEP}
-	var barPercent door.BarLine = door.BarLine{Width: 30, Style: door.SOLID, PercentStyle: door.PERCENT_SPACE}
+	var barHalf *door.BarLine = &door.BarLine{Line: door.Line{DefaultColor: door.ColorText("BOLD YELLOW")}, Width: 20, Style: door.HALF_STEP}
+	var barPercent *door.BarLine = &door.BarLine{Width: 30, Style: door.SOLID, PercentStyle: door.PERCENT_SPACE}
 
 	barPercent.ColorRange = []door.BarRange{
 		{Percent: 2500, Color: door.ColorText("RED")},
@@ -214,7 +214,7 @@ func width_demo(d *door.Door) {
 				}
 			}
 		}
-		var l door.Line = door.Line{Text: bytes.NewBuffer([]byte(line)), DefaultColor: lineColor}
+		var l *door.Line = &door.Line{Text: bytes.NewBuffer([]byte(line)), DefaultColor: lineColor}
 		panel.Lines = append(panel.Lines, l)
 	}
 	var message string = fmt.Sprintf("Screen Size: %d X %d", door.Width, door.Height)
@@ -234,7 +234,7 @@ func width_demo(d *door.Door) {
 	// Pause for key
 	d.WaitKey(door.Inactivity)
 
-	panel.Lines = make([]door.Line, 0)
+	panel.Lines = make([]*door.Line, 0)
 	var background string = "BUGZ Test Door in GO "
 	var bl int = len(background)
 	for y := 1; y <= door.Height; y++ {
@@ -247,7 +247,7 @@ func width_demo(d *door.Door) {
 				line += background[0 : w-len(line)]
 			}
 		}
-		var l door.Line = door.Line{Text: bytes.NewBuffer([]byte(line)), RenderF: door.RenderBlueYellow}
+		var l *door.Line = &door.Line{Text: bytes.NewBuffer([]byte(line)), RenderF: door.RenderBlueYellow}
 		panel.Lines = append(panel.Lines, l)
 	}
 	d.Write(panel.Output())

+ 1 - 1
testdoor/mainmenu.go

@@ -80,7 +80,7 @@ func MainMenu() door.Menu {
 
 	var descPanel door.Panel = door.Panel{X: 2, Y: menu.Y + len(menu.Lines) + 3, Width: panelWidth, Style: door.SINGLE, BorderColor: door.ColorText("WHI ON BLU")}
 	for x := 0; x < maxLines; x++ {
-		descPanel.Lines = append(descPanel.Lines, door.Line{Width: panelWidth})
+		descPanel.Lines = append(descPanel.Lines, &door.Line{Width: panelWidth})
 	}
 
 	menu.Activated = func(item int, d *door.Door) {

+ 8 - 8
testdoor/panels.go

@@ -35,28 +35,28 @@ func panel_demo(d *door.Door) {
 		if door.Unicode {
 			line = strings.Replace(line, "(C)", "\u00a9", -1)
 		}
-		var l door.Line = door.Line{Text: bytes.NewBuffer([]byte(line)), Width: width, DefaultColor: lineColor}
+		var l *door.Line = &door.Line{Text: bytes.NewBuffer([]byte(line)), Width: width, DefaultColor: lineColor}
 		panel.Lines = append(panel.Lines, l)
 	}
 	panel.Lines = append(panel.Lines, panel.Spacer())
-	panel.Lines = append(panel.Lines, door.Line{Text: bytes.NewBuffer([]byte("Welcome to golang!")), Width: width, DefaultColor: lineColor})
+	panel.Lines = append(panel.Lines, &door.Line{Text: bytes.NewBuffer([]byte("Welcome to golang!")), Width: width, DefaultColor: lineColor})
 
 	width = 10
 	var single door.Panel = door.Panel{X: 6, Y: 12, Width: width, Style: door.SINGLE, BorderColor: door.ColorText("WHITE ON BLUE"), Title: "< Single >"}
-	single.Lines = append(single.Lines, door.Line{Text: bytes.NewBuffer([]byte("Example")), Width: width, DefaultColor: door.ColorText("WHI ON BLACK")})
+	single.Lines = append(single.Lines, &door.Line{Text: bytes.NewBuffer([]byte("Example")), Width: width, DefaultColor: door.ColorText("WHI ON BLACK")})
 	single.Lines = append(single.Lines, single.Spacer())
-	single.Lines = append(single.Lines, door.Line{Text: bytes.NewBuffer([]byte("More Text")), Width: width, DefaultColor: door.ColorText("BRI GREEN ON BLACK")})
+	single.Lines = append(single.Lines, &door.Line{Text: bytes.NewBuffer([]byte("More Text")), Width: width, DefaultColor: door.ColorText("BRI GREEN ON BLACK")})
 
 	width = 15
 	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}
-	double_single.Lines = append(double_single.Lines, door.Line{Text: bytes.NewBuffer([]byte("Double / Single")), Width: width, DefaultColor: door.ColorText("BRI WHI ON GREEN")})
+	double_single.Lines = append(double_single.Lines, &door.Line{Text: bytes.NewBuffer([]byte("Double / Single")), Width: width, DefaultColor: door.ColorText("BRI WHI ON GREEN")})
 	double_single.Lines = append(double_single.Lines, double_single.Spacer())
-	double_single.Lines = append(double_single.Lines, door.Line{Text: bytes.NewBuffer([]byte("Some Other Text")), Width: width, DefaultColor: door.ColorText("BRI CYAN ON GREEN")})
+	double_single.Lines = append(double_single.Lines, &door.Line{Text: bytes.NewBuffer([]byte("Some Other Text")), Width: width, DefaultColor: door.ColorText("BRI CYAN ON GREEN")})
 
 	var single_double door.Panel = door.Panel{X: 46, Y: 12, Width: width, Style: door.SINGLE_DOUBLE, BorderColor: door.ColorText("BRI YELL ON RED")}
-	single_double.Lines = append(single_double.Lines, door.Line{Text: bytes.NewBuffer([]byte("Single / Double")), Width: width, DefaultColor: door.ColorText("BRI WHI ON RED")})
+	single_double.Lines = append(single_double.Lines, &door.Line{Text: bytes.NewBuffer([]byte("Single / Double")), Width: width, DefaultColor: door.ColorText("BRI WHI ON RED")})
 	single_double.Lines = append(single_double.Lines, single_double.Spacer())
-	single_double.Lines = append(single_double.Lines, door.Line{Text: bytes.NewBuffer([]byte("Text Goes Here ")), Width: width, DefaultColor: door.ColorText("BRI GREEN ON RED")})
+	single_double.Lines = append(single_double.Lines, &door.Line{Text: bytes.NewBuffer([]byte("Text Goes Here ")), Width: width, DefaultColor: door.ColorText("BRI GREEN ON RED")})
 
 	d.WriteA(door.Clrscr, panel.Output(), single.Output(), double_single.Output(), single_double.Output())
 	d.WriteA(door.Goto(1, 20), door.Reset, "Use MOUSE to click/drag panels, Right-Click Exits, R to Reset, Q to quit...")

+ 12 - 10
testdoor/testdoor.go

@@ -147,7 +147,7 @@ func main() {
 			// log.Println(status)
 		}
 
-		var goLine door.Line = door.Line{
+		var goLine *door.Line = &door.Line{
 			Text:         &bytes.Buffer{},
 			UpdateF:      goLineUpdater,
 			Width:        goPanel.Width,
@@ -165,10 +165,12 @@ func main() {
 
 	if DisplayGoRoutineLegend {
 		// Line for legend.
-		goPanel.Lines = append(goPanel.Lines, door.Line{Width: goPanel.Width})
+		goPanel.Lines = append(goPanel.Lines, &door.Line{Width: goPanel.Width})
 	}
 
 	if DisplayMemory {
+		memColor := door.ColorText("BRI BLUE")
+
 		memoryUpdater := func(u *bytes.Buffer) {
 			if u == nil {
 				u = &bytes.Buffer{}
@@ -179,9 +181,9 @@ func main() {
 		}
 		// memoryUpdater(&bytes.Buffer{})
 
-		goPanel.Lines = append(goPanel.Lines, door.Line{UpdateF: memoryUpdater,
+		goPanel.Lines = append(goPanel.Lines, &door.Line{UpdateF: memoryUpdater,
 			Width:        goPanel.Width,
-			DefaultColor: door.ColorText("BLU")})
+			DefaultColor: memColor})
 		heapUpdater := func(u *bytes.Buffer) {
 			if u == nil {
 				u = &bytes.Buffer{}
@@ -189,24 +191,24 @@ func main() {
 			u.Reset()
 			fmt.Fprintf(u, "%-8s%8s", "HeapSys", MemoryStats["Heap"].Bytes())
 		}
-		goPanel.Lines = append(goPanel.Lines, door.Line{UpdateF: heapUpdater,
+		goPanel.Lines = append(goPanel.Lines, &door.Line{UpdateF: heapUpdater,
 			Width:        goPanel.Width,
-			DefaultColor: door.ColorText("BLU")})
+			DefaultColor: memColor})
 
 		stackUpdater := func(u *bytes.Buffer) {
 			u.Reset()
 			fmt.Fprintf(u, "%-8s%8s", "StackSys", MemoryStats["StackSys"].Bytes())
 		}
-		goPanel.Lines = append(goPanel.Lines, door.Line{UpdateF: stackUpdater,
+		goPanel.Lines = append(goPanel.Lines, &door.Line{UpdateF: stackUpdater,
 			Width:        goPanel.Width,
-			DefaultColor: door.ColorText("BLU")})
+			DefaultColor: memColor})
 		gcUpdater := func(u *bytes.Buffer) {
 			u.Reset()
 			fmt.Fprintf(u, "%-8s%8s", "NumGC", MemoryStats["NumGC"].Bytes())
 		}
-		goPanel.Lines = append(goPanel.Lines, door.Line{UpdateF: gcUpdater,
+		goPanel.Lines = append(goPanel.Lines, &door.Line{UpdateF: gcUpdater,
 			Width:        goPanel.Width,
-			DefaultColor: door.ColorText("BLU")})
+			DefaultColor: memColor})
 	}
 
 	var lIndex int = 0