summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-maps.h
blob: 0267fbb2947da50064b0e1a1be75a6676c4284f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *  File:       dbg-dgn.h
 *  Summary:    Dungeon related debugging functions.
 *  Written by: Linley Henzell and Jesse Jones
 */

#ifndef DBGMAPS_H
#define DBGMAPS_H

#ifdef DEBUG_DIAGNOSTICS
void generate_map_stats();

class map_def;

void mapgen_report_map_try(const map_def &map);
void mapgen_report_map_use(const map_def &map);
void mapgen_report_error(const map_def &map, const std::string &err);
void mapgen_report_map_build_start();
void mapgen_report_map_veto();
#endif

#endif