director.h 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef DIRECTOR_H
  2. #define DIRECTOR_H
  3. #include "session_common.h"
  4. #include "galaxy.h"
  5. class Dispatch;
  6. class Director {
  7. public:
  8. std::shared_ptr<Dispatch> chain;
  9. StringFunc to_client;
  10. StringFunc to_server;
  11. // void Session::post(notifyFunc nf)
  12. std::function<void(notifyFunc)> post;
  13. void client_input(const std::string &input);
  14. void server_line(const std::string &line, const std::string &raw_line);
  15. void server_prompt(const std::string &prompt, const std::string &raw_prompt);
  16. bool active;
  17. // not sure if I need these or not?
  18. std::string current_raw_prompt;
  19. std::string current_prompt;
  20. std::string old_prompt;
  21. std::string old_raw_prompt;
  22. void proxy_activate();
  23. void proxy_deactivate();
  24. char game; // 0 = not in a game
  25. // not sure on these... or how I want to use them.
  26. // maybe this is the place for these?!
  27. // IF these are public -- Session can access them. :P
  28. bool show_client;
  29. bool talk_direct;
  30. // maybe these would work better?
  31. std::function<void(bool)> set_show_client;
  32. std::function<void(bool)> set_talk_direct;
  33. Director();
  34. ~Director();
  35. void have_input(void);
  36. void menu_choice(void);
  37. int count;
  38. int current_sector;
  39. Galaxy galaxy;
  40. std::string username;
  41. private:
  42. StringFunc SL_parser;
  43. StringFunc SF_cimline, SF_sectorline, SF_portline, SF_warpline;
  44. void SL_cimline(const std::string &line);
  45. void SL_thiefline(const std::string &line);
  46. void SL_sectorline(const std::string &line);
  47. void SL_portline(const std::string &line);
  48. void SL_warpline(const std::string &line);
  49. };
  50. #include "dispatchers.h"
  51. #endif