summaryrefslogtreecommitdiff
blob: c4aaf06d2c92311a405c348ad4a2720a409db8ea (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
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
module Battlemap exposing
   (
      Type,
      reset,
      get_navigator_remaining_points,
      set_navigator,
      try_getting_navigator_location,
      try_getting_navigator_path_to,
      try_adding_step_to_navigator
   )

import Array

import Battlemap.Navigator
import Battlemap.Tile
import Battlemap.Direction
import Battlemap.Location

--------------------------------------------------------------------------------
-- TYPES -----------------------------------------------------------------------
--------------------------------------------------------------------------------
type alias Type =
   {
      width: Int,
      height: Int,
      content: (Array.Array Battlemap.Tile.Type),
      navigator: (Maybe Battlemap.Navigator.Type)
   }

--------------------------------------------------------------------------------
-- LOCAL -----------------------------------------------------------------------
--------------------------------------------------------------------------------
location_to_index : Type -> Battlemap.Location.Type -> Int
location_to_index bmap loc =
   ((loc.y * bmap.width) + loc.x)

has_location : Type -> Battlemap.Location.Type -> Bool
has_location bmap loc =
   (
      (loc.x >= 0)
      && (loc.y >= 0)
      && (loc.x < bmap.width)
      && (loc.y < bmap.height)
   )

--------------------------------------------------------------------------------
-- EXPORTED --------------------------------------------------------------------
--------------------------------------------------------------------------------
reset : Type -> Type
reset bmap =
   {bmap |
      navigator = Nothing
   }

try_getting_navigator_location : Type -> (Maybe Battlemap.Location.Type)
try_getting_navigator_location bmap =
   case bmap.navigator of
      (Just navigator) ->
         (Just (Battlemap.Navigator.get_current_location navigator))

      Nothing -> Nothing

get_navigator_remaining_points : Type -> Int
get_navigator_remaining_points bmap =
   case bmap.navigator of
      (Just navigator) -> (Battlemap.Navigator.get_remaining_points navigator)
      Nothing -> -1

set_navigator : (
      Battlemap.Location.Type ->
      Int ->
      Int ->
      (Battlemap.Location.Type -> Bool) ->
      Type ->
      Type
   )
set_navigator start_loc movement_points attack_range can_cross bmap =
   {bmap |
      navigator =
         (Just
            (Battlemap.Navigator.new
               start_loc
               movement_points
               attack_range
               (\loc -> ((can_cross loc) && (has_location bmap loc)))
            )
         )
   }

try_adding_step_to_navigator : (
      Type ->
      (Battlemap.Location.Type -> Bool) ->
      Battlemap.Direction.Type ->
      (Maybe Type)
   )
try_adding_step_to_navigator bmap can_cross dir =
   case bmap.navigator of
      (Just navigator) ->
         let
            new_navigator =
               (Battlemap.Navigator.try_adding_step
                  navigator
                  dir
                  (\loc -> ((can_cross loc) && (has_location bmap loc)))
                  (\loc ->
                     case
                        (Array.get (location_to_index bmap loc) bmap.content)
                     of
                        (Just tile) -> (Battlemap.Tile.get_cost tile)
                        Nothing -> 0
                  )
               )
         in
          case new_navigator of
            (Just _) -> (Just {bmap | navigator = new_navigator})
            Nothing -> Nothing

      _ -> Nothing

try_getting_navigator_path_to : (
      Type ->
      Battlemap.Location.Ref ->
      (Maybe (List Battlemap.Direction.Type))
   )
try_getting_navigator_path_to bmap loc_ref =
   case bmap.navigator of
      (Just navigator) ->
         (Battlemap.Navigator.try_getting_path_to navigator loc_ref)

      Nothing -> Nothing