scripts.cpp 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. #include "scripts.h"
  2. #include "logging.h"
  3. ScriptTrader::ScriptTrader(Director &d) : Dispatch(d) {
  4. BUGZ_LOG(fatal) << "ScriptTrader()";
  5. };
  6. ScriptTrader::~ScriptTrader() { BUGZ_LOG(fatal) << "~ScriptTrader()"; }
  7. void ScriptTrader::activate(void) {
  8. // ok, lookup port1 port2
  9. BUGZ_LOG(fatal) << "ScriptTrader::activate " << port[0] << " & " << port[1];
  10. auto port_info = director.galaxy.ports.find(port[0]);
  11. int port0_type = port_info->second.type;
  12. port_info = director.galaxy.ports.find(port[1]);
  13. int port1_type = port_info->second.type;
  14. BUGZ_LOG(fatal) << port0_type << " and " << port1_type;
  15. auto ttr = trade_type_info(port0_type, port1_type);
  16. trades = ttr.trades;
  17. // Ok, what do we do first here?
  18. // I - Info
  19. state = 1;
  20. to_server("I");
  21. }
  22. void ScriptTrader::deactivate(void) { notify(); }
  23. void ScriptTrader::server_line(const std::string &line,
  24. const std::string &raw_line) {
  25. // FUTURE: powering up weapons check
  26. }
  27. void ScriptTrader::server_prompt(const std::string &prompt) {
  28. // FUTURE: check for "Surrender/Attack"
  29. if (at_command_prompt(prompt)) {
  30. if (state == 1) {
  31. // Ok, decision time!
  32. if (director.galaxy.meta["ship"]["holds"]["c"]) {
  33. // holds contain colonists
  34. to_client("ScriptTrader FAIL: holds contain colonists.");
  35. deactivate();
  36. return;
  37. }
  38. // Which port to trade with first? examine trades
  39. BUGZ_LOG(fatal) << "trades: " << trades;
  40. BUGZ_LOG(fatal) << "port0:" << text_from_buysell(port_buysell[0]);
  41. BUGZ_LOG(fatal) << "port1:" << text_from_buysell(port_buysell[1]);
  42. // Do we have what they are buying?
  43. bool have_buy = false;
  44. char foe[4] = "foe";
  45. int active_buy = 0;
  46. int active_sell = 0;
  47. for (int x = 0; x < 3; ++x) {
  48. if (trades.foe[x]) {
  49. // this is what they will be trading...
  50. if (director.galaxy.meta["ship"]["holds"][foe[x]]) {
  51. // key exists ...
  52. have_buy = true;
  53. // which port is buying?
  54. if (port_buysell[0].foe[x]) {
  55. active_buy = 0;
  56. } else {
  57. active_buy = 1;
  58. }
  59. }
  60. if (port_buysell[0].foe[x]) {
  61. active_sell = 0;
  62. } else {
  63. active_sell = 1;
  64. }
  65. }
  66. }
  67. if (have_buy) {
  68. BUGZ_LOG(fatal) << "have_buy: port " << active_buy;
  69. active_port = port[active_buy];
  70. } else {
  71. // which port is selling?
  72. // if they aren't buying what I have in my holds, should I check to see
  73. // if my holds are full? This could be the "not buying" what I'm
  74. // setting bug!
  75. BUGZ_LOG(fatal) << "!have_buy: port " << active_sell;
  76. active_port = port[active_sell];
  77. }
  78. state = 2;
  79. if (director.current_sector == active_port) {
  80. // begin state 3
  81. state = 3;
  82. to_client("Trade...\n\r");
  83. to_server("PT");
  84. return;
  85. } else {
  86. // initiate move
  87. std::string move = std::to_string(active_port);
  88. to_client("Moving...\n\r");
  89. move.append("\r");
  90. to_server(move);
  91. return;
  92. }
  93. // for now...
  94. deactivate();
  95. }
  96. if (state == 3) {
  97. if (director.current_sector == active_port) {
  98. // We're here
  99. state = 3;
  100. to_server("PT");
  101. return;
  102. } else {
  103. // we failed to move to where we wanted to go?!
  104. BUGZ_LOG(fatal) << "Expecting: " << active_port << " but got "
  105. << director.current_sector;
  106. deactivate();
  107. return;
  108. }
  109. }
  110. }
  111. if (state == 3) {
  112. if (in(prompt, " to sell ")) {
  113. // always sell everything
  114. to_server("\r");
  115. return;
  116. }
  117. }
  118. }
  119. void ScriptTrader::client_input(const std::string &cinput) { deactivate(); };