input.cpp 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. #include "input.h"
  2. bool allow_part = false;
  3. bool allow_join = false;
  4. const int ms_input_delay = 50;
  5. std::string input;
  6. std::string prompt; // mostly for length to erase/restore properly
  7. int max_input = 100;
  8. door::ANSIColor prompt_color{door::COLOR::YELLOW, door::COLOR::BLUE,
  9. door::ATTR::BOLD};
  10. door::ANSIColor input_color{door::COLOR::WHITE}; // , door::COLOR::BLUE};
  11. void erase(door::Door &d, int count) {
  12. d << door::reset;
  13. for (int x = 0; x < count; ++x) {
  14. d << "\x08 \x08";
  15. }
  16. }
  17. void clear_input(door::Door &d) {
  18. if (prompt.empty())
  19. return;
  20. erase(d, input.size());
  21. erase(d, prompt.size() + 1);
  22. }
  23. void restore_input(door::Door &d) {
  24. if (prompt.empty())
  25. return;
  26. d << prompt_color << prompt << input_color << " " << input;
  27. }
  28. /*
  29. commands:
  30. /h /help /?
  31. /t /talk /talkto [TARGET]
  32. /msg [TO] [message]
  33. /me [message]
  34. /quit [message, maybe]
  35. /join [TARGET]
  36. /part [TARGET]
  37. future:
  38. /list ?
  39. /version ?
  40. */
  41. void parse_input(door::Door &door, ircClient &irc) {
  42. // yes, we have something
  43. if (input[0] == '/') {
  44. // command given
  45. std::vector<std::string> cmd = split_limit(input, 3);
  46. if (cmd[0] == "/quit") {
  47. irc.write("QUIT");
  48. }
  49. if (cmd[0] == "/talkto") {
  50. irc.talkto(cmd[1]);
  51. door << "[talkto = " << cmd[1] << "]" << door::nl;
  52. }
  53. if (cmd[0] == "/join") {
  54. if (allow_join) {
  55. std::string tmp = "JOIN " + cmd[1];
  56. irc.write(tmp);
  57. }
  58. }
  59. if (cmd[0] == "/part") {
  60. if (allow_part) {
  61. std::string tmp = "PART " + cmd[1];
  62. irc.write(tmp);
  63. }
  64. }
  65. if (cmd[0] == "/me") {
  66. cmd = split_limit(input, 2);
  67. std::string tmp =
  68. "PRIVMSG " + irc.talkto() + " :\x01" + "ACTION " + cmd[1] + "\x01";
  69. irc.write(tmp);
  70. door << "* " << irc.nick << " " << cmd[1] << door::nl;
  71. }
  72. if (cmd[0] == "/info") {
  73. irc.channels_lock.lock();
  74. for (auto c : irc.channels) {
  75. door << "CH " << c.first << " ";
  76. for (auto s : c.second) {
  77. door << s << " ";
  78. }
  79. door << door::nl;
  80. }
  81. irc.channels_lock.unlock();
  82. }
  83. } else {
  84. std::string target = irc.talkto();
  85. std::string output = "PRIVMSG " + target + " :" + input;
  86. // I need to display something here to show we've said something (and
  87. // where we've said it)
  88. door::ANSIColor nick_color{door::COLOR::WHITE, door::COLOR::BLUE};
  89. if (target[0] == '#') {
  90. door::ANSIColor channel_color = door::ANSIColor{
  91. door::COLOR::YELLOW, door::COLOR::BLUE, door::ATTR::BOLD};
  92. door << nick_color << irc.nick << door::ANSIColor(door::COLOR::CYAN)
  93. << "/" << channel_color << target << door::reset << " " << input
  94. << door::nl;
  95. } else {
  96. door << nick_color << irc.nick << "/" << target << door::reset << " "
  97. << input << door::nl;
  98. }
  99. irc.write(output);
  100. }
  101. input.clear();
  102. }
  103. const char *hot_keys[] = {"/join #", "/part #", "/talkto ", "/help", "/quit "};
  104. bool check_for_input(door::Door &door, ircClient &irc) {
  105. int c;
  106. // return true when we have input and is "valid" // ready
  107. if (prompt.empty()) {
  108. // ok, nothing has been displayed at this time.
  109. if (door.haskey()) {
  110. // something to do.
  111. prompt = "[" + irc.talkto() + "]";
  112. door << prompt_color << prompt << input_color << " ";
  113. c = door.sleep_key(1);
  114. if (c < 0) {
  115. // handle timeout/hangup/out of time
  116. return false;
  117. }
  118. if (c > 0x1000)
  119. return false;
  120. if (isprint(c)) {
  121. door << (char)c;
  122. input.append(1, c);
  123. }
  124. }
  125. return false;
  126. } else {
  127. // continue on with what we have displayed.
  128. c = door.sleep_ms_key(ms_input_delay);
  129. if (c != -1) {
  130. /*
  131. c = door.sleep_key(1);
  132. if (c < 0) {
  133. // handle error
  134. return false;
  135. }
  136. */
  137. if (c > 0x1000)
  138. return false;
  139. if (isprint(c)) {
  140. door << (char)c;
  141. input.append(1, c);
  142. // hot-keys
  143. if (input[0] == '/') {
  144. if (input.size() == 2) {
  145. char c = std::tolower(input[1]);
  146. if (!allow_part) {
  147. if (c == 'p')
  148. c = '!';
  149. }
  150. if (!allow_join) {
  151. if (c == 'j')
  152. c = '!';
  153. }
  154. for (auto hk : hot_keys) {
  155. if (c == hk[1]) {
  156. erase(door, input.size());
  157. input = hk;
  158. door << input;
  159. break;
  160. }
  161. }
  162. /*
  163. switch (input[1]) {
  164. case 'j':
  165. case 'J':
  166. erase(door, input.size());
  167. input = "/join ";
  168. door << input;
  169. break;
  170. case 'p':
  171. case 'P':
  172. erase(door, input.size());
  173. input = "/part ";
  174. door << input;
  175. break;
  176. case 't':
  177. case 'T':
  178. erase(door, input.size());
  179. input = "/talkto ";
  180. door << input;
  181. break;
  182. case 'h':
  183. case 'H':
  184. case '?':
  185. erase(door, input.size());
  186. input = "/help";
  187. door << input;
  188. break;
  189. case 'q':
  190. case 'Q':
  191. erase(door, input.size());
  192. input = "/quit ";
  193. door << input;
  194. }
  195. */
  196. }
  197. }
  198. }
  199. if ((c == 0x08) or (c == 0x7f)) {
  200. // hot-keys
  201. if (input[0] == '/') {
  202. for (auto hk : hot_keys) {
  203. if (input == hk) {
  204. /*
  205. if ((input == "/help") or (input == "/talkto ") or
  206. (input == "/join ") or (input == "/part ") or
  207. (input == "/quit ")) { */
  208. clear_input(door);
  209. /*
  210. erase(door, input.size());
  211. erase(door, prompt.size());
  212. */
  213. input.clear();
  214. prompt.clear();
  215. return false;
  216. }
  217. }
  218. }
  219. if (input.size() > 1) {
  220. erase(door, 1);
  221. door << input_color;
  222. input.erase(input.length() - 1);
  223. } else {
  224. // erasing the last character
  225. erase(door, 1);
  226. input.clear();
  227. erase(door, prompt.size() + 1);
  228. prompt.clear();
  229. return false;
  230. }
  231. }
  232. if (c == 0x0d) {
  233. clear_input(door);
  234. prompt.clear();
  235. /*
  236. Should the input be handled/parsed here?
  237. */
  238. parse_input(door, irc);
  239. return true;
  240. }
  241. }
  242. return false;
  243. }
  244. }