]> git.pond.sub.org Git - empserver/blob - src/lib/commands/mobq.c
c387f06eed580aef2b064cfc5e49bb3756d9d79f
[empserver] / src / lib / commands / mobq.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2012, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                Ken Stevens, Steve McClure, Markus Armbruster
5  *
6  *  Empire is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  This program is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  *
19  *  ---
20  *
21  *  See files README, COPYING and CREDITS in the root of the source
22  *  tree for related information and legal notices.  It is expected
23  *  that future projects/authors will amend these files as needed.
24  *
25  *  ---
26  *
27  *  mobq.c: Set the sailing mobility quota for a ship
28  *
29  *  Known contributors to this file:
30  *     Robert Forsman
31  */
32
33 #include <config.h>
34
35 #include "commands.h"
36 #include "optlist.h"
37 #include "ship.h"
38
39
40 int
41 mobq(void)
42 {
43     struct shpstr ship;
44     char *cp, *oldmq;
45     int good, mobquota, count = 0;
46     struct nstr_item nstr;
47     char buf[1024];
48
49     if (!opt_SAIL) {
50         pr("The SAIL option is not enabled, so this command is not valid.\n");
51         return RET_FAIL;
52     }
53     if (!snxtitem(&nstr, EF_SHIP, player->argp[1], NULL))
54         return RET_SYN;
55     oldmq = player->argp[2];
56     if (oldmq) {
57         good = sscanf(oldmq, "%d", &mobquota);
58         if (!good)
59             return RET_SYN;
60         if (mobquota < 0 || mobquota > ship_mob_max) {
61             pr("Bad mobility quota value %d.\n", mobquota);
62             return RET_SYN;
63         }
64         if (mobquota + (ship_mob_scale * (float)etu_per_update) >
65             ship_mob_max) {
66             pr("warning: %d less than optimal\n", mobquota);
67         }
68     }
69     while (nxtitem(&nstr, &ship)) {
70         if (!player->owner)
71             continue;
72         if (!oldmq)
73             pr("Ship #%d at %s.  Old value %d.\n", ship.shp_uid,
74                xyas(ship.shp_x, ship.shp_y, player->cnum),
75                ship.shp_mobquota);
76         cp = getstarg(player->argp[2], "mobility quota? ", buf);
77         if (!cp)
78             return RET_SYN;
79         if (!check_ship_ok(&ship))
80             continue;
81         good = sscanf(cp, "%d", &mobquota);
82         if (!good) {
83             pr("Huh?\n");
84             continue;
85         }
86         if (!oldmq) {
87             if (mobquota < 0 || mobquota > ship_mob_max) {
88                 pr("Bad mobility quota value %d.\n", mobquota);
89                 continue;
90             }
91             if (mobquota + (ship_mob_scale * (float)etu_per_update) >
92                 ship_mob_max) {
93                 pr("warning: %d less than optimal\n", mobquota);
94             }
95         }
96         ship.shp_mobquota = mobquota;
97         count++;
98         putship(ship.shp_uid, &ship);
99     }
100     if (count == 0) {
101         if (player->argp[1])
102             pr("%s: No ship(s)\n", player->argp[1]);
103         else
104             pr("%s: No ship(s)\n", "");
105         return RET_FAIL;
106     } else
107         pr("%d ship%s\n", count, splur(count));
108     return RET_OK;
109 }