dispatchers.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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. std::shared_ptr<Dispatch> chain;
  24. public:
  25. Dispatch(Director &);
  26. virtual ~Dispatch();
  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. void activate(void) override;
  57. void deactivate(void) override;
  58. // optional here
  59. void server_line(const std::string &line,
  60. const std::string &raw_line) override;
  61. // void server_prompt(const std::string &prompt);
  62. void client_input(const std::string &cinput) override;
  63. };
  64. class MenuDispatch : public Dispatch {
  65. private:
  66. void help(void);
  67. void menubox(void);
  68. size_t max_width;
  69. size_t max_option_width;
  70. bool instant = false;
  71. void calculate_widths(void);
  72. std::string centered(int length, const std::string &);
  73. public:
  74. MenuDispatch(Director &);
  75. ~MenuDispatch();
  76. std::string menu_box_color;
  77. std::string menu_text_color;
  78. std::string menu_title;
  79. std::string menu_options_color;
  80. std::string menu_prompt;
  81. bool lazy = true;
  82. std::map<std::string, std::string> menu;
  83. bool case_sensitive = false;
  84. std::string input;
  85. int choice;
  86. void activate(void) override;
  87. void deactivate(void) override;
  88. // optional here
  89. void server_line(const std::string &line, const std::string &raw_line) override;
  90. // void server_prompt(const std::string &prompt);
  91. void client_input(const std::string &cinput) override;
  92. };
  93. class CIMDispatch : public Dispatch {
  94. public:
  95. CIMDispatch(Director &);
  96. int count;
  97. void activate(void) override;
  98. void deactivate(void) override;
  99. // optional here
  100. void server_line(const std::string &line, const std::string &raw_line) override;
  101. };
  102. class MoveDispatch : public Dispatch {
  103. public:
  104. MoveDispatch(Director &);
  105. sector_type move_to;
  106. sector_type starting;
  107. int state;
  108. int success;
  109. int warp_pos;
  110. bool use_express;
  111. std::string at_destination;
  112. std::vector<int> warp_lane;
  113. void activate(void) override;
  114. void deactivate(void) override;
  115. // optional here
  116. void server_line(const std::string &line, const std::string &raw_line) override;
  117. void server_prompt(const std::string &prompt) override;
  118. void client_input(const std::string &input) override;
  119. private:
  120. bool density_clear(density d); // int sector, int density);
  121. };
  122. class TraderDispatch : public Dispatch {
  123. private:
  124. public:
  125. TraderDispatch(Director &);
  126. ~TraderDispatch();
  127. char foe[4] = "foe";
  128. bool trade_end_empty;
  129. /**
  130. * internal state
  131. *
  132. * 1 = <Info> query.
  133. * 2 = move to active port
  134. * 3 = trade
  135. * 4 = if (burnt), stop, otherwise toggle active_port and state = 2
  136. *
  137. * NEW: set port[1] to 0 for buy-only ability.
  138. * Percent 20 doesn't work with Cargo Trans' 250 holds.
  139. * Maybe look at the amount instead? If < holds = burnt.
  140. */
  141. int state;
  142. float percent;
  143. bool buying;
  144. int initial_offer;
  145. int last_offer;
  146. int final_offer;
  147. int product; // product we are buying/selling 0,1,2 foe.
  148. int stop_percent;
  149. bool try_again;
  150. // should this be 0/1 ? right now it is the port's sector number.
  151. int active_port; // port trading with
  152. // information from the find_best_trades function + others.
  153. int port[2];
  154. int active;
  155. // I don't care about trade type, just trades.
  156. int type;
  157. buysell trades;
  158. buysell port_buysell[2];
  159. void activate(void) override;
  160. void deactivate(void) override;
  161. void server_line(const std::string &line,
  162. const std::string &raw_line) override;
  163. void server_prompt(const std::string &prompt) override;
  164. void client_input(const std::string &cinput) override;
  165. };
  166. class CoreDispatch : public Dispatch {
  167. public:
  168. CoreDispatch(Director &);
  169. void activate(void) override;
  170. void deactivate(void) override;
  171. // optional here
  172. void server_line(const std::string &line, const std::string &raw_line) override;
  173. void server_prompt(const std::string &prompt) override;
  174. void client_input(const std::string &input) override;
  175. };
  176. #endif