summaryrefslogtreecommitdiff
path: root/src/feature_type.hpp
blob: 40a1f58b5fd313ca9fb88a44fd4ebf0bd15c87b8 (plain)
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
#pragma once

#include "h-basic.h"

/**
 * Terrain feature descriptor.
 */
struct feature_type
{
	char *name = nullptr;                    /* Name */

	const char *text = nullptr;              /* Text. May point to shared read-only memory, DO NOT FREE! */
	const char *tunnel = nullptr;            /* Text for tunneling. May point to shared read-only memory, DO NOT FREE! */
	const char *block = nullptr;             /* Text for blocking. May point to shared read-only memory, DO NOT FREE! */

	byte mimic = 0;                          /* Feature to mimic */

	u32b flags1 = 0;                         /* First set of flags */

	byte d_attr = 0;                         /* Default feature attribute */
	char d_char = '\0';                      /* Default feature character */

	byte x_attr = 0;                         /* Desired feature attribute */
	char x_char = '\0';                      /* Desired feature character */

	byte shimmer[7];                         /* Shimmer colors */

	int d_dice[4] = { 0 };                   /* Number of dice */
	int d_side[4] = { 0 };                   /* Number of sides */
	int d_frequency[4] = { 0 };              /* Frequency of damage (1 is the minimum) */
	int d_type[4] = { 0 };                   /* Type of damage */
};