summaryrefslogtreecommitdiff
path: root/src/map/storage.cpp
blob: 7d543436bb6956a0457eb8c2f1af31999f2ca860 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
// Copyright (c) Athena Dev Teams - Licensed under GNU GPL
// For more information, see LICENCE in the main folder

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "../common/db.hpp"
#include "../common/nullpo.hpp"

#include "storage.hpp"
#include "chrif.hpp"
#include "itemdb.hpp"
#include "clif.hpp"
#include "intif.hpp"
#include "pc.hpp"
#include "guild.hpp"
#include "battle.hpp"
#include "atcommand.hpp"

static struct dbt *storage_db;
static struct dbt *guild_storage_db;

/*==========================================
 * 倉庫内アイテムソート
 *------------------------------------------
 */
int storage_comp_item (const void *_i1, const void *_i2)
{
    struct item *i1 = (struct item *) _i1;
    struct item *i2 = (struct item *) _i2;

    if (i1->nameid == i2->nameid)
        return 0;
    else if (!(i1->nameid) || !(i1->amount))
        return 1;
    else if (!(i2->nameid) || !(i2->amount))
        return -1;
    return i1->nameid - i2->nameid;
}

static void guild_storage_db_final (db_key_t key, db_val_t data, va_list ap)
{
    struct guild_storage *gstor = (struct guild_storage *) data;
    free (gstor);
}

static void storage_db_final (db_key_t key, db_val_t data, va_list ap)
{
    struct storage *stor = (struct storage *) data;
    free (stor);
}

void sortage_sortitem (struct storage *stor)
{
    nullpo_retv (stor);
    qsort (stor->storage_, MAX_STORAGE, sizeof (struct item),
           storage_comp_item);
}

void sortage_gsortitem (struct guild_storage *gstor)
{
    nullpo_retv (gstor);
    qsort (gstor->storage_, MAX_GUILD_STORAGE, sizeof (struct item),
           storage_comp_item);
}

/*==========================================
 * 初期化とか
 *------------------------------------------
 */
int do_init_storage (void)      // map.c::do_init()から呼ばれる
{
    storage_db = numdb_init ();
    guild_storage_db = numdb_init ();
    return 1;
}

void do_final_storage (void)    // by [MC Cameri]
{
    if (storage_db)
        numdb_final (storage_db, storage_db_final);
    if (guild_storage_db)
        numdb_final (guild_storage_db, guild_storage_db_final);
}

static void storage_reconnect_sub (db_key_t key, db_val_t data, va_list ap)
{                               //Parses storage and saves 'dirty' ones upon reconnect. [Skotlex]
    int  type = va_arg (ap, int);
    if (type)
    {                           //Guild Storage
        struct guild_storage *stor = (struct guild_storage *) data;
        if (stor->dirty && stor->storage_status == 0)   //Save closed storages.
            storage_guild_storagesave (0, stor->guild_id, 0);
    }
    else
    {                           //Account Storage
        struct storage *stor = (struct storage *) data;
        if (stor->dirty && stor->storage_status == 0)   //Save closed storages.
            storage_storage_save (stor->account_id, stor->dirty == 2 ? 1 : 0);
    }
}

//Function to be invoked upon server reconnection to char. To save all 'dirty' storages [Skotlex
void do_reconnect_storage (void)
{
    numdb_foreach (storage_db, storage_reconnect_sub, 0);
    numdb_foreach (guild_storage_db, storage_reconnect_sub, 1);
}

struct storage *account2storage (int account_id)
{
    struct storage *stor =
        (struct storage *) numdb_search (storage_db, account_id);
    if (stor == NULL)
    {
        CREATE (stor, struct storage, 1);
        stor->account_id = account_id;
        numdb_insert (storage_db, stor->account_id, stor);
    }
    return stor;
}

// Just to ask storage, without creation
struct storage *account2storage2 (int account_id)
{
    return (struct storage *) numdb_search (storage_db, account_id);
}

int storage_delete (int account_id)
{
    struct storage *stor =
        (struct storage *) numdb_search (storage_db, account_id);
    if (stor)
    {
        numdb_erase (storage_db, account_id);
        free (stor);
    }
    return 0;
}

