profile.go 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. package main
  2. import "fmt"
  3. type Profile struct {
  4. Name string
  5. Date string // for now it's a string (TODO date.go)
  6. Location string // for now it's a string (TODO location.go)
  7. Playtime float64 // Play time in seconds
  8. // TODO travel.go
  9. }
  10. func (p *Profile) Parse(node *Node) error {
  11. if node.Tag != "root" {
  12. return fmt.Errorf("non-root node given, expected root node")
  13. }
  14. for _, kid := range node.Children {
  15. switch kid.Key() {
  16. case "pilot":
  17. p.Name = kid.Value()
  18. case "date":
  19. p.Date = kid.Value()
  20. case "system":
  21. p.Location = kid.Value()
  22. case "planet":
  23. if p.Location != "" {
  24. p.Location += ", "
  25. }
  26. p.Location += kid.Value()
  27. case "playtime":
  28. p.Playtime = kid.ValueFloat64()
  29. }
  30. }
  31. return nil
  32. }
  33. func (p *Profile) Update(node *Node) error {
  34. if node.Tag != "root" {
  35. return fmt.Errorf("non-root node given, expected root node")
  36. }
  37. for _, kid := range node.Children {
  38. switch kid.Key() {
  39. case "pilot":
  40. kid.SetValue(p.Name)
  41. case "date":
  42. kid.SetValue(p.Date)
  43. case "playtime":
  44. kid.SetValue(p.Playtime)
  45. }
  46. }
  47. return nil
  48. }
  49. func (p *Profile) Type() string {
  50. return "Profile"
  51. }