ytdata.go 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 YTSectors[sector.Sector].Port
  29. var has bool
  30. _, has = YTPortMap[sector.Sector]
  31. return has
  32. }
  33. var YTSectors []YTSector
  34. type YTPlayer struct {
  35. Sector YTSectorType
  36. Name string `json:"name"`
  37. LastPlayed time.Time `json:"last"`
  38. Turns int `json:"turns"`
  39. Holds int `json:"holds"`
  40. Lotto int `json:"lotto`
  41. Cloak uint16 `json:"cloak` // Cloak Energy
  42. }
  43. // or to database? DB would also handle concurrency...
  44. type YTPlayers struct {
  45. Players map[uint]YTPlayer `json:"players"`
  46. }
  47. const (
  48. PORT_EARTH = 0
  49. PORT_FUEL = 1
  50. PORT_ORG = 2
  51. PORT_EQU = 3
  52. PORT_SPACEPORT = 4 // Maybe!?
  53. )
  54. // Or database? DB would work better for player info
  55. // YT Ports: Sell one thing, buy the others.
  56. type YTPort struct {
  57. Name string `json:"name"`
  58. Owner int `json:"owner"`
  59. Credits uint64 `json:"credits"`
  60. Type uint8 `json:"type"`
  61. Amounts [3]uint32 `json:"amounts"`
  62. }
  63. var YTPortMap map[YTSectorType]YTPort
  64. type YTPlanet struct {
  65. Name string `json:"name"`
  66. Owner int `json:"owner"`
  67. }
  68. var YTPlanets map[YTSectorType]YTPlanet