galaxy.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. #ifndef GALAXY_H
  2. #define GALAXY_H
  3. #include <array>
  4. #include <cstdint>
  5. #include <iostream>
  6. #include <ostream>
  7. #include <regex>
  8. #include <set>
  9. #include <stdexcept>
  10. #include <string>
  11. #include <vector>
  12. #include "buysell.h"
  13. #include "yaml-cpp/yaml.h"
  14. // #define MAX_WARPS 6
  15. typedef uint16_t sector_type;
  16. struct sector_warps {
  17. sector_type sector; // Yes, for debug
  18. // std::set<sector_type> warps; // possibly
  19. std::set<sector_type> warps;
  20. // sector_type warps[MAX_WARPS];
  21. // ports
  22. // planets
  23. // ctor that zeros everything out?
  24. sector_warps();
  25. void add(sector_type sector);
  26. // add() that adds warp to end of warps?
  27. friend std::ostream& operator<<(std::ostream& os, const sector_warps& warps);
  28. // bool operator==(const sector_warps& rhs) const;
  29. // void sort(void);
  30. };
  31. /**
  32. * Find possible trades with these two port types
  33. *
  34. * 0 = NONE
  35. * 1 = GOOD OE trade pair
  36. * 2 = OK trade pair
  37. * 3 = FAIR (one buys, one sells)
  38. *
  39. * This will probably be expanded in the future to return:
  40. * What port(s) to trade with. (pos, return top 2)
  41. *
  42. * @param port1
  43. * @param port2
  44. * @return int
  45. */
  46. int trade_type(port_type port1, port_type port2);
  47. struct trade_type_result {
  48. int type;
  49. buysell trades;
  50. };
  51. trade_type_result trade_type_info(port_type port1, port_type port2);
  52. struct port_pair_type {
  53. int type;
  54. sector_type s1, s2;
  55. };
  56. struct port {
  57. sector_type sector;
  58. uint8_t type;
  59. uint16_t amount[3];
  60. uint8_t percent[3];
  61. bool unknown(void);
  62. // port();
  63. friend std::ostream& operator<<(std::ostream& os, const port& p);
  64. };
  65. struct port parse_portcim(const std::string line);
  66. // SPECIAL = 0
  67. // STARDOCK = 9
  68. class Galaxy {
  69. public:
  70. Galaxy();
  71. ~Galaxy();
  72. void reset(void);
  73. YAML::Node config;
  74. YAML::Node meta;
  75. int burnt_percent;
  76. // warps;
  77. // ports;
  78. std::map<sector_type, port> ports;
  79. std::map<sector_type, sector_warps> warps;
  80. void add_warp(sector_warps);
  81. void add_port(sector_type sector, int port_class);
  82. void add_port(port);
  83. void save(void);
  84. void load(void);
  85. std::vector<port_pair_type> find_best_trades(void);
  86. std::vector<port_pair_type> find_trades(sector_type sector,
  87. bool highest = true);
  88. void sort_port_pair_type(std::vector<port_pair_type>& pptv);
  89. char game;
  90. std::string username;
  91. };
  92. #endif