74 lines
1.2 KiB
C
74 lines
1.2 KiB
C
|
#include <stdio.h>
|
||
|
#include <unistd.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <strings.h>
|
||
|
#include <getopt.h>
|
||
|
#include <ncurses.h>
|
||
|
|
||
|
#include "ecran.h"
|
||
|
|
||
|
int verbosity;
|
||
|
|
||
|
/* ---------------------------------------------------------------- */
|
||
|
void demo(int nbl, int k)
|
||
|
{
|
||
|
int loop;
|
||
|
char line[100];
|
||
|
WINDOW *water;
|
||
|
|
||
|
water = open_waterfall("premier essai", 0);
|
||
|
|
||
|
for (loop=0; loop<nbl; loop++) {
|
||
|
|
||
|
sprintf(line, "%04X %04X", loop, rand()&0xffff);
|
||
|
mvaddstr(5, 5, line);
|
||
|
|
||
|
sleep(1);
|
||
|
refresh();
|
||
|
}
|
||
|
}
|
||
|
/* ---------------------------------------------------------------- */
|
||
|
static void finish(int signal)
|
||
|
{
|
||
|
endwin(); exit(0);
|
||
|
}
|
||
|
/* ---------------------------------------------------------------- */
|
||
|
int main (int argc, char *argv[])
|
||
|
{
|
||
|
int opt;
|
||
|
|
||
|
/* set some default values */
|
||
|
verbosity = 0;
|
||
|
|
||
|
|
||
|
while ((opt = getopt(argc, argv, "v")) != -1) {
|
||
|
switch (opt) {
|
||
|
case 'v': verbosity++; break;
|
||
|
|
||
|
default:
|
||
|
fprintf(stderr, "%s : uh ?", argv[0]);
|
||
|
exit(1);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
initscr();
|
||
|
nonl(); cbreak(); noecho();
|
||
|
|
||
|
keypad(stdscr, TRUE); /* acces aux touches 'curseur' */
|
||
|
|
||
|
fond_ecran();
|
||
|
|
||
|
demo(1024, 0);
|
||
|
|
||
|
/*
|
||
|
* plop, on a fini, restaurer la console
|
||
|
*/
|
||
|
finish(0);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
/* ---------------------------------------------------------------- */
|