File: dbg-objstat.cc

package info (click to toggle)
crawl 2%3A0.34.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 100,188 kB
  • sloc: cpp: 363,709; ansic: 27,765; javascript: 9,516; python: 8,463; perl: 3,293; java: 3,132; xml: 2,380; makefile: 1,835; sh: 611; objc: 250; cs: 15; sed: 9; lisp: 3
file content (1460 lines) | stat: -rw-r--r-- 41,068 bytes parent folder | download | duplicates (2)
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
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
/**
 * @file
 * @brief Objstat: monster and item generation statistics
**/

#include "AppHdr.h"

#include "dbg-objstat.h"

#include <cerrno>
#include <cmath>
#include <sstream>

#include "artefact.h"
#include "branch.h"
#include "corpse.h"
#include "dbg-maps.h"
#include "dbg-util.h"
#include "dungeon.h"
#include "end.h"
#include "env.h"
#include "feature.h"
#include "initfile.h"
#include "invent.h"
#include "item-name.h"
#include "item-prop.h"
#include "item-prop-enum.h"
#include "item-status-flag-type.h"
#include "items.h"
#include "libutil.h"
#include "maps.h"
#include "message.h"
#include "mon-pick.h"
#include "mon-util.h"
#include "ng-init.h"
#include "shopping.h"
#include "spl-book.h"
#include "state.h"
#include "stepdown.h"
#include "stringutil.h"
#include "syscalls.h"
#include "tag-version.h"
#include "version.h"

#ifdef DEBUG_STATISTICS

#define STAT_PRECISION 2

const static char *stat_out_prefix = "objstat_";
const static char *stat_out_ext = ".tsv";
static FILE *stat_outf;

enum item_base_type
{
    ITEM_GOLD,
    ITEM_SCROLLS,
    ITEM_POTIONS,
    ITEM_WANDS,
    ITEM_WEAPONS,
    ITEM_MISSILES,
    ITEM_STAVES,
    ITEM_ARMOUR,
    ITEM_JEWELLERY,
    ITEM_TALISMANS,
    ITEM_MISCELLANY,
    ITEM_SPELLBOOKS,
    ITEM_MANUALS,
    ITEM_GEMS,
    ITEM_BAUBLES,
    ITEM_PARCHMENTS,
    NUM_ITEM_BASE_TYPES,
    ITEM_IGNORE = 100,
};

// Holds item data needed for item statistics and maps values from item_def
// where changes are needed.
class objstat_item
{
public:
    objstat_item(item_base_type ct, int st) : base_type(ct), sub_type(st)
    {
    }

    objstat_item(const item_def &item);

    item_base_type base_type;
    int sub_type;
    int quantity;
    int plus;
    int brand;
    vector<spell_type> spells;

    bool in_vault;
    bool is_arte;
    bool in_shop;
    bool held_mons;
};

static level_id all_lev(NUM_BRANCHES, -1);
static set<level_id> stat_levels;
static int num_branches = 0;
static int num_levels = 0;

// Ex: item_recs[level][item.base_type][item.sub_type][field]
static map<level_id, map<item_base_type, map<int, map<string, int> > > >
       item_recs;
static map<item_base_type, vector<string> > item_fields = {
    { ITEM_GOLD,
        { "Num", "NumVault", "NumMons", "NumMin", "NumMax", "NumSD" }
    },
    { ITEM_SCROLLS,
        { "Num", "NumVault", "NumShop", "NumMons", "NumMin", "NumMax", "NumSD" }
    },
    { ITEM_POTIONS,
        { "Num", "NumVault", "NumShop", "NumMons", "NumMin", "NumMax", "NumSD" }
    },
    { ITEM_WANDS,
        { "Num", "NumVault", "NumShop", "NumMons", "NumMin", "NumMax", "NumSD",
            "Chrg", "ChrgVault", "ChrgShop", "ChrgMons" },
    },
    { ITEM_WEAPONS,
        { "Num", "NumBrand", "NumArte", "NumVault", "NumShop", "NumMons",
            "NumMin", "NumMax", "NumSD", "Ench", "EnchBrand", "EnchArte",
            "EnchVault", "EnchShop", "EnchMons" },
    },
    { ITEM_MISSILES,
        { "Num", "NumBrand", "NumVault", "NumShop", "NumMons", "Num",
            "NumMin", "NumMax", "NumSD" },
    },
    { ITEM_STAVES,
        { "Num", "NumVault", "NumShop", "NumMons", "Num", "NumMin", "NumMax",
            "NumSD" },
    },
    { ITEM_ARMOUR,
        { "Num", "NumBrand", "NumArte", "NumVault", "NumShop", "NumMons",
            "NumMin", "NumMax", "NumSD", "Ench", "EnchBrand", "EnchArte",
            "EnchVault", "EnchShop", "EnchMons" }
    },
    { ITEM_JEWELLERY,
        { "Num", "NumArte", "NumVault", "NumShop", "NumMons", "NumMin",
            "NumMax", "NumSD" },
    },
    { ITEM_TALISMANS,
        { "Num", "NumArte", "NumVault", "NumShop", "NumMin", "NumMax", "NumSD" },
    },
    { ITEM_MISCELLANY,
        { "Num", "NumVault", "NumShop", "NumMin", "NumMax", "NumSD" },
    },
    { ITEM_SPELLBOOKS,
        { "Num", "NumVault", "NumShop", "NumMin", "NumMax", "NumSD" },
    },
    { ITEM_MANUALS,
        { "Num", "NumVault", "NumShop", "NumMin", "NumMax", "NumSD" },
    },
    { ITEM_GEMS,
        { "Num", "NumVault", "NumShop", "NumMin", "NumMax", "NumSD" },
    },
    { ITEM_BAUBLES,
        { "Num", "NumVault", "NumShop", "NumMin", "NumMax", "NumSD" },
    },
    { ITEM_PARCHMENTS,
        { "Num", "NumVault", "NumShop", "NumMin", "NumMax", "NumSD" },
    },
};

