]> git.pond.sub.org Git - empserver/blob - src/lib/commands/rese.c
Update copyright notice.
[empserver] / src / lib / commands / rese.c
1 /*
2  *  Empire - A multi-player, client/server Internet based war game.
3  *  Copyright (C) 1986-2004, Dave Pare, Jeff Bailey, Thomas Ruschak,
4  *                           Ken Stevens, Steve McClure
5  *
6  *  This program 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 2 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, write to the Free Software
18  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  *  ---
21  *
22  *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
23  *  related information and legal notices. It is expected that any future
24  *  projects/authors will amend these files as needed.
25  *
26  *  ---
27  *
28  *  rese.c: Reset (lower) commodity prices
29  * 
30  *  Known contributors to this file:
31  *     Jeff Bailey
32  *     Pat Loney, 1992
33  *     Steve McClure, 1996
34  */
35
36 #include "misc.h"
37 #include "xy.h"
38 #include "file.h"
39 #include "var.h"
40 #include "sect.h"
41 #include "item.h"
42 #include "nsc.h"
43 #include "nat.h"
44 #include "land.h"
45 #include "nuke.h"
46 #include "plane.h"
47 #include "ship.h"
48 #include "trade.h"
49 #include <math.h>               /* bailey@math-cs.kent.edu */
50 #include "commodity.h"
51 #include "player.h"
52 #include "commands.h"
53 #include "optlist.h"
54
55 int
56 rese(void)
57 {
58     struct comstr comm;
59     struct sctstr sect;
60     int number_set;
61     int m;
62     char *p;
63     float price;
64     time_t now;
65     s_char buf[1024];
66
67     if (!opt_MARKET) {
68         pr("The market is disabled.\n");
69         return RET_FAIL;
70     }
71     check_market();
72     check_trade();
73     if ((p = getstarg(player->argp[1], "Which lot :  ", buf)) == 0
74         || *p == 0)
75         return RET_SYN;
76     number_set = atoi(p);
77     getcomm(number_set, &comm);
78     if (comm.com_owner != player->cnum && !player->god) {
79         pr("That's not your lot.\n");
80         return RET_OK;
81     }
82     if (comm.com_maxbidder != player->cnum && !player->god) {
83         pr("Some one already has a bid out on that\n");
84         return RET_OK;
85     }
86     if ((p = getstarg(player->argp[2], "New (lower) price: ", buf)) == 0
87         || *p == 0)
88         return RET_SYN;
89     if (!check_comm_ok(&comm))
90         return RET_FAIL;
91     price = (float)atof(p);
92     if (price <= 0) {
93         getsect(comm.sell_x, comm.sell_y, &sect);
94         if (!player->owner && !player->god) {
95             pr("The destination sector must be one of yours\n");
96             return RET_OK;
97         }
98         if (player->god) {
99             if ((p = getstring("Really destroy that lot? ", buf)) == 0)
100                 return RET_FAIL;
101             if (!check_comm_ok(&comm))
102                 return RET_FAIL;
103             if (*p == 'Y' || *p == 'y') {
104                 comm.com_owner = 0;
105                 putcomm(number_set, &comm);
106                 pr("Goods destroyed.\n");
107                 return RET_OK;
108             }
109             return RET_FAIL;
110         }
111         if (sect.sct_type != SCT_HARBR && sect.sct_type != SCT_WAREH) {
112             pr("That sector is not available for receiving goods.\n");
113             return RET_OK;
114         }
115         if (sect.sct_effic < 60) {
116             pr("The destination sector must be at least 60%% efficient.\n");
117             return RET_OK;
118         }
119         if (CANT_HAPPEN((unsigned)comm.com_type > I_MAX)) {
120             pr("The goods have been eaten by a grue.");
121             return RET_OK;
122         }
123         m = sect.sct_item[comm.com_type];
124         m = m + comm.com_amount;
125         if (m > ITEM_MAX)
126             m = ITEM_MAX;
127         sect.sct_item[comm.com_type] = m;
128         putsect(&sect);
129         comm.com_owner = 0;
130         putcomm(number_set, &comm);
131         pr("The goods have been returned to your trading post.\n");
132         return RET_OK;
133     }
134     if (price >= comm.com_price) {
135         pr("You can only lower the price.\n");
136         return RET_OK;
137     }
138     if (price < 0) {
139         pr("New price must be greater than or equal to zero.\n");
140         return RET_OK;
141     }
142     comm.com_price = price;
143     (void)time(&now);
144     comm.com_markettime = now;
145     if (!putcomm(number_set, &comm)) {
146         pr("Problems with the commodities file, Call the Deity\n");
147         return RET_OK;
148     }
149     return RET_OK;
150 }