scripts.cpp 3.9 KB

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