X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=reports.c;h=c43732670462480db8fa7eefd7e54104680c0aee;hb=a7adac76a19b708c004fac70b83100bf0cae816a;hp=d4b1f63c4f4c40944a7e15f89b203102ddda1e0c;hpb=e7c2a3097e455ce93c62a21832e5c584031468db;p=super-star-trek.git diff --git a/reports.c b/reports.c index d4b1f63..c437326 100644 --- a/reports.c +++ b/reports.c @@ -188,18 +188,17 @@ void rechart(void) void chart(int nn) { int i,j; - char *cp; chew(); if (game.damage[DRADIO] == 0.0) rechart(); if (lastchart < game.state.date && condit == IHDOCKED) { - proutn("Spock- \"I revised the Star Chart from the starbase's records.\"\n\r"); + prout("Spock- \"I revised the Star Chart from the starbase's records.\""); rechart(); } - if (nn == 0) proutn(" STAR CHART FOR THE KNOWN GALAXY\n\r"); + if (nn == 0) prout(" STAR CHART FOR THE KNOWN GALAXY"); if (game.state.date > lastchart) prout("(Last surveillance update %d stardates ago).", (int)(game.state.date-lastchart)); @@ -208,24 +207,27 @@ void chart(int nn) proutn("%d |", i); for_quadrants(j) { char buf[4]; - proutn(" "); + if ((game.options & OPTION_SHOWME) && i == quadx && j == quady) + proutn("<"); + else + proutn(" "); if (game.state.galaxy[i][j].supernova) strcpy(buf, "***"); else if (!game.state.galaxy[i][j].charted && game.state.galaxy[i][j].starbase) strcpy(buf, ".1."); else if (game.state.galaxy[i][j].charted) - sprintf(buf, "%d%d%d", game.state.chart[i][j].klingons, game.state.chart[i][j].starbase, game.state.chart[i][j].stars); + sprintf(buf, "%3d", game.state.chart[i][j].klingons*100 + game.state.chart[i][j].starbase * 10 + game.state.chart[i][j].stars); else strcpy(buf, "..."); - for (cp = buf; cp < buf + sizeof(buf); cp++) - if (*cp == '0') - *cp = '.'; proutn(buf); + if ((game.options & OPTION_SHOWME) && i == quadx && j == quady) + proutn(">"); + else + proutn(" "); } proutn(" |"); - if (i sizeof(requests)/sizeof(requests[0])) { - prout("UNRECOGNIZED REQUEST. Legal requests are:\n" - " date, condition, position, lsupport, warpfactor,\n" - " energy, torpedoes, shields, klingons, time, bases."); + prout("UNRECOGNIZED REQUEST. Legal requests are:"); + prout(" date, condition, position, lsupport, warpfactor,"); + prout(" energy, torpedoes, shields, klingons, time, bases."); return FALSE; } // no break @@ -383,7 +383,7 @@ int srscan(int l) } if (rightside) status(jj); - if (i