Browse Source

Fixed panel test. Updated notes.

Steve Thielemann 2 years ago
parent
commit
1f7b8d0d2d
3 changed files with 25 additions and 5 deletions
  1. 7 0
      door/door.go
  2. 4 1
      door/input.go
  3. 14 4
      door/panel_test.go

+ 7 - 0
door/door.go

@@ -173,7 +173,14 @@ func (d *Door) AddMouse(mouse Mouse) {
 	d.LastMouse = append(d.LastMouse, mouse)
 }
 
+var WantGetMouse bool
+
 func (d *Door) GetMouse() (Mouse, bool) {
+	if WantGetMouse {
+		WantGetMouse = false
+	} else {
+		log.Println("GetMouse called, but WantGetMouse not true.")
+	}
 	d.mcMutex.Lock()
 	defer d.mcMutex.Unlock()
 	return ArrayDelete(&d.LastMouse, 0)

+ 4 - 1
door/input.go

@@ -23,6 +23,7 @@ const READ_SIZE = 16 // Size of read buffer
 // put the common input routines here
 var readerBuffer []rune
 
+// https://en.wikipedia.org/wiki/ANSI_escape_code#Terminal_input_sequences
 // Translate these extended codes into these Extended values.
 var extendedKeys map[string]Extended = map[string]Extended{
 	"[A":   UP_ARROW,
@@ -49,7 +50,7 @@ var extendedKeys map[string]Extended = map[string]Extended{
 	"[21~": F10,       // terminal
 	"[23~": F11,
 	"[24~": F12, // terminal
-	"OP":   F1,
+	"OP":   F1, // where did I find these O-codes? (from xterm)
 	"OQ":   F2,
 	"OR":   F3,
 	"OS":   F4, // syncterm "[1" = F1,F2,F3, and F4)
@@ -329,6 +330,8 @@ func process(d *Door, newRune bool) {
 					}
 				*/
 
+                // \x1b[ codes end with @-~ 0x40-0x7e
+
 				var extended []rune = make([]rune, 0, 10)
 				extended = append(extended, r2)
 				var extlen = 2 // Length of codes to remove on successful match.

+ 14 - 4
door/panel_test.go

@@ -45,7 +45,9 @@ func TestPanelSpacer(t *testing.T) {
 }
 
 func TestPanelUpdate(t *testing.T) {
-	var p Panel = Panel{X: 2, Y: 2, Width: 3, Style: DOUBLE_SINGLE}
+	var TestX int = 2
+	var TestY int = 2
+	var p Panel = Panel{X: TestX, Y: TestY, Width: 3, Style: DOUBLE_SINGLE}
 	var x int = 0
 	var updater Updater = func() string {
 		return fmt.Sprintf("%3d", x)
@@ -54,7 +56,7 @@ func TestPanelUpdate(t *testing.T) {
 	l.Update()
 	p.Lines = append(p.Lines, l)
 
-	var expected string = Goto(2, 2) + "╒═══╕" + Goto(2, 3) + "│  0│" + Goto(2, 4) + "╘═══╛"
+	var expected string = Goto(TestX, TestY) + "╒═══╕" + Goto(TestX, TestY+1) + "│  0│" + Goto(TestX, TestY+2) + "╘═══╛"
 	var got string = p.Output()
 
 	if expected != got {
@@ -63,7 +65,7 @@ func TestPanelUpdate(t *testing.T) {
 
 	x += 3
 	got = p.Update()
-	expected = Goto(3, 3) + "  3"
+	expected = Goto(TestX+1, TestY+1) + "  3"
 
 	if expected != got {
 		t.Errorf("Panel Update expected %#v, got %#v", expected, got)
@@ -81,8 +83,16 @@ func TestPanelUpdate(t *testing.T) {
 		t.Errorf("Panel UpdateLine expected %#v, got %#v", expected, got)
 	}
 
+	// Expected: Width = 3, Length = 1
+	if p.Width != 3 {
+		t.Errorf("Panel Width, expected %d, got %d\n", 3, p.Width)
+	}
+	if p.Length() != 1 {
+		t.Errorf("Panel Length, expected %d, got %d\n", 1, p.Length())
+	}
+
 	got = p.GotoEnd()
-	expected = Goto(7, 4)
+	expected = Goto(p.X+p.Width+2, p.Y+p.Length()+2)
 	if got != expected {
 		t.Errorf("Panel GotoEnd expected %#v, got %#v", expected, got)
 	}