Simplify history

This commit is contained in:
Madison Rye Progress
2025-09-13 21:22:06 -07:00
parent f3b3803535
commit 6198c794d5
2 changed files with 5 additions and 4 deletions

View File

@ -11,7 +11,7 @@ type Point struct {
} }
func (p Point) String() string { func (p Point) String() string {
return fmt.Sprintf("(%d,%d)", p.X, p.Y) return fmt.Sprintf("%d,%d", p.X, p.Y)
} }
type State struct { type State struct {
@ -34,7 +34,7 @@ func New(sectionSize, cellsPerSection int) *State {
sections: newField(sectionSize), sections: newField(sectionSize),
cursor: &Point{0, 0}, cursor: &Point{0, 0},
} }
s.history = fmt.Sprintf("gogogogogram %d %d:\n", sectionSize, cellsPerSection) s.history = fmt.Sprintf("g%d,%d", sectionSize, cellsPerSection)
for x := 0; x < sectionSize; x++ { for x := 0; x < sectionSize; x++ {
for y := 0; y < sectionSize; y++ { for y := 0; y < sectionSize; y++ {
s.initSection(Point{x, y}) s.initSection(Point{x, y})
@ -113,10 +113,11 @@ func (s *State) initSection(p Point) {
s.cells.clear(currPoint, true) s.cells.clear(currPoint, true)
if rand.Int()%2 == 0 { if rand.Int()%2 == 0 {
s.cells.kill(currPoint) s.cells.kill(currPoint)
s.history += "x"
} else { } else {
s.cells.vivify(currPoint) s.cells.vivify(currPoint)
s.history += "o"
} }
s.history += fmt.Sprintf("%c", byte(s.cells.cell(currPoint)))
} }
} }
s.update(p) s.update(p)

View File

@ -62,7 +62,7 @@ func TestState(t *testing.T) {
s.CursorCellDown() s.CursorCellDown()
s.CursorCellUp() s.CursorCellUp()
matches, err := regexp.Match("gogogogogram 2 2:\n(i\\(\\d,\\d\\)[\b\x01]{4}){4}fmcRLDUrldu", []byte(s.History())) matches, err := regexp.Match(`g2,2(i\d,\d[xo]{4}){4}fmcRLDUrldu`, []byte(s.History()))
So(matches, ShouldBeTrue) So(matches, ShouldBeTrue)
So(err, ShouldBeNil) So(err, ShouldBeNil)
}) })