/** * 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' : '@'); } } } }