X-Git-Url: https://git.danieliu.xyz/?p=taskasaur.git;a=blobdiff_plain;f=taskasaur.c;h=87326787fce1dee1195c9cce1ac0b45cec79d0e9;hp=39eaca6e9ba669a8c1b76bb14fbd06fbd040d389;hb=72509aeb4746b7ea2bd9cc84cfd45dfb87042e07;hpb=103d9d622254eb6257565bd08da27376c12510fd diff --git a/taskasaur.c b/taskasaur.c index 39eaca6..8732678 100644 --- a/taskasaur.c +++ b/taskasaur.c @@ -1,174 +1,285 @@ -#include -#include -#include -#include -#include -#include -void winch_handler(int sig); +#include "headers/parser.h" +#include "headers/render.h" +#include "headers/menu.h" +#include "headers/utils.h" +#include "config.h" -char** read_todo(FILE* file, int* length); +// this is temp +#define MENU_WIDTH 40 -WINDOW* create_list_win(int height, int width, int y, int x); +typedef struct BoardMenu { + Menu** menu_list; + int menu_count; + int selected; +} BoardMenu; -void draw_todo(WINDOW* todo_win, char** todo_list, int todo_length); +BoardMenu* create_board_menu(Board* board); +int set_selected_menu(BoardMenu* boardmenu, int index); -#include "config.h" +MenuItem** todolist_to_menuitem(TodoItem** item_list, int list_length); +Menu** make_menus(Board* board, int todolist_length); +int swap_menu(BoardMenu* boardmenu, int src_index, int dest_index); -int -main(int argc, char** argv) +int +main(int argc, char** argv) { - int flag; - FILE* board_file; - char** todos; - int todo_length; - int height, width; - int x, y; - int ch; - WINDOW* todo_win; - - signal(SIGWINCH, winch_handler); - - // read command line args - flag = getopt(argc, argv, "o:n:"); - switch (flag) { - case 'o': - - // read from task file (might need to check for read and write permissions) - board_file = fopen(optarg, "r"); - if (!board_file) { - printf("%s does not exist\n", optarg); - return 1; - } - - todos = read_todo(board_file, &todo_length); - fclose(board_file); - - break; - - case 'n': - - // make sure file does not exist - // however, it maybe be possible that an different error has occured (besides the file not existing) - if (access(optarg, F_OK) == 0) { - printf("%s already exists\n", optarg); - return 1; - } - // create a file here - board_file = fopen(optarg, "w"); - // write init stuff here - fclose(board_file); - printf("Successfully created %s\n", optarg); - - todos = malloc(0); - todo_length = 0; - - break; - - case -1: - case '?': - printf("Help string\n"); - return 2; - } + /* read from todo file */ + Board* board; + board = begin_parse("test_board.md"); + /* log_todo(board); */ + /* init curses */ + init_tscurses(); - // start ncurses - initscr(); - cbreak(); - /* raw(); */ - noecho(); - curs_set(0); - start_color(); - - init_pair(1, COLOR_CYAN, COLOR_BLACK); - init_pair(2, COLOR_BLACK, COLOR_CYAN); + BoardMenu* boardmenu; + boardmenu = create_board_menu(board); - getmaxyx(stdscr, height, width); - x = y = 0; - refresh(); + // this is temp + for (int i = 0; i < boardmenu->menu_count; i++) { + render_menu(boardmenu->menu_list[i]); + } + + char ch; + while ((ch = getch()) != BINDING_QUIT) { + + Menu* active_menu; + active_menu = boardmenu->menu_list[boardmenu->selected]; - todo_win = create_list_win(20, 40, 5, 5); - draw_todo(todo_win, todos, todo_length); - - move(y,x); - while ((ch = getch()) != 113) { // while not q - - // ofc the first thing we need is vim keys switch (ch) { - case 104: // h - x -= 1; + + case BINDING_SCROLL_UP: + menu_driver(active_menu, MENU_UP); break; - case 106: // j - y += 1; + case BINDING_SCROLL_DOWN: + menu_driver(active_menu, MENU_DOWN); break; - case 107: // k - y -= 1; + case BINDING_SCROLL_LEFT: + if (boardmenu->selected-1 < 0) break; + set_selected_menu(boardmenu, boardmenu->selected-1); break; - case 108: // l - x += 1; + case BINDING_SCROLL_RIGHT: + if (boardmenu->selected+1 > boardmenu->menu_count-1) break; + set_selected_menu(boardmenu, boardmenu->selected+1); break; - } + case BINDING_JUMP_TOP: + menu_driver(active_menu, MENU_TOP); + break; + case BINDING_JUMP_BOTTOM: + menu_driver(active_menu, MENU_BOTTOM); + break; + case BINDING_MOVE_ITEM_UP: + menu_driver(active_menu, MENU_MOVE_UP); + break; + case BINDING_MOVE_ITEM_DOWN: + menu_driver(active_menu, MENU_MOVE_DOWN); + break; + case BINDING_MOVE_ITEM_LEFT: + if (boardmenu->selected-1 < 0) break; + { + Menu* from_menu; + Menu* to_menu; - move(y,x); - refresh(); - /* clear(); */ - } + from_menu = boardmenu->menu_list[boardmenu->selected], + to_menu = boardmenu->menu_list[boardmenu->selected-1], - endwin(); + insert_item( + to_menu, + get_menu_item( + from_menu, + get_selected_item(from_menu) + ), + min( + get_selected_item(from_menu), + get_menu_length(to_menu) + ) + ); + delete_item( + from_menu, + get_selected_item(from_menu) + ); + set_selected_menu(boardmenu, boardmenu->selected-1); + } - /* Free mem */ - free(todos); // prob need to free each string in list too + break; + case BINDING_MOVE_ITEM_RIGHT: + if (boardmenu->selected >= boardmenu->menu_count-1) break; + // this is legit cpy paste please fix this + { + Menu* from_menu; + Menu* to_menu; - return 0; + from_menu = boardmenu->menu_list[boardmenu->selected], + to_menu = boardmenu->menu_list[boardmenu->selected+1], + + insert_item( + to_menu, + get_menu_item( + from_menu, + get_selected_item(from_menu) + ), + min( + get_selected_item(from_menu), + get_menu_length(to_menu) + ) + ); + delete_item( + from_menu, + get_selected_item(from_menu) + ); + set_selected_menu(boardmenu, boardmenu->selected+1); + } + + break; + case BINDING_DELETE_ITEM: + menu_driver(active_menu, MENU_DELETE); + break; + case BINDING_APPEND_ITEM: + menu_driver(active_menu, MENU_APPEND); + break; + case BINDING_INSERT_ABOVE: + menu_driver(active_menu, MENU_INSERT_ABOVE); + break; + case BINDING_INSERT_BELOW: + menu_driver(active_menu, MENU_INSERT_BELOW); + break; + /* case BINDING_MOVE_MENU_LEFT: */ + /* if (boardmenu->selected-1 < 0) break; */ + + /* swap_menu(boardmenu, boardmenu->selected, boardmenu->selected-1); */ + /* boardmenu->selected -= 1; */ + /* set_selected_menu(boardmenu, boardmenu->selected); */ + +/* break; */ +/* case BINDING_MOVE_MENU_RIGHT: */ +/* if (boardmenu->selected >= boardmenu->menu_count-1) break; */ +/* swap_menu(boardmenu, boardmenu->selected, boardmenu->selected+1); */ + /* boardmenu->selected += 1; */ + /* set_selected_menu(boardmenu, boardmenu->selected); */ + + break; + case BINDING_EDIT_ITEM: + menu_driver(active_menu, MENU_EDIT); + break; + } + + for (int i = 0; i < boardmenu->menu_count; i++) { + render_menu(boardmenu->menu_list[i]); + } + + + } + + exit_tscurses(); + return 0; } -void -winch_handler(int sig) +BoardMenu* +create_board_menu(Board* board) { - endwin(); - refresh(); + BoardMenu* new_boardmenu; + + new_boardmenu = malloc(sizeof(BoardMenu)); + + new_boardmenu->menu_list = make_menus(board, board->todolist_count); + new_boardmenu->menu_count = board->todolist_count; + new_boardmenu->selected = 0; + + return new_boardmenu; } -char** -read_todo(FILE* file, int* length) -{ // apparently getline isn't rly that portable, so consider other options - char** out_arr; - int out_len; - char* lineptr; - size_t len; - ssize_t nread; - - out_arr = NULL; - out_len = 0; - lineptr = NULL; - len = 0; - - while ((nread = getline(&lineptr, &len, file)) != -1) { - out_len++; - out_arr = realloc(out_arr, (sizeof(char*))*out_len); // bad to keep resizing? - out_arr[out_len-1] = lineptr; - - lineptr = NULL; - len = 0; - } +int +set_selected_menu(BoardMenu* boardmenu, int index) +{ + Menu* old_menu; + Menu* new_menu; + int new_pos; - *length = out_len; - return out_arr; + old_menu = boardmenu->menu_list[boardmenu->selected]; + new_menu = boardmenu->menu_list[index]; + + set_menu_focus(old_menu, false); + set_menu_focus(new_menu, true); + + /* also try to jump to a similar position if possible */ + /* rn theres a bug if old menu is empty */ + new_pos = min(get_selected_item(old_menu), get_menu_length(new_menu)-1); + set_selected_item(new_menu, new_pos); + + boardmenu->selected = index; + + return 0; } -WINDOW* -create_list_win(int height, int width, int y, int x) +MenuItem** +todolist_to_menuitem(TodoItem** item_list, int list_length) { - WINDOW* new_win = newwin(height, width, y, x); - wrefresh(new_win); - return new_win; + MenuItem** items; + + items = malloc((list_length+1)*sizeof(MenuItem*)); + for (int i = 0; i < list_length; i++) { + items[i] = create_menuitem(item_list[i]->item_name); + } + + items[list_length] = 0; //null terminate + return items; } -void -draw_todo(WINDOW* todo_win, char** todo_list, int todo_length) { - for (int i = 0; i < todo_length; i++) { - mvwprintw(todo_win, i+1, 2, todo_list[i]); +Menu** +make_menus(Board* board, int todolist_length) +{ + + Menu** menu_list; + + menu_list = malloc(todolist_length*sizeof(Menu*)); + + for (int i = 0; i < todolist_length; i++) { + + /* read from parsed */ + TodoList* todo_list = board->todolist_list[i]; + MenuItem** item_list = todolist_to_menuitem(todo_list->item_list, todo_list->item_count); + + Menu* new_menu = create_menu(todo_list->list_name, item_list); + + /* make window */ + WINDOW* win = newwin(20, MENU_WIDTH, 1, 1+MENU_WIDTH*i); + box(win, 0, 0); + + /* some menu settings */ + set_menu_win(new_menu, win); + set_menu_focus(new_menu, i == 0); // make first win focused + + /* refresh */ + refresh(); + wrefresh(win); + + menu_list[i] = new_menu; } - box(todo_win, 0, 0); - wrefresh(todo_win); + + return menu_list; +} + +int +swap_menu(BoardMenu* boardmenu, int src_index, int dest_index) +{ + /* reposition menus */ + mvwin(get_menu_win(boardmenu->menu_list[src_index]), + 1, 1+MENU_WIDTH*dest_index + ); + mvwin(get_menu_win(boardmenu->menu_list[dest_index]), + 1, 1+MENU_WIDTH*src_index + ); + wrefresh(get_menu_win(boardmenu->menu_list[src_index])); + wrefresh(get_menu_win(boardmenu->menu_list[dest_index])); + /* wclear(get_menu_win(boardmenu->menu_list[src_index])); */ + /* wclear(get_menu_win(boardmenu->menu_list[dest_index])); */ + /* touchwin(get_menu_win(boardmenu->menu_list[src_index])); */ + /* touchwin(get_menu_win(boardmenu->menu_list[dest_index])); */ + clear(); + + /* swap in array */ + ar_swap_item(boardmenu->menu_list, src_index, dest_index); + + return 0; } +