ytdata.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package main
  2. import "time"
  3. type YTConfig struct {
  4. Sectors int `json:"sectors"`
  5. Turns int `json:"turns"`
  6. Holds int `json:"holds"`
  7. PortReset int `json:"reset"`
  8. DaysExpire int `json:"expire"`
  9. Lottery int `json:"lotto"`
  10. }
  11. type YTSectorType uint16
  12. type YTSector struct {
  13. Sector YTSectorType
  14. Planet bool `json:"planet"` // This could be calculated
  15. Port bool `json:"port"` // This could be calculated
  16. Fighters uint `json:"fighters"`
  17. FighterOwner int `json:"owner"`
  18. Mines uint `json:"mines"`
  19. Sectors []YTSectorType `json:"sectors"`
  20. Players []int `json:"players`
  21. }
  22. func (sector YTSector) HasPlanet() bool {
  23. _, has := YTPlanets[sector.Sector]
  24. return has
  25. }
  26. func (sector YTSector) HasPort() bool {
  27. _, has := YTSectors[sector.Sector]
  28. return has
  29. }
  30. var YTSectors map[YTSectorType]YTSector
  31. type YTPlayer struct {
  32. Sector YTSectorType
  33. Name string `json:"name"`
  34. LastPlayed time.Time `json:"last"`
  35. Turns int `json:"turns"`
  36. Holds int `json:"holds"`
  37. Lotto int `json:"lotto`
  38. Cloak uint16 `json:"cloak` // Cloak Energy
  39. }
  40. // or to database? DB would also handle concurrency...
  41. type YTPlayers struct {
  42. Players map[uint]YTPlayer `json:"players"`
  43. }
  44. const (
  45. PORT_EARTH = 0
  46. PORT_FUEL = 1
  47. PORT_ORG = 2
  48. PORT_EQU = 3
  49. PORT_SPACEPORT = 4 // Maybe!?
  50. )
  51. // Or database? DB would work better for player info
  52. // YT Ports: Sell one thing, buy the others.
  53. type YTPort struct {
  54. Name string `json:"name"`
  55. Owner int `json:"owner"`
  56. Credits uint64 `json:"credits"`
  57. Type uint8 `json:"type"`
  58. Amounts [3]uint32 `json:"amounts"`
  59. }
  60. var YTPortMap map[YTSectorType]YTPort
  61. type YTPlanet struct {
  62. Name string `json:"name"`
  63. Owner int `json:"owner"`
  64. }
  65. var YTPlanets map[YTSectorType]YTPlanet