ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/shop.C
(Generate patch)

Comparing deliantra/server/server/shop.C (file contents):
Revision 1.23 by root, Thu Dec 14 22:45:41 2006 UTC vs.
Revision 1.93 by root, Wed Nov 16 23:42:03 2016 UTC

1/* 1/*
2 CrossFire, A Multiplayer game for X-windows 2 * This file is part of Deliantra, the Roguelike Realtime MMORPG.
3 3 *
4 * Copyright (©) 2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016 Marc Alexander Lehmann / Robin Redeker / the Deliantra team
4 Copyright (C) 2002 Mark Wedel & Crossfire Development Team 5 * Copyright (©) 2002 Mark Wedel & Crossfire Development Team
5 Copyright (C) 1992 Frank Tore Johansen 6 * Copyright (©) 1992 Frank Tore Johansen
6 7 *
7 This program is free software; you can redistribute it and/or modify 8 * Deliantra is free software: you can redistribute it and/or modify it under
8 it under the terms of the GNU General Public License as published by 9 * the terms of the Affero GNU General Public License as published by the
9 the Free Software Foundation; either version 2 of the License, or 10 * Free Software Foundation, either version 3 of the License, or (at your
10 (at your option) any later version. 11 * option) any later version.
11 12 *
12 This program is distributed in the hope that it will be useful, 13 * This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details. 16 * GNU General Public License for more details.
16 17 *
17 You should have received a copy of the GNU General Public License 18 * You should have received a copy of the Affero GNU General Public License
18 along with this program; if not, write to the Free Software 19 * and the GNU General Public License along with this program. If not, see
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 20 * <http://www.gnu.org/licenses/>.
20 21 *
21 The authors can be reached via e-mail at <crossfire@schmorp.de> 22 * The authors can be reached via e-mail to <support@deliantra.net>
22*/ 23 */
23 24
24#include <global.h> 25#include <global.h>
25#include <spells.h> 26#include <spells.h>
26#include <skills.h> 27#include <skills.h>
27#include <living.h> 28#include <living.h>
28#include <newclient.h>
29#ifndef __CEXTRACT__
30# include <sproto.h> 29#include <sproto.h>
31#endif
32#include <math.h>
33 30
34/* this is a measure of how effective store specialisation is. A general store 31/* this is a measure of how effective store specialisation is. A general store
35 * will offer this proportion of the 'maximum' price, a specialised store will 32 * will offer this proportion of the 'maximum' price, a specialised store will
36 * offer a range of prices around it such that the maximum price is always one 33 * offer a range of prices around it such that the maximum price is always one
37 * therefore making this number higher, makes specialisation less effective. 34 * therefore making this number higher, makes specialisation less effective.
38 * setting this value above 1 or to a negative value would have interesting, 35 * setting this value above 1 or to a negative value would have interesting,
39 * (though not useful) effects. 36 * (though not useful) effects.
40 */ 37 */
41#define SPECIALISATION_EFFECT 0.5 38#define SPECIALISATION_EFFECT .5
42 39
43/* price a shopkeeper will give someone they neither like nor dislike */ 40// price a shopkeeper will give someone that is not of their race
44#define NEUTRAL_RATIO 0.8 41#define DISLIKE_RATIO 0.8
45 42
46static void pay_from_container (object *pl, object *pouch, sint64 &to_pay); 43static void pay_from_container (object *pl, object *pouch, sint64 &to_pay);
47static sint64 value_limit (sint64 val, int quantity, const object *who, int isshop); 44static sint64 value_limit (sint64 val, int quantity, const object *who, int isshop);
48static double shop_specialisation_ratio (const object *item, const maptile *map); 45static double shop_specialisation_ratio (const object *item, const maptile *map);
49static double shop_greed (const maptile *map); 46static double shop_greed (const maptile *map);
50
51#define NUM_COINS 4 /* number of coin types */
52static const char *const coins[] = { "royalty", "platinacoin", "goldcoin", "silvercoin", NULL };
53 47
54/* Added F_TRUE flag to define.h to mean that the price should not 48/* Added F_TRUE flag to define.h to mean that the price should not
55 * be adjusted by players charisma. With F_TRUE, it returns the amount 49 * be adjusted by players charisma. With F_TRUE, it returns the amount
56 * that the item is worth, if it was sold, but unadjusted by charisma. 50 * that the item is worth, if it was sold, but unadjusted by charisma.
57 * This is needed for alchemy, to to determine what value of gold nuggets 51 * This is needed for alchemy, to to determine what value of gold nuggets
80 74
81sint64 75sint64
82query_cost (const object *tmp, object *who, int flag) 76query_cost (const object *tmp, object *who, int flag)
83{ 77{
84 double val; 78 double val;
85 int number; /* used to better calculate value */
86 int no_bargain; 79 int no_bargain;
87 int identified; 80 int identified;
88 int not_cursed; 81 int not_cursed;
89 int approximate; 82 int approximate;
90 int shop; 83 int shop;
91 double diff;
92 84
93 approx_range = 0; 85 approx_range = 0;
94 86
95 no_bargain = flag & F_NO_BARGAIN; 87 no_bargain = flag & F_NO_BARGAIN;
96 identified = flag & F_IDENTIFIED; 88 identified = flag & F_IDENTIFIED;
97 not_cursed = flag & F_NOT_CURSED; 89 not_cursed = flag & F_NOT_CURSED;
98 approximate = flag & F_APPROX; 90 approximate = flag & F_APPROX;
99 shop = flag & F_SHOP; 91 shop = flag & F_SHOP;
100 flag &= ~(F_NO_BARGAIN | F_IDENTIFIED | F_NOT_CURSED | F_APPROX | F_SHOP); 92 flag &= ~(F_NO_BARGAIN | F_IDENTIFIED | F_NOT_CURSED | F_APPROX | F_SHOP);
101 93
94 int number = tmp->number_of ();
95
102 if (tmp->type == MONEY) 96 if (tmp->type == MONEY)
103 return tmp->nrof * tmp->value; 97 return number * tmp->value;
104 98
105 if (tmp->type == GEM) 99 if (tmp->type == GEM)
106 { 100 {
107 if (flag == F_TRUE) 101 if (flag == F_TRUE)
108 return (tmp->nrof * tmp->value); 102 return number * tmp->value;
109 103
110 if (flag == F_BUY) 104 if (flag == F_BUY)
111 return (sint64) (1.03 * tmp->nrof * tmp->value); 105 return 1.03 * number * tmp->value;
112 106
113 if (flag == F_SELL) 107 if (flag == F_SELL)
114 return (sint64) (0.97 * tmp->nrof * tmp->value); 108 return 0.97 * number * tmp->value;
115 109
116 LOG (llevError, "Query_cost: Gem type with unknown flag %d: %s\n", flag, tmp->debug_desc ()); 110 LOG (llevError, "Query_cost: Gem type with unknown flag %d: %s\n", flag, tmp->debug_desc ());
117 return 0; 111 return 0;
118 } 112 }
119 113
120 number = tmp->nrof;
121 if (number == 0)
122 number = 1;
123 if (QUERY_FLAG (tmp, FLAG_IDENTIFIED) || !need_identify (tmp) || identified) 114 if (tmp->flag [FLAG_IDENTIFIED] || !tmp->need_identify () || identified)
124 { 115 {
125 if (!not_cursed && (QUERY_FLAG (tmp, FLAG_CURSED) || QUERY_FLAG (tmp, FLAG_DAMNED))) 116 if (!not_cursed && (tmp->flag [FLAG_CURSED] || tmp->flag [FLAG_DAMNED]))
126 return 0; 117 return 0;
127 else 118 else
128 val = tmp->value * number; 119 val = number * tmp->value;
129 } 120 }
130 /* This area deals with objects that are not identified, but can be */ 121 /* This area deals with objects that are not identified, but can be */
131 else 122 else
132 { 123 {
133 if (tmp->arch != NULL)
134 {
135 if (flag == F_BUY) 124 if (flag == F_BUY)
125 {
126 LOG (llevError | logBacktrace, "Asking for buy-value of unidentified object: %s\n", tmp->debug_desc ());
127 val = tmp->arch->value * 50 * number;
128 }
129 else
130 { /* Trying to sell something, or get true value */
131 if (tmp->type == POTION)
132 val = number * 40; /* Don't want to give anything away */
133 else
136 { 134 {
137 LOG (llevError, "Asking for buy-value of unidentified object.\n"); 135 /* Get 2/3'rd value for applied objects, 1/3'rd for totally
138 val = tmp->arch->clone.value * 50 * number; 136 * unknown objects
137 */
138 if (tmp->flag [FLAG_BEEN_APPLIED])
139 val = number * tmp->arch->value * 2 / 3;
140 else
141 val = number * tmp->arch->value / 3;
139 } 142 }
140 else
141 { /* Trying to sell something, or get true value */
142 if (tmp->type == POTION)
143 val = number * 40; /* Don't want to give anything away */
144 else
145 {
146 /* Get 2/3'rd value for applied objects, 1/3'rd for totally
147 * unknown objects
148 */
149 if (QUERY_FLAG (tmp, FLAG_BEEN_APPLIED))
150 val = number * tmp->arch->clone.value * 2 / 3;
151 else
152 val = number * tmp->arch->clone.value / 3;
153 }
154 }
155 }
156 else
157 { /* No archetype with this object */
158 LOG (llevDebug, "In sell item: Have object with no archetype: %s\n", &tmp->name);
159 if (flag == F_BUY)
160 {
161 LOG (llevError, "Asking for buy-value of unidentified object without arch.\n");
162 val = number * tmp->value * 10;
163 }
164 else
165 val = number * tmp->value / 5;
166 } 143 }
167 } 144 }
168 145
169 /* If the item has been applied or identifed or does not need to be 146 /* If the item has been applied or identifed or does not need to be
170 * identified, AND the object is magical and the archetype is non 147 * identified, AND the object is magical and the archetype is non
171 * magical, then change values accordingly. The tmp->arch==NULL is 148 * magical, then change values accordingly. The tmp->arch==NULL is
172 * really just a check to prevent core dumps for when it checks 149 * really just a check to prevent core dumps for when it checks
173 * tmp->arch->clone.magic for any magic. The check for archetype 150 * tmp->arch->magic for any magic. The check for archetype
174 * magic is to not give extra money for archetypes that are by 151 * magic is to not give extra money for archetypes that are by
175 * default magical. This is because the archetype value should have 152 * default magical. This is because the archetype value should have
176 * already figured in that value. 153 * already figured in that value.
177 */ 154 */
178 if ((QUERY_FLAG (tmp, FLAG_IDENTIFIED) || !need_identify (tmp) || identified || 155 if ((tmp->flag [FLAG_IDENTIFIED] || !tmp->need_identify () || identified || tmp->flag [FLAG_BEEN_APPLIED])
179 QUERY_FLAG (tmp, FLAG_BEEN_APPLIED)) && tmp->magic && (tmp->arch == NULL || !tmp->arch->clone.magic)) 156 && tmp->magic && (!tmp->arch || !tmp->arch->magic))
180 { 157 {
181 if (tmp->magic > 0) 158 if (tmp->magic > 0)
182 val *= (3 * tmp->magic * tmp->magic * tmp->magic); 159 val *= 3 * tmp->magic * tmp->magic * tmp->magic;
183 else 160 else
184 /* Note that tmp->magic is negative, so that this 161 /* Note that tmp->magic is negative, so that this
185 * will actually be something like val /=2, /=3, etc. 162 * will actually be something like val /=2, /=3, etc.
186 */ 163 */
187 val /= (1 - tmp->magic); 164 val /= 1 - tmp->magic;
188 } 165 }
189 166
190 if (tmp->type == WAND) 167 if (tmp->type == WAND)
191 { 168 {
192 /* Value of the wand is multiplied by the number of 169 /* Value of the wand is multiplied by the number of
193 * charges. the treasure code already sets up the value 170 * charges. the treasure code already sets up the value
194 * 50 charges is used as the baseline. 171 * 50 charges is used as the baseline.
195 */ 172 */
196 if (QUERY_FLAG (tmp, FLAG_IDENTIFIED) || !need_identify (tmp) || identified) 173 if (tmp->flag [FLAG_IDENTIFIED] || !tmp->need_identify () || identified)
197 val = (val * tmp->stats.food) / 50; 174 val *= tmp->stats.food;
198 else /* if not identified, presume one charge */ 175 /* if not identified, presume one charge */
199 val /= 50; 176 val /= 50;
200 } 177 }
201 178
202 /* Limit amount of money you can get for really great items. */ 179 /* Limit amount of money you can get for really great items. */
203 if (flag == F_SELL) 180 if (flag == F_SELL)
204 val = value_limit ((sint64) val, number, who, shop); 181 val = value_limit (val, number, who, shop);
205 182
206 // use a nonlinear price adjustment. as my predecessor said, don't change 183 // use a nonlinear price adjustment. as my predecessor said, don't change
207 // the archetypes, its work required for balancing, and we don't care. 184 // the archetypes, its work required for balancing, and we don't care.
208 //val = pow (val, 1.05); 185 //val = pow (val, 1.05);
209 186
212 * AND Cha = 30 will get optimal price. 189 * AND Cha = 30 will get optimal price.
213 * Thus charisma will never get useless. 190 * Thus charisma will never get useless.
214 * -b.e. edler@heydernet.de 191 * -b.e. edler@heydernet.de
215 */ 192 */
216 193
217 if (who != NULL && who->type == PLAYER) 194 if (who && who->is_player ())
218 { 195 {
219 int lev_bargain = 0; 196 int lev_bargain = 0;
220 int lev_identify = 0; 197 int lev_identify = 0;
221 int idskill1 = 0;
222 int idskill2 = 0;
223 const typedata *tmptype;
224 198
199 if (!no_bargain)
200 if (object *skill = find_skill_by_name (who, shstr_bargaining))
201 lev_bargain = skill->level;
202
225 tmptype = get_typedata (tmp->type); 203 if (const typedata *tmptype = get_typedata (tmp->type))
226
227 if (find_skill_by_number (who, SK_BARGAINING))
228 lev_bargain = find_skill_by_number (who, SK_BARGAINING)->level;
229
230 if (tmptype)
231 { 204 {
232 idskill1 = tmptype->identifyskill; 205 if (int idskill1 = tmptype->identifyskill)
233
234 if (idskill1)
235 { 206 {
236 idskill2 = tmptype->identifyskill2; 207 int idskill2 = tmptype->identifyskill2;
237 208
238 if (find_skill_by_number (who, idskill1)) 209 if (find_skill_by_number (who, idskill1))
239 lev_identify = find_skill_by_number (who, idskill1)->level; 210 lev_identify = find_skill_by_number (who, idskill1)->level;
240 211
241 if (idskill2 && find_skill_by_number (who, idskill2)) 212 if (idskill2 && find_skill_by_number (who, idskill2))
242 lev_identify += find_skill_by_number (who, idskill2)->level; 213 lev_identify += find_skill_by_number (who, idskill2)->level;
243 } 214 }
244 } 215 }
245 else
246 LOG (llevError, "Query_cost: item %s hasn't got a valid type\n", tmp->debug_desc ());
247 216
248 /* ratio determines how much of the price modification 217 /* ratio determines how much of the price modification
249 * will come from the basic stat charisma 218 * will come from the basic stat charisma
250 * the rest will come from the level in bargaining skill 219 * the rest will come from the level in bargaining skill
251 */ 220 */
252 const double cha_ratio = 0.40; 221 const double cha_ratio = 0.40;
253 222 double bargaining = max (0., 1. - powf (double (lev_bargain) / MAXLEVEL_TREASURE, 0.25));
254 diff = no_bargain ? 1.0 : 1. - pow (lev_bargain / (double) settings.max_level, 0.25);
255
256 diff = (1. - cha_ratio) * diff + cha_ratio * (cha_bonus[who->stats.Cha] - 1.) / (cha_bonus[who->stats.Cha] + 1.); 223 double charisma = (cha_bonus[who->stats.Cha] - 1.) / (cha_bonus[who->stats.Cha] + 1.);
257 224
258 diff = .02 + (.80 - .02) * diff; 225 double factor = (1. - cha_ratio) * bargaining + cha_ratio * charisma;
226
227 // scale 0..1 to 2 .. 80%
228 factor = lerp (factor, 0., 1., 0.02, 0.80);
259 229
260 if (flag == F_BUY) 230 if (flag == F_BUY)
261 val += (val * diff); 231 val += val * factor;
262 else if (flag == F_SELL) 232 else if (flag == F_SELL)
263 val -= (val * diff); 233 val -= val * factor;
264 234
265 // now find a price range. the less good we can judge, the larger the range is 235 // now find a price range. the less good we can judge, the larger the range is
266 // then the range is adjusted randomly around the correct value 236 // then the range is adjusted randomly around the correct value
267 if (approximate) 237 if (approximate)
268 approx_range = sint64 (val / sqrt (lev_identify * 3 + 1)); 238 approx_range = val / sqrt (lev_identify * 3 + 1);
269 } 239 }
270 240
271 /* I don't think this should really happen - if it does, it indicates and 241 /* I don't think this should really happen - if it does, it indicates and
272 * overflow of diff above. That shoudl only happen if 242 * overflow of diff above. That should only happen if
273 * we are selling objects - in that case, the person just 243 * we are selling objects - in that case, the person just
274 * gets no money. 244 * gets no money.
275 */ 245 */
276 if ((sint64) val < 0) 246 if ((sint64) val < 0)
277 val = 0; 247 val = 0;
278 248
279 /* Unidentified stuff won't sell for more than 60gp */ 249 /* Unidentified stuff won't sell for more than 10gp */
280 if (flag == F_SELL && !QUERY_FLAG (tmp, FLAG_IDENTIFIED) && need_identify (tmp) && !identified) 250 if (flag == F_SELL && !tmp->flag [FLAG_IDENTIFIED] && tmp->need_identify () && !identified)
281 { 251 min_it (val, 1000);
282 val = (val > 600) ? 600 : val;
283 }
284 252
285 /* if we are in a shop, check how the type of shop should affect the price */ 253 /* if we are in a shop, check how the type of shop should affect the price */
286 if (shop && who) 254 if (shop && who)
287 { 255 {
288 if (flag == F_SELL) 256 if (flag == F_SELL)
289 val = (val * shop_specialisation_ratio (tmp, who->map) * shopkeeper_approval (who->map, who) / shop_greed (who->map)); 257 val *= shop_specialisation_ratio (tmp, who->map) * shopkeeper_approval (who->map, who) / shop_greed (who->map);
290 else if (flag == F_BUY) 258 else if (flag == F_BUY)
291 { 259 {
292 /* 260 /*
293 * when buying, if the item was sold by another player, it is ok to 261 * when buying, if the item was sold by another player, it is ok to
294 * let the item be sold cheaper, according to the specialisation of 262 * let the item be sold cheaper, according to the specialisation of
300 * be sold for (otherwise players could camp map resets to make money). 268 * be sold for (otherwise players could camp map resets to make money).
301 * In game terms, a non-specialist shop, might not recognise the true 269 * In game terms, a non-specialist shop, might not recognise the true
302 * value of the items they sell (much like how people sometimes find 270 * value of the items they sell (much like how people sometimes find
303 * antiques in a junk shop in real life). 271 * antiques in a junk shop in real life).
304 */ 272 */
305 if (QUERY_FLAG (tmp, FLAG_PLAYER_SOLD)) 273 if (tmp->flag [FLAG_PLAYER_SOLD])
306 val = (val * shop_greed (who->map) * shop_specialisation_ratio (tmp, who->map) / shopkeeper_approval (who->map, who)); 274 val *= shop_specialisation_ratio (tmp, who->map);
307 else 275 else
308 val = (val * shop_greed (who->map) / (shop_specialisation_ratio (tmp, who->map) * shopkeeper_approval (who->map, who))); 276 val /= shop_specialisation_ratio (tmp, who->map);
277
278 val *= shop_greed (who->map) / shopkeeper_approval (who->map, who);
309 } 279 }
280
310 /* we will also have an extra 0-5% variation between shops of the same type 281 /* we will also have an extra 0-5% variation between shops of the same type
311 * for valuable items (below a value of 50 this effect wouldn't be very 282 * for valuable items (below a value of 50 this effect wouldn't be very
312 * pointful, and could give fun with rounding. 283 * pointful, and could give fun with rounding.
313 */ 284 */
314 if (who->map->path != NULL && val > 50) 285 //TODO: why use cosf at all, just % and scale linearly, gives more even distribution
315 val = (val + 0.05 * (sint64) val * cos (tmp->count + strlen (who->map->path))); 286 if (val > 50)
287 val *= 1 + .05f * cosf ((tmp->uuid.seq & 0xffff) * M_PI * 2. / 0x10000);
316 } 288 }
317 return (sint64) val; 289
290 return val;
318} 291}
319 292
320/* Find the coin type that is worth more the 'c'. Starts at the 293/* Find the coin type that is worth more the 'c'. Starts at the
321 * cointype placement. 294 * cointype placement.
322 */ 295 */
326{ 299{
327 archetype *coin; 300 archetype *coin;
328 301
329 do 302 do
330 { 303 {
331 if (coins[*cointype] == NULL) 304 if (!coins [*cointype])
332 return NULL; 305 return 0;
306
333 coin = archetype::find (coins[*cointype]); 307 coin = archetype::find (coins [*cointype]);
308
334 if (coin == NULL) 309 if (!coin)
335 return NULL; 310 return 0;
311
336 *cointype += 1; 312 *cointype += 1;
337 } 313 }
338 while (coin->clone.value > c); 314 while (coin->value > c);
339 315
340 return coin; 316 return coin;
341} 317}
342 318
343/* This returns a string of how much something is worth based on 319/* This returns a string of how much something is worth based on
351 * 10,000 silver or something) 327 * 10,000 silver or something)
352 */ 328 */
353const char * 329const char *
354cost_string_from_value (sint64 cost, int approx) 330cost_string_from_value (sint64 cost, int approx)
355{ 331{
356 static char buf[MAX_BUF];
357 archetype *coin, *next_coin; 332 archetype *coin, *next_coin;
358 int num, cointype = 0; 333 int num, cointype = 0;
359 334
360 coin = find_next_coin (cost, &cointype); 335 coin = find_next_coin (cost, &cointype);
361 if (coin == NULL) 336 if (!coin)
362 return "nothing"; 337 return "nothing";
363 338
364 num = cost / coin->clone.value; 339 num = cost / coin->value;
365 /* so long as nrof is 32 bit, this is true. 340 /* so long as nrof is 32 bit, this is true.
366 * If it takes more coins than a person can possibly carry, this 341 * If it takes more coins than a person can possibly carry, this
367 * is basically true. 342 * is basically true.
368 */ 343 */
369 if ((cost / coin->clone.value) > UINT32_MAX) 344 if (cost / coin->value > UINT32_MAX)
370 {
371 strcpy (buf, "an unimaginable sum of money"); 345 return "an unimaginable sum of money";
372 return buf;
373 }
374 346
375 cost -= num * (sint64)coin->clone.value; 347 cost -= num * (sint64)coin->value;
376 348
377 sprintf (buf, "%d %s", num, num > 1 ? &coin->clone.name_pl : &coin->clone.name); 349 char *buf = format ("%d %s", num, num > 1 ? &coin->object::name_pl : &coin->object::name);
378 350
379 next_coin = find_next_coin (cost, &cointype); 351 next_coin = find_next_coin (cost, &cointype);
380 if (next_coin == NULL || approx) 352 if (!next_coin || approx)
381 return buf; 353 return buf;
382 354
383 coin = next_coin; 355 coin = next_coin;
384 num = cost / coin->clone.value; 356 num = cost / coin->value;
385 cost -= num * (sint64)coin->clone.value; 357 cost -= num * (sint64)coin->value;
386 358
387 sprintf (buf + strlen (buf), " and %d %s", num, num > 1 ? &coin->clone.name_pl : &coin->clone.name); 359 return format ("%s and %d %s", buf, num, num > 1 ? &coin->object::name_pl : &coin->object::name);
388
389 return buf;
390} 360}
391 361
392const char * 362const char *
393query_cost_string (const object *tmp, object *who, int flag) 363query_cost_string (const object *tmp, object *who, int flag)
394{ 364{
413 { 383 {
414 if (!idskill1 || !find_skill_by_number (who, idskill1)) 384 if (!idskill1 || !find_skill_by_number (who, idskill1))
415 { 385 {
416 if (!idskill2 || !find_skill_by_number (who, idskill2)) 386 if (!idskill2 || !find_skill_by_number (who, idskill2))
417 { 387 {
418 if (!find_skill_by_number (who, SK_BARGAINING)) 388 if (!find_skill_by_name (who, shstr_bargaining))
419 { 389 {
420 static char buf[MAX_BUF];
421 int num, cointype = 0; 390 int num, cointype = 0;
422 archetype *coin = find_next_coin (real_value, &cointype); 391 archetype *coin = find_next_coin (real_value, &cointype);
423 392
424 if (coin == NULL) 393 if (!coin)
425 return "nothing"; 394 return "nothing";
426 395
427 num = real_value / coin->clone.value; 396 num = real_value / coin->value;
397
428 if (num == 1) 398 if (num == 1)
429 sprintf (buf, "about one %s", &coin->clone.name); 399 return format ("about one %s", &coin->object::name);
430 else if (num < 5) 400 else if (num < 5)
431 sprintf (buf, "a few %s", &coin->clone.name_pl); 401 return format ("a few %s", &coin->object::name_pl);
432 else if (num < 10) 402 else if (num < 10)
433 sprintf (buf, "several %s", &coin->clone.name_pl); 403 return format ("several %s", &coin->object::name_pl);
434 else if (num < 25) 404 else if (num < 25)
435 sprintf (buf, "a moderate amount of %s", &coin->clone.name_pl); 405 return format ("a moderate amount of %s", &coin->object::name_pl);
436 else if (num < 100) 406 else if (num < 100)
437 sprintf (buf, "lots of %s", &coin->clone.name_pl); 407 return format ("lots of %s", &coin->object::name_pl);
438 else if (num < 1000) 408 else if (num < 1000)
439 sprintf (buf, "a great many %s", &coin->clone.name_pl); 409 return format ("a great many %s", &coin->object::name_pl);
440 else 410 else
441 sprintf (buf, "a vast quantity of %s", &coin->clone.name_pl); 411 return format ("a vast quantity of %s", &coin->object::name_pl);
442 return buf;
443 } 412 }
444 } 413 }
445 } 414 }
446 415
447 int hash = ((unsigned int) tmp->count * 174364621) & 1023;
448
449 if (approx_range) 416 if (approx_range)
450 { 417 {
418 int hash = tmp->random_seed () & 1023;
451 sint64 lo = (sint64) real_value - (approx_range * hash >> 10); 419 sint64 lo = real_value - (approx_range * hash >> 10);
452 static char buf[MAX_BUF];
453 420
454 sprintf (buf, "between %s", cost_string_from_value (lo, 1)); 421 return format ("between %s and %s",
455 sprintf (buf + strlen (buf), " and %s", cost_string_from_value (lo + approx_range, 1)); 422 cost_string_from_value (lo, 1),
456 423 cost_string_from_value (lo + approx_range, 1));
457 return buf;
458 } 424 }
459 } 425 }
460 426
461 return cost_string_from_value (real_value, 0); 427 return cost_string_from_value (real_value, 0);
462} 428}
477 } 443 }
478 444
479 for (tmp = op->inv; tmp; tmp = tmp->below) 445 for (tmp = op->inv; tmp; tmp = tmp->below)
480 if (tmp->type == MONEY) 446 if (tmp->type == MONEY)
481 total += tmp->nrof * (sint64)tmp->value; 447 total += tmp->nrof * (sint64)tmp->value;
482 else if (tmp->type == CONTAINER && QUERY_FLAG (tmp, FLAG_APPLIED) && (tmp->race == NULL || strstr (tmp->race, "gold"))) 448 else if (tmp->type == CONTAINER && tmp->flag [FLAG_APPLIED] && (!tmp->race || tmp->race.contains (shstr_gold)))
483 total += query_money (tmp); 449 total += query_money (tmp);
484 450
485 return total; 451 return total;
486} 452}
487 453
502 return 0; 468 return 0;
503 469
504 pay_from_container (pl, pl, to_pay); 470 pay_from_container (pl, pl, to_pay);
505 471
506 for (pouch = pl->inv; pouch && to_pay; pouch = pouch->below) 472 for (pouch = pl->inv; pouch && to_pay; pouch = pouch->below)
507 if (pouch->type == CONTAINER && QUERY_FLAG (pouch, FLAG_APPLIED) && (pouch->race == NULL || strstr (pouch->race, "gold"))) 473 if (pouch->type == CONTAINER && pouch->flag [FLAG_APPLIED] && (!pouch->race || pouch->race.contains (shstr_gold)))
508 pay_from_container (pl, pouch, to_pay); 474 pay_from_container (pl, pouch, to_pay);
509 475
510 fix_player (pl); 476 pl->update_stats ();
511 return 1; 477 return 1;
512} 478}
513 479
514/* DAMN: This is now a wrapper for pay_from_container, which is 480/* DAMN: This is now a wrapper for pay_from_container, which is
515 * called for the player, then for each active container that can hold 481 * called for the player, then for each active container that can hold
534 * This determins the amount of exp (if any) gained for bargaining. 500 * This determins the amount of exp (if any) gained for bargaining.
535 */ 501 */
536 saved_money = query_cost (op, pl, F_BUY | F_NO_BARGAIN | F_SHOP) - to_pay; 502 saved_money = query_cost (op, pl, F_BUY | F_NO_BARGAIN | F_SHOP) - to_pay;
537 503
538 if (saved_money > 0) 504 if (saved_money > 0)
539 change_exp (pl, saved_money, "bargaining", SK_EXP_NONE); 505 change_exp (pl, saved_money, shstr_bargaining, SK_EXP_NONE);
540 506
541 pay_from_container (pl, pl, to_pay); 507 pay_from_container (pl, pl, to_pay);
542 508
543 for (pouch = pl->inv; pouch && to_pay; pouch = pouch->below) 509 for (pouch = pl->inv; pouch && to_pay; pouch = pouch->below)
544 if (pouch->type == CONTAINER && QUERY_FLAG (pouch, FLAG_APPLIED) && (pouch->race == NULL || strstr (pouch->race, "gold"))) 510 if (pouch->type == CONTAINER && pouch->flag [FLAG_APPLIED] && (!pouch->race || pouch->race.contains (shstr_gold)))
545 pay_from_container (pl, pouch, to_pay); 511 pay_from_container (pl, pouch, to_pay);
546 512
547 if (settings.real_wiz == FALSE && QUERY_FLAG (pl, FLAG_WAS_WIZ)) 513 pl->update_stats ();
548 SET_FLAG (op, FLAG_WAS_WIZ);
549 514
550 fix_player (pl);
551 return 1; 515 return 1;
552} 516}
553 517
554/* This pays for the item, and takes the proper amount of money off 518/* This pays for the item, and takes the proper amount of money off
555 * the player. 519 * the player.
584 548
585 if (tmp->type == MONEY) 549 if (tmp->type == MONEY)
586 { 550 {
587 for (i = 0; i < NUM_COINS; i++) 551 for (i = 0; i < NUM_COINS; i++)
588 { 552 {
589 if (tmp->value == tmp->arch->clone.value && !strcmp (coins[NUM_COINS - 1 - i], tmp->arch->name)) 553 if (tmp->value == tmp->arch->value && !strcmp (coins[NUM_COINS - 1 - i], tmp->arch->archname))
590 { 554 {
591 // This should not happen, but if it does, just merge the two. 555 // This should not happen, but if it does, just merge the two.
592 if (coin_objs [i]) 556 if (coin_objs [i])
593 { 557 {
594 LOG (llevError, "%s has two money entries of (%s)\n", &pouch->name, coins[NUM_COINS - 1 - i]); 558 LOG (llevError, "%s has two money entries of (%s)\n", &pouch->name, coins[NUM_COINS - 1 - i]);
595 tmp->remove ();
596 coin_objs[i]->nrof += tmp->nrof; 559 coin_objs[i]->nrof += tmp->nrof;
597 esrv_del_item (pl->contr, tmp->count);
598 tmp->destroy (); 560 tmp->destroy ();
599 } 561 }
600 else 562 else
601 { 563 {
602 tmp->remove (); 564 tmp->remove ();
603
604 if (pouch->type == PLAYER)
605 esrv_del_item (pl->contr, tmp->count);
606
607 coin_objs[i] = tmp; 565 coin_objs[i] = tmp;
608 } 566 }
609 567
610 break; 568 break;
611 } 569 }
612 } 570 }
613 571
614 if (i == NUM_COINS) 572 if (i == NUM_COINS)
615 LOG (llevError, "in pay_for_item: Did not find string match for %s\n", &tmp->arch->name); 573 LOG (llevError, "in pay_for_item: Did not find string match for %s\n", &tmp->arch->archname);
616 } 574 }
617 } 575 }
618 576
619 /* Fill in any gaps in the coin_objs array - needed to make change. */ 577 /* Fill in any gaps in the coin_objs array - needed to make change. */
620 /* Note that the coin_objs array goes from least value to greatest value */ 578 /* Note that the coin_objs array goes from least value to greatest value */
624 at = archetype::find (coins[NUM_COINS - 1 - i]); 582 at = archetype::find (coins[NUM_COINS - 1 - i]);
625 583
626 if (at == NULL) 584 if (at == NULL)
627 LOG (llevError, "Could not find %s archetype\n", coins[NUM_COINS - 1 - i]); 585 LOG (llevError, "Could not find %s archetype\n", coins[NUM_COINS - 1 - i]);
628 586
629 coin_objs[i] = arch_to_object (at); 587 coin_objs[i] = at->instance ();
630 coin_objs[i]->nrof = 0; 588 coin_objs[i]->nrof = 0;
631 } 589 }
632 590
633 for (i = 0; i < NUM_COINS; i++) 591 for (i = 0; i < NUM_COINS; i++)
634 { 592 {
635 object &coin = *coin_objs[i]; 593 object &coin = *coin_objs[i];
636 sint64 num_coins = min ((to_pay + coin.value - 1) / coin.value, coin.nrof); 594 sint64 num_coins = min ((to_pay + coin.value - 1) / coin.value, (sint64) coin.nrof);
637 to_pay -= num_coins * coin.value; 595 to_pay -= num_coins * coin.value;
638 596
639 coin.nrof -= num_coins; 597 coin.nrof -= num_coins;
640 /* Now start making change. Start at the coin value 598 /* Now start making change. Start at the coin value
641 * below the one we just did, and work down to 599 * below the one we just did, and work down to
651 count--; 609 count--;
652 } 610 }
653 } 611 }
654 612
655 for (i = 0; i < NUM_COINS; i++) 613 for (i = 0; i < NUM_COINS; i++)
656 {
657 if (coin_objs[i]->nrof) 614 if (coin_objs[i]->nrof)
658 {
659 object *tmp = insert_ob_in_ob (coin_objs[i], pouch); 615 insert_ob_in_ob (coin_objs [i], pouch);
660
661 esrv_send_item (pl, tmp);
662 esrv_send_item (pl, pouch);
663
664 if (pl != pouch)
665 esrv_update_item (UPD_WEIGHT, pl, pouch);
666
667 if (pl->type != PLAYER)
668 esrv_send_item (pl, pl);
669 }
670 else 616 else
671 coin_objs[i]->destroy (); 617 coin_objs[i]->destroy ();
672 }
673} 618}
674 619
675/* Checks all unpaid items in op's inventory, adds up all the money they 620/* Checks all unpaid items in op's inventory, adds up all the money they
676 * have, and checks that they can actually afford what they want to buy. 621 * have, and checks that they can actually afford what they want to buy.
677 * Returns 1 if they can, and 0 if they can't. also prints an appropriate message 622 * Returns 1 if they can, and 0 if they can't. also prints an appropriate message
689 LOG (llevError, "can_pay(): called against something that isn't a player\n"); 634 LOG (llevError, "can_pay(): called against something that isn't a player\n");
690 return 0; 635 return 0;
691 } 636 }
692 637
693 for (object::depth_iterator item = pl->begin (); item != pl->end (); ++item) 638 for (object::depth_iterator item = pl->begin (); item != pl->end (); ++item)
694 if (QUERY_FLAG (item, FLAG_UNPAID)) 639 if (item->flag [FLAG_UNPAID])
695 { 640 {
696 unpaid_count++; 641 unpaid_count++;
697 unpaid_price += query_cost (item, pl, F_BUY | F_SHOP); 642 unpaid_price += query_cost (item, pl, F_BUY | F_SHOP);
698 } 643 }
699 644
700 if (unpaid_price > player_wealth) 645 if (unpaid_price > player_wealth)
701 { 646 {
702 char buf[MAX_BUF]; 647 dynbuf_text &buf = msg_dynbuf; buf.clear ();
703 char cost[MAX_BUF];
704 char missing[MAX_BUF];
705 648
706 snprintf (cost, MAX_BUF, "%s", cost_string_from_value (unpaid_price, 0)); 649 buf << "You have " << unpaid_count
707 snprintf (missing, MAX_BUF, "%s", cost_string_from_value (unpaid_price - player_wealth, 0)); 650 << " unpaid item(s) that would cost you " << cost_string_from_value (unpaid_price, 0)
651 << ". You need another " << cost_string_from_value (unpaid_price - player_wealth, 0)
652 << " to be able to afford that. "
653 "H<You cannot leave a shop without paying - drop unpaid items first to be able to leave.>";
708 654
709 snprintf (buf, MAX_BUF, "You have %d unpaid items that would cost you %s. You need another %s to be able to afford that.", 655 pl->failmsg (buf);
710 unpaid_count, cost, missing);
711 new_draw_info (NDI_UNIQUE, 0, pl, buf);
712 656
713 return 0; 657 return 0;
714 } 658 }
715 else 659 else
716 return 1; 660 return 1;
729 { 673 {
730 next_item: 674 next_item:
731 675
732 for (object::depth_iterator op = pl->begin (); op != pl->end (); ++op) 676 for (object::depth_iterator op = pl->begin (); op != pl->end (); ++op)
733 { 677 {
734 if (QUERY_FLAG (op, FLAG_UNPAID)) 678 if (op->flag [FLAG_UNPAID])
735 { 679 {
736 char buf[MAX_BUF];
737 snprintf (buf, MAX_BUF, "%s", query_cost_string (op, pl, F_BUY | F_SHOP)); 680 const char *buf = query_cost_string (op, pl, F_BUY | F_SHOP);
738 681
739 if (!pay_for_item (op, pl)) 682 if (!pay_for_item (op, pl))
740 { 683 {
741 sint64 i = query_cost (op, pl, F_BUY | F_SHOP) - query_money (pl); 684 sint64 i = query_cost (op, pl, F_BUY | F_SHOP) - query_money (pl);
742 685
743 CLEAR_FLAG (op, FLAG_UNPAID); 686 op->clr_flag (FLAG_UNPAID);
744 new_draw_info_format (NDI_UNIQUE, 0, pl, "You lack %s to buy %s.", cost_string_from_value (i, 0), query_name (op)); 687 new_draw_info_format (NDI_UNIQUE, 0, pl, "You lack %s to buy %s.", cost_string_from_value (i, 0), query_name (op));
745 SET_FLAG (op, FLAG_UNPAID); 688 op->set_flag (FLAG_UNPAID);
746 return 0; 689 return 0;
747 } 690 }
748 else 691 else
749 { 692 {
750 object *tmp; 693 op->clr_flag (FLAG_UNPAID);
751 694 op->clr_flag (FLAG_PLAYER_SOLD);
752 CLEAR_FLAG (op, FLAG_UNPAID);
753 CLEAR_FLAG (op, FLAG_PLAYER_SOLD);
754 new_draw_info_format (NDI_UNIQUE, 0, op, "You paid %s for %s.", buf, query_name (op)); 695 new_draw_info_format (NDI_UNIQUE, 0, pl, "You paid %s for %s.", buf, query_name (op));
755 tmp = merge_ob (op, NULL);
756 696
757 if (pl->type == PLAYER) 697 if (!merge_ob (op, op->env->inv))
758 {
759 if (tmp)
760 { /* it was merged */
761 esrv_del_item (pl->contr, op->count);
762 op = tmp;
763 }
764
765 esrv_send_item (pl, op); 698 esrv_update_item (UPD_FLAGS, pl, op);
766 }
767 699
768 goto next_item; 700 goto next_item;
769 } 701 }
770 } 702 }
771 } 703 }
788void 720void
789pay_player (object *pl, sint64 amount) 721pay_player (object *pl, sint64 amount)
790{ 722{
791 int count = 0; 723 int count = 0;
792 archetype *at = 0; 724 archetype *at = 0;
793 object *pouch = 0, *tmp = 0; 725 object *pouch = 0;
794 726
795 for (count = 0; coins[count] != NULL; count++) 727 for (count = 0; coins[count]; count++)
796 { 728 {
797 at = archetype::find (coins[count]); 729 at = archetype::find (coins[count]);
798 730
799 if (at == NULL) 731 if (at == NULL)
800 LOG (llevError, "Could not find %s archetype\n", coins[count]); 732 LOG (llevError, "Could not find %s archetype\n", coins[count]);
801 else if ((amount / at->clone.value) > 0) 733 else if ((amount / at->value) > 0)
802 { 734 {
803 for (pouch = pl->inv; pouch; pouch = pouch->below) 735 for (pouch = pl->inv; pouch; pouch = pouch->below)
804 { 736 {
805 if (pouch->type == CONTAINER && QUERY_FLAG (pouch, FLAG_APPLIED) && pouch->race && strstr (pouch->race, "gold")) 737 if (pouch->type == CONTAINER && pouch->flag [FLAG_APPLIED] && pouch->race.contains (shstr_gold))
806 { 738 {
807 int w = at->clone.weight * (100 - pouch->stats.Str) / 100; 739 int w = at->weight * (100 - pouch->stats.Str) / 100;
808 int n = amount / at->clone.value; 740 int n = amount / at->value;
809 741
810 if (w == 0) 742 if (w == 0)
811 w = 1; /* Prevent divide by zero */ 743 w = 1; /* Prevent divide by zero */
812 744
813 if (n > 0 && (!pouch->weight_limit || pouch->carrying + w <= pouch->weight_limit)) 745 if (n > 0 && (!pouch->weight_limit || pouch->carrying + w <= pouch->weight_limit))
814 { 746 {
815 if (pouch->weight_limit && (pouch->weight_limit - pouch->carrying) / w < n) 747 if (pouch->weight_limit && (pouch->weight_limit - pouch->carrying) / w < n)
816 n = (pouch->weight_limit - pouch->carrying) / w; 748 n = (pouch->weight_limit - pouch->carrying) / w;
817 749
818 tmp = arch_to_object (at); 750 object *tmp = at->instance ();
819 tmp->nrof = n; 751 tmp->nrof = n;
820 amount -= tmp->nrof * tmp->value; 752 amount -= tmp->nrof * tmp->value;
821 tmp = insert_ob_in_ob (tmp, pouch); 753 pouch->insert (tmp);
822 esrv_send_item (pl, tmp);
823 esrv_send_item (pl, pouch);
824 esrv_update_item (UPD_WEIGHT, pl, pouch);
825 esrv_send_item (pl, pl);
826 } 754 }
827 } 755 }
828 } 756 }
829 757
830 if (amount / at->clone.value > 0) 758 if (amount / at->value > 0)
831 { 759 {
832 tmp = arch_to_object (at); 760 object *tmp = at->instance ();
833 tmp->nrof = amount / tmp->value; 761 tmp->nrof = amount / tmp->value;
834 amount -= tmp->nrof * tmp->value; 762 amount -= tmp->nrof * tmp->value;
835 tmp = insert_ob_in_ob (tmp, pl); 763 pl->insert (tmp);
836 esrv_send_item (pl, tmp);
837 esrv_send_item (pl, pl);
838 } 764 }
839 } 765 }
840 } 766 }
841 767
842 if (amount != 0) 768 if (amount != 0)
845 771
846/* elmex: this is for the bank plugin :( */ 772/* elmex: this is for the bank plugin :( */
847sint64 773sint64
848pay_player_arch (object *pl, const char *arch, sint64 amount) 774pay_player_arch (object *pl, const char *arch, sint64 amount)
849{ 775{
850 archetype *at = archetype::find (arch);
851 object *tmp = NULL;
852
853 if (at == NULL)
854 return 0;
855
856 if (amount > 0) 776 if (amount)
857 { 777 {
858 tmp = arch_to_object (at); 778 object *ob = archetype::get (arch);
779
780 if (!ob)
781 return 0;
782
859 tmp->nrof = amount; 783 ob->nrof = amount;
860 tmp = insert_ob_in_ob (tmp, pl); 784 pl->insert (ob);
861 esrv_send_item (pl, tmp);
862 esrv_send_item (pl, pl);
863 } 785 }
864 786
865 return 1; 787 return 1;
866} 788}
867 789
870 * buy item. 792 * buy item.
871 * 793 *
872 * Modified to fill available race: gold containers before dumping 794 * Modified to fill available race: gold containers before dumping
873 * remaining coins in character's inventory. 795 * remaining coins in character's inventory.
874 */ 796 */
875void 797bool
876sell_item (object *op, object *pl) 798sell_item (object *op, object *pl)
877{ 799{
878 sint64 amount = query_cost (op, pl, F_SELL | F_SHOP), extra_gain; 800 sint64 amount = query_cost (op, pl, F_SELL | F_SHOP), extra_gain;
879 801
880 if (pl == NULL || pl->type != PLAYER) 802 if (pl == NULL || pl->type != PLAYER)
881 { 803 {
882 LOG (llevDebug, "Object other than player tried to sell something.\n"); 804 LOG (llevDebug, "Object other than player tried to sell something.\n");
883 return; 805 return false;
884 } 806 }
885 807
886 op->custom_name = 0; 808 op->custom_name = 0;
887 809
888 if (!amount) 810 if (!amount)
889 { 811 {
890 new_draw_info_format (NDI_UNIQUE, 0, pl, "We're not interested in %s.", query_name (op)); 812 new_draw_info_format (NDI_UNIQUE, 0, pl, "We're not interested in %s.",
891 813 query_name (op));
892 /* Even if the character doesn't get anything for it, it may still be 814 // elmex: change: the player now gets the item back if the shop is not
893 * worth something. If so, make it unpaid 815 // interested in it.
894 */
895 if (op->value)
896 {
897 SET_FLAG (op, FLAG_UNPAID);
898 SET_FLAG (op, FLAG_PLAYER_SOLD);
899 }
900
901 identify (op);
902 return; 816 return false;
903 } 817 }
904 818
905 /* We compare the price with the one for a player 819 /* We compare the price with the one for a player
906 * without bargaining skill. 820 * without bargaining skill.
907 * This determins the amount of exp (if any) gained for bargaining. 821 * This determins the amount of exp (if any) gained for bargaining.
908 * exp/10 -> 1 for each gold coin 822 * exp/10 -> 1 for each gold coin
909 */ 823 */
910 extra_gain = amount - query_cost (op, pl, F_SELL | F_NO_BARGAIN | F_SHOP); 824 extra_gain = amount - query_cost (op, pl, F_SELL | F_NO_BARGAIN | F_SHOP);
911 825
912 if (extra_gain > 0) 826 if (extra_gain > 0)
913 change_exp (pl, extra_gain / 10, "bargaining", SK_EXP_NONE); 827 change_exp (pl, extra_gain / 10, shstr_bargaining, SK_EXP_NONE);
914 828
915 pay_player (pl, amount); 829 pay_player (pl, amount);
916 830
917 new_draw_info_format (NDI_UNIQUE, 0, pl, "You receive %s for %s.", query_cost_string (op, pl, F_SELL | F_SHOP), query_name (op)); 831 new_draw_info_format (NDI_UNIQUE, 0, pl, "You receive %s for %s.",
832 query_cost_string (op, pl, F_SELL | F_SHOP), query_name (op));
833 pl->play_sound (sound_find ("shop_sell"));
918 834
919 SET_FLAG (op, FLAG_UNPAID); 835 op->set_flag (FLAG_UNPAID);
920 identify (op); 836 identify (op);
921}
922 837
838 return true;
839}
923 840
924/* returns a double that is the ratio of the price that a shop will offer for 841/* returns a double that is the ratio of the price that a shop will offer for
925 * item based on the shops specialisation. Does not take account of greed, 842 * item based on the shops specialisation. Does not take account of greed,
926 * returned value is between (2*SPECIALISATION_EFFECT-1) and 1 and in any 843 * returned value is between SPECIALISATION_EFFECT and 1.
927 * event is never less than 0.1 (calling functions divide by it)
928 */ 844 */
929static double 845static double
930shop_specialisation_ratio (const object *item, const maptile *map) 846shop_specialisation_ratio (const object *item, const maptile *map)
931{ 847{
932 shopitems *items = map->shopitems; 848 shopitems *items = map->shopitems;
933 double ratio = SPECIALISATION_EFFECT, likedness = 0.001; 849 int likedness = 0;
934 int i; 850 int i;
935 851
936 if (item == NULL) 852 if (item == NULL)
937 { 853 {
938 LOG (llevError, "shop_specialisation_ratio: passed a NULL item for map %s\n", map->path); 854 LOG (llevError, "shop_specialisation_ratio: passed a NULL item for map %s\n", &map->path);
939 return 0; 855 return 0;
940 } 856 }
941 857
942 if (!item->type) 858 if (!item->type)
943 { 859 {
944 LOG (llevError, "shop_specialisation_ratio: passed an item with an invalid type\n"); 860 LOG (llevError, "shop_specialisation_ratio: passed an item with an invalid type: %s\n", item->debug_desc ());
945 /* 861 /*
946 * I'm not really sure what the /right/ thing to do here is, these types of 862 * I'm not really sure what the /right/ thing to do here is, these types of
947 * item shouldn't exist anyway, but returning the ratio is probably the best bet.." 863 * item shouldn't exist anyway, but returning the ratio is probably the best bet.."
948 */ 864 */
949 return ratio; 865 return SPECIALISATION_EFFECT;
950 } 866 }
951 867
952 if (map->shopitems) 868 if (map->shopitems)
953 {
954 for (i = 0; i < items[0].index; i++) 869 for (i = 0; i < items[0].index; i++)
955 if (items[i].typenum == item->type || (!items[i].typenum && likedness == 0.001)) 870 if (items[i].typenum == item->type || (!items[i].typenum && !likedness))
956 likedness = items[i].strength / 100.0; 871 likedness = items[i].strength;
957 }
958 872
959 if (likedness > 1.0) 873 if (likedness > 100)
960 { /* someone has been rather silly with the map headers. */ 874 { /* someone has been rather silly with the map headers. */
961 LOG (llevDebug, "shop_specialisation ratio: item type %d on map %s is above 100%%\n", item->type, map->path); 875 LOG (llevDebug, "shop_specialisation ratio: item %s on map %s is above 100%%\n", item->debug_desc (), &map->path);
962 likedness = 1.0; 876 likedness = 100;
963 } 877 }
964 878
965 if (likedness < -1.0) 879 if (likedness < -100)
966 { 880 {
967 LOG (llevDebug, "shop_specialisation ratio: item type %d on map %s is below -100%%\n", item->type, map->path); 881 LOG (llevDebug, "shop_specialisation ratio: item %s on map %s is below -100%%\n", item->debug_desc (), &map->path);
968 likedness = -1.0; 882 likedness = -100;
969 } 883 }
970 884
971 ratio = ratio + (1.0 - ratio) * likedness; 885 return lerp (double (likedness), -100., 100., SPECIALISATION_EFFECT, 1.);
972
973 if (ratio <= 0.1)
974 ratio = 0.1; /* if the ratio were much lower than this, we would get silly prices */
975
976 return ratio;
977} 886}
978 887
979/*returns the greed of the shop on map, or 1 if it isn't specified. */ 888/*returns the greed of the shop on map, or 1 if it isn't specified. */
980static double 889static double
981shop_greed (const maptile *map) 890shop_greed (const maptile *map)
982{ 891{
983 double greed = 1.0;
984
985 if (map->shopgreed)
986 return map->shopgreed; 892 return map->shopgreed
987 return greed; 893 ? map->shopgreed
894 : 1.;
988} 895}
989 896
990/* Returns a double based on how much the shopkeeper approves of the player. 897/* Returns a double based on how much the shopkeeper approves of the player.
991 * this is based on the race of the shopkeeper and that of the player. 898 * this is based on the race of the shopkeeper and that of the player.
992 */ 899 */
993double 900double
994shopkeeper_approval (const maptile *map, const object *player) 901shopkeeper_approval (const maptile *map, const object *player)
995{ 902{
996 double approval = 1.0; 903 return map->shoprace && player->race != map->shoprace
997 904 ? DISLIKE_RATIO
998 if (map->shoprace) 905 : 1.;
999 {
1000 approval = NEUTRAL_RATIO;
1001 if (player->race && !strcmp (player->race, map->shoprace))
1002 approval = 1.0;
1003 }
1004
1005 return approval;
1006} 906}
1007 907
1008/* limit the value of items based on the wealth of the shop. If the item is close 908/* limit the value of items based on the wealth of the shop. If the item is close
1009 * to the maximum value a shop will offer, we start to reduce it, if the item is 909 * to the maximum value a shop will offer, we start to reduce it, if the item is
1010 * below the minimum value the shop is prepared to trade in, then we don't 910 * below the minimum value the shop is prepared to trade in, then we don't
1011 * want it and offer nothing. If it isn't a shop, check whether we should do generic 911 * want it and offer nothing. If it isn't a shop, check whether we should do generic
1012 * value reduction. 912 * value reduction.
1013 * 913 *
1014 */ 914 */
1015static sint64 915static sint64
1016value_limit (sint64 val, int quantity, const object *who, int isshop) 916value_limit (sint64 val, int quantity, const object *who, int isshop)
1017{ 917{
1018 sint64 newval, unit_price, tmpshopmax; 918 sint64 newval, unit_price, tmpshopmax;
1040 tmpshopmax = map->shopmax ? map->shopmax : 100000; // 20 royalties default 940 tmpshopmax = map->shopmax ? map->shopmax : 100000; // 20 royalties default
1041 941
1042 if (map->shopmin && unit_price < map->shopmin) 942 if (map->shopmin && unit_price < map->shopmin)
1043 return 0; 943 return 0;
1044 else if (unit_price > tmpshopmax / 2) 944 else if (unit_price > tmpshopmax / 2)
1045 newval = MIN ((tmpshopmax / 2) + isqrt (unit_price - tmpshopmax / 2), tmpshopmax); 945 newval = min ((tmpshopmax / 2) + isqrt (unit_price - tmpshopmax / 2), tmpshopmax);
1046 else 946 else
1047 newval = unit_price; 947 newval = unit_price;
1048 } 948 }
1049 949
1050 newval *= quantity; 950 newval *= quantity;
1054 954
1055/* gives a desciption of the shop on their current map to the player op. */ 955/* gives a desciption of the shop on their current map to the player op. */
1056int 956int
1057describe_shop (const object *op) 957describe_shop (const object *op)
1058{ 958{
959 dynbuf_text buf;
1059 maptile *map = op->map; 960 maptile *map = op->map;
1060 961
1061 /*shopitems *items=map->shopitems; */ 962 /*shopitems *items=map->shopitems; */
1062 int pos = 0, i; 963 int i;
1063 double opinion = 0; 964 double opinion = 0;
1064 char tmp[MAX_BUF] = "\0";
1065 965
1066 if (op->type != PLAYER) 966 if (op->type != PLAYER)
1067 return 0; 967 return 0;
1068 968
1069 /*check if there is a shop specified for this map */ 969 /*check if there is a shop specified for this map */
1070 if (map->shopitems || map->shopgreed || map->shoprace || map->shopmin || map->shopmax) 970 if (map->shopitems || map->shopgreed || map->shoprace || map->shopmin || map->shopmax)
1071 { 971 {
1072 new_draw_info (NDI_UNIQUE, 0, op, "From looking at the nearby shop you determine that it trades in:"); 972 buf << "From looking at the nearby shop you determine that it trades in ";
973 int lastcomma = 0, prevcomma = 0;
1073 974
1074 if (map->shopitems) 975 if (map->shopitems)
1075 for (i = 0; i < map->shopitems[0].index; i++) 976 for (i = 0; i < map->shopitems[0].index; i++)
1076 if (map->shopitems[i].name && map->shopitems[i].strength > 10) 977 if (map->shopitems[i].name && map->shopitems[i].strength > 10)
1077 { 978 {
1078 snprintf (tmp + pos, sizeof (tmp) - pos, "%s, ", map->shopitems[i].name_pl); 979 buf << map->shopitems[i].name_pl;
1079 pos += strlen (tmp + pos); 980 prevcomma = lastcomma;
981 lastcomma = buf.size (); // remember offset
982 buf << ", ";
1080 } 983 }
1081 984
1082 if (!pos) 985 if (lastcomma)
986 {
987 buf.splice (lastcomma, 2);
988
989 if (prevcomma)
990 buf.splice (prevcomma, 2, " and ");
991 }
992 else
1083 strcat (tmp, "a little of everything."); 993 buf << "a little of everything.";
1084 994
1085 /* format the string into a list */ 995 buf << ".\n\n";
1086 make_list_like (tmp);
1087 new_draw_info_format (NDI_UNIQUE, 0, op, "%s", tmp);
1088 996
1089 if (map->shopmax) 997 if (map->shopmax)
1090 new_draw_info_format (NDI_UNIQUE, 0, op, "It won't trade for items above %s.", cost_string_from_value (map->shopmax, 0)); 998 buf << "It won't trade for items above " << cost_string_from_value (map->shopmax, 0) << ".\n\n";
1091 999
1092 if (map->shopmin) 1000 if (map->shopmin)
1093 new_draw_info_format (NDI_UNIQUE, 0, op, "It won't trade in items worth less than %s.", cost_string_from_value (map->shopmin, 0)); 1001 buf << "It won't trade in items worth less than " << cost_string_from_value (map->shopmin, 0) << ".\n\n";
1094 1002
1095 if (map->shopgreed) 1003 if (map->shopgreed)
1096 { 1004 {
1097 if (map->shopgreed > 2.0) 1005 if (map->shopgreed > 2.0)
1098 new_draw_info (NDI_UNIQUE, 0, op, "It tends to overcharge massively."); 1006 buf << "It tends to overcharge massively.\n\n";
1099 else if (map->shopgreed > 1.5) 1007 else if (map->shopgreed > 1.5)
1100 new_draw_info (NDI_UNIQUE, 0, op, "It tends to overcharge substantially."); 1008 buf << "It tends to overcharge substantially.\n\n";
1101 else if (map->shopgreed > 1.1) 1009 else if (map->shopgreed > 1.1)
1102 new_draw_info (NDI_UNIQUE, 0, op, "It tends to overcharge slightly."); 1010 buf << "It tends to overcharge slightly.\n\n";
1103 else if (map->shopgreed < 0.9) 1011 else if (map->shopgreed < 0.9)
1104 new_draw_info (NDI_UNIQUE, 0, op, "It tends to undercharge."); 1012 buf << "It tends to undercharge.\n\n";
1105 } 1013 }
1106 1014
1107 if (map->shoprace) 1015 if (map->shoprace)
1108 { 1016 {
1109 opinion = shopkeeper_approval (map, op); 1017 opinion = shopkeeper_approval (map, op);
1018
1110 if (opinion > 0.8) 1019 if (opinion > 0.8)
1111 new_draw_info (NDI_UNIQUE, 0, op, "You think the shopkeeper likes you."); 1020 buf << "You think the shopkeeper likes you.\n\n";
1112 else if (opinion > 0.5) 1021 else if (opinion > 0.5)
1113 new_draw_info (NDI_UNIQUE, 0, op, "The shopkeeper seems unconcerned by you."); 1022 buf << "The shopkeeper seems unconcerned by you.\n\n";
1114 else 1023 else
1115 new_draw_info (NDI_UNIQUE, 0, op, "The shopkeeper seems to have taken a dislike to you."); 1024 buf << "The shopkeeper seems to have taken a dislike to you.\n\n";
1116 } 1025 }
1117 } 1026 }
1118 else 1027 else
1119 new_draw_info (NDI_UNIQUE, 0, op, "There is no shop nearby."); 1028 buf << "There is no shop nearby.\n\n";
1029
1030 op->contr->infobox (MSG_CHANNEL ("shopinfo"), buf);
1120 1031
1121 return 1; 1032 return 1;
1122} 1033}
1123 1034
1124struct shopinv 1035struct shopinv
1125{ 1036{
1126 char *item_sort; 1037 char *item_sort;
1127 char *item_real; 1038 char *item_real;
1039 sint64 value;
1128 uint16 type; 1040 uint16 type;
1129 uint32 nrof; 1041 uint32 nrof;
1130}; 1042};
1131 1043
1132/* There are a lot fo extra casts in here just to suppress warnings - it 1044/* There are a lot fo extra casts in here just to suppress warnings - it
1139{ 1051{
1140 shopinv *s1 = (shopinv *) a1, *s2 = (shopinv *) a2; 1052 shopinv *s1 = (shopinv *) a1, *s2 = (shopinv *) a2;
1141 1053
1142 if (s1->type < s2->type) 1054 if (s1->type < s2->type)
1143 return -1; 1055 return -1;
1056
1144 if (s1->type > s2->type) 1057 if (s1->type > s2->type)
1145 return 1; 1058 return 1;
1146 1059
1147 /* the type is the same (what atoi gets), so do a strcasecmp to sort 1060 /* the type is the same (what atoi gets), so do a strcasecmp to sort
1148 * via alphabetical order 1061 * via alphabetical order
1151} 1064}
1152 1065
1153static void 1066static void
1154add_shop_item (object *tmp, shopinv * items, int *numitems, int *numallocated) 1067add_shop_item (object *tmp, shopinv * items, int *numitems, int *numallocated)
1155{ 1068{
1156#if 0
1157 char buf[MAX_BUF];
1158#endif
1159 /* clear unpaid flag so that doesn't come up in query 1069 /* clear unpaid flag so that doesn't come up in query
1160 * string. We clear nrof so that we can better sort 1070 * string. We clear nrof so that we can better sort
1161 * the object names. 1071 * the object names.
1162 */ 1072 */
1163 1073
1164 CLEAR_FLAG (tmp, FLAG_UNPAID); 1074 tmp->clr_flag (FLAG_UNPAID);
1165 items[*numitems].nrof = tmp->nrof; 1075 items[*numitems].nrof = tmp->nrof;
1166 /* Non mergable items have nrof of 0, but count them as one 1076 /* Non mergable items have nrof of 0, but count them as one
1167 * so the display is properly. 1077 * so the display is properly.
1168 */ 1078 */
1169 if (tmp->nrof == 0) 1079 if (tmp->nrof == 0)
1170 items[*numitems].nrof++; 1080 items[*numitems].nrof++;
1171 items[*numitems].type = tmp->type; 1081 items[*numitems].type = tmp->type;
1082
1083 items[*numitems].value = tmp->value;
1172 1084
1173 switch (tmp->type) 1085 switch (tmp->type)
1174 { 1086 {
1175#if 0 1087#if 0
1176 case BOOTS: 1088 case BOOTS:
1188#endif 1100#endif
1189 1101
1190 default: 1102 default:
1191 items[*numitems].item_sort = strdup (query_base_name (tmp, 0)); 1103 items[*numitems].item_sort = strdup (query_base_name (tmp, 0));
1192 items[*numitems].item_real = strdup (query_base_name (tmp, 1)); 1104 items[*numitems].item_real = strdup (query_base_name (tmp, 1));
1105 items[*numitems].value += tmp->value;
1193 (*numitems)++; 1106 (*numitems)++;
1194 break; 1107 break;
1195 } 1108 }
1196 SET_FLAG (tmp, FLAG_UNPAID); 1109
1110 tmp->set_flag (FLAG_UNPAID);
1197} 1111}
1198 1112
1199void 1113void
1200shop_listing (object *op) 1114shop_listing (object *sign, object *op)
1201{ 1115{
1202 int i, j, numitems = 0, numallocated = 0, nx, ny; 1116 int i, j, x1, x2, y1, y2;
1203 char *map_mark = (char *) calloc (MAGIC_MAP_SIZE * MAGIC_MAP_SIZE, 1); 1117 const char *shop_coords = sign->kv [shstr_shop_coords];
1204 object *stack; 1118 object *stack;
1205 shopinv *items; 1119 shopinv *items;
1206 1120
1207 /* Should never happen, but just in case a monster does apply a sign */ 1121 /* Should never happen, but just in case a monster does apply a sign */
1208 if (op->type != PLAYER) 1122 if (!op->is_player ())
1209 return; 1123 return;
1210 1124
1211 new_draw_info (NDI_UNIQUE, 0, op, "\nThe shop contains:"); 1125 dynbuf_text &buf = msg_dynbuf; buf.clear ();
1212 1126
1213 magic_mapping_mark (op, map_mark, 3); 1127 if (!(shop_coords && sscanf (shop_coords, "%d,%d,%d,%d", &x1, &y1, &x2, &y2)))
1214 items = (shopinv *) malloc (40 * sizeof (shopinv)); 1128 {
1129 x1 = 0;
1130 y1 = 0;
1131 x2 = op->map->width - 1;
1132 y2 = op->map->height - 1;
1133 }
1134
1215 numallocated = 40; 1135 int numallocated = 40;
1136 int numitems = 0;
1137 items = (shopinv *)malloc (sizeof (shopinv) * numallocated);
1216 1138
1217 /* Find all the appropriate items */ 1139 /* Find all the appropriate items */
1218 for (i = 0; i < MAP_WIDTH (op->map); i++) 1140 for (i = x1; i <= x2; i++)
1219 { 1141 for (j = y1; j < y2; j++)
1220 for (j = 0; j < MAP_HEIGHT (op->map); j++) 1142 if (op->map->is_in_shop (i, j))
1221 {
1222 /* magic map code now centers the map on the object at MAGIC_MAP_HALF.
1223 * 1143 {
1224 */ 1144 stack = GET_MAP_OB (op->map, i, j);
1225 nx = i - op->x + MAGIC_MAP_HALF;
1226 ny = j - op->y + MAGIC_MAP_HALF;
1227 /* unlikely, but really big shops could run into this issue */
1228 if (nx < 0 || ny < 0 || nx > MAGIC_MAP_SIZE || ny > MAGIC_MAP_SIZE)
1229 continue;
1230 1145
1231 if (map_mark[nx + MAGIC_MAP_SIZE * ny] & FACE_FLOOR) 1146 while (stack)
1232 { 1147 {
1233 stack = get_map_ob (op->map, i, j); 1148 if (stack->flag [FLAG_UNPAID])
1234
1235 while (stack)
1236 { 1149 {
1237 if (QUERY_FLAG (stack, FLAG_UNPAID))
1238 {
1239 if (numitems == numallocated) 1150 if (numitems == numallocated)
1240 {
1241 items = (shopinv *) realloc (items, sizeof (shopinv) * (numallocated + 10)); 1151 items = (shopinv *)realloc (items, sizeof (shopinv) * (numallocated *= 2));
1242 numallocated += 10; 1152
1243 }
1244 add_shop_item (stack, items, &numitems, &numallocated); 1153 add_shop_item (stack, items, &numitems, &numallocated);
1245 }
1246 stack = stack->above;
1247 } 1154 }
1155
1156 stack = stack->above;
1248 } 1157 }
1249 } 1158 }
1250 }
1251 1159
1252 free (map_mark); 1160 buf << (numitems ? "T<This shop contains:>\n\n"
1253 1161 : "T<This shop is currently empty.>");
1254 if (numitems == 0)
1255 {
1256 new_draw_info (NDI_UNIQUE, 0, op, "The shop is currently empty.\n");
1257 free (items);
1258 return;
1259 }
1260 1162
1261 qsort (items, numitems, sizeof (shopinv), (int (*)(const void *, const void *)) shop_sort); 1163 qsort (items, numitems, sizeof (shopinv), (int (*)(const void *, const void *)) shop_sort);
1262 1164
1263 for (i = 0; i < numitems; i++) 1165 for (i = 0; i < numitems; i++)
1264 { 1166 {
1265 /* Collapse items of the same name together */ 1167 /* Collapse items of the same name together */
1266 if ((i + 1) < numitems && !strcmp (items[i].item_real, items[i + 1].item_real)) 1168 if ((i + 1) < numitems && !strcmp (items[i].item_real, items[i + 1].item_real))
1267 {
1268 items[i + 1].nrof += items[i].nrof; 1169 items[i + 1].nrof += items[i].nrof;
1269 free (items[i].item_sort);
1270 free (items[i].item_real);
1271 }
1272 else 1170 else
1273 { 1171 {
1274 new_draw_info_format (NDI_UNIQUE, 0, op, "%d %s", 1172 buf.printf (
1275 items[i].nrof ? items[i].nrof : 1, items[i].nrof == 1 ? items[i].item_sort : items[i].item_real); 1173 " %4d %s\n for %s\n",
1174 items[i].nrof ? items[i].nrof : 1,
1175 items[i].nrof == 1 ? items[i].item_sort : items[i].item_real,
1176 cost_string_from_value (items[i].value, op->flag [FLAG_WIZ] ? 0 : 1));
1177 }
1178
1276 free (items[i].item_sort); 1179 free (items[i].item_sort);
1277 free (items[i].item_real); 1180 free (items[i].item_real);
1278 }
1279 } 1181 }
1182
1183 op->contr->infobox (MSG_CHANNEL ("shopitems"), buf);
1184
1280 free (items); 1185 free (items);
1281} 1186}
1282 1187
1283/* elmex: this function checks whether the object is in a shop */ 1188/* elmex: this function checks whether we are in a shop or not
1189 - change 2007-11-26: enhanced the O(n) case by stopping at the first
1190 floor tile. this possibly will make map bugs where shopfloors are above
1191 floors more obvious.
1192*/
1284bool 1193bool
1285is_in_shop (object *o) 1194maptile::is_in_shop (int x, int y) const
1286{ 1195{
1287 if (!o->map)
1288 return false;
1289
1290 return is_in_shop (o->map, o->x, o->y);
1291}
1292
1293/* elmex: this function checks whether we are in a shop or not */
1294bool
1295is_in_shop (maptile *map, int x, int y)
1296{
1297 for (object *floor = get_map_ob (map, x, y); floor; floor = floor->above) 1196 for (object *floor = at (x, y).bot; floor; floor = floor->above)
1197 if (floor->flag [FLAG_IS_FLOOR])
1298 if (floor->type == SHOP_FLOOR) 1198 return floor->type == SHOP_FLOOR;
1299 return true;
1300 1199
1301 return false; 1200 return false;
1302} 1201}
1202

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines