input.cpp 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. #include "input.h"
  2. #include "render.h"
  3. bool allow_part = false;
  4. bool allow_join = false;
  5. bool has_quit = false;
  6. int ms_input_delay = 250;
  7. std::string input;
  8. std::string prompt; // mostly for length to erase/restore properly
  9. int max_input = 220;
  10. int input_scroll = 0;
  11. door::ANSIColor prompt_color{door::COLOR::YELLOW, door::COLOR::BLUE,
  12. door::ATTR::BOLD};
  13. door::ANSIColor input_color{door::COLOR::WHITE}; // , door::COLOR::BLUE};
  14. void erase(door::Door &d, int count) {
  15. d << door::reset;
  16. for (int x = 0; x < count; ++x) {
  17. d << "\x08 \x08";
  18. }
  19. }
  20. void clear_input(door::Door &d) {
  21. if (prompt.empty())
  22. return;
  23. if (input_scroll == 0)
  24. erase(d, input.size());
  25. else
  26. erase(d, input.size() - input_scroll + 3);
  27. erase(d, prompt.size() + 1);
  28. }
  29. void restore_input(door::Door &d) {
  30. if (prompt.empty())
  31. return;
  32. d << prompt_color << prompt << input_color << " ";
  33. if (input_scroll == 0)
  34. d << input;
  35. else
  36. d << "..." << input.substr(input_scroll);
  37. }
  38. /*
  39. commands:
  40. /h /help /?
  41. /t /talk /talkto [TARGET]
  42. /msg [TO] [message]
  43. /me [message]
  44. /quit [message, maybe]
  45. /join [TARGET]
  46. /part [TARGET]
  47. future:
  48. /list ?
  49. /version ?
  50. */
  51. void parse_input(door::Door &door, ircClient &irc) {
  52. // yes, we have something
  53. std::time_t now_t;
  54. time(&now_t);
  55. if (input[0] == '/') {
  56. // command given
  57. std::vector<std::string> cmd = split_limit(input, 3);
  58. if (cmd[0] == "/motd") {
  59. irc.write("MOTD");
  60. }
  61. if (cmd[0] == "/names") {
  62. std::string talk = irc.talkto();
  63. if (talk[0] == '#') {
  64. // or we could pull this from /info & talk.
  65. irc.write("NAMES " + talk);
  66. } // handle this input error
  67. }
  68. if (cmd[0] == "/quit") {
  69. irc.write("QUIT");
  70. }
  71. if (cmd[0] == "/talkto") {
  72. irc.talkto(cmd[1]);
  73. door << "[talkto = " << cmd[1] << "]" << door::nl;
  74. }
  75. if (cmd[0] == "/join") {
  76. if (allow_join) {
  77. std::string tmp = "JOIN " + cmd[1];
  78. irc.write(tmp);
  79. }
  80. }
  81. if (cmd[0] == "/part") {
  82. if (allow_part) {
  83. std::string tmp = "PART " + cmd[1];
  84. irc.write(tmp);
  85. }
  86. }
  87. // TODO: feed this and /me to render so DRY/one place to render
  88. if (cmd[0] == "/msg") {
  89. std::string tmp = "PRIVMSG " + cmd[1] + " :" + cmd[2];
  90. irc.write(tmp);
  91. // build msg for render
  92. tmp = ":" + irc.nick + "!" + " " + tmp;
  93. message_stamp msg;
  94. msg.buffer = irc_split(tmp);
  95. render(msg, door, irc);
  96. /*
  97. stamp(now_t, door);
  98. if (cmd[1][0] == '#') {
  99. door << irc.nick << "/" << cmd[1] << " " << cmd[2] << door::nl;
  100. } else {
  101. door << cmd[1] << " " << cmd[2] << door::nl;
  102. }
  103. */
  104. }
  105. if (cmd[0] == "/me") {
  106. cmd = split_limit(input, 2);
  107. std::string tmp =
  108. "PRIVMSG " + irc.talkto() + " :\x01" + "ACTION " + cmd[1] + "\x01";
  109. irc.write(tmp);
  110. // build msg for render
  111. tmp = ":" + irc.nick + "!" + " ACTION " + irc.talkto() + " " + cmd[1];
  112. message_stamp msg;
  113. msg.buffer = irc_split(tmp);
  114. render(msg, door, irc);
  115. /*
  116. stamp(now_t, door);
  117. door << "* " << irc.nick << " " << cmd[1] << door::nl;
  118. */
  119. }
  120. if (cmd[0] == "/nick") {
  121. std::string tmp = "NICK " + cmd[1];
  122. irc.write(tmp);
  123. }
  124. if (cmd[0] == "/help") {
  125. door << "IRC Commands :" << door::nl;
  126. door << "/help /motd /quit /nick" << door::nl;
  127. door << "/me ACTION" << door::nl;
  128. door << "/msg TARGET Message" << door::nl;
  129. if (allow_part) {
  130. door << "/join #CHANNEL" << door::nl;
  131. door << "/part #CHANNEL" << door::nl;
  132. }
  133. door << "[ESC] aborts input" << door::nl;
  134. }
  135. if (cmd[0] == "/info") {
  136. irc.channels_lock.lock();
  137. for (auto c : irc.channels) {
  138. door << "CH " << c.first << " ";
  139. for (auto s : c.second) {
  140. door << s << " ";
  141. }
  142. door << door::nl;
  143. }
  144. irc.channels_lock.unlock();
  145. }
  146. } else {
  147. std::string target = irc.talkto();
  148. std::string output = "PRIVMSG " + target + " :" + input;
  149. // I need to display something here to show we've said something (and
  150. // where we've said it)
  151. door::ANSIColor nick_color{door::COLOR::WHITE, door::COLOR::BLUE};
  152. irc.write(output);
  153. // build message for render
  154. message_stamp msg;
  155. output = ":" + irc.nick + "!" + " " + output;
  156. msg.buffer = irc_split(output);
  157. render(msg, door, irc);
  158. /*
  159. stamp(now_t, door);
  160. if (target[0] == '#') {
  161. door::ANSIColor channel_color = door::ANSIColor{
  162. door::COLOR::YELLOW, door::COLOR::BLUE, door::ATTR::BOLD};
  163. door << channel_color << target << nick_color << "/" << nick_color
  164. << irc.nick << door::reset << " " << input << door::nl;
  165. } else {
  166. door << nick_color << irc.nick << " -> " << target << door::reset << " "
  167. << input << door::nl;
  168. }
  169. */
  170. }
  171. input.clear();
  172. input_scroll = 0;
  173. }
  174. // can't do /motd it matches /me /msg
  175. // nick matches names.
  176. const char *hot_keys[] = {"/join #", "/part #", "/talkto ", "/help", "/quit "};
  177. bool check_for_input(door::Door &door, ircClient &irc) {
  178. int c;
  179. int width = door.width;
  180. int third = width / 3;
  181. // return true when we have input and is "valid" // ready
  182. if (prompt.empty()) {
  183. // ok, nothing has been displayed at this time.
  184. if (door.haskey()) {
  185. // something to do.
  186. c = door.sleep_key(1);
  187. if (c < 0) {
  188. // handle timeout/hangup/out of time
  189. if (c < -1) {
  190. if (!has_quit) {
  191. irc.write("QUIT");
  192. has_quit = true;
  193. }
  194. }
  195. return false;
  196. }
  197. if (c > 0x1000)
  198. return false;
  199. // How to handle "early" typing, we we're still connecting...
  200. // FAIL-WHALE (what if we part all channels?)
  201. if (irc.registered)
  202. // don't take any imput unless our talkto has been set.
  203. if (isprint(c)) {
  204. prompt = "[" + irc.talkto() + "]";
  205. door << prompt_color << prompt << input_color << " ";
  206. door << (char)c;
  207. input.append(1, c);
  208. }
  209. }
  210. return false;
  211. } else {
  212. // continue on with what we have displayed.
  213. c = door.sleep_ms_key(ms_input_delay);
  214. if (c < -1) {
  215. if (!has_quit) {
  216. irc.write("QUIT");
  217. has_quit = true;
  218. }
  219. } else if (c != -1) {
  220. /*
  221. c = door.sleep_key(1);
  222. if (c < 0) {
  223. // handle error
  224. return false;
  225. }
  226. */
  227. if (c > 0x1000)
  228. return false;
  229. if (isprint(c)) {
  230. // string length check / scroll support?
  231. if ((int)input.size() == max_input) {
  232. door << (char)7;
  233. return false;
  234. }
  235. door << (char)c;
  236. input.append(1, c);
  237. int pos = input.size() - input_scroll;
  238. if (input_scroll != 0)
  239. pos += 3;
  240. // need something better then magic number here.
  241. // 3 is our extra padding here.
  242. int prompt_size = prompt.size() + 1; // prompt + space
  243. if (pos + prompt_size + 3 == width) {
  244. // Ok, scroll!
  245. clear_input(door);
  246. input_scroll = input.size() - third;
  247. restore_input(door);
  248. }
  249. // hot-keys
  250. if (input[0] == '/') {
  251. if (input.size() == 2) {
  252. char c = std::tolower(input[1]);
  253. if (!allow_part) {
  254. if (c == 'p')
  255. c = '!';
  256. }
  257. if (!allow_join) {
  258. if (c == 'j')
  259. c = '!';
  260. }
  261. for (auto hk : hot_keys) {
  262. if (c == hk[1]) {
  263. erase(door, input.size());
  264. input = hk;
  265. door << input;
  266. break;
  267. }
  268. }
  269. }
  270. }
  271. }
  272. if (c == 0x1b) {
  273. // escape key
  274. clear_input(door);
  275. input.clear();
  276. prompt.clear();
  277. input_scroll = 0;
  278. return false;
  279. }
  280. if ((c == 0x08) or (c == 0x7f)) {
  281. // hot-keys
  282. if (input[0] == '/') {
  283. for (auto hk : hot_keys) {
  284. if (input == hk) {
  285. clear_input(door);
  286. input.clear();
  287. prompt.clear();
  288. input_scroll = 0;
  289. return false;
  290. }
  291. }
  292. }
  293. if (input.size() > 1) {
  294. erase(door, 1);
  295. door << input_color;
  296. input.erase(input.length() - 1);
  297. if (input_scroll != 0) {
  298. // are we getting close?
  299. if ((int)input.size() - third < input_scroll) {
  300. // scroll the other way
  301. clear_input(door);
  302. input_scroll = (input.size() - 2 * third);
  303. if (input_scroll < 0)
  304. input_scroll = 0;
  305. restore_input(door);
  306. }
  307. }
  308. } else {
  309. // erasing the last character
  310. erase(door, 1);
  311. input.clear();
  312. erase(door, prompt.size() + 1);
  313. prompt.clear();
  314. return false;
  315. }
  316. }
  317. if (c == 0x0d) {
  318. clear_input(door);
  319. prompt.clear();
  320. parse_input(door, irc);
  321. input.clear();
  322. input_scroll = 0;
  323. return true;
  324. }
  325. }
  326. return false;
  327. }
  328. }