director.h 1.9 KB

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