|
@@ -61,13 +61,25 @@ func main() {
|
|
|
return
|
|
|
}
|
|
|
fmt.Println("Loaded", w.Name, "a", w.Width, "x", w.Height)
|
|
|
- err = w.Save(path.Join("test_data", "world2"))
|
|
|
+ /*err = w.Save(path.Join("test_data", "world2"))
|
|
|
if err != nil {
|
|
|
fmt.Println("Err:", err)
|
|
|
return
|
|
|
- }
|
|
|
- c := &Camera{Size: NewVec2(10)}
|
|
|
- fmt.Println(c.debugView(NewVec2(5), w))
|
|
|
- c.Size.Assign(20)
|
|
|
+ }*/
|
|
|
+ c := &Camera{Size: NewVec2(20)}
|
|
|
fmt.Println(c.debugView(NewVec2(10), w))
|
|
|
+ w2, err := LoadWorld(path.Join("test_data", "world3"))
|
|
|
+ if err != nil {
|
|
|
+ w2 = NewWorld("Test World 3", NewVec2(20))
|
|
|
+ w2.AddTile(".", "BRI GRE ON BLA")
|
|
|
+ w2.AddTile("^", "BRI WHI ON BLA")
|
|
|
+ w2.AddTile("^", "WHI ON BLA")
|
|
|
+ w2.Set(1, 1, 1)
|
|
|
+ err = w2.Save(path.Join("test_data", "world3"))
|
|
|
+ if err != nil {
|
|
|
+ fmt.Println("Err:", err)
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+ fmt.Println(c.debugView(NewVec2(10), w2))
|
|
|
}
|