From 73197756c81279e8a0e8533b783764e2fe60de19 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 4 Feb 2019 16:18:53 -0800 Subject: [PATCH] Added file --- explosion.h | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 explosion.h diff --git a/explosion.h b/explosion.h new file mode 100644 index 0000000..f52d8c0 --- /dev/null +++ b/explosion.h @@ -0,0 +1,105 @@ +/** + * ASCII explosion from squeamish ossifrage at: + * https://codegolf.stackexchange.com/questions/24462/display-the-explosion-of-a-star-in-ascii-art/24554#24554 + */ +#include "colors.h" +#include +#include +#include + +#define NUM_BLOBS 800 +#define PERSPECTIVE 50.0 + +typedef struct { + double x,y,z; +} spaceblob_t; + +static double prng() { + static long long s=1; + s = s * 1488248101 + 981577151; + return ((s % 65536) - 32768) / 32768.0; +} + +void draw_explosion(int i, int midx, int midy) { + static spaceblob_t blobs[NUM_BLOBS]; + int rows,cols; + getmaxyx(stdscr,rows,cols); + int maxx,minx,maxy,miny; + minx = -midx; + maxx = cols+minx-1; + miny = -midy; + maxy = rows+miny-1; + + if (i == 0) { + /* Generate random blob coordinates */ + for (int i=0; i= 8) { + line[cols+1] = '\0'; + mvaddchstr(row,0,line); + } + } + + /* Add blobs with perspective effect */ + if (i>6) { + int i0 = i-6; + for (int j=0; jPERSPECTIVE) continue; + int x = midx + bx * PERSPECTIVE / (bz+PERSPECTIVE); + int y = midy + by * PERSPECTIVE / (bz+PERSPECTIVE); + if (x>=0 && x=0 && y40) ? '.' : (bz>-20) ? 'o' : '@'); + } + } + } +} +