Skip to content

Commit

Permalink
Merge pull request #103 from owulveryck/small-improvements
Browse files Browse the repository at this point in the history
small improvements
  • Loading branch information
owulveryck committed Jun 13, 2023
2 parents dd11d60 + 5517d28 commit 2abbea6
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions examples/wtg2svglive/main.go
Expand Up @@ -21,9 +21,13 @@ import (
)

type configuration struct {
Width int `default:"1500"`
Height int `default:"900"`
Port string `default:"8080"`
Width int `default:"1500"`
Height int `default:"900"`
Port string `default:"8080"`
WithSpace bool `default:"true"`
WithControls bool `default:"true"`
WithValueChain bool `default:"true"`
WithIndicators bool `default:"false"`
}

var config configuration
Expand Down Expand Up @@ -161,7 +165,7 @@ func generateSVG(filePath string) ([]byte, error) {
}
defer f.Close()
err = p.Parse(f)
if err != nil {
if err != nil && err != wtg.ErrEmptyMap {
return nil, err
}
if len(p.InvalidEntries) != 0 {
Expand All @@ -182,8 +186,15 @@ func generateSVG(filePath string) ([]byte, error) {
return nil, err
}
defer e.Close()
style := svgmap.NewOctoStyle(p.EvolutionStages)
indicators := []svgmap.Annotator{}
if config.WithIndicators {
indicators = svgmap.AllEvolutionIndications()
}
style := svgmap.NewOctoStyle(p.EvolutionStages, indicators...)
style.WithControls = true
style.WithSpace = config.WithSpace
style.WithControls = config.WithControls
style.WithValueChain = config.WithValueChain
e.Init(style)
err = e.Encode(p.WMap)
if err != nil {
Expand Down

0 comments on commit 2abbea6

Please sign in to comment.