scripts.h 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. *
  22. */
  23. int state;
  24. float percent;
  25. bool buying;
  26. int initial_offer;
  27. int last_offer;
  28. int final_offer;
  29. int product; // product we are buying/selling 0,1,2 foe.
  30. int stop_percent;
  31. // should this be 0/1 ? right now it is the port's sector number.
  32. int active_port; // port trading with
  33. // information from the find_best_trades function + others.
  34. int port[2];
  35. int active;
  36. int type;
  37. buysell trades;
  38. buysell port_buysell[2];
  39. void activate(void) override;
  40. void deactivate(void) override;
  41. // optional here
  42. void server_line(const std::string &line,
  43. const std::string &raw_line) override;
  44. void server_prompt(const std::string &prompt) override;
  45. void client_input(const std::string &cinput) override;
  46. };
  47. #endif