From 5165a42ecbdef63bbfe487bc514ee8e7f5e151ff Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 14 Apr 2014 20:43:01 +0300 Subject: Support disco parameter. --- client/client.c | 45 ++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 44 insertions(+), 1 deletion(-) (limited to 'client/client.c') diff --git a/client/client.c b/client/client.c index 1857e61..749d833 100644 --- a/client/client.c +++ b/client/client.c @@ -1,9 +1,12 @@ +#define _XOPEN_SOURCE 500 #include #include #include #include -#include +#include +#include #include +#include static struct { bmFilterMode filterMode; @@ -25,6 +28,40 @@ static struct { 0 /* monitor */ }; +static void discoTrap(int sig) +{ + (void)sig; + printf("\e[?25h\n"); + fflush(stdout); + exit(EXIT_FAILURE); +} + +static void disco(void) +{ + struct sigaction action; + memset(&action, 0, sizeof(struct sigaction)); + action.sa_handler = discoTrap; + sigaction(SIGABRT, &action, NULL); + sigaction(SIGSEGV, &action, NULL); + sigaction(SIGTRAP, &action, NULL); + sigaction(SIGINT, &action, NULL); + + unsigned int i, cc, c = 80; + printf("\e[?25l"); + while (1) { + for (i = 1; i < c - 1; ++i) { + printf("\r %*s%s %s %s ", (i > c / 2 ? c - i : i), " ", ((i % 2) ? ""), ((i % 4) ? "DISCO" : " "), ((i %2) ? "\\o>" : ""), ((i % 2) ? "*" : "•")); + for (cc = 2; cc < (i > c / 2 ? c - i : i); ++cc) printf(((i % 2) ? "^" : "'")); + fflush(stdout); + usleep(140 * 1000); + } + } + printf("\e[?25h"); + exit(EXIT_SUCCESS); +} + static void version(const char *name) { char *base = strrchr(name, '/'); @@ -80,6 +117,8 @@ static void parseArgs(int *argc, char **argv[]) { "nf", required_argument, 0, 0x102 }, { "sb", required_argument, 0, 0x103 }, { "sf", required_argument, 0, 0x104 }, + + { "disco", no_argument, 0, 0x105 }, { 0, 0, 0, 0 } }; @@ -133,6 +172,10 @@ static void parseArgs(int *argc, char **argv[]) case 0x104: break; + case 0x105: + disco(); + break; + case ':': case '?': fputs("\n", stderr); -- cgit v1.2.3-70-g09d2