summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordavidovski <david@sendula.com>2021-08-02 00:58:38 +0100
committerdavidovski <david@sendula.com>2021-08-02 00:58:38 +0100
commit3e104355bc1c2386a7651f7f1d137ce016d31189 (patch)
tree6783433126ddd9a3c5948c7ab66f2625a8306465
parente3e3eb890f876c878c06a046c7c7e96583adc7ed (diff)
Added corridors
-rw-r--r--src/const.h3
-rw-r--r--src/main.c134
2 files changed, 123 insertions, 14 deletions
diff --git a/src/const.h b/src/const.h
index 068a36d..c7042fc 100644
--- a/src/const.h
+++ b/src/const.h
@@ -1,4 +1,5 @@
-#define ROOM_COUNT 6
+#define ROOM_COUNT 16
#define MAX_SIZE 100
#define MIN_SIZE 35
+#define SEED 0
diff --git a/src/main.c b/src/main.c
index 3c2ee14..7d27522 100644
--- a/src/main.c
+++ b/src/main.c
@@ -9,7 +9,6 @@
const int screenWidth = 800;
const int screenHeight = 800;
-const int seed = 123456781;
const int radius = 20;
@@ -28,6 +27,15 @@ Room rooms[ROOM_COUNT];
// define each corridor as a branch between a room and its "parent"
int *parentRooms;
+// then afterwards we can define corridors as individual lines
+typedef struct {
+ int ax, ay, bx, by;
+} Corridor;
+
+// Since one connecting branch is at most two perpendicular corridors
+// we can
+Corridor corridors[ROOM_COUNT*2];
+
// extend build in C random function to return a value from 0.0d to 1.0d
double randomDouble() {
return rand() / (double)(RAND_MAX);
@@ -145,19 +153,126 @@ void mapCorridors() {
void createCorridors() {
+ // for each branch between parent and child, calculate the best corridor arrangement
+ for (int i = 0; i < ROOM_COUNT; i++) {
+ if (parentRooms[i] > -1) {
+ Room child = rooms[i];
+ Room parent = rooms[parentRooms[i]];
+
+
+
+ if ((child.x > parent.x && child.x < parent.x+parent.w)
+ || (parent.x > child.x && parent.x < child.x+child.w)) {
+ // case 1: the two can have a single vertical corridor
+ int cx, ay, by;
+
+ if (child.x > parent.x) cx = (child.x + parent.x+parent.w) / 2;
+ else cx = (parent.x + child.x+child.w) / 2;
+
+ if (child.y > parent.y+parent.h) {
+ ay = child.y;
+ by = parent.y+parent.h;
+ } else if (parent.y > child.y+child.h) {
+ ay = parent.y;
+ by = child.y+child.h;
+ }
+ corridors[i*2] = (Corridor){cx, ay, cx, by};
+ } else if ((child.y > parent.y && child.y < parent.y+parent.h)
+ || (parent.y > child.y && parent.y < child.y+child.h)) {
+ // case 2: the two can have a single horizontal corridor
+ int cy, ax, bx;
+
+ if (child.y > parent.y) cy = (child.y + parent.y+parent.h) / 2;
+ else cy = (parent.y + child.y+child.h) / 2;
+
+ if (child.x > parent.x+parent.w) {
+ ax = child.x;
+ bx = parent.x+parent.w;
+ } else if (parent.x > child.x+child.w) {
+ ax = parent.x;
+ bx = child.x+child.w;
+ }
+
+ corridors[i*2] = (Corridor){ax, cy, bx, cy};
+ } else {
+ // case 3: the two need to have an L or Г shaped double corridor
+
+ Vector2 a = getCenter(&child);
+ Vector2 b = getCenter(&parent);
+ // point on child
+ int ax, ay;
+ // point on parent
+ int bx, by;
+ // common point
+ int cx, cy;
+
+ if (randomDouble() > 0.5) {
+ cx = a.x;
+ cy = b.y;
+ } else {
+ cx = b.x;
+ cy = a.y;
+ }
+
+ if (cx == a.x) {
+ ax = cx;
+ if (abs(child.y - cy) < abs(child.y+child.h - cy)) {
+ ay = child.y;
+ } else {
+ ay = child.y+child.h;
+ }
+
+ }
+ if (cx == b.x) {
+ bx = cx;
+ if (abs(parent.y - cy) < abs(parent.y+parent.h - cy)) {
+ by = parent.y;
+ } else {
+ by = parent.y+parent.h;
+ }
+
+ }
+ if (cy == a.y) {
+ ay = cy;
+ if (abs(child.x - cx) < abs(child.x+child.w - cx)) {
+ ax = child.x;
+ } else {
+ ax = child.x+child.w;
+ }
+ }
+ if (cy == b.y) {
+ by = cy;
+ if (abs(parent.x - cx) < abs(parent.x+parent.w - cx)) {
+ bx = parent.x;
+ } else {
+ bx = parent.x+parent.w;
+ }
+
+ }
+
+ corridors[i*2] = (Corridor){ax, ay, cx, cy};
+ corridors[i*2+1] = (Corridor){bx, by, cx, cy};
+
+
+ }
+
+ }
+ }
}
void generateRooms() {
positionRooms();
separateRooms();
mapCorridors();
+ createCorridors();
}
int main(void) {
- srand(time(NULL));
+ if (SEED > 0) srand(SEED);
+ else srand(time(NULL));
generateRooms();
@@ -170,15 +285,6 @@ int main(void) {
ClearBackground(GRAY);
for (int i = 0; i < ROOM_COUNT; i++) {
- for (int j = 0; j < ROOM_COUNT; j++) {
- Vector2 a = getCenter(&rooms[i]);
- Vector2 b = getCenter(&rooms[j]);
-
- DrawLine(a.x, a.y, b.x, b.y, RED);
- }
- }
-
- for (int i = 0; i < ROOM_COUNT; i++) {
Color c;
if (i == 0) c = BLACK;
else c = LIGHTGRAY;
@@ -189,11 +295,13 @@ int main(void) {
if (p > -1 && p < ROOM_COUNT) {
Vector2 a = getCenter(&rooms[i]);
Vector2 b = getCenter(&rooms[p]);
-
- DrawLine(a.x, a.y, b.x, b.y, GREEN);
}
}
+ for (int i = 0; i < ROOM_COUNT*2; i++) {
+ Corridor c = corridors[i];
+ DrawLine(c.ax, c.ay, c.bx, c.by, LIGHTGRAY);
+ }
EndDrawing();