input.cpp 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383
  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] == "/notice") {
  106. std::string tmp = "NOTICE " + cmd[1] + " :" + cmd[2];
  107. irc.write(tmp);
  108. // build msg for render
  109. tmp = ":" + irc.nick + "!" + " " + tmp;
  110. message_stamp msg;
  111. msg.buffer = irc_split(tmp);
  112. render(msg, door, irc);
  113. }
  114. if (cmd[0] == "/me") {
  115. cmd = split_limit(input, 2);
  116. std::string tmp =
  117. "PRIVMSG " + irc.talkto() + " :\x01" + "ACTION " + cmd[1] + "\x01";
  118. irc.write(tmp);
  119. // build msg for render
  120. tmp = ":" + irc.nick + "!" + " ACTION " + irc.talkto() + " " + cmd[1];
  121. message_stamp msg;
  122. msg.buffer = irc_split(tmp);
  123. render(msg, door, irc);
  124. /*
  125. stamp(now_t, door);
  126. door << "* " << irc.nick << " " << cmd[1] << door::nl;
  127. */
  128. }
  129. if (cmd[0] == "/nick") {
  130. std::string tmp = "NICK " + cmd[1];
  131. irc.write(tmp);
  132. }
  133. if (cmd[0] == "/help") {
  134. door << "IRC Commands :" << door::nl;
  135. door << "/help /motd /quit /nick" << door::nl;
  136. door << "/me ACTION" << door::nl;
  137. door << "/msg TARGET Message" << door::nl;
  138. if (allow_part) {
  139. door << "/join #CHANNEL" << door::nl;
  140. door << "/part #CHANNEL" << door::nl;
  141. }
  142. door << "[ESC] aborts input" << door::nl;
  143. }
  144. if (cmd[0] == "/info") {
  145. irc.channels_lock.lock();
  146. for (auto c : irc.channels) {
  147. door << "CH " << c.first << " ";
  148. for (auto s : c.second) {
  149. door << s << " ";
  150. }
  151. door << door::nl;
  152. }
  153. irc.channels_lock.unlock();
  154. }
  155. } else {
  156. std::string target = irc.talkto();
  157. std::string output = "PRIVMSG " + target + " :" + input;
  158. // I need to display something here to show we've said something (and
  159. // where we've said it)
  160. door::ANSIColor nick_color{door::COLOR::WHITE, door::COLOR::BLUE};
  161. irc.write(output);
  162. // build message for render
  163. message_stamp msg;
  164. output = ":" + irc.nick + "!" + " " + output;
  165. msg.buffer = irc_split(output);
  166. render(msg, door, irc);
  167. /*
  168. stamp(now_t, door);
  169. if (target[0] == '#') {
  170. door::ANSIColor channel_color = door::ANSIColor{
  171. door::COLOR::YELLOW, door::COLOR::BLUE, door::ATTR::BOLD};
  172. door << channel_color << target << nick_color << "/" << nick_color
  173. << irc.nick << door::reset << " " << input << door::nl;
  174. } else {
  175. door << nick_color << irc.nick << " -> " << target << door::reset << " "
  176. << input << door::nl;
  177. }
  178. */
  179. }
  180. input.clear();
  181. input_scroll = 0;
  182. }
  183. // can't do /motd it matches /me /msg
  184. // nick matches names.
  185. const char *hot_keys[] = {"/join #", "/part #", "/talkto ", "/help", "/quit "};
  186. bool check_for_input(door::Door &door, ircClient &irc) {
  187. int c;
  188. int width = door.width;
  189. int third = width / 3;
  190. // return true when we have input and is "valid" // ready
  191. if (prompt.empty()) {
  192. // ok, nothing has been displayed at this time.
  193. if (door.haskey()) {
  194. // something to do.
  195. c = door.sleep_key(1);
  196. if (c < 0) {
  197. // handle timeout/hangup/out of time
  198. if (c < -1) {
  199. if (!has_quit) {
  200. irc.write("QUIT");
  201. has_quit = true;
  202. }
  203. }
  204. return false;
  205. }
  206. if (c > 0x1000)
  207. return false;
  208. // How to handle "early" typing, we we're still connecting...
  209. // FAIL-WHALE (what if we part all channels?)
  210. if (irc.registered)
  211. // don't take any imput unless our talkto has been set.
  212. if (isprint(c)) {
  213. prompt = "[" + irc.talkto() + "]";
  214. door << prompt_color << prompt << input_color << " ";
  215. door << (char)c;
  216. input.append(1, c);
  217. }
  218. }
  219. return false;
  220. } else {
  221. // continue on with what we have displayed.
  222. c = door.sleep_ms_key(ms_input_delay);
  223. if (c < -1) {
  224. if (!has_quit) {
  225. irc.write("QUIT");
  226. has_quit = true;
  227. }
  228. } else if (c != -1) {
  229. /*
  230. c = door.sleep_key(1);
  231. if (c < 0) {
  232. // handle error
  233. return false;
  234. }
  235. */
  236. if (c > 0x1000)
  237. return false;
  238. if (isprint(c)) {
  239. // string length check / scroll support?
  240. if ((int)input.size() == max_input) {
  241. door << (char)7;
  242. return false;
  243. }
  244. door << (char)c;
  245. input.append(1, c);
  246. int pos = input.size() - input_scroll;
  247. if (input_scroll != 0)
  248. pos += 3;
  249. // need something better then magic number here.
  250. // 3 is our extra padding here.
  251. int prompt_size = prompt.size() + 1; // prompt + space
  252. if (pos + prompt_size + 3 == width) {
  253. // Ok, scroll!
  254. clear_input(door);
  255. input_scroll = input.size() - third;
  256. restore_input(door);
  257. }
  258. // hot-keys
  259. if (input[0] == '/') {
  260. if (input.size() == 2) {
  261. char c = std::tolower(input[1]);
  262. if (!allow_part) {
  263. if (c == 'p')
  264. c = '!';
  265. }
  266. if (!allow_join) {
  267. if (c == 'j')
  268. c = '!';
  269. }
  270. for (auto hk : hot_keys) {
  271. if (c == hk[1]) {
  272. erase(door, input.size());
  273. input = hk;
  274. door << input;
  275. break;
  276. }
  277. }
  278. }
  279. }
  280. }
  281. if (c == 0x1b) {
  282. // escape key
  283. clear_input(door);
  284. input.clear();
  285. prompt.clear();
  286. input_scroll = 0;
  287. return false;
  288. }
  289. if ((c == 0x08) or (c == 0x7f)) {
  290. // hot-keys
  291. if (input[0] == '/') {
  292. for (auto hk : hot_keys) {
  293. if (input == hk) {
  294. clear_input(door);
  295. input.clear();
  296. prompt.clear();
  297. input_scroll = 0;
  298. return false;
  299. }
  300. }
  301. }
  302. if (input.size() > 1) {
  303. erase(door, 1);
  304. door << input_color;
  305. input.erase(input.length() - 1);
  306. if (input_scroll != 0) {
  307. // are we getting close?
  308. if ((int)input.size() - third < input_scroll) {
  309. // scroll the other way
  310. clear_input(door);
  311. input_scroll = (input.size() - 2 * third);
  312. if (input_scroll < 0)
  313. input_scroll = 0;
  314. restore_input(door);
  315. }
  316. }
  317. } else {
  318. // erasing the last character
  319. erase(door, 1);
  320. input.clear();
  321. erase(door, prompt.size() + 1);
  322. prompt.clear();
  323. return false;
  324. }
  325. }
  326. if (c == 0x0d) {
  327. clear_input(door);
  328. prompt.clear();
  329. parse_input(door, irc);
  330. input.clear();
  331. input_scroll = 0;
  332. return true;
  333. }
  334. }
  335. return false;
  336. }
  337. }