enum stat_category_type
{
    CATEGORY_ALL,      // regardless of below categories
    CATEGORY_ARTEFACT, // is artefact
    CATEGORY_VAULT,    // in a vault
    CATEGORY_SHOP,     // in a shop
    CATEGORY_MONSTER,  // held by a monster
    NUM_STAT_CATEGORIES
};

// Ex: brand_recs[level][item.base_type][item.sub_type][CATEGORY_ALL][brand];
static map<level_id, map<item_base_type, map<int, map<stat_category_type,
            map<int, int> > > > > brand_recs;
static map<item_base_type, vector<string> > brand_fields = {
    {ITEM_WEAPONS,
        { "Brands", "BrandsArte", "BrandsVault", "BrandsShop", "BrandsMons" } },
    {ITEM_ARMOUR,
        {"Brands", "BrandsArte", "BrandsVault", "BrandsShop", "BrandsMons" } },
    {ITEM_MISSILES, { "Brands", "BrandsVault", "BrandsShop", "BrandsMons" } },
};

static set<monster_type> objstat_monsters;
// Ex: monster_recs[level][mc]["Num"]
static map<level_id, map<monster_type, map <string, int> > > monster_recs;
static const vector<string> monster_fields = {
    "Num", "NumVault", "NumInBranch", "NumMin", "NumMax", "NumSD", "NumOOD",
    "MonsHD", "MonsHP", "MonsXP", "TotalXP", "TotalXPVault",
    "RelativeDepth", "DistanceOOD",
};

static set<dungeon_feature_type> objstat_features;
typedef map<dungeon_feature_type, map <string, int> > feature_stats;
static map<level_id, feature_stats> feature_recs;
static const vector<string> feature_fields = {
    "Num", "NumVault", "NumMin", "NumMax", "NumSD",
};

static set<spell_type> objstat_spells;
// Ex: spell_recs[level][spell]["Num"]
static map<level_id, map<spell_type, map<string, int> > > spell_recs;
static const vector<string> spell_fields = {
    "Num", "NumVault", "NumShop", "NumArte", "NumMin", "NumMax", "NumSD",
    "Chance", "ChanceVault", "ChanceShop", "ChanceArte"
};

static item_base_type _item_base_type(const item_def &item)
{
    item_base_type type;
    switch (item.base_type)
    {
    case OBJ_TALISMANS:
        type = ITEM_TALISMANS;
        break;
    case OBJ_MISCELLANY:
        type = ITEM_MISCELLANY;
        break;
    case OBJ_BOOKS:
        if (item.sub_type == BOOK_PARCHMENT)
            type = ITEM_PARCHMENTS;
        else if (item.sub_type == BOOK_MANUAL)
            type = ITEM_MANUALS;
        else
            type = ITEM_SPELLBOOKS;
        break;
    case OBJ_GOLD:
        type = ITEM_GOLD;
        break;
    case OBJ_SCROLLS:
        type = ITEM_SCROLLS;
        break;
    case OBJ_POTIONS:
        type = ITEM_POTIONS;
        break;
    case OBJ_WANDS:
        type = ITEM_WANDS;
        break;
    case OBJ_WEAPONS:
        type = ITEM_WEAPONS;
        break;
    case OBJ_MISSILES:
        type = ITEM_MISSILES;
        break;
    case OBJ_STAVES:
        type = ITEM_STAVES;
        break;
    case OBJ_ARMOUR:
        type = ITEM_ARMOUR;
        break;
    case OBJ_JEWELLERY:
        type = ITEM_JEWELLERY;
        break;
    case OBJ_GEMS:
        type = ITEM_GEMS;
        break;
    case OBJ_BAUBLES:
        type = ITEM_BAUBLES;
        break;
    default:
        type = ITEM_IGNORE;
        break;
    }
    return type;
}

static object_class_type _item_orig_base_type(item_base_type base_type)
{
    object_class_type type;
    switch (base_type)
    {
    case ITEM_GOLD:
        type = OBJ_GOLD;
        break;
    case ITEM_SCROLLS:
        type = OBJ_SCROLLS;
        break;
    case ITEM_POTIONS:
        type = OBJ_POTIONS;
        break;
    case ITEM_WANDS:
        type = OBJ_WANDS;
        break;
    case ITEM_WEAPONS:
        type = OBJ_WEAPONS;
        break;
    case ITEM_MISSILES:
        type = OBJ_MISSILES;
        break;
    case ITEM_STAVES:
        type = OBJ_STAVES;
        break;
    case ITEM_ARMOUR:
        type = OBJ_ARMOUR;
        break;
    case ITEM_JEWELLERY:
        type = OBJ_JEWELLERY;
        break;
    case ITEM_TALISMANS:
        type = OBJ_TALISMANS;
        break;
    case ITEM_MISCELLANY:
        type = OBJ_MISCELLANY;
        break;
    case ITEM_MANUALS:
    case ITEM_SPELLBOOKS:
    case ITEM_PARCHMENTS:
        type = OBJ_BOOKS;
        break;
    case ITEM_GEMS:
        type = OBJ_GEMS;
        break;
    case ITEM_BAUBLES:
        type = OBJ_BAUBLES;
        break;
    default:
        type = OBJ_UNASSIGNED;
        break;
    }
    return type;
}

