X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=io.c;h=ec30ccffc676959c9c59bd9cfe7dacf4e58fdb17;hb=059e1d86fb9ffc34d236e8913614996b3621b45c;hp=d67c23276c78a4af375b0e78d67eee45b8fa6a79;hpb=a7bad7c3991a4e128c1413f785960d84e1ff87b5;p=super-star-trek.git diff --git a/io.c b/io.c index d67c232..ec30ccf 100644 --- a/io.c +++ b/io.c @@ -100,11 +100,18 @@ void clearscreen(void) { #endif } +void waitfor(void) { +/* wait for user action -- OK to do nothing if on a TTY */ +#ifdef SERGEEV + getche(); +#endif /* SERGEEV */ +} + 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 */ @@ -169,14 +176,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); } @@ -188,7 +195,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 */ } @@ -245,10 +252,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); @@ -285,11 +293,41 @@ void prouts(char *fmt, ...) { #endif /* SERGEEV */ } +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 setpassword(void) { #ifndef SERGEEV -void getline(char *line, int max) { -#else /* SERGEEV */ -void cgetline(char *line, int max) { + while (TRUE) { + scan(); + strcpy(game.passwd, citem); + chew(); + if (*game.passwd != 0) break; + proutn("Please type in a secret password-"); + } +#else + int i; + for(i=0;i<3;i++) game.passwd[i]=(char)(97+(int)(Rand()*25)); + game.passwd[3]=0; #endif /* SERGEEV */ +} + +void getline(char *line, int max) { if (curses) { #ifndef SERGEEV wgetnstr(stdscr, line, max);