people of Stackoverflow.
I am trying to write an algorithm that allows me to place rectangles close right next to (but not overlapping) each other.
I wrote a quick mock-up in using pygame but it seems to not be quite right. I will be adding an x
value to every rectangle to act as spacing. rectangles will only be added never removed
I tried
def find_adjacent_position(open_rectangles, all_rectangles, w, h):
for existing_rect in open_rectangles:
for offset in [(1,0), (-1,0), (0,1), (0,-1)]:
x = existing_rect[0] + (existing_rect[2] * offset[0]) + offset[0]
y = existing_rect[1] + (existing_rect[3] * offset[1]) + offset[1]
if 0 < x + w <= SCREEN_WIDTH // 2 and 0 < y + h <= SCREEN_HEIGHT // 2:
new_rect = (x, y, w, h)
overlap = any(is_overlap(new_rect, rect) for rect in all_rectangles)
if not overlap:
open_rectangles.append(new_rect)
return new_rect
op = 4
for offset in [(1,0), (-1,0), (0,1), (0,-1)]:
x = existing_rect[0] + (16 * offset[0])
y = existing_rect[1] + (16 * offset[1])
if 0 < x + offset[0] <= SCREEN_WIDTH // 2 and 0 < y + offset[1] <= SCREEN_HEIGHT // 2:
new_rect = (x, y, 16, 16)
overlap = any(is_overlap(new_rect, rect) for rect in all_rectangles)
if overlap: #cannot place it there, it overlaps
op-=1
else:
op -= 1 #offscreen
if op <= 0:
print(f"could not place anywhere. rect is now closed {len(open_rectangles)-1}")
open_rectangles.remove(existing_rect)
else: print(op)
return None
this function takes 2 list. a list of all rectangles, and a list of rectangles who's sides are "empty" and more rectangles can be placed onto. this results in
which as you can see fails to expand despite there being space on screen
manually drawn example with a x
of 2
and the rectangles (2,4) (3,4) (3,3) (6,3) (3,5) (5,4) (4,9) (these are out of order but idea should be communicated)
the red rectangle indicates a "closed" rectangle, and the blue rectangles are "open" rectangles (they are in the open_rectangles list and can have others rectangles placed off of them).
I implemented it in kotlin but the implementation boils down to.
(my kotlin function inside of another class which has some... optimisations?)