dispatchers.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. #ifndef DISPATCHERS_H
  2. #define DISPATCHERS_H
  3. #include <map>
  4. #include <memory>
  5. #include <string>
  6. #include "director.h"
  7. #include "session_common.h"
  8. /*
  9. Item of the day:
  10. class Result {
  11. // holds unique_ptr or shared_ptr to the "dispatcher"
  12. // when I'm done -- delete the result, cleaning up
  13. // the dispatcher
  14. }
  15. How does this call another?
  16. How does it return a result?
  17. possibly: io_service::post( DONE ); !
  18. */
  19. class Dispatch {
  20. protected:
  21. Director &director;
  22. notifyFunc notify_;
  23. public:
  24. Dispatch(Director &);
  25. virtual ~Dispatch();
  26. bool aborted;
  27. void setNotify(notifyFunc nf);
  28. void notify(void);
  29. virtual void activate(void) = 0;
  30. virtual void deactivate(void) = 0;
  31. const std::string &get_prompt(void);
  32. void to_server(const std::string &send);
  33. void to_client(const std::string &send);
  34. // default to chain calls
  35. void chain_client_input(const std::string &input);
  36. void chain_server_line(const std::string &line, const std::string &raw_line);
  37. void chain_server_prompt(const std::string &prompt);
  38. virtual void client_input(const std::string &input);
  39. virtual void server_line(const std::string &line, const std::string &raw_line);
  40. virtual void server_prompt(const std::string &prompt);
  41. };
  42. /*
  43. * Some options for input:
  44. *
  45. * numeric only
  46. *
  47. */
  48. class InputDispatch : public Dispatch {
  49. private:
  50. public:
  51. InputDispatch(Director &);
  52. ~InputDispatch();
  53. std::string prompt;
  54. size_t max_length;
  55. std::string input;
  56. bool numeric;
  57. void activate(void) override;
  58. void deactivate(void) override;
  59. // optional here
  60. void server_line(const std::string &line,
  61. const std::string &raw_line) override;
  62. // void server_prompt(const std::string &prompt);
  63. void client_input(const std::string &cinput) override;
  64. };
  65. class MenuDispatch : public Dispatch {
  66. private:
  67. void help(void);
  68. void menubox(void);
  69. size_t max_width;
  70. size_t max_option_width;
  71. bool instant = false;
  72. void calculate_widths(void);
  73. std::string centered(int length, const std::string &);
  74. public:
  75. MenuDispatch(Director &);
  76. ~MenuDispatch();
  77. std::string menu_box_color;
  78. std::string menu_text_color;
  79. std::string menu_title;
  80. std::string menu_options_color;
  81. std::string menu_prompt;
  82. bool lazy = true;
  83. std::map<std::string, std::string> menu;
  84. bool case_sensitive = false;
  85. std::string input;
  86. int choice;
  87. void activate(void) override;
  88. void deactivate(void) override;
  89. // optional here
  90. void server_line(const std::string &line, const std::string &raw_line) override;
  91. // void server_prompt(const std::string &prompt);
  92. void client_input(const std::string &cinput) override;
  93. };
  94. class CIMDispatch : public Dispatch {
  95. public:
  96. CIMDispatch(Director &);
  97. int count;
  98. void activate(void) override;
  99. void deactivate(void) override;
  100. // optional here
  101. void server_line(const std::string &line, const std::string &raw_line) override;
  102. };
  103. class MoveDispatch : public Dispatch {
  104. public:
  105. MoveDispatch(Director &);
  106. sector_type move_to;
  107. sector_type starting;
  108. int state;
  109. int success;
  110. int warp_pos;
  111. bool use_express;
  112. std::string at_destination;
  113. std::vector<int> warp_lane;
  114. void activate(void) override;
  115. void deactivate(void) override;
  116. // optional here
  117. void server_line(const std::string &line, const std::string &raw_line) override;
  118. void server_prompt(const std::string &prompt) override;
  119. void client_input(const std::string &input) override;
  120. private:
  121. bool density_clear(density d); // int sector, int density);
  122. };
  123. class TraderDispatch : public Dispatch {
  124. private:
  125. public:
  126. TraderDispatch(Director &);
  127. ~TraderDispatch();
  128. char foe[4] = "foe";
  129. bool trade_end_empty;
  130. // success / failure ?
  131. bool success;
  132. /**
  133. * internal state
  134. *
  135. * 1 = <Info> query.
  136. * 2 = move to active port
  137. * 3 = trade
  138. * 4 = if (burnt), stop, otherwise toggle active_port and state = 2
  139. *
  140. * NEW: set port[1] to 0 for buy-only ability.
  141. * Percent 20 doesn't work with Cargo Trans' 250 holds.
  142. * Maybe look at the amount instead? If < holds = burnt.
  143. */
  144. int state;
  145. float percent;
  146. bool buying;
  147. int initial_offer;
  148. int last_offer;
  149. int final_offer;
  150. int product; // product we are buying/selling 0,1,2 foe.
  151. int stop_percent;
  152. bool try_again;
  153. // should this be 0/1 ? right now it is the port's sector number.
  154. int active_port; // port trading with
  155. // information from the find_best_trades function + others.
  156. int port[2];
  157. int active;
  158. // I don't care about trade type, just trades.
  159. int type;
  160. buysell trades;
  161. buysell port_buysell[2];
  162. void activate(void) override;
  163. void deactivate(void) override;
  164. void server_line(const std::string &line,
  165. const std::string &raw_line) override;
  166. void server_prompt(const std::string &prompt) override;
  167. void client_input(const std::string &cinput) override;
  168. };
  169. class CoreDispatch : public Dispatch {
  170. public:
  171. CoreDispatch(Director &);
  172. void activate(void) override;
  173. void deactivate(void) override;
  174. // optional here
  175. void server_line(const std::string &line, const std::string &raw_line) override;
  176. void server_prompt(const std::string &prompt) override;
  177. void client_input(const std::string &input) override;
  178. };
  179. #endif