/*==========================================
 * カプラ倉庫を開く
 *------------------------------------------
 */
int storage_storageopen (struct map_session_data *sd)
{
    struct storage *stor;
    nullpo_retr (0, sd);

    if (sd->state.storage_flag)
        return 1;               //Already open?

    if ((stor =
         (struct storage *) numdb_search (storage_db,
                                          sd->status.account_id)) == NULL)
    {                           //Request storage.
        intif_request_storage (sd->status.account_id);
        return 1;
    }

    if (stor->storage_status)
        return 1;               //Already open/player already has it open...

    stor->storage_status = 1;
    sd->state.storage_flag = 1;
    clif_storageitemlist (sd, stor);
    clif_storageequiplist (sd, stor);
    clif_updatestorageamount (sd, stor);
    return 0;
}

/*==========================================
 * Internal add-item function.
 *------------------------------------------
 */
static int storage_additem (struct map_session_data *sd, struct storage *stor,
                            struct item *item_data, int amount)
{
    struct item_data *data;
    int  i;

    if (item_data->nameid <= 0 || amount <= 0)
        return 1;

    data = itemdb_search (item_data->nameid);

    if (!itemdb_isequip2 (data))
    {                           //Stackable
        for (i = 0; i < MAX_STORAGE; i++)
        {
            if (compare_item (&stor->storage_[i], item_data))
            {
                if (amount > MAX_AMOUNT - stor->storage_[i].amount)
                    return 1;
                stor->storage_[i].amount += amount;
                clif_storageitemadded (sd, stor, i, amount);
                stor->dirty = 1;
                return 0;
            }
        }
    }
    //Add item
    for (i = 0; i < MAX_STORAGE && stor->storage_[i].nameid; i++);

    if (i >= MAX_STORAGE)
        return 1;

    memcpy (&stor->storage_[i], item_data, sizeof (stor->storage_[0]));
    stor->storage_[i].amount = amount;
    stor->storage_amount++;
    clif_storageitemadded (sd, stor, i, amount);
    clif_updatestorageamount (sd, stor);
    stor->dirty = 1;
    return 0;
}

/*==========================================
 * Internal del-item function
 *------------------------------------------
 */
static int storage_delitem (struct map_session_data *sd, struct storage *stor,
                            int n, int amount)
{

    if (stor->storage_[n].nameid == 0 || stor->storage_[n].amount < amount)
        return 1;

    stor->storage_[n].amount -= amount;
    if (stor->storage_[n].amount == 0)
    {
        memset (&stor->storage_[n], 0, sizeof (stor->storage_[0]));
        stor->storage_amount--;
        clif_updatestorageamount (sd, stor);
    }
    clif_storageitemremoved (sd, n, amount);

    stor->dirty = 1;
    return 0;
}

/*==========================================
 * Add an item to the storage from the inventory.
 *------------------------------------------
 */
int storage_storageadd (struct map_session_data *sd, int index, int amount)
{
    struct storage *stor;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = account2storage2 (sd->status.account_id));

    if ((stor->storage_amount > MAX_STORAGE) || !stor->storage_status)
        return 0;               // storage full / storage closed

    if (index < 0 || index >= MAX_INVENTORY)
        return 0;

    if (sd->status.inventory[index].nameid <= 0)
        return 0;               //No item on that spot

    if (amount < 1 || amount > sd->status.inventory[index].amount)
        return 0;

//  log_tostorage(sd, index, 0);
    if (storage_additem (sd, stor, &sd->status.inventory[index], amount) == 0)
    {
        // remove item from inventory
        pc_unequipinvyitem (sd, index, 0);
        pc_delitem (sd, index, amount, 0);
    }

    return 1;
}

/*==========================================
 * Retrieve an item from the storage.
 *------------------------------------------
 */
int storage_storageget (struct map_session_data *sd, int index, int amount)
{
    struct storage *stor;
    int  flag;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = account2storage2 (sd->status.account_id));

    if (index < 0 || index >= MAX_STORAGE)
        return 0;

    if (stor->storage_[index].nameid <= 0)
        return 0;               //Nothing there

    if (amount < 1 || amount > stor->storage_[index].amount)
        return 0;

    if ((flag = pc_additem (sd, &stor->storage_[index], amount)) == 0)
        storage_delitem (sd, stor, index, amount);
    else
        clif_additem (sd, 0, 0, flag);
