(move_ground): Drop first parameter of map callback, it's not used.

Callers changed.  s_char purge.
This commit is contained in:
Markus Armbruster 2006-03-28 19:46:40 +00:00
parent 06b669924a
commit a1ce7db238
5 changed files with 41 additions and 42 deletions

View file

@ -45,7 +45,7 @@
#include "optlist.h"
#include "commands.h"
static int explore_map(s_char *what, coord curx, coord cury, s_char *arg);
static int explore_map(coord curx, coord cury, char *arg);
int
explore(void)
@ -67,11 +67,11 @@ explore(void)
int own, mob;
int justtook;
coord x, y;
s_char *p;
char *p;
int n;
int left;
s_char buf[1024];
s_char prompt[128];
char buf[1024];
char prompt[128];
if (!(ip = whatitem(player->argp[1], "explore with what? (civ/mil) ")))
return RET_SYN;
@ -149,15 +149,17 @@ explore(void)
* Now parse the path and return ending sector.
*/
dam = 1;
mcost = move_ground((s_char *)ip, &sect, &endsect,
weight, player->argp[4],
mcost = move_ground(&sect, &endsect, weight, player->argp[4],
explore_map, 1, &dam);
if (dam) {
left = effdamage(amount, dam);
if (left < amount) {
if (left) {
pr("%d of the %s you were exploring with were destroyed!\nOnly %d %s made it to %s\n", amount - left, ip->i_name, left, ip->i_name, xyas(endsect.sct_x, endsect.sct_y, player->cnum));
pr("%d of the %s you were exploring with were destroyed!\n"
"Only %d %s made it to %s\n",
amount - left, ip->i_name, left, ip->i_name,
xyas(endsect.sct_x, endsect.sct_y, player->cnum));
} else {
pr("All of the %s you were exploring with were destroyed!\n", ip->i_name);
}
@ -277,7 +279,7 @@ explore(void)
/*ARGSUSED*/
static int
explore_map(s_char *what, coord curx, coord cury, s_char *arg)
explore_map(coord curx, coord cury, char *arg)
{
struct nstr_sect ns;
struct sctstr sect;

View file

@ -47,7 +47,7 @@
#include "commands.h"
static int cmd_move_map(s_char *what, coord curx, coord cury, s_char *arg);
static int cmd_move_map(coord curx, coord cury, char *arg);
int
move(void)
@ -72,9 +72,9 @@ move(void)
int istest = 0;
int n;
coord x, y;
s_char *p;
s_char prompt[1024];
s_char buf[1024];
char *p;
char prompt[1024];
char buf[1024];
istest = *player->argp[0] == 't';
@ -188,8 +188,7 @@ move(void)
dam = (istest ? 0 : 1);
if (dam && !chance(weight / 200.0))
dam = 0;
mcost = move_ground((s_char *)ip, &sect, &endsect,
weight, player->argp[4],
mcost = move_ground(&sect, &endsect, weight, player->argp[4],
cmd_move_map, 0, &dam);
if (dam) {
@ -347,7 +346,7 @@ move(void)
*/
/*ARGSUSED*/
static int
cmd_move_map(s_char *what, coord curx, coord cury, s_char *arg)
cmd_move_map(coord curx, coord cury, char *arg)
{
player->argp[0] = "map";
player->argp[1] = arg;

View file

@ -48,18 +48,18 @@
#include "land.h"
#include "commands.h"
static int tran_map(s_char *what, coord curx, coord cury, s_char *arg);
static int tran_map(coord curx, coord cury, char *arg);
static int tran_nuke(void);
static int tran_plane(void);
int
tran(void)
{
s_char *what;
s_char buf[1024];
char *what;
char buf[1024];
what =
getstarg(player->argp[1], "transport what (nuke or plane): ", buf);
what = getstarg(player->argp[1], "transport what (nuke or plane): ",
buf);
if (what == 0)
return RET_SYN;
if (*what == 'n')
@ -80,7 +80,7 @@ tran_nuke(void)
coord x, y;
coord dstx, dsty;
int found;
s_char *p;
char *p;
int nuketype;
int moving;
struct nukstr nuke;
@ -88,7 +88,7 @@ tran_nuke(void)
struct sctstr endsect;
int mcost, dam;
struct nstr_item nstr;
s_char buf[1024];
char buf[1024];
if (!(p = getstarg(player->argp[2], "from sector : ", buf)))
return RET_SYN;
@ -143,8 +143,7 @@ tran_nuke(void)
return RET_FAIL;
}
dam = 0;
mcost = move_ground((s_char *)&nuke, &sect, &endsect,
(double)ncp->n_weight * moving,
mcost = move_ground(&sect, &endsect, (double)ncp->n_weight * moving,
player->argp[5], tran_map, 0, &dam);
if (mcost < 0)
@ -246,8 +245,7 @@ tran_plane(void)
return RET_FAIL;
}
dam = 1;
mcost = move_ground((s_char *)&plane, &sect, &endsect,
(double)weight,
mcost = move_ground(&sect, &endsect, (double)weight,
player->argp[3], tran_map, 0, &dam);
dam /= count;
if (mcost < 0)
@ -285,7 +283,7 @@ tran_plane(void)
*/
/*ARGSUSED*/
static int
tran_map(s_char *what, coord curx, coord cury, s_char *arg)
tran_map(coord curx, coord cury, char *arg)
{
player->argp[0] = "map";
player->argp[1] = arg;