aboutsummaryrefslogtreecommitdiff
path: root/src/tilemap.h
blob: 533c3d5b255e4815470c1b90dfc2f5ae374751be (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
#ifndef TILEMAP_H
#define TILEMAP_H

// set bit n in tile t in tilemap
void set(int t, int n);
// is bit n set in tile t in tilemap
int is_set(int t, int n);

// self explanatory names
int has_collapsed(int t);
int get_collapsed_tile(int t);
void collapse(int t, int n);
size_t count_entropy(int t);

void init_tilemap();
void destroy_tilemap();

void generate_tile_masks(small_t (*tile_connections)[SIDES_MAX]);

// applly a mask m, r (from tile_masks)
// to tile t in tilemap
void mask(int t, int m, int r);

#endif