-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathGenLayout.py
403 lines (363 loc) · 18.9 KB
/
GenLayout.py
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
# ##### BEGIN GPL LICENSE BLOCK #####
#
# Procedural building generator
# Copyright (C) 2019 Luka Simic
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 3
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <https://www.gnu.org/licenses/>.
#
# ##### END GPL LICENSE BLOCK #####
import bpy
import math
import mathutils
from . import Utils
class ParamsGeneral:
# TODO: docstring
def __init__(self, floor_count: int, floor_height: float, floor_offset: float, generate_separator: bool,
separator_height: float, separator_width: float, window_width: float, window_height: float,
window_offset: float, distance_window_window: float, generate_pillar: bool,
distance_window_pillar: float, door_width: float, door_height: float):
self.floor_count = floor_count
self.floor_height = floor_height
self.floor_offset = floor_offset
self.generate_separator = generate_separator
self.separator_height = separator_height
self.separator_width = separator_width
self.window_width = window_width
self.window_height = window_height
self.window_offset = window_offset
self.distance_window_window = distance_window_window
self.generate_pillar = generate_pillar
self.distance_window_pillar = distance_window_pillar
self.door_width = door_width
self.door_height = door_height
# end __init__
@staticmethod
def from_ui():
properties = bpy.context.scene.PBGPropertyGroup
params = ParamsGeneral(
floor_count=properties.floor_count,
floor_height=properties.floor_height,
floor_offset=properties.floor_first_offset,
generate_separator=properties.floor_separator_include,
separator_height=properties.floor_separator_height,
separator_width=properties.floor_separator_width,
window_width=properties.window_width,
window_height=properties.window_height,
window_offset=properties.window_offset,
distance_window_window=properties.distance_window_window,
generate_pillar=properties.generate_pillar,
distance_window_pillar=properties.distance_window_pillar,
door_width=properties.door_width,
door_height=properties.door_height
)
return params
# end from_ui
# end ParamsGeneral
class ParamsFootprint:
# TODO: docstring
def __init__(self, building_width, building_depth, building_chamfer, building_wedge_depth, building_wedge_width):
self.building_width = building_width
self.building_depth = building_depth
self.building_chamfer = building_chamfer
self.building_wedge_depth = building_wedge_depth
self.building_wedge_width = building_wedge_width
# end init
@staticmethod
def from_ui():
properties = bpy.context.scene.PBGPropertyGroup
params = ParamsFootprint(
building_width=properties.building_width,
building_depth=properties.building_depth,
building_chamfer=properties.building_chamfer,
building_wedge_depth=properties.building_wedge_depth,
building_wedge_width=properties.building_wedge_width
)
return params
# end from_ui
# end ParamsFootprint
def gen_footprint(params_footprint: ParamsFootprint) -> list:
"""
Generates the building footprint
Args:
params_footprint: Instance of ParamsFootprint class
Returns:
list(tuple(x,y,z)) - a list containing ordered verts, which define the building footprint.
"""
layout = list()
# bottom left corner
if params_footprint.building_chamfer > 0:
layout.append((-0.5 * params_footprint.building_width + params_footprint.building_chamfer,
-0.5 * params_footprint.building_depth, 0))
layout.append((-0.5 * params_footprint.building_width,
-0.5 * params_footprint.building_depth + params_footprint.building_chamfer, 0))
else:
layout.append((-0.5 * params_footprint.building_width, -0.5 * params_footprint.building_depth, 0))
# top left corner
if params_footprint.building_chamfer > 0:
layout.append((-0.5 * params_footprint.building_width,
0.5 * params_footprint.building_depth - params_footprint.building_chamfer, 0))
layout.append((-0.5 * params_footprint.building_width + params_footprint.building_chamfer,
0.5 * params_footprint.building_depth, 0))
else:
layout.append((-0.5 * params_footprint.building_width, 0.5 * params_footprint.building_depth, 0))
# wedge
if params_footprint.building_wedge_depth > 0 and params_footprint.building_wedge_width > 0:
layout.append((-0.5 * params_footprint.building_wedge_width, 0.5 * params_footprint.building_depth, 0))
layout.append((-0.5 * params_footprint.building_wedge_width,
0.5 * params_footprint.building_depth + params_footprint.building_wedge_depth, 0))
layout.append((0.5 * params_footprint.building_wedge_width,
0.5 * params_footprint.building_depth + params_footprint.building_wedge_depth, 0))
layout.append((0.5 * params_footprint.building_wedge_width, 0.5 * params_footprint.building_depth, 0))
# top right corner
if params_footprint.building_chamfer > 0:
layout.append((0.5 * params_footprint.building_width - params_footprint.building_chamfer,
0.5 * params_footprint.building_depth, 0))
layout.append((0.5 * params_footprint.building_width,
0.5 * params_footprint.building_depth - params_footprint.building_chamfer, 0))
else:
layout.append((0.5 * params_footprint.building_width, 0.5 * params_footprint.building_depth, 0))
# bottom right corner
if params_footprint.building_chamfer > 0:
layout.append((0.5 * params_footprint.building_width,
-0.5 * params_footprint.building_depth + params_footprint.building_chamfer, 0))
layout.append((0.5 * params_footprint.building_width - params_footprint.building_chamfer,
-0.5 * params_footprint.building_depth, 0))
else:
layout.append((0.5 * params_footprint.building_width, -0.5 * params_footprint.building_depth, 0))
# return the list
return layout
# end gen_footprint
def gen_layout(params_general: ParamsGeneral, footprint: list, door_position: tuple) -> dict:
"""
Generates the layout of windows, pillars and walls
Args:
params_general: Instance of ParamsGeneral class
footprint: list(tuple(x,y,z)) - list of tuples where each tuple is an xyz coordinate of the footprint
door_position: tuple(tuple(x,y,z), rot) - tuple, where first element is the xyz coordinate of the door position,
and second element is the door rotation on Z axis.
Returns:
a dictionary with the following keys
"window_positions" - list(tuple(tuple(x,y,z), rot)) list of tuples, where each item contains the x,y,z
position of the window and it's rotation on the z axis.
"pillar_positions" - list(tuple(tuple(x,y,z), rot)) list of tuples, where each item contains the x,y,z
position of the pillar and it's rotation on the z axis.
wall_loops - list(list(tuple(x,y,z)) - list, containing a list of verts, ie loops to be used for extruding
walls
"""
window_positions = list()
pillar_positions = list()
wall_loops = list()
wall_verts = list()
wall_verts_initial = list()
is_first_loop = True
for i in range(0, len(footprint)):
# assign start and end vertex
vert_start = footprint[i]
if i == len(footprint) - 1:
vert_end = footprint[0]
else:
vert_end = footprint[i+1]
# end if
# push the first vert into the array
if is_first_loop:
wall_verts_initial.append((vert_start[0], vert_start[1], params_general.floor_offset))
else:
wall_verts.append((vert_start[0], vert_start[1], params_general.floor_offset))
# end if;
# calculate length of edge
length_x = vert_end[0] - vert_start[0]
length_y = vert_end[1] - vert_start[1]
length = math.sqrt(length_x * length_x + length_y * length_y)
# calculate number of windows for this edge
if params_general.generate_pillar:
window_count = math.floor((length - 2 * params_general.distance_window_pillar) /
params_general.distance_window_window) + 1
else:
window_count = math.floor((length - params_general.window_width) /
params_general.distance_window_window) + 1
# sanity check here
if window_count < 0:
window_count = 0
# calculate distance between windows on x and y axis
ww_dist_x = (params_general.distance_window_window / length) * length_x
ww_dist_y = (params_general.distance_window_window / length) * length_y
window_width_x = (params_general.window_width / length) * length_x
window_width_y = (params_general.window_width / length) * length_y
# calculate distance from window to pillar on x and y axis
wp_dist_x = (params_general.distance_window_pillar / length) * length_x
wp_dist_y = (params_general.distance_window_pillar / length) * length_y
# check whether to generate one or two pillars between windows
if 2 * params_general.distance_window_pillar >= params_general.distance_window_window:
has_single_pillar = True
else:
has_single_pillar = False
# end if
# calculate window and pillar rotation (it's always the same)
vec_edge = Utils.vec_from_verts(vert_end, vert_start)
vec_0 = mathutils.Vector((0.0, 1.0, 0.0))
rot = vec_edge.xy.angle_signed(vec_0.xy) - 0.5 * math.pi
# calculate door range for calculating intersects
door_size_x = math.cos(door_position[1])*params_general.door_width
door_size_y = math.sin(door_position[1])*params_general.door_width
door_start = (door_position[0][0]-0.5*door_size_x,
door_position[0][1]-0.5*door_size_y,
params_general.floor_offset)
door_end = (door_position[0][0]+0.5*door_size_x,
door_position[0][1]+0.5*door_size_y,
params_general.floor_offset)
for j in range(0, window_count):
# calculate window position
window_pos = ((vert_start[0] + ((length_x - (window_count - 1) * ww_dist_x) / 2) + j * ww_dist_x),
(vert_start[1] + ((length_y - (window_count - 1) * ww_dist_y) / 2) + j * ww_dist_y),
params_general.floor_offset
)
# check whether the window intersects with the door, push first floor accordingly
vert_1 = (window_pos[0] - 0.5 * window_width_x, window_pos[1] - 0.5 * window_width_y, 0)
vert_2 = (window_pos[0] + 0.5 * window_width_x, window_pos[1] - 0.5 * window_width_y, 0)
if not (Utils.vert_check_intersect(vert_1, door_start, door_end) or
Utils.vert_check_intersect(vert_2, door_start, door_end) or
Utils.vert_check_intersect(window_pos, door_start, door_end)):
window_positions.append((window_pos, rot))
else:
# windows intersected with the door and was not pushed
if(Utils.vert_check_intersect(vert_1, door_start, door_end) and
(not Utils.vert_check_intersect(vert_2, door_start, door_end))):
window_loop = list()
window_loop.append(door_end)
window_loop.append((vert_2[0], vert_2[1], params_general.floor_offset))
wall_loops.append(window_loop)
elif(Utils.vert_check_intersect(vert_2, door_start, door_end) and
(not Utils.vert_check_intersect(vert_1, door_start, door_end))):
window_loop = list()
window_loop.append((vert_1[0], vert_1[1], params_general.floor_offset))
window_loop.append(door_start)
wall_loops.append(window_loop)
elif(Utils.vert_check_intersect(window_pos, door_start, door_end) and
(not Utils.vert_check_intersect(vert_1, door_start, door_end)) and
(not Utils.vert_check_intersect(vert_1, door_start, door_end))):
window_loop = list()
window_loop.append((vert_1[0], vert_1[1], params_general.floor_offset))
window_loop.append(door_start)
wall_loops.append(window_loop)
window_loop = list()
window_loop.append(door_end)
window_loop.append((vert_2[0], vert_2[1], params_general.floor_offset))
wall_loops.append(window_loop)
# end if
# push all other floors
for floor in range(1, params_general.floor_count + 1):
pos = (window_pos[0], window_pos[1], params_general.floor_offset + floor * params_general.floor_height)
window_positions.append((pos, rot))
# end for
# calculate pillar position
if j == 0 or has_single_pillar is False:
pillar_pos = (
window_pos[0] - wp_dist_x,
window_pos[1] - wp_dist_y,
params_general.floor_offset
)
# check whether the pillar intersects with the door, push accordingly
if not Utils.vert_check_intersect(pillar_pos, door_start, door_end):
pillar_positions.append((pillar_pos, rot))
# end if
# push all other floors
for floor in range(1, params_general.floor_count+1):
pos = (pillar_pos[0], pillar_pos[1], params_general.floor_offset+floor*params_general.floor_height)
pillar_positions.append((pos, rot))
# end for
# end if
pillar_pos = (
window_pos[0] + wp_dist_x,
window_pos[1] + wp_dist_y,
params_general.floor_offset
)
# check whether the pillar intersects with the door, push accordingly
if not Utils.vert_check_intersect(pillar_pos, door_start, door_end):
pillar_positions.append((pillar_pos, rot))
# end if
# push all other floors
for floor in range(1, params_general.floor_count + 1):
pos = (pillar_pos[0], pillar_pos[1], params_general.floor_offset + floor * params_general.floor_height)
pillar_positions.append((pos, rot))
# end for
# calculate the last vert of this loop, because it is broken by the window
vert_wall = (window_pos[0] - 0.5 * window_width_x,
window_pos[1] - 0.5 * window_width_y,
params_general.floor_offset)
# push it into the loops array
if is_first_loop:
wall_verts_initial.append(vert_wall)
is_first_loop = False
else:
wall_verts.append(vert_wall)
# make a copy of wall verts, implement check and modification for first floor
loop = list()
for vert in wall_verts:
if not Utils.vert_check_intersect(vert, door_start, door_end):
loop.append(vert)
if len(wall_verts) == len(loop):
wall_loops.append(loop)
elif Utils.vert_check_intersect(wall_verts[len(wall_verts)-1], door_start, door_end) and len(loop):
loop.append(door_start)
wall_loops.append(loop)
elif Utils.vert_check_intersect(wall_verts[0], door_start, door_end) and len(loop):
loop.insert(0, door_end)
wall_loops.append(loop)
# make a copy of wall_verts for each floor, push for each floor except ground
for floor in range(1, params_general.floor_count + 1):
loop = list()
for vert in wall_verts:
loop.append((vert[0], vert[1], params_general.floor_offset + floor*params_general.floor_height))
wall_loops.append(loop)
wall_verts.clear()
# end if
# calculate the first vert of the next loop and push it into the loops array
vert_wall = (window_pos[0] + 0.5 * window_width_x,
window_pos[1] + 0.5 * window_width_y,
params_general.floor_offset)
wall_verts.append(vert_wall)
# end while
# check if this is the last edge, append the layout_verts_initial to the current layout_verts
if i == len(footprint) - 1:
verts = wall_verts + wall_verts_initial
# make a copy of wall verts, implement check and modification for first floor
loop = list()
for vert in verts:
if not Utils.vert_check_intersect(vert, door_start, door_end):
loop.append(vert)
if len(verts) == len(loop):
wall_loops.append(loop)
elif Utils.vert_check_intersect(verts[len(wall_verts) - 1], door_start, door_end) and len(loop):
loop.append(door_start)
wall_loops.append(loop)
elif Utils.vert_check_intersect(verts[0], door_start, door_end) and len(loop):
loop.insert(0, door_end)
wall_loops.append(loop)
# make a copy of wall_verts for each floor, push for each floor except ground
for floor in range(1, params_general.floor_count + 1):
loop = list()
for vert in verts:
loop.append((vert[0], vert[1], params_general.floor_offset + floor * params_general.floor_height))
wall_loops.append(loop)
wall_verts.clear()
# end if
# end for
# put all results in a dictionary and return it
result = {
"window_positions": window_positions,
"pillar_positions": pillar_positions,
"wall_loops": wall_loops
}
return result
# end generate_vertical_layout