summaryrefslogtreecommitdiff
path: root/city/geometry-test.lua
blob: 758ce956975195e72195d29aa6a7d6cf2e9e081c (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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
local test = require('minunit').test
local geom = require 'geometry'
local util = require 'util'


-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
-- geom.point tests
--
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

test(
   'create point object',
   function()
      local pt = geom.point(1, 5.5)
      assert(pt.x == 1)
      assert(pt.y == 5.5)
      local mt = getmetatable(pt)
      assert(mt.__index == geom.point)
   end
)

test(
   'point distances',
   function()
      local a = geom.point(1, 3)
      local b = geom.point(4, 7)
      assert(a:distance_to(b) == 5)

      assert(a:distance_to(a) == 0)
   end
)


-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
-- geom.square tests
--
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

test(
   'create square object',
   function()
      local s = geom.square(geom.point(2, 5), 1)
      assert(s.center.x == 2)
      assert(s.center.y == 5)
      assert(s.span == 1)

      assert(s.x.min ==  1.5)
      assert(s.x.max ==  2.5)
      assert(s.y.min ==  4.5)
      assert(s.y.max ==  5.5)
   end
)

test(
   'check if point is in square',
   function()
      local center = geom.point(1, 1)
      local square = geom.square(center, 2)

      local interior_points = {
	 geom.point(1, 1),
	 geom.point(2, 2),
	 geom.point(2, 0.1),
	 geom.point(0.1, 0.1),
      }
      for _, point in ipairs(interior_points) do
	 assert(
	    square:contains(point),
	    string.format(
	       'point (%0.2f, %0.2f) was incorrectly outside!',
	       point.x, point.y
	    )
	 )
      end

      local exterior_points = {
	 geom.point(0, 0),
	 geom.point(10, 10),
	 geom.point(0, 1),
	 geom.point(1, 0),
	 geom.point(-2, 1),
	 geom.point(1, -2),
      }
      for _, point in ipairs(exterior_points) do
	 assert(
	    not square:contains(point),
	    string.format(
	       'point (%0.2f, %0.2f) was incorrectly inside!',
	       point.x, point.y
	    )
	 )
      end
   end
)

test(
   'subdivide a square',
   function()
      local center = geom.point(2, 2)
      local square = geom.square(center, 4)

      local children = square:divide()
      assert(
	 #children == 4,
	 string.format(
	    'incorrect number of children: %d',
	    #children
	 )
      )

      local aa = children[1]
      assert(aa.center.x == 1)
      assert(aa.center.y == 1)
      assert(aa.span == 2)

      local ba = children[2]
      assert(ba.center.x == 3)
      assert(ba.center.y == 1)
      assert(ba.span == 2)

      local ab = children[3]
      assert(ab.center.x == 1)
      assert(ab.center.y == 3)
      assert(ab.span == 2)

      local bb = children[4]
      assert(bb.center.x == 3)
      assert(bb.center.y == 3)
      assert(bb.span == 2)
   end
)


-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
--
-- geom.qt_node
--
-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

test(
   'create qt_node',
   function()
      local center = geom.point(2, 2)
      local node = geom.qt_node(center, 4)

      assert(node.square.center.x == 2)
      assert(node.square.center.y == 2)
      assert(node.square.span == 4)

      assert(node:is_leaf())
      assert(not node.point)
   end
)

test(
   'insert points into qt_node',
   function()
      local center = geom.point(2, 2)
      local node = geom.qt_node(center, 4)

      assert(node:is_leaf())
      assert(not node.point)

      node:insert(geom.point(1, 1))
      assert(node:is_leaf())
      assert(node.point.x == 1)
      assert(node.point.y == 1)

      node:insert(geom.point(3, 3))
      assert(not node:is_leaf())

      assert(node.children[1]:is_leaf())
      assert(node.children[1].point.x == 1)
      assert(node.children[1].point.y == 1)

      assert(node.children[2]:is_leaf())
      assert(not node.children[2].point)

      assert(node.children[3]:is_leaf())
      assert(not node.children[3].point)

      assert(node.children[4]:is_leaf())
      assert(node.children[4].point.x == 3)
      assert(node.children[4].point.y == 3)
   end
)

test(
   'instert four points into qt_node',
   function()
      local center = geom.point(2, 2)
      local node = geom.qt_node(center, 4)

      node:insert(geom.point(1, 1))
      node:insert(geom.point(0.5, 0.5))
      node:insert(geom.point(0.25, 0.25))
      node:insert(geom.point(0.125, 0.125))

      assert(not node:is_leaf())

      assert(node.children[2]:is_leaf())
      assert(not node.children[2].point)
      assert(node.children[3]:is_leaf())
      assert(not node.children[3].point)
      assert(node.children[4]:is_leaf())
      assert(not node.children[4].point)

      node = node.children[1].children[1]
      assert(not node:is_leaf())

      assert(not node.children[1]:is_leaf())
      assert(node.children[2]:is_leaf())
      assert(not node.children[2].point)
      assert(node.children[3]:is_leaf())
      assert(not node.children[3].point)
      assert(node.children[4]:is_leaf())
      assert(node.children[4].point.x == 1)
      assert(node.children[4].point.y == 1)

      node = node.children[1]
      assert(not node:is_leaf())

      assert(node.children[2]:is_leaf())
      assert(not node.children[2].point)
      assert(node.children[3]:is_leaf())
      assert(not node.children[3].point)
      assert(node.children[4]:is_leaf())
      assert(node.children[4].point.x == 0.5)
      assert(node.children[4].point.y == 0.5)

      node = node.children[1]
      assert(not node:is_leaf())

      assert(node.children[2]:is_leaf())
      assert(not node.children[2].point)
      assert(node.children[3]:is_leaf())
      assert(not node.children[3].point)
      assert(node.children[4]:is_leaf())
      assert(node.children[4].point.x == 0.25)
      assert(node.children[4].point.y == 0.25)

      assert(node.children[1]:is_leaf())
      assert(node.children[1].point.x == 0.125)
      assert(node.children[1].point.y == 0.125)
   end
)