kaari/main.c

118 lines
1.9 KiB
C
Raw Normal View History

2025-01-17 03:02:50 +02:00
#include<stdio.h>
2025-01-17 04:53:27 +02:00
#include<stdlib.h>
#include<unistd.h>
#include<termios.h>
2025-01-17 03:02:50 +02:00
#define clear() printf("\033[H\033[J")
#define gotoxy(x,y) printf("\033[%d;%dH", (y), (x))
2025-01-17 04:53:27 +02:00
int getch();
void enableRawMode();
void disableRawMode();
void drawWin(int fonth);
int askHeight();
struct termios orig_termios;
2025-01-17 03:02:50 +02:00
int main() {
2025-01-17 04:53:27 +02:00
int fonth = askHeight();
2025-01-17 03:02:50 +02:00
clear();
2025-01-17 04:53:27 +02:00
drawWin(fonth);
enableRawMode();
char c;
while(1) {
c = getch();
// Q to exit
if (c == 'q') {
break;
}
// Handle arrows and stuff
if (c == '[') {
c = getch();
if (c == 'A') {
printf("^");
continue;
}
if (c == 'B') {
printf("v");
continue;
}
if (c == 'C') {
printf(">");
continue;
}
if (c == 'D') {
printf("<");
continue;
}
}
}
disableRawMode();
2025-01-17 03:02:50 +02:00
return 0;
}
2025-01-17 04:53:27 +02:00
void drawWin(int fonth) {
2025-01-17 03:02:50 +02:00
clear();
printf("Kaari - Binarier font editor\r\n");
printf("+--------+\r\n");
int cstart=32;
int cperline=16;
int cmax=126;
2025-01-17 04:53:27 +02:00
for (int y=0; y<fonth; y++) {
2025-01-17 03:02:50 +02:00
printf("| | ");
for (int c=y*cperline+cstart; c<(y+1)*cperline+cstart && c<=cmax; c++) {
printf("%c ", c);
}
printf("\r\n");
}
2025-01-17 04:53:27 +02:00
printf("+--------+\r\nQ:Quit");
2025-01-17 03:02:50 +02:00
return;
}
2025-01-17 04:53:27 +02:00
int askHeight() {
printf("Enter desired font height: ");
int fonth;
scanf("%d", &fonth);
if (fonth < 8 || fonth > 16) {
printf("This should be 8 - 16.\r\n");
return askHeight();
}
return fonth;
}
void disableRawMode() {
tcsetattr(STDIN_FILENO, TCSAFLUSH, &orig_termios);
}
void enableRawMode() {
tcgetattr(STDIN_FILENO, &orig_termios);
atexit(disableRawMode);
struct termios raw = orig_termios;
raw.c_lflag &= ~(ECHO | ICANON);
tcsetattr(STDIN_FILENO, TCSAFLUSH, &raw);
}
int getch() {
struct termios oldt, newt;
int ch;
tcgetattr(STDIN_FILENO, &oldt);
newt = oldt;
newt.c_lflag &= ~(ICANON | ECHO);
tcsetattr(STDIN_FILENO, TCSANOW, &newt);
ch = getchar();
tcsetattr(STDIN_FILENO, TCSANOW, &oldt);
return ch;
}