static string _item_class_name(item_base_type base_type)
{
    switch (base_type)
    {
    case ITEM_WEAPONS:
        return "Weapons";
    case ITEM_SPELLBOOKS:
        return "Spellbooks";
    case ITEM_MANUALS:
        return "Manuals";
    case ITEM_PARCHMENTS:
        return "Parchments";
    default:
        return item_class_name(_item_orig_base_type(base_type));
    }
}

static int _item_orig_sub_type(item_base_type base_type, int sub_type)
{
    if (base_type == ITEM_MANUALS)
        return BOOK_MANUAL;
    else if (base_type == ITEM_PARCHMENTS)
        return BOOK_PARCHMENT;
    return sub_type;
}

static int _item_max_sub_type(item_base_type base_type)
{
    if (base_type == ITEM_MANUALS)
        return NUM_SKILLS;
    else if (base_type == ITEM_PARCHMENTS)
        return NUM_SPELLS;
    return get_max_subtype(_item_orig_base_type(base_type));
}

static bool _item_tracks_artefact(item_base_type base_type)
{
    switch (base_type)
    {
    case ITEM_WEAPONS:
    case ITEM_ARMOUR:
    case ITEM_JEWELLERY:
    case ITEM_SPELLBOOKS:
    case ITEM_TALISMANS:
        return true;
    default:
        return false;
    }
}

static bool _item_tracks_plus(item_base_type base_type)
{
    switch (base_type)
    {
    case ITEM_WEAPONS:
    case ITEM_ARMOUR:
    case ITEM_JEWELLERY:
    case ITEM_WANDS:
        return true;
    default:
        return false;
    }
}

static bool _item_tracks_brand(item_base_type base_type)
{
    switch (base_type)
    {
    case ITEM_WEAPONS:
    case ITEM_ARMOUR:
    case ITEM_MISSILES:
        return true;
    default:
        return false;
    }
}

static bool _item_tracks_monster(item_base_type base_type)
{
    switch (base_type)
    {
    case ITEM_MISCELLANY:
    case ITEM_SPELLBOOKS:
    case ITEM_MANUALS:
    case ITEM_PARCHMENTS:
        return false;
    default:
        return true;
    }
}

static bool _item_tracks_shop(item_base_type base_type)
{
    return base_type != ITEM_GOLD;
}

static item_def _dummy_item(item_base_type base_type, int sub_type,
        int brand = 0)
{
    item_def dummy_item;

    dummy_item.base_type = _item_orig_base_type(base_type);
    if (sub_type == _item_max_sub_type(base_type))
        dummy_item.sub_type = 0;
    else
        dummy_item.sub_type = _item_orig_sub_type(base_type, sub_type);

    dummy_item.brand = brand;

    if (base_type == ITEM_MANUALS)
        dummy_item.skill = static_cast<skill_type>(sub_type);

    dummy_item.quantity = 1;

    return dummy_item;
}

static string _brand_name(item_base_type base_type, int sub_type, int brand)
{
    if (!brand)
        return "none";

    string brand_name = "";
    const item_def dummy_item = _dummy_item(base_type, sub_type, brand);
    switch (base_type)
    {
    case ITEM_WEAPONS:
        brand_name = weapon_brand_name(dummy_item, true);
        break;
    case ITEM_ARMOUR:
        brand_name = armour_ego_name(dummy_item, true);
        break;
    case ITEM_MISSILES:
        brand_name = missile_brand_name(dummy_item, MBN_TERSE);
        break;
    default:
        break;
    }
    return brand_name;
}

static string _item_name(item_base_type base_type, int sub_type)
{
    if (sub_type == _item_max_sub_type(base_type))
        return "All " + _item_class_name(base_type);
    if (base_type == ITEM_SPELLBOOKS)
    {
        const int orig_type = _item_orig_sub_type(base_type, sub_type);
        if (orig_type == BOOK_RANDART_LEVEL)
            return "Level Artefact Book";
        if (orig_type == BOOK_RANDART_LEVEL)
            return "Theme Artefact Book";
    }

    const item_def item = _dummy_item(base_type, sub_type);
    auto desc_type = DESC_DBNAME;
    if (base_type == ITEM_MANUALS)
        desc_type = DESC_QUALNAME;
    return item.name(desc_type, true, true);
}

static string _level_name(const level_id &lev)
{
    if (lev.branch == NUM_BRANCHES)
        return "AllLevels";
    if (lev.depth == -1 || brdepth[lev.branch] == 1)
        return lev.describe(false, false);
    if (brdepth[lev.branch] < 10)
        return lev.describe(false, true);
    return make_stringf("%s:%02d", lev.describe(false, false).c_str(),
                        lev.depth);
}

objstat_item::objstat_item(const item_def &item)
{
    base_type = _item_base_type(item);

    if (base_type == ITEM_MANUALS)
        sub_type = item.skill;
    else
        sub_type = item.sub_type;

    quantity = item.quantity;
    plus = item.plus;

    is_arte = is_artefact(item);

    // The item's position won't be valid for these two first cases, as it's
    // set to a special indicator value.
    if (item.holding_monster())
    {
        in_vault = map_masked(item.holding_monster()->pos(), MMT_VAULT);
        held_mons = true;
        in_shop = false;
    }
    else if (is_shop_item(item))
    {
        // XXX I don't think shops can place outside of vaults, but it would be
        // nice to find the item's true location, so we wouldn't have to
        // assume. -gammafunk
        in_vault = true;
        held_mons = false;
        in_shop = true;
    }
    else
    {
        in_vault = map_masked(item.pos, MMT_VAULT);
        held_mons = false;
        in_shop = false;
    }

    brand = item.brand;
    if (base_type == ITEM_MISSILES)
        brand = get_ammo_brand(item);
    else if (base_type == ITEM_WEAPONS)
        brand = get_weapon_brand(item);
    else if (base_type == ITEM_ARMOUR)
        brand = get_armour_ego_type(item);

    if (base_type == ITEM_SPELLBOOKS)
        spells = spells_in_book(item);
}

