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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
|
-module(map_map).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% TYPES %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-type id() :: binary().
-record
(
map,
{
id :: id(),
owner :: binary(),
width :: integer(),
height :: integer(),
tile_instances :: array:array(map_tile:instance())
}
).
-opaque type() :: #map{}.
-export_type([type/0, id/0]).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% EXPORTS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% Accessors
-export
(
[
get_id/1,
get_owner/1,
get_width/1,
get_height/1,
get_tile_instances/1,
get_tile_instance/2
]
).
-export
(
[
get_width_field/0,
get_height_field/0,
get_tile_instances_field/0
]
).
-export
(
[
from_list/5,
update_from_list/4
]
).
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% LOCAL FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
-spec location_to_array_index
(
non_neg_integer(),
map_location:type()
)
-> ('error' | non_neg_integer()).
location_to_array_index (ArrayWidth, {X, Y}) ->
if
(X < 0) -> error;
(Y < 0) -> error;
(X >= ArrayWidth) -> error;
true -> ((Y * ArrayWidth) + X)
end.
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% EXPORTED FUNCTIONS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% Accessors
-spec get_id (type()) -> id().
get_id (Map) -> Map#map.id.
-spec get_owner (type()) -> binary().
get_owner (Map) -> Map#map.owner.
-spec get_width (type()) -> integer().
get_width (Map) -> Map#map.width.
-spec get_height (type()) -> integer().
get_height (Map) -> Map#map.height.
-spec get_tile_instances (type()) -> array:array(map_tile:instance()).
get_tile_instances (Map) -> Map#map.tile_instances.
-spec get_tile_instance (map_location:type(), type()) -> map_tile:instance().
get_tile_instance (Location, Map) ->
TileIX = location_to_array_index(Map#map.width, Location),
array:get(TileIX, Map#map.tile_instances).
-spec get_width_field () -> non_neg_integer().
get_width_field () -> #map.width.
-spec get_height_field () -> non_neg_integer().
get_height_field () -> #map.height.
-spec get_tile_instances_field () -> non_neg_integer().
get_tile_instances_field () -> #map.tile_instances.
-spec from_list
(
non_neg_integer(),
binary(),
non_neg_integer(),
non_neg_integer(),
list(list(non_neg_integer()))
)
-> type().
from_list (ID, Owner, Width, Height, List) ->
TileInstances = lists:map(fun map_tile:instance_from_ints/1, List),
#map
{
id = list_to_binary(integer_to_list(ID)),
owner = Owner,
width = Width,
height = Height,
tile_instances = array:from_list(TileInstances)
}.
-spec update_from_list
(
type(),
non_neg_integer(),
non_neg_integer(),
list(list(non_neg_integer()))
)
-> type().
update_from_list (Map, Width, Height, List) ->
TileInstances = lists:map(fun map_tile:instance_from_ints/1, List),
Map#map
{
width = Width,
height = Height,
tile_instances = array:from_list(TileInstances)
}.
|