scripts.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #ifndef SCRIPTS_H
  2. #define SCRIPTS_H
  3. #include "buysell.h"
  4. #include "dispatchers.h"
  5. #include "galaxy.h"
  6. class ScriptTrader : public Dispatch {
  7. private:
  8. public:
  9. ScriptTrader(Director &);
  10. ~ScriptTrader();
  11. char foe[4] = "foe";
  12. bool trade_end_empty;
  13. /**
  14. * internal state
  15. *
  16. * 1 = <Info> query.
  17. * 2 = move to active port
  18. * 3 = trade
  19. * 4 = if (burnt), stop, otherwise toggle active_port and state = 2
  20. *
  21. * NEW: set port[1] to 0 for buy-only ability.
  22. * Percent 20 doesn't work with Cargo Trans' 250 holds.
  23. * Maybe look at the amount instead? If < holds = burnt.
  24. */
  25. int state;
  26. float percent;
  27. bool buying;
  28. int initial_offer;
  29. int last_offer;
  30. int final_offer;
  31. int product; // product we are buying/selling 0,1,2 foe.
  32. int stop_percent;
  33. // should this be 0/1 ? right now it is the port's sector number.
  34. int active_port; // port trading with
  35. // information from the find_best_trades function + others.
  36. int port[2];
  37. int active;
  38. // I don't care about trade type, just trades.
  39. int type;
  40. buysell trades;
  41. buysell port_buysell[2];
  42. void activate(void) override;
  43. void deactivate(void) override;
  44. void server_line(const std::string &line,
  45. const std::string &raw_line) override;
  46. void server_prompt(const std::string &prompt) override;
  47. void client_input(const std::string &cinput) override;
  48. };
  49. #endif