static void _init_monsters()
{
    for (int i = 0; i < NUM_MONSTERS; i++)
    {
        const monster_type mc = static_cast<monster_type>(i);

        if (mons_class_gives_xp(mc) && !mons_class_flag(mc, M_CANT_SPAWN))
            objstat_monsters.insert(mc);
    }
    // For the all-monsters summary
    objstat_monsters.insert(NUM_MONSTERS);
}

static void _init_features()
{
    for (int i = 0; i < NUM_FEATURES; i++)
    {
        const dungeon_feature_type feat = static_cast<dungeon_feature_type>(i);

        if (is_valid_feature_type(feat))
            objstat_features.insert(feat);
    }
}

static void _init_spells()
{
    for (int i = 0; i < NUM_SPELLS; i++)
    {
        const auto spell = static_cast<spell_type>(i);

        if (is_valid_spell(spell) && is_player_book_spell(spell))
            objstat_spells.insert(spell);
    }
    // For the all-spells summary
    objstat_spells.insert(NUM_SPELLS);
}

// Initialize field data that needs non-default initialization (i.e. to
// something other than zero). Handling this in one pass creates a lot of
// potentially unused entries, but it's better than trying to guard against
// default initialization everywhere. For the rest of the fields, it's fine to
// default initialize to zero whenever they're first referenced.
static void _init_stats()
{
    for (const auto &level : stat_levels)
    {
        for (int i = 0; i < NUM_ITEM_BASE_TYPES; i++)
        {
            const item_base_type base_type = static_cast<item_base_type>(i);

            int num_entries = _item_max_sub_type(base_type);
            // An additional entry for the across-subtype summary if there's
            // more than one subtype.
            num_entries += num_entries > 1;
            for (int  j = 0; j < num_entries; j++)
            {
                item_recs[level][base_type][j]["NumMin"] = INT_MAX;
                item_recs[level][base_type][j]["NumMax"] = -1;
            }
        }

        for (auto mc : objstat_monsters)
        {
            monster_recs[level][mc]["NumMin"] = INT_MAX;
            monster_recs[level][mc]["NumMax"] = -1;
        }

        for (auto feat : objstat_features)
        {
            feature_recs[level][feat]["NumMin"] = INT_MAX;
            feature_recs[level][feat]["NumMax"] = -1;
        }

        for (auto spell : objstat_spells)
        {
            spell_recs[level][spell]["NumMin"] = INT_MAX;
            spell_recs[level][spell]["NumMax"] = -1;
        }
    }
}

static void _record_item_stat(const objstat_item &item, string field, int value)
{
    const level_id cur_lev = level_id::current();

    bool need_all = false;
    if (stat_levels.count(all_lev))
        need_all = true;

    const level_id br_lev = level_id(cur_lev.branch, -1);
    bool need_branch = false;
    if (stat_levels.count(br_lev))
        need_branch = true;

    item_recs[cur_lev][item.base_type][item.sub_type][field] += value;

    if (need_all)
        item_recs[all_lev][item.base_type][item.sub_type][field] += value;

    if (need_branch)
        item_recs[br_lev][item.base_type][item.sub_type][field] += value;

    // Record a class summary if more than one subtype exists.
    const int class_sum = _item_max_sub_type(item.base_type);
    if (class_sum > 1)
    {
        item_recs[cur_lev][item.base_type][class_sum][field] += value;

        if (need_all)
            item_recs[all_lev][item.base_type][class_sum][field] += value;

        if (need_branch)
            item_recs[br_lev][item.base_type][class_sum][field] += value;
    }
}

static void _record_item_brand_category(const objstat_item &item,
        stat_category_type cat)
{
    const level_id cur_lev = level_id::current();

    bool need_all = false;
    if (stat_levels.count(all_lev))
        need_all = true;

    const level_id br_lev = level_id(cur_lev.branch, -1);
    bool need_branch = false;
    if (stat_levels.count(br_lev))
        need_branch = true;

    brand_recs[cur_lev][item.base_type][item.sub_type][cat][item.brand] +=
        item.quantity;

    if (need_all)
    {
        brand_recs[all_lev][item.base_type][item.sub_type][cat][item.brand] +=
            item.quantity;
    }

    if (need_branch)
    {
        brand_recs[br_lev][item.base_type][item.sub_type][cat][item.brand] +=
            item.quantity;
    }

    // Record a class summary if more than one subtype exists.
    const int cls = _item_max_sub_type(item.base_type);
    if (cls > 1)
    {
        brand_recs[cur_lev][item.base_type][cls][cat][item.brand] +=
            item.quantity;

        if (need_all)
        {
            brand_recs[all_lev][item.base_type][cls][cat][item.brand] +=
                item.quantity;
        }

        if (need_branch)
        {
            brand_recs[br_lev][item.base_type][cls][cat][item.brand] +=
                item.quantity;
        }
    }
}

static void _record_item_brand(const objstat_item &item)
{
    ASSERT(_item_tracks_brand(item.base_type));

    _record_item_brand_category(item, CATEGORY_ALL);

    if (item.in_vault)
        _record_item_brand_category(item, CATEGORY_VAULT);

    if (item.is_arte)
        _record_item_brand_category(item, CATEGORY_ARTEFACT);

    if (item.in_shop)
        _record_item_brand_category(item, CATEGORY_SHOP);

    if (item.held_mons)
        _record_item_brand_category(item, CATEGORY_MONSTER);
}