//  log_fromstorage(sd, index, 0);
    return 1;
}

/*==========================================
 * Move an item from cart to storage.
 *------------------------------------------
 */
int storage_storageaddfromcart (struct map_session_data *sd, int index,
                                int amount)
{
    struct storage *stor;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = account2storage2 (sd->status.account_id));

    if (stor->storage_amount > MAX_STORAGE || !stor->storage_status)
        return 0;               // storage full / storage closed

    if (index < 0 || index >= MAX_CART)
        return 0;

    if (sd->status.cart[index].nameid <= 0)
        return 0;               //No item there.

    if (amount < 1 || amount > sd->status.cart[index].amount)
        return 0;

    if (storage_additem (sd, stor, &sd->status.cart[index], amount) == 0)
        pc_cart_delitem (sd, index, amount, 0);

    return 1;
}

/*==========================================
 * Get from Storage to the Cart
 *------------------------------------------
 */
int storage_storagegettocart (struct map_session_data *sd, int index,
                              int amount)
{
    struct storage *stor;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = account2storage2 (sd->status.account_id));

    if (!stor->storage_status)
        return 0;

    if (index < 0 || index >= MAX_STORAGE)
        return 0;

    if (stor->storage_[index].nameid <= 0)
        return 0;               //Nothing there.

    if (amount < 1 || amount > stor->storage_[index].amount)
        return 0;

    if (pc_cart_additem (sd, &stor->storage_[index], amount) == 0)
        storage_delitem (sd, stor, index, amount);

    return 1;
}

/*==========================================
 * Modified By Valaris to save upon closing [massdriller]
 *------------------------------------------
 */
int storage_storageclose (struct map_session_data *sd)
{
    struct storage *stor;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = account2storage2 (sd->status.account_id));

    clif_storageclose (sd);
    if (stor->storage_status)
    {
        if (save_settings & 4)
            chrif_save (sd);    //Invokes the storage saving as well.
        else
            storage_storage_save (sd->status.account_id, 0);
    }
    stor->storage_status = 0;
    sd->state.storage_flag = 0;

    if (sd->npc_flags.storage)
    {
        sd->npc_flags.storage = 0;
        map_scriptcont (sd, sd->npc_id);
    }

    return 0;
}

/*==========================================
 * When quitting the game.
 *------------------------------------------
 */
int storage_storage_quit (struct map_session_data *sd)
{
    struct storage *stor;

    nullpo_retr (0, sd);

    stor = account2storage2 (sd->status.account_id);
    if (stor)
    {
        chrif_save (sd);        //Invokes the storage saving as well.
        stor->storage_status = 0;
        sd->state.storage_flag = 0;
    }

    return 0;
}

void storage_storage_dirty (struct map_session_data *sd)
{
    struct storage *stor;

    stor = account2storage2 (sd->status.account_id);

    if (stor)
        stor->dirty = 1;
}

int storage_storage_save (int account_id, int final)
{
    struct storage *stor;

    stor = account2storage2 (account_id);
    if (!stor)
        return 0;

    if (stor->dirty)
    {
        if (final)
        {
            stor->dirty = 2;
            stor->storage_status = 0;   //To prevent further manipulation of it.
        }
        intif_send_storage (stor);
        return 1;
    }
    if (final)
    {                           //Clear storage from memory. Nothing to save.
        storage_delete (account_id);
        return 1;
    }

    return 0;
}

//Ack from Char-server indicating the storage was saved. [Skotlex]
int storage_storage_saved (int account_id)
{
    struct storage *stor;

    if ((stor = account2storage2 (account_id)) != NULL)
    {                           //Only mark it clean if it's not in use. [Skotlex]
        if (stor->dirty && stor->storage_status == 0)
        {
            stor->dirty = 0;
            sortage_sortitem (stor);
        }
        return 1;
    }
    return 0;
}

