notcurses/src/bin/demo.c

54 lines
1.1 KiB
C
Raw Normal View History

#include <stdio.h>
#include <locale.h>
2019-11-19 14:10:28 +00:00
#include <unistd.h>
2019-11-17 10:04:41 +00:00
#include <stdlib.h>
2019-11-17 14:53:59 +00:00
#include <notcurses.h>
2019-11-17 10:04:41 +00:00
2019-11-21 11:55:05 +00:00
// just fucking around...for now
2019-11-17 10:04:41 +00:00
int main(void){
struct notcurses* nc;
notcurses_options nopts = {
.inhibit_alternate_screen = false,
.outfd = STDOUT_FILENO,
.termtype = NULL,
};
2019-11-21 11:38:21 +00:00
struct ncplane* ncp;
if(!setlocale(LC_ALL, "")){
fprintf(stderr, "Couldn't set locale based on user preferences\n");
return EXIT_FAILURE;
}
if((nc = notcurses_init(&nopts)) == NULL){
return EXIT_FAILURE;
}
2019-11-21 11:38:21 +00:00
if((ncp = notcurses_stdplane(nc)) == NULL){
fprintf(stderr, "Couldn't get standard plane\n");
goto err;
}
int x, y, rows, cols;
ncplane_dimyx(ncp, &rows, &cols);
cell c;
load_cell(&c, /*L"💣*/L"X");
cell_set_fg(&c, 200, 0, 200);
for(y = 1 ; y < rows - 1 ; ++y){
if(ncplane_cursor_move_yx(ncp, y, 1)){
goto err;
}
for(x = 1 ; x < cols - 1 ; ++x){
if(ncplane_putwc(ncp, &c)){
goto err;
}
}
}
2019-11-19 14:10:28 +00:00
if(notcurses_render(nc)){
goto err;
}
if(notcurses_stop(nc)){
2019-11-17 14:53:59 +00:00
return EXIT_FAILURE;
}
2019-11-17 10:04:41 +00:00
return EXIT_SUCCESS;
err:
notcurses_stop(nc);
return EXIT_FAILURE;
2019-11-17 10:04:41 +00:00
}