input.cpp 7.9 KB

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