struct guild_storage *guild2storage (int guild_id)
{
    struct guild_storage *gs = NULL;
    if (guild_search (guild_id) != NULL)
    {
        gs = (struct guild_storage *) numdb_search (guild_storage_db,
                                                    guild_id);
        if (gs == NULL)
        {
            CREATE (gs, struct guild_storage, 1);
            gs->guild_id = guild_id;
            numdb_insert (guild_storage_db, gs->guild_id, gs);
        }
    }
    return gs;
}

static
struct guild_storage *guild2storage2 (int guild_id)
{                               //For just locating a storage without creating one. [Skotlex]
    return (struct guild_storage *) numdb_search (guild_storage_db, guild_id);
}

int guild_storage_delete (int guild_id)
{
    struct guild_storage *gstor =
        (struct guild_storage *) numdb_search (guild_storage_db, guild_id);
    if (gstor)
    {
        numdb_erase (guild_storage_db, guild_id);
        free (gstor);
    }
    return 0;
}

int storage_guild_storageopen (struct map_session_data *sd)
{
    struct guild_storage *gstor;

    nullpo_retr (0, sd);

    if (sd->status.guild_id <= 0)
        return 2;

    if (sd->state.storage_flag)
        return 1;               //Can't open both storages at a time.

    if ((gstor = guild2storage2 (sd->status.guild_id)) == NULL)
    {
        intif_request_guild_storage (sd->status.account_id,
                                     sd->status.guild_id);
        return 0;
    }
    if (gstor->storage_status)
        return 1;

    gstor->storage_status = 1;
    sd->state.storage_flag = 2;
    clif_guildstorageitemlist (sd, gstor);
    clif_guildstorageequiplist (sd, gstor);
    clif_updateguildstorageamount (sd, gstor);
    return 0;
}

int guild_storage_additem (struct map_session_data *sd,
                           struct guild_storage *stor, struct item *item_data,
                           int amount)
{
    struct item_data *data;
    int  i;

    nullpo_retr (1, sd);
    nullpo_retr (1, stor);
    nullpo_retr (1, item_data);
    nullpo_retr (1, data = itemdb_search (item_data->nameid));

    if (item_data->nameid <= 0 || amount <= 0)
        return 1;

    if (!itemdb_isequip2 (data))
    {                           //Stackable
        for (i = 0; i < MAX_GUILD_STORAGE; i++)
        {
            if (compare_item (&stor->storage_[i], item_data))
            {
                if (stor->storage_[i].amount + amount > MAX_AMOUNT)
                    return 1;
                stor->storage_[i].amount += amount;
                clif_guildstorageitemadded (sd, stor, i, amount);
                stor->dirty = 1;
                return 0;
            }
        }
    }
    //Add item
    for (i = 0; i < MAX_GUILD_STORAGE && stor->storage_[i].nameid; i++);

    if (i >= MAX_GUILD_STORAGE)
        return 1;

    memcpy (&stor->storage_[i], item_data, sizeof (stor->storage_[0]));
    stor->storage_[i].amount = amount;
    stor->storage_amount++;
    clif_guildstorageitemadded (sd, stor, i, amount);
    clif_updateguildstorageamount (sd, stor);
    stor->dirty = 1;
    return 0;
}

int guild_storage_delitem (struct map_session_data *sd,
                           struct guild_storage *stor, int n, int amount)
{
    nullpo_retr (1, sd);
    nullpo_retr (1, stor);

    if (stor->storage_[n].nameid == 0 || stor->storage_[n].amount < amount)
        return 1;

    stor->storage_[n].amount -= amount;
    if (stor->storage_[n].amount == 0)
    {
        memset (&stor->storage_[n], 0, sizeof (stor->storage_[0]));
        stor->storage_amount--;
        clif_updateguildstorageamount (sd, stor);
    }
    clif_storageitemremoved (sd, n, amount);
    stor->dirty = 1;
    return 0;
}

int storage_guild_storageadd (struct map_session_data *sd, int index,
                              int amount)
{
    struct guild_storage *stor;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = guild2storage2 (sd->status.guild_id));

    if (!stor->storage_status || stor->storage_amount > MAX_GUILD_STORAGE)
        return 0;

    if (index < 0 || index >= MAX_INVENTORY)
        return 0;

    if (sd->status.inventory[index].nameid <= 0)
        return 0;

    if (amount < 1 || amount > sd->status.inventory[index].amount)
        return 0;

