profile.go 1.3 KB

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