user interactions now possible

This commit is contained in:
nova 2025-02-27 18:54:23 +01:00
parent b9606e601a
commit 965351968f
3 changed files with 59 additions and 22 deletions

13
interactions.c Normal file
View File

@ -0,0 +1,13 @@
#include <curses.h>
#include <dirent.h>
#include <unistd.h>
void user_interactions(char *input, unsigned int *status) {
if (*input == 'q') {
*status ^= 1;
}
else {
*status ^= 2;
}
}

5
interactions.h Normal file
View File

@ -0,0 +1,5 @@
#include <curses.h>
#include <pthread.h>
#include "interactions.c"
void user_interactions(char *input, unsigned int *status);

63
main.c
View File

@ -3,12 +3,14 @@
#include <unistd.h> #include <unistd.h>
#include <stdlib.h> #include <stdlib.h>
#include "window.h" #include "window.h"
#include "interactions.h"
unsigned int terminal_height; unsigned int terminal_height;
unsigned int terminal_width; unsigned int terminal_width;
unsigned int temp_heigth = 0; //used for screen refresh
unsigned int temp_width = 0;
unsigned int settings; unsigned int settings;
unsigned long file_count; unsigned int status; //bit 0 = enable
unsigned long longest_name;
char **content_l; //content of parent dir, used in left window char **content_l; //content of parent dir, used in left window
char **content_m; //content of current dir, used in main window char **content_m; //content of current dir, used in main window
char **content_r; //content of child dir, used in right window char **content_r; //content of child dir, used in right window
@ -17,38 +19,55 @@ char *path = ".";
int main() { int main() {
initscr(); //start ncurses initscr(); //start ncurses
timeout(50); //blocking timeout of getch()
unsigned int ch;
getmaxyx(stdscr, terminal_height, terminal_width); getmaxyx(stdscr, terminal_height, terminal_width);
WINDOW *winl = newwin(terminal_height, terminal_width/3, terminal_height, (terminal_width/3)); WINDOW *winl = newwin(terminal_height, terminal_width/3, terminal_height, (terminal_width/3));
WINDOW *winm = newwin(terminal_height, terminal_width/3, 0, 0); WINDOW *winm = newwin(terminal_height, terminal_width/3, 0, 0);
WINDOW *winr = newwin(terminal_height, terminal_width/3, terminal_height, ((terminal_width/3)*2)); WINDOW *winr = newwin(terminal_height, terminal_width/3, terminal_height, ((terminal_width/3)*2));
settings = 1; //bit 0 = show_hidden_files settings ^= 1; //bit 0 = show_hidden_files
status = 2; //update ui bit
char input = 0;
while((ch = wgetch(winm)) != 'q'){ while(!(status & 1)){
getmaxyx(stdscr, temp_heigth, temp_width);
if (status & 2) {
pthread_t populate_l;
pthread_t populate_m;
pthread_t populate_r;
pthread_create(&populate_l, NULL, populate_dir, (void*)0); //parent_content slash win_l
pthread_create(&populate_m, NULL, populate_dir, (void*)1); //current_content slash win_m
pthread_create(&populate_r, NULL, populate_dir, (void*)2); //child_content slash win_r
pthread_join(populate_l, NULL);
pthread_join(populate_m, NULL);
pthread_join(populate_r, NULL);
}
getmaxyx(stdscr, terminal_height, terminal_width); getmaxyx(stdscr, terminal_height, terminal_width);
temp_heigth -= terminal_height;
temp_width -= terminal_width;
if (!temp_heigth || !temp_width || (status & 2)) {
window_left(winl, 0, 0, content_l);
window_main(winm, 0, terminal_width/3, content_m);
window_right(winr, 0, (terminal_width/3)*2, content_r);
wmove(stdscr,0,0);
pthread_t populate_l; status ^= 2;
pthread_t populate_m; }
pthread_t populate_r;
pthread_create(&populate_l, NULL, populate_dir, (void*)0); //parent_content slash win_l
pthread_create(&populate_m, NULL, populate_dir, (void*)1); //current_content slash win_m
pthread_create(&populate_r, NULL, populate_dir, (void*)2); //child_content slash win_r
pthread_join(populate_l, NULL); if ((input = getch())) {
pthread_join(populate_m, NULL); user_interactions(&input, &status);
pthread_join(populate_r, NULL); }
window_left(winl, 0, 0, content_l);
window_main(winm, 0, terminal_width/3, content_m);
window_right(winr, 0, (terminal_width/3)*2, content_r);
wmove(stdscr,0,0);
free(content_l);
free(content_m);
free(content_r);
} }
free(content_l);
free(content_m);
free(content_r);
endwin(); endwin();