scripts.h 1.1 KB

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