input.cpp 8.2 KB

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