2019-11-17 15:25:40 +00:00
|
|
|
#include <stdio.h>
|
2019-11-23 23:34:06 +00:00
|
|
|
#include <string.h>
|
2019-11-21 13:19:57 +00:00
|
|
|
#include <locale.h>
|
2019-11-19 14:10:28 +00:00
|
|
|
#include <unistd.h>
|
2019-11-24 01:52:14 +00:00
|
|
|
#include <getopt.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-24 17:36:46 +00:00
|
|
|
#include "demo.h"
|
2019-11-17 10:04:41 +00:00
|
|
|
|
2019-11-24 01:52:14 +00:00
|
|
|
static void
|
|
|
|
usage(const char* exe, int status){
|
|
|
|
FILE* out = status == EXIT_SUCCESS ? stdout : stderr;
|
|
|
|
fprintf(out, "usage: %s [ -h | -k ]\n", exe);
|
|
|
|
fprintf(out, " h: this message\n");
|
|
|
|
fprintf(out, " k: keep screen; do not switch to alternate\n");
|
|
|
|
exit(status);
|
|
|
|
}
|
|
|
|
|
2019-11-25 02:54:00 +00:00
|
|
|
static int
|
|
|
|
ext_demos(struct notcurses* nc){
|
2019-11-25 23:10:07 +00:00
|
|
|
if(maxcolor_demo(nc)){
|
|
|
|
return -1;
|
|
|
|
}
|
2019-11-26 00:36:02 +00:00
|
|
|
if(box_demo(nc)){
|
2019-11-25 14:02:30 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2019-11-26 00:36:02 +00:00
|
|
|
if(unicodeblocks_demo(nc)){
|
2019-11-25 02:54:00 +00:00
|
|
|
return -1;
|
|
|
|
}
|
2019-11-26 00:36:02 +00:00
|
|
|
if(grid_demo(nc)){
|
2019-11-25 02:54:00 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
if(widecolor_demo(nc)){
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-24 01:52:14 +00:00
|
|
|
static int
|
|
|
|
handle_opts(int argc, char** argv, notcurses_options* opts){
|
|
|
|
int c;
|
|
|
|
memset(opts, 0, sizeof(*opts));
|
|
|
|
opts->outfd = STDOUT_FILENO;
|
|
|
|
while((c = getopt(argc, argv, "hk")) != EOF){
|
|
|
|
switch(c){
|
|
|
|
case 'h':
|
|
|
|
usage(*argv, EXIT_SUCCESS);
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
opts->inhibit_alternate_screen = true;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
usage(*argv, EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-11-21 11:55:05 +00:00
|
|
|
// just fucking around...for now
|
2019-11-24 01:52:14 +00:00
|
|
|
int main(int argc, char** argv){
|
2019-11-17 15:25:40 +00:00
|
|
|
struct notcurses* nc;
|
2019-11-24 01:52:14 +00:00
|
|
|
notcurses_options nopts;
|
2019-11-21 11:38:21 +00:00
|
|
|
struct ncplane* ncp;
|
2019-11-21 13:19:57 +00:00
|
|
|
if(!setlocale(LC_ALL, "")){
|
|
|
|
fprintf(stderr, "Couldn't set locale based on user preferences\n");
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2019-11-24 01:52:14 +00:00
|
|
|
if(handle_opts(argc, argv, &nopts)){
|
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2019-11-19 14:54:14 +00:00
|
|
|
if((nc = notcurses_init(&nopts)) == NULL){
|
2019-11-19 11:26:44 +00:00
|
|
|
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;
|
|
|
|
}
|
2019-11-24 01:39:22 +00:00
|
|
|
sleep(1);
|
2019-11-23 14:05:32 +00:00
|
|
|
int x, y, rows, cols;
|
|
|
|
ncplane_dimyx(ncp, &rows, &cols);
|
|
|
|
cell c;
|
2019-11-25 02:54:00 +00:00
|
|
|
cell_init(&c);
|
2019-11-24 00:24:29 +00:00
|
|
|
const char* cstr = "✓";
|
|
|
|
cell_load(ncp, &c, cstr);
|
2019-11-23 14:05:32 +00:00
|
|
|
cell_set_fg(&c, 200, 0, 200);
|
2019-11-25 09:54:40 +00:00
|
|
|
int ys = 200 / (rows - 2);
|
2019-11-24 19:09:53 +00:00
|
|
|
for(y = 2 ; y < rows - 2 ; ++y){
|
2019-11-25 09:54:40 +00:00
|
|
|
cell_set_bg(&c, 0, y * ys , 0);
|
2019-11-24 19:09:53 +00:00
|
|
|
if(ncplane_cursor_move_yx(ncp, y, 2)){
|
2019-11-21 14:25:17 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2019-11-24 19:09:53 +00:00
|
|
|
for(x = 2 ; x < cols - 2 ; ++x){
|
2019-11-24 20:33:22 +00:00
|
|
|
if(ncplane_putc(ncp, &c) != (int)strlen(cstr)){
|
2019-11-23 14:05:32 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2019-11-21 13:19:57 +00:00
|
|
|
}
|
|
|
|
}
|
2019-11-24 20:33:22 +00:00
|
|
|
cell_release(ncp, &c);
|
2019-11-19 14:10:28 +00:00
|
|
|
if(notcurses_render(nc)){
|
|
|
|
goto err;
|
|
|
|
}
|
2019-11-23 17:28:42 +00:00
|
|
|
sleep(1);
|
2019-11-26 02:11:27 +00:00
|
|
|
const char s1[] = " Die Welt ist alles, was der Fall ist. ";
|
2019-11-24 00:24:29 +00:00
|
|
|
const char str[] = " Wovon man nicht sprechen kann, darüber muss man schweigen. ";
|
2019-11-23 17:39:54 +00:00
|
|
|
if(ncplane_fg_rgb8(ncp, 176, 121, 176)){
|
|
|
|
goto err;
|
|
|
|
}
|
2019-11-25 02:18:02 +00:00
|
|
|
if(ncplane_bg_rgb8(ncp, 100, 100, 100)){
|
2019-11-23 17:28:42 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2019-11-26 02:11:27 +00:00
|
|
|
if(ncplane_cursor_move_yx(ncp, rows / 2 - 1, (cols - strlen(s1) + 4) / 2)){
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if(ncplane_putstr(ncp, s1) != (int)strlen(s1)){
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if(ncplane_cursor_move_yx(ncp, rows / 2, (cols - strlen(str) + 4) / 2)){
|
|
|
|
goto err;
|
|
|
|
}
|
2019-11-23 23:34:06 +00:00
|
|
|
if(ncplane_putstr(ncp, str) != (int)strlen(str)){
|
2019-11-23 17:28:42 +00:00
|
|
|
goto err;
|
|
|
|
}
|
2019-11-25 14:46:49 +00:00
|
|
|
if(ncplane_fg_rgb8(ncp, 121, 176, 121)){
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if(ncplane_bg_rgb8(ncp, 0, 0, 0)){
|
|
|
|
goto err;
|
|
|
|
}
|
2019-11-25 12:46:11 +00:00
|
|
|
const char bstr[] = "▏▁ ▂ ▃ ▄ ▅ ▆ ▇ █ █ ▇ ▆ ▅ ▄ ▃ ▂ ▁▕";
|
2019-11-25 14:02:30 +00:00
|
|
|
if(ncplane_cursor_move_yx(ncp, rows / 2 + 3, (cols - strlen(bstr) + 4) / 2)){
|
2019-11-25 12:46:11 +00:00
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if(ncplane_putstr(ncp, bstr) != (int)strlen(bstr)){
|
|
|
|
goto err;
|
|
|
|
}
|
2019-11-25 14:46:49 +00:00
|
|
|
/* FIXME
|
|
|
|
cell ul = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
cell ur = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
cell ll = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
cell lr = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
cell vl = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
cell hl = CELL_TRIVIAL_INITIALIZER;
|
|
|
|
cell_load(ncp, &ul, "╭");
|
|
|
|
cell_load(ncp, &ur, "╮");
|
|
|
|
cell_load(ncp, &ll, "╰");
|
|
|
|
cell_load(ncp, &lr, "╯");
|
|
|
|
cell_load(ncp, &vl, "│");
|
|
|
|
cell_load(ncp, &hl, "─");
|
|
|
|
if(ncplane_cursor_move_yx(ncp, 1, 1)){
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if(ncplane_fg_rgb8(ncp, 121, 176, 121)){
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if(ncplane_bg_rgb8(ncp, 250, 250, 250)){
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
if(ncplane_box(ncp, &ul, &ur, &ll, &lr, &vl, &hl, y - 4, x - 4)){
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
*/
|
2019-11-23 17:28:42 +00:00
|
|
|
if(notcurses_render(nc)){
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
sleep(1);
|
2019-11-25 02:54:00 +00:00
|
|
|
if(ext_demos(nc)){
|
2019-11-24 17:36:46 +00:00
|
|
|
goto err;
|
2019-11-24 19:09:53 +00:00
|
|
|
}
|
2019-11-17 15:25:40 +00:00
|
|
|
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;
|
2019-11-19 11:44:28 +00:00
|
|
|
|
|
|
|
err:
|
|
|
|
notcurses_stop(nc);
|
|
|
|
return EXIT_FAILURE;
|
2019-11-17 10:04:41 +00:00
|
|
|
}
|