(pln_arm): Callers don't use parameter tech; remove it. Callers

changed.
This commit is contained in:
Markus Armbruster 2004-08-30 16:13:37 +00:00
parent f0b4381c98
commit 8982ff2e18
7 changed files with 18 additions and 46 deletions

View file

@ -88,7 +88,6 @@ bomb(void)
{
s_char *p;
int mission_flags;
int tech;
coord tx, ty;
coord ax, ay;
int ap_to_target;
@ -154,22 +153,17 @@ bomb(void)
2, wantflags | P_F | P_ESC, P_M | P_O);
/*
* now arm and equip the bombers, transports, whatever.
* tech is stored in high 16 bits of mission_flags.
* yuck.
*/
tech = 0;
mission_flags |= P_X; /* stealth (shhh) */
mission_flags |= P_H; /* gets turned off if not all choppers */
mission_flags =
pln_arm(&bomb_list, 2 * ap_to_target, mission, ip, 0,
mission_flags, &tech);
mission_flags = pln_arm(&bomb_list, 2 * ap_to_target, mission,
ip, 0, mission_flags);
if (QEMPTY(&bomb_list)) {
pr("No planes could be equipped for the mission.\n");
return RET_FAIL;
}
mission_flags =
pln_arm(&esc_list, 2 * ap_to_target, mission, ip, P_F | P_ESC,
mission_flags, &tech);
mission_flags = pln_arm(&esc_list, 2 * ap_to_target, mission,
ip, P_F | P_ESC, mission_flags);
ac_encounter(&bomb_list, &esc_list, ax, ay, flightpath, mission_flags,
0, 0, 0);
if (QEMPTY(&bomb_list)) {

View file

@ -52,7 +52,6 @@ drop(void)
{
s_char *p;
int mission_flags;
int tech;
coord tx, ty;
coord ax, ay;
int ap_to_target;
@ -130,21 +129,18 @@ drop(void)
2, P_ESC | P_F, P_M | P_O);
/*
* now arm and equip the bombers, transports, whatever.
* tech is stored in high 16 bits of mission_flags.
* yuck.
*/
tech = 0;
mission_flags |= P_X; /* stealth (shhh) */
mission_flags |= P_H; /* gets turned off if not all choppers */
mission_flags |= P_MINE;
mission_flags = pln_arm(&bomb_list, 2 * ap_to_target, 'd',
ip, 0, mission_flags, &tech);
ip, 0, mission_flags);
if (QEMPTY(&bomb_list)) {
pr("No planes could be equipped for the mission.\n");
return RET_FAIL;
}
mission_flags = pln_arm(&esc_list, 2 * ap_to_target, 'd',
ip, P_ESC | P_F, mission_flags, &tech);
ip, P_ESC | P_F, mission_flags);
ac_encounter(&bomb_list, &esc_list, ax, ay, flightpath, mission_flags,
0, 0, 0);
if (QEMPTY(&bomb_list)) {

View file

@ -53,7 +53,6 @@ fly(void)
{
s_char *p;
int mission_flags;
int tech;
coord tx, ty;
coord ax, ay;
int ap_to_target;
@ -142,20 +141,17 @@ fly(void)
}
/*
* now arm and equip the bombers, transports, whatever.
* tech is stored in high 16 bits of mission_flags.
* yuck.
*/
tech = 0;
mission_flags |= P_X; /* stealth (shhh) */
mission_flags |= P_H; /* gets turned off if not all choppers */
mission_flags = pln_arm(&bomb_list, ap_to_target, 't',
ip, 0, mission_flags, &tech);
ip, 0, mission_flags);
if (QEMPTY(&bomb_list)) {
pr("No planes could be equipped for the mission.\n");
return RET_FAIL;
}
mission_flags = pln_arm(&esc_list, ap_to_target, 't',
ip, P_ESC | P_F, mission_flags, &tech);
ip, P_ESC | P_F, mission_flags);
ac_encounter(&bomb_list, &esc_list, ax, ay, flightpath, mission_flags,
0, 0, 0);
if (QEMPTY(&bomb_list)) {

View file

@ -59,7 +59,6 @@ para(void)
{
s_char *p;
int mission_flags;
int tech;
coord tx, ty;
coord ax, ay;
int ap_to_target;
@ -113,23 +112,18 @@ para(void)
2, P_ESC | P_F, P_M | P_O);
/*
* now arm and equip the bombers, transports, whatever.
* tech is stored in high 16 bits of mission_flags.
* yuck.
*/
tech = 0;
mission_flags = 0;
mission_flags |= P_X; /* stealth (shhh) */
mission_flags |= P_H; /* gets turned off if not all choppers */
mission_flags =
pln_arm(&bomb_list, 2 * ap_to_target, 'a', &ichr[I_MILIT], 0,
mission_flags, &tech);
mission_flags = pln_arm(&bomb_list, 2 * ap_to_target, 'a',
&ichr[I_MILIT], 0, mission_flags);
if (QEMPTY(&bomb_list)) {
pr("No planes could be equipped for the mission.\n");
return RET_FAIL;
}
mission_flags =
pln_arm(&esc_list, 2 * ap_to_target, 'a', &ichr[I_MILIT],
P_ESC | P_F, mission_flags, &tech);
mission_flags = pln_arm(&esc_list, 2 * ap_to_target, 'a',
&ichr[I_MILIT], P_ESC | P_F, mission_flags);
ac_encounter(&bomb_list, &esc_list, ax, ay, flightpath, mission_flags,
0, 0, 0);
if (QEMPTY(&bomb_list)) {

View file

@ -52,7 +52,6 @@ reco(void)
{
s_char *p;
int mission_flags;
int tech;
coord tx, ty;
coord ax, ay;
int ap_to_target;
@ -122,20 +121,17 @@ reco(void)
/*
* now arm and equip the bombers, transports, whatever.
*/
tech = 0;
mission_flags |= P_X; /* stealth (shhh) */
mission_flags |= P_H; /* gets turned off if not all choppers */
mission_flags |= P_A;
mission_flags =
pln_arm(&bomb_list, ap_to_target, 'r', 0, P_S | P_I, mission_flags,
&tech);
mission_flags = pln_arm(&bomb_list, ap_to_target, 'r',
0, P_S | P_I, mission_flags);
if (QEMPTY(&bomb_list)) {
pr("No planes could be equipped for the mission.\n");
return RET_FAIL;
}
mission_flags =
pln_arm(&esc_list, ap_to_target, 'r', 0, P_F, mission_flags,
&tech);
mission_flags = pln_arm(&esc_list, ap_to_target, 'r',
0, P_F, mission_flags);
mission_flags |= PM_R;
if (*player->argp[0] == 's')