From ac5bc4115dfd3ad8224f1951b18c13fd5cf44223 Mon Sep 17 00:00:00 2001 From: Neale Pickett Date: Wed, 8 Aug 2018 23:42:50 +0000 Subject: [PATCH] A bit more for golang evolver --- evolve.go | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/evolve.go b/evolve.go index 565aad8..a8f97e4 100644 --- a/evolve.go +++ b/evolve.go @@ -7,6 +7,7 @@ import ( "time" "strings" "io/ioutil" + "encoding/json" ) type sensor struct { @@ -17,6 +18,7 @@ type sensor struct { } type Tank struct { + dna []int color string sensors [10]sensor program []string @@ -134,6 +136,7 @@ func program_of_dna(dna []int) []string { n -= 720 // Stack. + // XXX: This doesn't seem right, we shouldn't see a ton of "} } }" at the end ret = append(ret, "{") stacks = append(stacks, (n + 1) % (len(dna) - i)) } @@ -147,7 +150,7 @@ func program_of_dna(dna []int) []string { } func tank_of_dna(dna []int) Tank { - ret := Tank{} + ret := Tank{dna: dna} ret.color, dna = color_of_dna(dna) for i := 0; i < len(ret.sensors); i += 1 { ret.sensors[i], dna = sensor_of_dna(dna) @@ -176,6 +179,9 @@ func (t Tank) Write(num int, dir string) { ) } twrite(num, "program", strings.Join(t.program, " ")) + + s, _ := json.Marshal(t.dna) + twrite(num, "dna", string(s)) } func init() { @@ -183,7 +189,7 @@ func init() { } func main() { - d := make_dna(20) - p := program_of_dna(d) - fmt.Println(p) + d := make_dna(200) + t := tank_of_dna(d) + t.Write(0, ".") } \ No newline at end of file