scripts.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. #ifndef SCRIPTS_H
  2. #define SCRIPTS_H
  3. #include "buysell.h"
  4. #include "dispatchers.h"
  5. #include "galaxy.h"
  6. #ifdef DEPRECATED_SEE_TRADER_DISPATCH
  7. class ScriptTrader : public Dispatch {
  8. private:
  9. public:
  10. ScriptTrader(Director &);
  11. ~ScriptTrader();
  12. char foe[4] = "foe";
  13. bool trade_end_empty;
  14. /**
  15. * internal state
  16. *
  17. * 1 = <Info> query.
  18. * 2 = move to active port
  19. * 3 = trade
  20. * 4 = if (burnt), stop, otherwise toggle active_port and state = 2
  21. *
  22. * NEW: set port[1] to 0 for buy-only ability.
  23. * Percent 20 doesn't work with Cargo Trans' 250 holds.
  24. * Maybe look at the amount instead? If < holds = burnt.
  25. */
  26. int state;
  27. float percent;
  28. bool buying;
  29. int initial_offer;
  30. int last_offer;
  31. int final_offer;
  32. int product; // product we are buying/selling 0,1,2 foe.
  33. int stop_percent;
  34. // should this be 0/1 ? right now it is the port's sector number.
  35. int active_port; // port trading with
  36. // information from the find_best_trades function + others.
  37. int port[2];
  38. int active;
  39. // I don't care about trade type, just trades.
  40. int type;
  41. buysell trades;
  42. buysell port_buysell[2];
  43. void activate(void) override;
  44. void deactivate(void) override;
  45. void server_line(const std::string &line,
  46. const std::string &raw_line) override;
  47. void server_prompt(const std::string &prompt) override;
  48. void client_input(const std::string &cinput) override;
  49. };
  50. #endif
  51. class ScriptTerror : public Dispatch {
  52. private:
  53. MoveDispatch * md;
  54. std::shared_ptr<Dispatch> move;
  55. InputDispatch * id;
  56. std::shared_ptr<Dispatch> input;
  57. TraderDispatch * td;
  58. std::shared_ptr<Dispatch> trader;
  59. std::string old_trade_end_empty;
  60. public:
  61. ScriptTerror(Director &);
  62. ~ScriptTerror();
  63. int loops;
  64. int max_loops;
  65. port_pair_type ppt;
  66. void init(void);
  67. void activate(void) override;
  68. void deactivate(void) override;
  69. void input_notify(void);
  70. void move_notify(void);
  71. void trade_notify(void);
  72. };
  73. #endif