660 lines
42 KiB
HTML
660 lines
42 KiB
HTML
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<link rel="stylesheet" href="../coverage.css"/> <title> mw_engine/drainage.clj </title>
|
|
</head>
|
|
<body>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
001 (ns ^{:doc "Experimental, probably of no interest to anyone else; attempt to
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
002 compute drainage on a world, assumed to have altitudes already set
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
003 from a heightmap."
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
004 :author "Simon Brooke"}
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
005 mw-engine.drainage
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
006 (:require [mw-engine.core :refer [run-world]]
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
007 [mw-engine.heightmap :as heightmap]
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
008 [mw-engine.utils :refer [get-int-or-zero get-least-cell get-neighbours
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
009 get-neighbours-with-property-value
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
010 map-world]]))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
011
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
012 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
013 ;;;;
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
014 ;;;; mw-engine: the state/transition engine of MicroWorld.
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
015 ;;;;
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
016 ;;;; This program is free software; you can redistribute it and/or
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
017 ;;;; modify it under the terms of the GNU General Public License
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
018 ;;;; as published by the Free Software Foundation; either version 2
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
019 ;;;; of the License, or (at your option) any later version.
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
020 ;;;;
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
021 ;;;; This program is distributed in the hope that it will be useful,
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
022 ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
023 ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
024 ;;;; GNU General Public License for more details.
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
025 ;;;;
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
026 ;;;; You should have received a copy of the GNU General Public License
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
027 ;;;; along with this program; if not, write to the Free Software
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
028 ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
029 ;;;; USA.
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
030 ;;;;
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
031 ;;;; Copyright (C) 2014 Simon Brooke
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
032 ;;;;
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
033 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
034
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
035
|
|
</span><br/>
|
|
<span class="covered" title="2 out of 2 forms covered">
|
|
036 (def ^:dynamic *sealevel* 10)
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
037
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
038 ;; forward declaration of flow, to allow for a wee bit of mutual recursion.
|
|
</span><br/>
|
|
<span class="covered" title="2 out of 2 forms covered">
|
|
039 (declare flow)
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
040
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
041 (defn rainfall
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
042 "Compute rainfall for a cell with this `gradient` west-east, given
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
043 `remaining` drops to distribute, and this overall map width."
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
044 [gradient remaining map-width]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 7 forms covered">
|
|
045 (cond
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
046 ;; if there's no rain left in the cloud, it can't fall;
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 2 forms covered">
|
|
047 (zero? remaining)
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
048 0
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 2 forms covered">
|
|
049 (pos? gradient)
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
050 ;; rain, on prevailing westerly wind, falls preferentially on rising ground;
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
051 (int (rand gradient))
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
052 ;; rain falls randomly across the width of the map...
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 5 forms covered">
|
|
053 (zero? (int (rand map-width))) 1
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
054 :else
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
055 0))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
056
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
057 (defn rain-row
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
058 "Return a row like this `row`, across which rainfall has been distributed;
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
059 if `rain-probability` is specified, it is the probable rainfall on a cell
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
060 with no gradient."
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
061 ([row]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
062 (rain-row row 1))
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
063 ([row rain-probability]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 11 forms covered">
|
|
064 (rain-row row (count row) 0 (int (* (count row) rain-probability))))
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
065 ([row map-width previous-altitude drops-in-cloud]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
066 (cond
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
067 (empty? row) nil
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 2 forms covered">
|
|
068 (pos? drops-in-cloud)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
069 (let [cell (first row)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 8 forms covered">
|
|
070 alt (or (:altitude cell) 0)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
071 rising (- alt previous-altitude)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 5 forms covered">
|
|
072 fall (rainfall rising drops-in-cloud map-width)]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 2 forms covered">
|
|
073 (cons
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 5 forms covered">
|
|
074 (assoc cell :rainfall fall)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 10 forms covered">
|
|
075 (rain-row (rest row) map-width alt (- drops-in-cloud fall))))
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
076 :else
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
077 (map
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 5 forms covered">
|
|
078 #(assoc % :rainfall 0)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 1 forms covered">
|
|
079 row))))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
080
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
081
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
082 (defn rain-world
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
083 "Simulate rainfall on this `world`. TODO: Doesn't really work just now - should
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
084 rain more on west-facing slopes, and less to the east of high ground"
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
085 [world]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 2 forms covered">
|
|
086 (map
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 1 forms covered">
|
|
087 rain-row
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 1 forms covered">
|
|
088 world))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
089
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
090
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
091 (defn flow-contributors
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
092 "Return a list of the cells in this `world` which are higher than this
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
093 `cell` and for which this cell is the lowest neighbour, or which are at the
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
094 same altitude and have greater flow"
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
095 [cell world]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 6 forms covered">
|
|
096 (filter #(map? %)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 2 forms covered">
|
|
097 (map
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 1 forms covered">
|
|
098 (fn [n]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
099 (cond
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 10 forms covered">
|
|
100 (= cell (get-least-cell (get-neighbours world n) :altitude)) n
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 12 forms covered">
|
|
101 (and (= (:altitude cell) (:altitude n))
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 17 forms covered">
|
|
102 (> (or (:flow n) 0) (or (:flow cell) 0))) n))
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
103 (get-neighbours-with-property-value
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 7 forms covered">
|
|
104 world (:x cell) (:y cell) 1 :altitude
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 9 forms covered">
|
|
105 (or (:altitude cell) 0) >=))))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
106
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
107
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
108 (defn is-hollow
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
109 "Detects point hollows - that is, individual cells all of whose neighbours
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
110 are higher. Return true if this `cell` has an altitude lower than any of
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
111 its neighbours in this `world`"
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
112 [world cell]
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
113 ;; quicker to count the elements of the list and compare equality of numbers
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
114 ;; than recursive equality check on members, I think. But worth benchmarking.
|
|
</span><br/>
|
|
<span class="covered" title="5 out of 5 forms covered">
|
|
115 (let [neighbours (get-neighbours world cell)
|
|
</span><br/>
|
|
<span class="covered" title="4 out of 4 forms covered">
|
|
116 altitude (get-int-or-zero cell :altitude)]
|
|
</span><br/>
|
|
<span class="covered" title="3 out of 3 forms covered">
|
|
117 (= (count neighbours)
|
|
</span><br/>
|
|
<span class="covered" title="5 out of 5 forms covered">
|
|
118 (count (get-neighbours-with-property-value
|
|
</span><br/>
|
|
<span class="covered" title="9 out of 9 forms covered">
|
|
119 world (:x cell) (:y cell) 1 :altitude altitude >)))))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
120
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
121
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
122 (defn flood-hollow
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
123 "Raise the altitude of a copy of this `cell` of this `world` to the altitude
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
124 of the lowest of its `neighbours`."
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
125 ([_world cell neighbours]
|
|
</span><br/>
|
|
<span class="covered" title="5 out of 5 forms covered">
|
|
126 (let [lowest (get-least-cell neighbours :altitude)]
|
|
</span><br/>
|
|
<span class="covered" title="10 out of 10 forms covered">
|
|
127 (merge cell {:state :water :altitude (:altitude lowest)})))
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
128 ([world cell]
|
|
</span><br/>
|
|
<span class="covered" title="8 out of 8 forms covered">
|
|
129 (flood-hollow world cell (get-neighbours world cell))))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
130
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
131
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
132 (defn flood-hollows
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
133 "Flood all local hollows in this `world`. At this stage only floods single
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
134 cell hollows."
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
135 [world]
|
|
</span><br/>
|
|
<span class="covered" title="4 out of 4 forms covered">
|
|
136 (map-world world
|
|
</span><br/>
|
|
<span class="covered" title="10 out of 10 forms covered">
|
|
137 #(if (is-hollow %1 %2) (flood-hollow %1 %2) %2)))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
138
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
139
|
|
</span><br/>
|
|
<span class="covered" title="2 out of 2 forms covered">
|
|
140 (def max-altitude 255)
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
141
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
142 (defn flow-nr
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
143 "Experimental non recursive flow algorithm, needs to be run on a world as
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
144 many times as there are distinct altitude values. This algorithm works only
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
145 if applied sequentially from the highest altitude to the lowest, see
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
146 `flow-world-nr`."
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
147 [cell world]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 9 forms covered">
|
|
148 (when (= (- max-altitude (get-int-or-zero cell :generation))
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
149 (get-int-or-zero cell :altitude))
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
150 (merge cell
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 5 forms covered">
|
|
151 {:flow (reduce +
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
152 (map
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 5 forms covered">
|
|
153 #(+ (get-int-or-zero % :rainfall)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
154 (get-int-or-zero % :flow))
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
155 (flow-contributors cell world)))})))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
156
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
157
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
158 (def flow
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
159 "Compute the total flow upstream of this `cell` in this `world`, and return a cell identical
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
160 to this one but having a value of its flow property set from that computation. The function is
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
161 memoised because the consequence of mapping a recursive function across an array is that many
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
162 cells will be revisited - potentially many times.
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
163
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
164 Flow comes from a higher cell to a lower only if the lower is the lowest neighbour of the higher."
|
|
</span><br/>
|
|
<span class="covered" title="2 out of 2 forms covered">
|
|
165 (memoize
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
166 (fn [cell world]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
167 (cond
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 8 forms covered">
|
|
168 (not (nil? (:flow cell))) cell
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 11 forms covered">
|
|
169 (<= (or (:altitude cell) 0) *sealevel*) cell
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
170 :else
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
171 (merge cell
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 6 forms covered">
|
|
172 {:flow (+ (:rainfall cell)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
173 (apply +
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 9 forms covered">
|
|
174 (map (fn [neighbour] (:flow (flow neighbour world)))
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
175 (flow-contributors cell world))))})))))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
176
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
177
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
178 (defn flow-world-nr
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
179 "Experimental non-recursive flow-world algorithm"
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
180 [world]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 8 forms covered">
|
|
181 (run-world world nil (list flow-nr) max-altitude))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
182
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
183 (defn flow-world
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
184 "Return a world like this `world`, but with cells tagged with the amount of
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
185 water flowing through them."
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
186 [world]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 6 forms covered">
|
|
187 (map-world (rain-world world) flow))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
188
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
189 (defn explore-lake
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
190 "Return a sequence of cells starting with this `cell` in this `world` which
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
191 form a contiguous lake"
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
192 [_world _cell]
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
193 )
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
194
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
195 (defn is-lake?
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
196 "If this `cell` in this `world` is not part of a lake, return nil. If it is,
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
197 return a cell like this `cell` tagged as part of a lake."
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
198 [world cell]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 1 forms covered">
|
|
199 (if
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
200 ;; if it's already tagged as a lake, it's a lake
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 4 forms covered">
|
|
201 (:lake cell) cell
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 1 forms covered">
|
|
202 (let
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 10 forms covered">
|
|
203 [outflow (apply min (map :altitude (get-neighbours world cell)))]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 3 forms covered">
|
|
204 (when-not
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 5 forms covered">
|
|
205 (> (:altitude cell) outflow)
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 5 forms covered">
|
|
206 (assoc cell :lake true)))))
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
207
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
208
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
209 (defn find-lakes
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
210 [_world]
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
211 )
|
|
</span><br/>
|
|
<span class="blank" title="0 out of 0 forms covered">
|
|
212
|
|
</span><br/>
|
|
<span class="covered" title="1 out of 1 forms covered">
|
|
213 (defn run-drainage
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
214 "Create a world from the heightmap `hmap`, rain on it, and then compute river
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
215 flows."
|
|
</span><br/>
|
|
<span class="not-tracked" title="0 out of 0 forms covered">
|
|
216 [hmap]
|
|
</span><br/>
|
|
<span class="not-covered" title="0 out of 9 forms covered">
|
|
217 (flow-world (rain-world (flood-hollows (heightmap/apply-heightmap hmap)))))
|
|
</span><br/>
|
|
</body>
|
|
</html>
|