123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- #ifndef SCRIPTS_H
- #define SCRIPTS_H
- #include "buysell.h"
- #include "dispatchers.h"
- #include "galaxy.h"
- #ifdef DEPRECATED_SEE_TRADER_DISPATCH
- class ScriptTrader : public Dispatch {
- private:
- public:
- ScriptTrader(Director &);
- ~ScriptTrader();
- char foe[4] = "foe";
- bool trade_end_empty;
- /**
- * internal state
- *
- * 1 = <Info> query.
- * 2 = move to active port
- * 3 = trade
- * 4 = if (burnt), stop, otherwise toggle active_port and state = 2
- *
- * NEW: set port[1] to 0 for buy-only ability.
- * Percent 20 doesn't work with Cargo Trans' 250 holds.
- * Maybe look at the amount instead? If < holds = burnt.
- */
- int state;
- float percent;
- bool buying;
- int initial_offer;
- int last_offer;
- int final_offer;
- int product; // product we are buying/selling 0,1,2 foe.
- int stop_percent;
- // should this be 0/1 ? right now it is the port's sector number.
- int active_port; // port trading with
- // information from the find_best_trades function + others.
- int port[2];
- int active;
- // I don't care about trade type, just trades.
- int type;
-
- buysell trades;
- buysell port_buysell[2];
- void activate(void) override;
- void deactivate(void) override;
- void server_line(const std::string &line,
- const std::string &raw_line) override;
- void server_prompt(const std::string &prompt) override;
- void client_input(const std::string &cinput) override;
- };
- #endif
- class ScriptTerror : public Dispatch {
- private:
- MoveDispatch * md;
- std::shared_ptr<Dispatch> move;
- InputDispatch * id;
- std::shared_ptr<Dispatch> input;
- TraderDispatch * td;
- std::shared_ptr<Dispatch> trader;
- std::string old_trade_end_empty;
-
- public:
- ScriptTerror(Director &);
- ~ScriptTerror();
- int loops;
- int max_loops;
- port_pair_type ppt;
-
- void init(void);
- void activate(void) override;
- void deactivate(void) override;
- void input_notify(void);
- void move_notify(void);
- void trade_notify(void);
- };
- #endif
|