summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dbg-maps.h
blob: cab57c0ca1aba69a6b531dc165b766d5af6aef06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
 * @file
 * @brief Map generation statistics/testing.
**/

#ifndef DBGDGN_H
#define DBGDGN_H

#ifdef DEBUG_DIAGNOSTICS

class map_def;
void mapstat_report_map_try(const map_def &map);
void mapstat_report_map_use(const map_def &map);
void mapstat_report_error(const map_def &map, const string &err);
void mapstat_report_map_build_start();
void mapstat_report_map_veto(const string &message);
void mapstat_generate_stats();
bool mapstat_build_levels();
#endif

#endif