static void _record_spell_stat(spell_type spell, string field, int value)
{
    const level_id cur_lev = level_id::current();

    bool need_all = false;
    if (stat_levels.count(all_lev))
        need_all = true;

    const level_id br_lev = level_id(cur_lev.branch, -1);
    bool need_branch = false;
    if (stat_levels.count(br_lev))
        need_branch = true;

    spell_recs[cur_lev][spell][field] += value;
    spell_recs[cur_lev][NUM_SPELLS][field] += value;

    if (need_all)
    {
        spell_recs[all_lev][spell][field] += value;
        spell_recs[all_lev][NUM_SPELLS][field] += value;
    }

    if (need_branch)
    {
        spell_recs[br_lev][spell][field] += value;
        spell_recs[br_lev][NUM_SPELLS][field] += value;
    }
}

static void _record_book_spells(const objstat_item &item)
{
    for (auto spell : item.spells)
    {
        _record_spell_stat(spell, "Num", 1);
        _record_spell_stat(spell, "NumForIter", 1);

        if (item.in_vault)
        {
            _record_spell_stat(spell, "NumVault", 1);
            _record_spell_stat(spell, "NumForIterVault", 1);
        }

        if (item.is_arte)
        {
            _record_spell_stat(spell, "NumArte", 1);
            _record_spell_stat(spell, "NumForIterArte", 1);
        }

        if (item.in_shop)
        {
            _record_spell_stat(spell, "NumShop", 1);
            _record_spell_stat(spell, "NumForIterShop", 1);
        }
    }
}

static void _record_parchment_spells(const objstat_item &item)
{
    if (item.base_type == ITEM_PARCHMENTS)
    {
        spell_type spell = static_cast<spell_type>(item.plus);
        _record_spell_stat(spell, "Num", 1);
        _record_spell_stat(spell, "NumForIter", 1);

        if (item.in_vault)
        {
            _record_spell_stat(spell, "NumVault", 1);
            _record_spell_stat(spell, "NumForIterVault", 1);
        }

        if (item.is_arte)
        {
            _record_spell_stat(spell, "NumArte", 1);
            _record_spell_stat(spell, "NumForIterArte", 1);
        }

        if (item.in_shop)
        {
            _record_spell_stat(spell, "NumShop", 1);
            _record_spell_stat(spell, "NumForIterShop", 1);
        }
    }
}

void objstat_record_item(const item_def &item)
{
    const objstat_item objs_item(item);

    // Just in case, don't count mimics as items; these are converted
    // explicitly in mg_do_build_level().
    if (item.flags & ISFLAG_MIMIC || objs_item.base_type == ITEM_IGNORE)
        return;

    const bool track_plus = _item_tracks_plus(objs_item.base_type);
    string plus_field = "Ench";
    if (objs_item.base_type == ITEM_WANDS)
        plus_field = "Chrg";

    _record_item_stat(objs_item, "Num", objs_item.quantity);
    _record_item_stat(objs_item, "NumForIter", objs_item.quantity);

    if (track_plus)
        _record_item_stat(objs_item, plus_field, objs_item.plus);

    if (objs_item.in_vault)
    {
        _record_item_stat(objs_item, "NumVault", objs_item.quantity);

        if (track_plus)
            _record_item_stat(objs_item, plus_field + "Vault", objs_item.plus);
    }

    if (_item_tracks_artefact(objs_item.base_type) && objs_item.is_arte)
    {
        _record_item_stat(objs_item, "NumArte", objs_item.quantity);

        if (track_plus)
            _record_item_stat(objs_item, plus_field + "Arte", objs_item.plus);
    }

    if (_item_tracks_brand(objs_item.base_type) && objs_item.brand > 0)
    {
        _record_item_stat(objs_item, "NumBrand", objs_item.quantity);

        if (track_plus)
            _record_item_stat(objs_item, plus_field + "Brand", objs_item.plus);

        _record_item_brand(objs_item);
    }

    if (_item_tracks_shop(objs_item.base_type) && objs_item.in_shop)
    {
        _record_item_stat(objs_item, "NumShop", objs_item.quantity);

        if (track_plus)
            _record_item_stat(objs_item, plus_field + "Shop", objs_item.plus);
    }

    if (_item_tracks_monster(objs_item.base_type) && objs_item.held_mons)
    {
        _record_item_stat(objs_item, "NumMons", objs_item.quantity);

        if (track_plus)
            _record_item_stat(objs_item, plus_field + "Mons", objs_item.plus);
    }

    _record_book_spells(objs_item);
    _record_parchment_spells(objs_item);
}

static void _record_monster_stat(monster_type mc, string field, int value)
{
    const level_id cur_lev = level_id::current();

    bool need_all = false;
    if (stat_levels.count(all_lev))
        need_all = true;

    const level_id br_lev = level_id(cur_lev.branch, -1);
    bool need_branch = false;
    if (stat_levels.count(br_lev))
        need_branch = true;

    monster_recs[cur_lev][mc][field] += value;
    monster_recs[cur_lev][NUM_MONSTERS][field] += value;

    if (need_all)
    {
        monster_recs[all_lev][mc][field] += value;
        monster_recs[all_lev][NUM_MONSTERS][field] += value;
    }

    if (need_branch)
    {
        monster_recs[br_lev][mc][field] += value;
        monster_recs[br_lev][NUM_MONSTERS][field] += value;
    }
}

