fire/draw.c

93 lines
1.7 KiB
C
Raw Normal View History

2019-12-12 19:27:13 -08:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2019-12-13 13:15:29 -08:00
#include "args.h"
2019-12-12 19:27:13 -08:00
#include "termbox.h"
#include "draw.h"
#include "colors.h"
2019-12-13 13:15:29 -08:00
#include "output.h"
#ifdef __OpenBSD__
#include "sys/types.h"
#else
2020-09-17 04:42:48 -07:00
#include "stdint.h"
#endif
2019-12-13 13:15:29 -08:00
// arguments
extern struct Options *opts;
2019-12-12 19:27:13 -08:00
// initialize the framebuffer
void
init ( struct buffer *buf )
{
// initialize width/height of terminal
buf->width = tb_width();
buf->height = tb_height();
size_t len = buf->width * buf->height;
buf->buf = (uint8_t*) malloc(len);
2019-12-12 19:27:13 -08:00
len -= buf->width;
if (buf->buf == NULL) {
PRINT("fire: cannot ");
perror("calloc()");
exit(1);
}
// initialize the entire screen to black...
memset(buf->buf, 0, len);
// ...except for the last row, which is white.
// this is the 'base' of the fire.
memset(buf->buf + len, 12, buf->width);
}
// update the framebuffer
void
dofire ( struct buffer *buf )
{
size_t src;
size_t random;
size_t dest;
2019-12-12 19:27:13 -08:00
struct tb_cell *realbuf = tb_cell_buffer();
for (size_t x = 0; x < buf->width; ++x)
2019-12-12 19:27:13 -08:00
{
for (size_t y = 1; y < buf->height; ++y)
2019-12-12 19:27:13 -08:00
{
src = y * buf->width + x;
random = (rand() % 7) & 3;
dest = src - random + 1;
if (buf->width > dest)
dest = 0;
else
dest -= buf->width;
buf->buf[dest] = buf->buf[src] - (random & 1);
if (buf->buf[dest] > 12)
buf->buf[dest] = 0;
2019-12-13 13:35:13 -08:00
struct tb_cell *colors;
if (opts->truecolor == TRUE)
colors = (struct tb_cell*) &truecolors;
else colors = (struct tb_cell*) &normcolors;
realbuf[dest] = colors[buf->buf[dest]];
realbuf[src] = colors[buf->buf[src]];
2019-12-12 19:27:13 -08:00
}
}
}
2019-12-12 20:03:58 -08:00
// free framebuffer and shutdown termbox
void
cleanup ( struct buffer *buf )
{
free(buf->buf);
tb_shutdown();
}