ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/shop.C
Revision: 1.17
Committed: Thu Sep 14 23:13:49 2006 UTC (17 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.16: +1 -2 lines
Log Message:
replace was_destroyed by much simpler and less expensive ->destroyed,
which is valid, as objetc pointers are now reliable.

File Contents

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