void objstat_record_monster(const monster *mons)
{
    monster_type type;
    if (mons->has_ench(ENCH_GLOWING_SHAPESHIFTER))
        type = MONS_GLOWING_SHAPESHIFTER;
    else if (mons->has_ench(ENCH_SHAPESHIFTER))
        type = MONS_SHAPESHIFTER;
    else
        type = mons->type;

    if (!objstat_monsters.count(type))
        return;

    _record_monster_stat(type, "Num", 1);
    _record_monster_stat(type, "NumForIter", 1);
    _record_monster_stat(type, "MonsXP", exp_value(*mons));
    _record_monster_stat(type, "TotalXP", exp_value(*mons));
    _record_monster_stat(type, "MonsHP", mons->max_hit_points);
    _record_monster_stat(type, "MonsHD", mons->get_experience_level());

    if (!mons->originating_map().empty())
    {
        _record_monster_stat(type, "NumVault", 1);
        _record_monster_stat(type, "TotalXPVault", exp_value(*mons));
    }

    const level_id cur_lev = level_id::current();
    const int avg_depth = monster_pop_depth_avg(cur_lev.branch, type);
    if (avg_depth >= 0)
    {
        _record_monster_stat(type, "NumInBranch", 1);
        // Relative depth from average placement. This doesn't directly provide
        // OoD info,because you'd also need the ranges for that, but it gives
        // a reasonably close guide. Higher values are more under depth.
        // Don't record if monster is not a branch native.
        _record_monster_stat(type, "RelativeDepth", cur_lev.depth - avg_depth);
        const int ood = monster_how_ood(cur_lev.branch, cur_lev.depth, type);
        _record_monster_stat(type, "DistanceOOD", ood);
        if (ood > 0)
            _record_monster_stat(type, "NumOOD", 1);
    }
}

static void _record_feature_stat(dungeon_feature_type feat_type, string field,
        int value)
{
    const level_id cur_lev = level_id::current();

    bool need_all = false;
    if (stat_levels.count(all_lev))
        need_all = true;

    const level_id br_lev = level_id(cur_lev.branch, -1);
    bool need_branch = false;
    if (stat_levels.count(br_lev))
        need_branch = true;

    feature_recs[cur_lev][feat_type][field] += value;

    if (need_all)
        feature_recs[all_lev][feat_type][field] += value;

    if (need_branch)
        feature_recs[br_lev][feat_type][field] += value;
}

void objstat_record_feature(dungeon_feature_type feat, bool in_vault)
{
    if (!objstat_features.count(feat))
        return;

    _record_feature_stat(feat, "Num", 1);
    _record_feature_stat(feat, "NumForIter", 1);

    if (in_vault)
        _record_feature_stat(feat, "NumVault", 1);
}

void objstat_iteration_stats()
{
    for (const auto level : stat_levels)
    {
        for (int i = 0; i < NUM_ITEM_BASE_TYPES; i++)
        {
            item_base_type base_type = static_cast<item_base_type>(i);

            int num_entries = _item_max_sub_type(base_type);
            num_entries = num_entries == 1 ? 1 : num_entries + 1;
            for (int  j = 0; j < num_entries ; j++)
            {
                map<string, int> &stats = item_recs[level][base_type][j];

                if (stats["NumForIter"] > stats["NumMax"])
                    stats["NumMax"] = stats["NumForIter"];

                if (stats["NumForIter"] < stats["NumMin"])
                    stats["NumMin"] = stats["NumForIter"];

                stats["NumSD"] += stats["NumForIter"] * stats["NumForIter"];

                stats["NumForIter"] = 0;
            }
        }

        for (auto spell : objstat_spells)
        {
            map<string, int> &stats = spell_recs[level][spell];

            if (stats["NumForIter"] > 0)
                stats["Chance"] += 1;

            if (stats["NumForIter"] > stats["NumMax"])
                stats["NumMax"] = stats["NumForIter"];

            if (stats["NumForIter"] < stats["NumMin"])
                stats["NumMin"] = stats["NumForIter"];

            stats["NumSD"] += stats["NumForIter"] * stats["NumForIter"];

            stats["NumForIter"] = 0;

            if (stats["NumForIterVault"])
                stats["ChanceVault"] += 1;
            stats["NumForIterVault"] = 0;

            if (stats["NumForIterArte"])
                stats["ChanceArte"] += 1;
            stats["NumForIterArte"] = 0;

            if (stats["NumForIterShop"])
                stats["ChanceShop"] += 1;
            stats["NumForIterShop"] = 0;
        }

        for (auto mc : objstat_monsters)
        {
            map<string, int> &stats = monster_recs[level][mc];

            if (stats["NumForIter"] > stats["NumMax"])
                stats["NumMax"] = stats["NumForIter"];

            if (stats["NumForIter"] < stats["NumMin"])
                stats["NumMin"] = stats["NumForIter"];

            stats["NumSD"] += stats["NumForIter"] * stats["NumForIter"];

            stats["NumForIter"] = 0;
        }

        for (auto feat : objstat_features)
        {
            map<string, int> &stats = feature_recs[level][feat];

            if (stats["NumForIter"] > stats["NumMax"])
                stats["NumMax"] = stats["NumForIter"];

            if (stats["NumForIter"] < stats["NumMin"])
                stats["NumMin"] = stats["NumForIter"];

            stats["NumSD"] += stats["NumForIter"] * stats["NumForIter"];

            stats["NumForIter"] = 0;
        }
    }
}

static FILE * _open_stat_file(string stat_file)
{
    FILE *stat_fh = nullptr;
    stat_fh = fopen_u(stat_file.c_str(), "w");

    if (!stat_fh)
    {
        end(1, false, "Unable to open objstat output file: %s\n"
                "Error: %s", stat_file.c_str(), strerror(errno));
    }

    return stat_fh;
}