//  log_tostorage(sd, index, 1);
    if (guild_storage_additem (sd, stor, &sd->status.inventory[index], amount)
        == 0)
        pc_delitem (sd, index, amount, 0);

    return 1;
}

int storage_guild_storageget (struct map_session_data *sd, int index,
                              int amount)
{
    struct guild_storage *stor;
    int  flag;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = guild2storage2 (sd->status.guild_id));

    if (!stor->storage_status)
        return 0;

    if (index < 0 || index >= MAX_GUILD_STORAGE)
        return 0;

    if (stor->storage_[index].nameid <= 0)
        return 0;

    if (amount < 1 || amount > stor->storage_[index].amount)
        return 0;

    if ((flag = pc_additem (sd, &stor->storage_[index], amount)) == 0)
        guild_storage_delitem (sd, stor, index, amount);
    else
        clif_additem (sd, 0, 0, flag);
//  log_fromstorage(sd, index, 1);

    return 0;
}

int storage_guild_storageaddfromcart (struct map_session_data *sd, int index,
                                      int amount)
{
    struct guild_storage *stor;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = guild2storage2 (sd->status.guild_id));

    if (!stor->storage_status || stor->storage_amount > MAX_GUILD_STORAGE)
        return 0;

    if (index < 0 || index >= MAX_CART)
        return 0;

    if (sd->status.cart[index].nameid <= 0)
        return 0;

    if (amount < 1 || amount > sd->status.cart[index].amount)
        return 0;

    if (guild_storage_additem (sd, stor, &sd->status.cart[index], amount) ==
        0)
        pc_cart_delitem (sd, index, amount, 0);

    return 1;
}

int storage_guild_storagegettocart (struct map_session_data *sd, int index,
                                    int amount)
{
    struct guild_storage *stor;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = guild2storage2 (sd->status.guild_id));

    if (!stor->storage_status)
        return 0;

    if (index < 0 || index >= MAX_GUILD_STORAGE)
        return 0;

    if (stor->storage_[index].nameid <= 0)
        return 0;

    if (amount < 1 || amount > stor->storage_[index].amount)
        return 0;

    if (pc_cart_additem (sd, &stor->storage_[index], amount) == 0)
        guild_storage_delitem (sd, stor, index, amount);

    return 1;
}

int storage_guild_storagesave (int account_id, int guild_id, int flag)
{
    struct guild_storage *stor = guild2storage2 (guild_id);

    if (stor)
    {
        if (flag)               //Char quitting, close it.
            stor->storage_status = 0;
        if (stor->dirty)
            intif_send_guild_storage (account_id, stor);
        return 1;
    }
    return 0;
}

int storage_guild_storagesaved (int guild_id)
{
    struct guild_storage *stor;

    if ((stor = guild2storage2 (guild_id)) != NULL)
    {
        if (stor->dirty && stor->storage_status == 0)
        {                       //Storage has been correctly saved.
            stor->dirty = 0;
            sortage_gsortitem (stor);
        }
        return 1;
    }
    return 0;
}

int storage_guild_storageclose (struct map_session_data *sd)
{
    struct guild_storage *stor;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = guild2storage2 (sd->status.guild_id));

    clif_storageclose (sd);
    chrif_save (sd);            //This one also saves the storage. [Skotlex]

    stor->storage_status = 0;
    sd->state.storage_flag = 0;

    return 0;
}

int storage_guild_storage_quit (struct map_session_data *sd, int flag)
{
    struct guild_storage *stor;

    nullpo_retr (0, sd);
    nullpo_retr (0, stor = guild2storage2 (sd->status.guild_id));

    if (flag)
    {                           //Only during a guild break flag is 1 (don't save storage)
        sd->state.storage_flag = 0;
        stor->storage_status = 0;
        clif_storageclose (sd);
        if (save_settings & 4)
            chrif_save (sd);
        return 0;
    }

    if (stor->storage_status)
    {
        if (save_settings & 4)
            chrif_save (sd);
        else
            storage_guild_storagesave (sd->status.account_id,
                                       sd->status.guild_id, 1);
    }
    sd->state.storage_flag = 0;
    stor->storage_status = 0;

    return 0;
}