director.h 1.5 KB

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