static void _write_stat_info()
{
    string all_desc;
    if (num_branches > 1)
    {
        if (SysEnv.map_gen_range)
            all_desc = SysEnv.map_gen_range->describe();
        else
            all_desc = "All Levels";
        all_desc = "Levels included in AllLevels: " + all_desc + "\n";
    }

    const string out_file = make_stringf("%s%s%s", stat_out_prefix,
                                         "Info", stat_out_ext);
    stat_outf = _open_stat_file(out_file.c_str());

    fprintf(stat_outf, "Object Generation Stats\n"
            "Number of iterations: %d\n"
            "Number of branches: %d\n"
            "%s"
            "Number of levels: %d\n"
            "Version: %s\n", SysEnv.map_gen_iters, num_branches,
            all_desc.c_str(), num_levels, Version::Long);

    fclose(stat_outf);
    printf("Wrote Objstat Info to %s.\n", out_file.c_str());
}

static void _write_stat_headers(const vector<string> &fields, const string &desc)
{
    fprintf(stat_outf, "%s\tLevel", desc.c_str());

    for (const string &field : fields)
        fprintf(stat_outf, "\t%s", field.c_str());

    fprintf(stat_outf, "\n");
}

static void _write_stat(map<string, int> &stats, const string &field)
{
    const double field_val = stats[field];
    double out_val = 0;
    ostringstream output;
    bool is_chance = false;

    // NumOOD is by its nature reporting events rare enough that some more
    // precision is helpful
    output.precision(field == "NumOOD" ? STAT_PRECISION + 1 : STAT_PRECISION);
    output.setf(ios_base::fixed);

    // These fields want a per-instance average.
    if (starts_with(field, "Ench")
        || starts_with(field, "Chrg")
        || field == "MonsHD"
        || field == "MonsHP"
        || field == "MonsXP"
        || field == "RelativeDepth"
        || field == "DistanceOOD")
    {
        string num_field = "Num";
        // The classed fields need to be average relative to the right count.
        if (ends_with(field, "Vault"))
            num_field = "NumVault";
        else if (ends_with(field, "Shop"))
            num_field = "NumShop";
        else if (ends_with(field, "Mons"))
            num_field = "NumMons";
        else if (field == "RelativeDepth" || field == "DistanceOOD")
            num_field = "NumInBranch";
        if (stats[num_field.c_str()] == 0)
            out_val = 0.0; // XX some kind of `NA` value?
        else
            out_val = field_val / stats[num_field.c_str()];
    }
    // Turn the sum of squares into the standard deviation.
    else if (field == "NumSD")
    {
        if (SysEnv.map_gen_iters == 1)
            out_val = 0;
        else
        {
            const double mean = (double) stats["Num"] / SysEnv.map_gen_iters;
            out_val = sqrt((SysEnv.map_gen_iters / (SysEnv.map_gen_iters - 1.0))
                         * (field_val / SysEnv.map_gen_iters - mean * mean));
        }
    }
    else if (ends_with(field, "Min") || ends_with(field, "Max"))
        out_val = field_val;
    // Turn a probability into a chance percentage.
    else if (field.find("Chance") == 0)
    {
        out_val = 100 * field_val / SysEnv.map_gen_iters;
        is_chance = true;
    }
    else
        out_val = field_val / SysEnv.map_gen_iters;

    output << "\t" << out_val;

    if (is_chance)
        output << "%";

    fprintf(stat_outf, "%s", output.str().c_str());
}

static void _write_level_item_brand_stats(const level_id &level,
        item_base_type base_type, int sub_type)
{
    for (int i = 0; i < NUM_STAT_CATEGORIES; i++)
    {
        bool first_brand = true;

        ostringstream brand_summary;
        brand_summary.setf(ios_base::fixed);
        brand_summary.precision(STAT_PRECISION);

        const auto cat = static_cast<stat_category_type>(i);

        for (auto mentry : brand_recs[level][base_type][sub_type][cat])
        {
            // No instances for this brand.
            if (mentry.second == 0)
                continue;

            const double value = (double) mentry.second / SysEnv.map_gen_iters;

            if (first_brand)
                first_brand = false;
            else
                brand_summary << ";";

            string brand_name = _brand_name(base_type, sub_type, mentry.first);
            brand_summary << brand_name.c_str() << ":" << value;
        }

        fprintf(stat_outf, "\t%s", brand_summary.str().c_str());
    }
}

static void _write_level_item_stats(const level_id &level,
        item_base_type base_type, int sub_type)
{
    // Don't print stats if no instances.
    if (item_recs[level][base_type][sub_type]["Num"] < 1)
        return;

    fprintf(stat_outf, "%s\t%s", _item_name(base_type, sub_type).c_str(),
            _level_name(level).c_str());

    for (const auto &field : item_fields[base_type])
        _write_stat(item_recs[level][base_type][sub_type], field);

    if (_item_tracks_brand(base_type))
        _write_level_item_brand_stats(level, base_type, sub_type);

    fprintf(stat_outf, "\n");
}

