galaxy.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. enum trade_types {
  48. NONE,
  49. BEST, // OE PAIR
  50. OK, // PAIR
  51. FAIR_E, // BS E
  52. FAIR_O, // BS O
  53. FAIR_F, // BS F
  54. };
  55. struct trade_type_result {
  56. trade_types type;
  57. buysell trades;
  58. };
  59. // trade_type_result trade_type_info(port_type port1, port_type port2);
  60. struct port_pair_type {
  61. int type;
  62. buysell trades;
  63. sector_type s1, s2;
  64. };
  65. struct port {
  66. sector_type sector;
  67. uint8_t type;
  68. uint16_t amount[3];
  69. uint8_t percent[3];
  70. bool unknown(void);
  71. // port();
  72. friend std::ostream& operator<<(std::ostream& os, const port& p);
  73. };
  74. struct port parse_portcim(const std::string line);
  75. // store density scan information in galaxy
  76. struct density {
  77. sector_type sector;
  78. uint16_t density;
  79. uint16_t warps;
  80. uint16_t navhaz;
  81. bool anomaly;
  82. bool known;
  83. friend bool operator==(const struct density lhs, const struct density rhs);
  84. };
  85. class density_scan {
  86. public:
  87. sector_type sector;
  88. std::array<density, 6> d;
  89. density_scan();
  90. // resets the scan with a new sector
  91. void reset(sector_type sector);
  92. void add_scan(density d);
  93. density find(sector_type sector);
  94. private:
  95. int pos;
  96. };
  97. // SPECIAL = 0
  98. // STARDOCK = 9
  99. class Galaxy {
  100. public:
  101. Galaxy();
  102. ~Galaxy();
  103. void reset(void);
  104. YAML::Node config;
  105. YAML::Node meta;
  106. int burnt_percent;
  107. density_scan dscan;
  108. // warps;
  109. // ports;
  110. std::map<sector_type, port> ports;
  111. std::map<sector_type, sector_warps> warps;
  112. void add_warp(sector_warps);
  113. void add_port(sector_type sector, int port_class);
  114. void add_port(port);
  115. void save(void);
  116. void load(void);
  117. std::vector<port_pair_type> find_best_trades(void);
  118. std::vector<port_pair_type> find_trades(sector_type sector,
  119. bool highest = true);
  120. trade_type_result trade_type_info(sector_type port1, sector_type port2, int burnt_percent = 20);
  121. void sort_port_pair_type(std::vector<port_pair_type>& pptv);
  122. port_pair_type find_closest(int sector);
  123. char game;
  124. std::string username;
  125. };
  126. #endif