You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
notcurses/src/demo/outro.c

172 lines
4.6 KiB
C

5 years ago
#include <pthread.h>
5 years ago
#include "demo.h"
static int y;
static int targy;
static int xstart;
static struct ncplane* on;
static struct ncvisual* chncv;
static int
perframe(struct notcurses* nc, struct ncvisual* ncv __attribute__ ((unused)), void* vthree){
int* three = vthree; // move up one every three callbacks
demo_render(nc);
if(y < targy){
return 0;
}
ncplane_move_yx(on, y, xstart);
if(--*three == 0){
--y;
*three = 3;
}
return 0;
}
5 years ago
static void*
fadethread(void* vnc){
struct notcurses* nc = vnc;
struct ncplane* ncp = notcurses_stdplane(nc);
struct timespec fade = { .tv_sec = 2, .tv_nsec = 0, };
ncplane_fadeout(ncp, &fade, demo_fader, NULL);
ncvisual_destroy(chncv);
int averr;
char* path = find_data("samoa.avi");
struct ncvisual* ncv = ncplane_visual_open(ncp, path, &averr);
free(path);
if(ncv == NULL){
return NULL;
}
int rows, cols;
notcurses_term_dim_yx(nc, &rows, &cols);
struct ncplane* apiap = ncplane_new(nc, 1, cols, rows - 1, 0, NULL);
ncplane_set_fg_rgb(apiap, 0xc0, 0x40, 0x80);
ncplane_set_bg_rgb(apiap, 0, 0, 0);
ncplane_putstr_aligned(apiap, 0, NCALIGN_CENTER,
"Apia 🡺 Atlanta. Samoa, tula'i ma sisi ia lau fu'a, lou pale lea!");
int three = 3;
ncvisual_stream(nc, ncv, &averr, delaymultiplier, perframe, &three);
ncvisual_destroy(ncv);
ncplane_erase(ncp);
fade.tv_sec = 2;
fade.tv_nsec = 0;
demo_nanosleep(nc, &fade);
ncplane_destroy(apiap);
return vnc;
5 years ago
}
static struct ncplane*
outro_message(struct notcurses* nc, int* rows, int* cols){
5 years ago
const char str0[] = " ATL, baby! ATL! ";
const char str1[] = " throw your hands in the air ";
5 years ago
const char str2[] = " hack on! —dank❤ ";
5 years ago
int ystart = *rows - 6;
struct ncplane* non = ncplane_aligned(notcurses_stdplane(nc), 5,
strlen(str1) + 4, ystart,
NCALIGN_CENTER, NULL);
if(non == NULL){
5 years ago
return NULL;
5 years ago
}
int xs;
ncplane_yx(non, NULL, &xs);
cell bgcell = CELL_SIMPLE_INITIALIZER(' ');
channels_set_bg_rgb(&bgcell.channels, 0x58, 0x36, 0x58);
if(ncplane_set_base(non, &bgcell) < 0){
return NULL;
}
ncplane_dim_yx(non, rows, cols);
5 years ago
int ybase = 0;
// bevel the upper corners
if(ncplane_set_bg_alpha(non, CELL_ALPHA_TRANSPARENT)){
5 years ago
return NULL;
5 years ago
}
if(ncplane_putsimple_yx(non, ybase, 0, ' ') < 0 || ncplane_putsimple(non, ' ') < 0){
5 years ago
return NULL;
5 years ago
}
if(ncplane_putsimple_yx(non, ybase, *cols - 2, ' ') < 0 || ncplane_putsimple(non, ' ') < 0){
5 years ago
return NULL;
5 years ago
}
// ...and now the lower corners
if(ncplane_putsimple_yx(non, *rows - 1, 0, ' ') < 0 || ncplane_putsimple(non, ' ') < 0){
5 years ago
return NULL;
5 years ago
}
if(ncplane_putsimple_yx(non, *rows - 1, *cols - 2, ' ') < 0 || ncplane_putsimple(non, ' ') < 0){
5 years ago
return NULL;
5 years ago
}
if(ncplane_set_fg_rgb(non, 0, 0, 0)){
5 years ago
return NULL;
5 years ago
}
if(ncplane_set_bg_rgb(non, 0, 180, 180)){
5 years ago
return NULL;
5 years ago
}
if(ncplane_set_bg_alpha(non, CELL_ALPHA_OPAQUE)){ // FIXME use intermediate
return NULL;
}
ncplane_styles_on(non, CELL_STYLE_BOLD);
if(ncplane_putstr_aligned(non, ++ybase, NCALIGN_CENTER, str0) < 0){
5 years ago
return NULL;
5 years ago
}
ncplane_styles_off(non, CELL_STYLE_BOLD);
if(ncplane_putstr_aligned(non, ++ybase, NCALIGN_CENTER, str1) < 0){
5 years ago
return NULL;
5 years ago
}
ncplane_styles_on(non, CELL_STYLE_ITALIC);
if(ncplane_putstr_aligned(non, ++ybase, NCALIGN_CENTER, str2) < 0){
5 years ago
return NULL;
5 years ago
}
ncplane_styles_off(non, CELL_STYLE_ITALIC);
if(demo_render(nc)){
5 years ago
return NULL;
5 years ago
}
cell_release(non, &bgcell);
5 years ago
*rows = ystart;
*cols = xs;
return non;
5 years ago
}
int outro(struct notcurses* nc){
if(!notcurses_canopen(nc)){
return 0;
}
5 years ago
struct ncplane* ncp;
if((ncp = notcurses_stdplane(nc)) == NULL){
return -1;
}
int rows, cols;
ncplane_erase(ncp);
ncplane_dim_yx(ncp, &rows, &cols);
int averr = 0;
char* path = find_data("changes.jpg");
chncv = ncplane_visual_open(ncp, path, &averr);
free(path);
if(chncv == NULL){
5 years ago
return -1;
}
if(ncvisual_decode(chncv, &averr) == NULL){
ncvisual_destroy(chncv);
5 years ago
return -1;
}
if(ncvisual_render(chncv, 0, 0, 0, 0)){
ncvisual_destroy(chncv);
5 years ago
return -1;
}
xstart = cols;
5 years ago
int ystart = rows;
on = outro_message(nc, &ystart, &xstart);
y = ystart - 1;
void* ret = NULL; // thread result
5 years ago
if(on){
ncplane_move_top(on);
5 years ago
pthread_t tid;
// will fade across 2s
targy = 3;
pthread_create(&tid, NULL, fadethread, nc);
pthread_join(tid, &ret);
ncplane_fadeout(on, &demodelay, demo_fader, NULL);
5 years ago
ncplane_destroy(on);
5 years ago
}
if(ret == NULL){
return -1;
}
5 years ago
return on ? 0 : -1;
5 years ago
}