input.cpp 6.2 KB

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