X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=io.c;h=3bc3b9c2c88d225069e90723e3ba96093f871dd8;hp=8b766e9876be9a51ed8e633d4a4d8b360574c2f0;hb=5fd1629b862b1a1bba3f70d4d06ba0b0859ec0e6;hpb=b7bbbdd604afc1fac8b7c54563520b7d191ca216 diff --git a/io.c b/io.c index 8b766e9..3bc3b9c 100644 --- a/io.c +++ b/io.c @@ -59,11 +59,7 @@ void iostart(int usecurses) { if(signal(SIGQUIT,SIG_IGN) != SIG_IGN) (void)signal(SIGQUIT,fastexit); -#ifndef SERGEEV - if (curses = usecurses) { -#else /* SERGEEV */ if ((curses = usecurses)) { -#endif /* SERGEEV */ (void)initscr(); #ifdef KEY_MIN keypad(stdscr, TRUE); @@ -105,10 +101,10 @@ void clearscreen(void) { } void pause_game(int i) { + char *prompt; #ifndef SERGEEV - char buf[BUFSIZ], *prompt; + char buf[BUFSIZ]; #else /* SERGEEV */ - char *prompt; drawmaps(0); setwnd(5); #endif /* SERGEEV */ @@ -134,7 +130,7 @@ void pause_game(int i) { wrefresh(stdscr); } else { putchar('\n'); - prout(prompt); + proutn(prompt); fgets(buf, sizeof(buf), stdin); if (i != 0) { clearscreen(); @@ -173,14 +169,14 @@ void skip(int i) { } static void vproutn(char *fmt, va_list ap) { - char *strbuf, *p, *s; - vasprintf(&strbuf, fmt, ap); - p=s=strbuf; + char *s, *p; + vasprintf(&s, fmt, ap); + p=s; if ((curwnd==4)&&(wherey()==wnds[curwnd].wndbottom-wnds[curwnd].wndtop)){ - if (strchr(strbuf,'\n')){ - p=strchr(strbuf,'\n'); + if (strchr(s,'\n')) { + p=strchr(s,'\n'); p[0]=0; - cprintf("%s",strbuf); + cprintf("%s",s); p++; pause_game(0); } @@ -192,7 +188,7 @@ static void vproutn(char *fmt, va_list ap) { // setwnd(curwnd); if (strchr(s,'\n') || strchr(s,'\r')) clreol(); cprintf("%s",p); - free(strbuf); + free(s); #endif /* SERGEEV */ } @@ -249,10 +245,11 @@ static void prchr(char *s){ } static void vprouts(char *fmt, va_list ap) { - char *s; + char *s, *p; vasprintf(&s, fmt, ap); - while (*s) { - prchr(s++); + p=s; + while (*p) { + prchr(p++); delay(30); } free(s); @@ -289,11 +286,25 @@ void prouts(char *fmt, ...) { #endif /* SERGEEV */ } -#ifndef SERGEEV -void getline(char *line, int max) { -#else /* SERGEEV */ -void cgetline(char *line, int max) { +void warble(void) +/* sound and visual effects for teleportation */ +{ +#ifdef SERGEEV + int posx, posy; + posx=wherex(); + posy=wherey(); + drawmaps(1); + setwnd(4); + gotoxy(posx,posy); + sound(50); + delay(1000); + nosound(); +#else + prouts(" . . . . . "); #endif /* SERGEEV */ +} + +void getline(char *line, int max) { if (curses) { #ifndef SERGEEV wgetnstr(stdscr, line, max);