input.cpp 8.8 KB

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