File: dbg-util.h

package info (click to toggle)
crawl 2%3A0.7.1-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 30,420 kB
  • ctags: 23,018
  • sloc: cpp: 244,317; ansic: 16,144; perl: 2,214; makefile: 984; python: 488; objc: 250; ruby: 200; sh: 140
file content (32 lines) | stat: -rw-r--r-- 712 bytes parent folder | download
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
/*
 *  File:       dbg-util.h
 *  Summary:    Miscellaneous debugging functions.
 *  Written by: Linley Henzell and Jesse Jones
 */

#ifndef DBGUTIL_H
#define DBGUTIL_H

int          debug_prompt_for_int( const char *prompt, bool nonneg );
monster_type debug_prompt_for_monster(void);
int          debug_prompt_for_skill( const char *prompt );

int debug_cap_stat(int stat);

void error_message_to_player(void);

void debug_dump_levgen();

struct item_def;
std::string debug_art_val_str(const item_def& item);

class  monsters;
struct coord_def;

std::string debug_coord_str(const coord_def &pos);

void debug_dump_mon(const monsters* mon, bool recurse);

std::string debug_mon_str(const monsters* mon);

#endif