static void _write_base_item_stats(item_base_type base_type)
{
    const string out_file = make_stringf("%s%s%s", stat_out_prefix,
            strip_filename_unsafe_chars(_item_class_name(base_type)).c_str(),
            stat_out_ext);
    stat_outf = _open_stat_file(out_file.c_str());

    vector<string> fields = item_fields[base_type];

    if (_item_tracks_brand(base_type))
    {
        fields.insert(fields.end(), brand_fields[base_type].begin(),
                brand_fields[base_type].end());
    }

    _write_stat_headers(fields, "Item");

    // If there is more than one subtype, we have an additional entry for
    // the sum across subtypes.
    const int num_types = _item_max_sub_type(base_type);
    int num_entries = num_types == 1 ? 1 : num_types + 1;
    for (int j = 0; j < num_entries; j++)
        for (const auto &level : stat_levels)
            _write_level_item_stats(level, base_type, j);

    fclose(stat_outf);
    printf("Wrote %s item stats to %s.\n", _item_class_name(base_type).c_str(),
           out_file.c_str());
}

static void _write_monster_stats(monster_type mc)
{
    string mons_name;
    if (mc == NUM_MONSTERS)
        mons_name = "All Monsters";
    else
        mons_name = mons_type_name(mc, DESC_PLAIN);

    for (const level_id &level: stat_levels)
    {
        if (monster_recs[level][mc]["Num"] < 1)
            continue;

        fprintf(stat_outf, "%s\t%s", mons_name.c_str(),
                _level_name(level).c_str());

        for (const string &field : monster_fields)
            _write_stat(monster_recs[level][mc], field);

        fprintf(stat_outf, "\n");
    }
}

static void _write_feature_stats(dungeon_feature_type feat_type)
{
    const char *feat_name = get_feature_def(feat_type).name;

    for (const level_id &level : stat_levels)
    {
        if (feature_recs[level][feat_type]["Num"] < 1)
            continue;

        fprintf(stat_outf, "%s\t%s", feat_name, _level_name(level).c_str());

        for (const string &field : feature_fields)
            _write_stat(feature_recs[level][feat_type], field);

        fprintf(stat_outf, "\n");
    }
}

static void _write_spell_stats(spell_type spell)
{
    string spell_name;
    if (spell == NUM_SPELLS)
        spell_name = "All Spells";
    else
        spell_name = spell_title(spell);

    for (const level_id &level : stat_levels)
    {
        if (spell_recs[level][spell]["Num"] < 1)
            continue;

        fprintf(stat_outf, "%s\t%s", spell_name.c_str(),
                _level_name(level).c_str());

        for (const string &field : spell_fields)
            _write_stat(spell_recs[level][spell], field);

        fprintf(stat_outf, "\n");
    }
}

static void _write_object_stats()
{
    _write_stat_info();

    for (int i = 0; i < NUM_ITEM_BASE_TYPES; i++)
    {
        item_base_type base_type = static_cast<item_base_type>(i);
        _write_base_item_stats(base_type);
    }

    string out_file = make_stringf("%s%s%s", stat_out_prefix, "Spells",
                                   stat_out_ext);
    stat_outf = _open_stat_file(out_file.c_str());

    _write_stat_headers(spell_fields, "Spell");
    for (const auto spell : objstat_spells)
        _write_spell_stats(spell);

    fclose(stat_outf);
    printf("Wrote Spell stats to %s.\n", out_file.c_str());

    out_file = make_stringf("%s%s%s", stat_out_prefix, "Monsters",
                                   stat_out_ext);
    stat_outf = _open_stat_file(out_file.c_str());

    _write_stat_headers(monster_fields, "Monster");
    for (const auto mc : objstat_monsters)
        _write_monster_stats(mc);

    fclose(stat_outf);
    printf("Wrote Monster stats to %s.\n", out_file.c_str());

    out_file = make_stringf("%s%s%s", stat_out_prefix, "Features",
                            stat_out_ext);
    stat_outf = _open_stat_file(out_file.c_str());

    _write_stat_headers(feature_fields, "Feature");
    for (auto feat : objstat_features)
        _write_feature_stats(feat);

    fclose(stat_outf);
    printf("Wrote Feature stats to %s.\n", out_file.c_str());
}

void objstat_generate_stats()
{
    // Warn assertions about possible oddities like the artefact list being
    // cleared.
    you.wizard = true;
    // Let "acquire foo" have skill aptitudes to work with.
    you.species = SP_HUMAN;

    if (!crawl_state.force_map.empty() && !mapstat_find_forced_map())
        return;

    initialise_item_descriptions();
    initialise_branch_depths();

    // Populate a vector of the levels ids for levels we're tabulating.
    for (branch_iterator it; it; ++it)
    {
        if (brdepth[it->id] == -1)
            continue;

        const branch_type br = it->id;
#if TAG_MAJOR_VERSION == 34
        // Don't want to include Forest since it doesn't generate
        if (br == BRANCH_FOREST)
            continue;
#endif
        vector<level_id> levels;
        int branch_level_count = 0;
        for (int dep = 1; dep <= brdepth[br]; ++dep)
        {
            const level_id lid(br, dep);
            if (SysEnv.map_gen_range
                && !SysEnv.map_gen_range->is_usable_in(lid))
            {
                continue;
            }
            stat_levels.insert(lid);
            ++branch_level_count;
            ++num_levels;
        }

        if (branch_level_count > 0)
        {
            ++num_branches;
            // Multiple levels for this branch, so we do a branch-wise summary.
            if (branch_level_count > 1)
                stat_levels.insert(level_id(br, -1));

        }
    }

    // If there's only one branch, an all-levels summary isn't necessary.
    if (num_branches > 1)
        stat_levels.insert(all_lev);

    printf("Generating object statistics for %d iteration(s) of %d "
           "level(s) over %d branch(es).\n", SysEnv.map_gen_iters,
           num_levels, num_branches);

    _init_spells();
    _init_features();
    _init_monsters();

    _init_stats();

    if (mapstat_build_levels())
    {
        _write_object_stats();
        printf("Object statistics complete.\n");
    }
}
#endif // DEBUG_STATISTICS