/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* u_init.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:19:27 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:19:29 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include #include #include #include #include #include "c_init.h" #include "c_input.h" #include "m_prompt.h" #include "m_loop.h" #include "s_struct.h" static char *ft_strjoin_m(char *s1, char *s2) { size_t i; size_t j; char *dst; size_t size1; size_t size2; i = -1; j = -1; size1 = ft_strlen(s1); size2 = ft_strlen(s2); if (!(dst = (char*)malloc((size1 + size2 + 1) * sizeof(char)))) return (NULL); while (++i < size1) dst[i] = s1[i]; while (++j < size2) dst[i + j] = s2[j]; dst[i + j] = '\0'; ft_memdel((void*)&s1); return (dst); } static t_caps *c_get_struct(int mode, t_caps *src) { static t_caps *caps; if (mode == 1) { caps = src; } return (caps); } static int16_t c_set_term_raw(uint8_t mode) { struct termios tios; ft_memset(&tios, 0, sizeof(tios)); tcgetattr(STDIN_FILENO, &tios); if (mode) { tios.c_lflag &= ~(ECHO | ICANON | ISIG); tios.c_oflag &= ~(OPOST); tios.c_cc[VMIN] = 1; tios.c_cc[VTIME] = 0; } else { tios.c_lflag |= (ECHO | ICANON | ISIG); tios.c_oflag |= (OPOST); } tcsetattr(STDIN_FILENO, TCSAFLUSH, &tios); mode ? tputs(tgetstr("ns", NULL), 1, ft_putchar) : 0; return (1); } int16_t c_process_key(char *buf, t_msh *msh, t_caps *tcaps) { int i; static char *line = NULL; i = -1; if (line == NULL) if (!(line = ft_calloc(2, sizeof(char)))) return (0); if (ft_isprint(buf[0])) { if (*buf == 'q') { tputs(tgetstr("ve", NULL), 1, ft_putchar); c_set_term_raw(0); exit(0); } line = ft_strjoin_m(line, buf); c_redraw_line(line, tcaps->cpos, msh); tcaps->cpos++; } else { if (strncmp(buf, tgetstr("kr", NULL), ft_strlen(tgetstr("kr", NULL))) == 0) { tputs(tgetstr("nd", NULL), 1, ft_putchar); tcaps->cpos++; return (1); } else if (buf[0] == '\n') { write(1, buf, ft_strlen(buf)); tputs(tgetstr("cr", NULL), 1, ft_putchar); m_parse_and_run_line(line, msh); line = NULL; tcaps->cpos = 0; tputs(tgetstr("cr", NULL), 1, ft_putchar); m_prompt_psx(1, msh); return (1); } else if (strncmp(buf, tgetstr("kl", NULL), ft_strlen(tgetstr("kl", NULL))) == 0) { tputs(tgetstr("le", NULL), 1, ft_putchar); tcaps->cpos--; return (1); } else if (strncmp(buf, tgetstr("kb", NULL), ft_strlen(tgetstr("kb", NULL))) == 0) { line = c_delchar(line, tcaps->cpos); tputs(tgetstr("le", NULL), 1, ft_putchar); tputs(tgetstr("dc", NULL), 1, ft_putchar); return (1); } } return (0); } int16_t c_init_tcaps(t_msh *msh) { t_caps tcaps; char *bp; char *term; char nread[5]; int ret; bp = NULL; term = getenv("TERM"); if (!tgetent(bp, term)) return (-1); tcaps.cpos = 0; ft_printf("my term is %s", term); c_set_term_raw(1); c_get_struct(1, &tcaps); if (!(c_get_win_size(&tcaps.ws))) return (-1); while (1) { ft_bzero(nread, 5); if (!(read(STDIN_FILENO, nread, 4))) return (0); tputs(tgetstr("vi", NULL), 1, ft_putchar); ret = c_process_key(nread, msh, &tcaps); tputs(tgetstr("ve", NULL), 1, ft_putchar); } return (1); }