Organic Building Generation In Minecraft

From Human's Love
Jump to: navigation, search

Abstract.This paper presents a method for generating floor plans for structures in Minecraft (Mojang 2009). Given a 3D space, it will auto-generate a building to fill that space using a combination of constrained growth and cellular automata. The result is a series of organic-looking buildings complete with rooms, windows, and doors connecting them. The method is applied to the Generative Design in Minecraft (GDMC) competition (Salge et al., 2018) to auto-generate buildings in Minecraft, and the results are discussed.



PCG, artificial intelligence, minecraft ††journalyear: 2019††copyright: acmlicensed††conference: FDG ’19: Procedural Content Generation Workshop; August 26-30, 2019; San Luis Obispo, CA††booktitle: FDG ’19: Procedural Conten Generation Workshop, August 26-30, 2019, San Luis Obispo, CA††price: 15.00††doi: 10.1145/1122445.1122456††isbn: 978-1-4503-9999-9/18/06††ccs: Applied computing Computer games††ccs: Applied computing Architecture (buildings)



Procedural Content Generation in games (Shaker et al., 2016; Togelius et al., 2011) (PCG) comes in a variety of flavors. AI has been shown to excel in the automatic creation of levels (Khalifa et al., 2016; Compton and Mateas, 2006), narrative (Rowe et al., 2009), tutorials (Green et al., 2018b; Green et al., 2017), levels for tutorials (Green et al., 2018c; Khalifa et al., 2019), puzzles (Khalifa and Fayek, 2015; Shaker et al., 2013), and even entire games (Khalifa et al., 2017; Green et al., 2018a). The functionality and acceptable similarity of the content depends on the genre the AI generates for, but it is generally desired that high quality content can be generated rapidly on-demand.



However, certain PCG algorithms are known to suffer from repetition, based on the nature of the algorihtms themselves. Rule-based generative agents are known to create good content that looks similar (Shaker et al., 2016). On the other hand, search-based agents can create diverse content but must spend time to ensure that this diverse content is functional for the player (Togelius et al., 2011). The challenge then becomes a balance of similarity, time, functionality, and above all else, being able to paramaterize and customize the generator’s output.



In this paper we apply a constrained growth method to Minecraft (Mojang 2009) within the Generative Design in Minecraft competition (Salge et al., 2018) to create functionally similar but diverse looking floor plans for structures. This method is simple compared to others. Its strength lies in its speed, being able to generate a thousand fully connected structures in just a few seconds (Section 4.1). A wide selection of structures generated by the algorithm are curated and are discussed below. Although constrained rectangular-growth applied to floor plan generation is not new, the novelty of our method lies in its modification to the algorithm to not require rectangular growth, instead using the natural Minecraft block units. The resulting structures work similarly to each other but look uniquely distinct. To our knowledge, this is also the first application of any PCG method in regards to full Minecraft structure generation.



We want to point out that all code discussed in this project is publicly available on the official GDMC Github page.111https://github.com/mcgreentn/GDMC The code can easily be modularly applied to any existing settlement generator in the GDMC challenge in order to automatically generating structures.



2. Background



Building and structure generators are a well-explored area of PCG(Shaker et al., 2016), in part caused by the relatively recent increase of virtual worlds and environments that required large quantities of content. This section will discuss previous research in city and structure generation in a variety of domains, as well the Generative Design in Minecraft competition, the particular domain this paper explores.



2.1. City and Structure Generation



City, structure, and building generation is a popular PCG application, within and outside of games. Citigen (Kelly and McCabe, 2007), an automatic city generation system, is an example that generates the the urban geometry of a modern city. Given a terrain model, the system develops a system of road networks and building footprints, which can be used to place buildings manually or automatically. Kelly et al. (Kelly and McCabe, 2006) survey a collection of different city generation techniques, including techniques such as geometric rule-based systems (Greuter et al., 2003a, b, 2004), L-systems (Parish and Müller, 2001), agent-based simulation (Lechner et al., 2003), template-based systems (Sun et al., 2002), and split-grammars (Wonka et al., 2003).



The above methods describe ways of generating collections of structures or even entire cities, but there are also attempts to design the internal “floor-plans” of buildings. The LaHave House project. by Rau-Chaplin et al. (Rau-Chaplin et al., 1996) generates floor plans using shape grammars. Hahn et al. (Hahn et al., 2006) developed a system which generates office building rooms in a just-in-time way, based on player movement and positioning. Martin (Martin, 2006) researched a graph-based method, which treats rooms as nodes and connections between rooms as edges, with user-defined constraints like room count and room function. Tutenel et al. (Tutenel et al., 2009) developed a rule-based system which defines room types using a semantic database, and entities can develop relationships between their adjacent neighbors. Lopes et al. (Lopes et al., 2010) tested an constrained rectangular L-growth algorithm which generated fully-connected rooms for structures, which heavily influenced the ideas in this project. Camozzato et al. (Camozzato et al., 2015) procedurally develop floor-plans using a hand-drawn building exterior as input in a rectangular-growth-based approach. Guo and Li (Guo and Li, 2017) created a system which uses a combined approach of agent-based search and optimization to created multi-level structure floor-plans.



2.2. Minecraft & The Generative Design in Minecraft Competition



Minecraft (Mojang 2009) is a popular open-world survival game where the player is spawned within a voxel-block world. Gameplay largely consists of “mining” blocks and building tools and structures with them. While the game has an “developer designed” goal for the player to accomplish- defeating the Ender Dragon - many players rather focus on building houses or settlements. Every coordinate location in Minecraft can be represented as a 1x1x11𝑥1𝑥11x1x11 italic_x 1 italic_x 1 block. All blocks, positions, and dimensions mentioned in this paper are in regards to this representation.



The Generative Design in Minecraft (GDMC) AI settlement generation competition (Salge et al., 2018) is a new AI challenge in which the goal is to develop algorithms that can develop adaptive and “interesting” cities and towns in Minecraft. Instead of “clean-slate” generation done by many existing PCG systems, where the generator is not restricted by already-existing game elements, this competition focuses on “adaptive” generation, where the generator is required to build on top of and in response to artifacts that already exist. For example, if a river exists within the given map terrain, a generator would build a bridge across that river.



The GMDC has just closed submissions for its second iteration of the settlement generator competition, and one observation is that none of the entries for the last two rounds have attempted to fully generate structures during generation. Most structures are based on templates and are often varied using hard-coded variables like dimensionality and building material. The internal floor-plans of these structures are almost non-existent or also based on templates. This paper attempts to push the boundaries of this by fully generating the internals of structures from scratch. For this reason, we are making available all of the code used in this project, which we attempted to make as easy as possible to implement in any settlement generator by simplifying the input: given a rectangular 3 dimensional space, generate a floor-plan for it.



3. Methods



The building generator described in this paper can be divided into two parts: 1.) floor plan generation and 2.) external wall generation. These methods are discussed below.



3.1. Floor Plan Generation



The floor plan is generated using a simple constrained growth algorithm. The original idea for using this as a floor plan generator stemmed off an L-shaped constrained growth method researched by Lopes et al. (Lopes et al., 2010). Unlike their method, this one does not grow in a rectangular fashion but instead uses the natural granular unit provided in Minecraft, a single block.



3.1.1. Room Placement



First, the number of rooms is calculated by taking the rounded cubed root, i.e. x33𝑥\sqrt[3]xnth-root start_ARG 3 end_ARG start_ARG italic_x end_ARG, of the total area of the rectangle in which the building will be generated. For example, obeying this rule, a structure that is 9x99𝑥99x99 italic_x 9 will be 4 rooms. This does not take the height of the building into account. After the number of rooms is determined, each room is given a random initial starting location within the space. Rooms are not allowed to start on top of, or directly adjacent to each other. A room’s starting location is designated by a 2x22𝑥22x22 italic_x 2 square. Figure 0(a) shows an example of initial room placement. All rooms must start within the external walls of the building (the darker blocks). If a room cannot be placed, e.g. the placement of previous rooms prevent it from finding applicable space after 100 attempts, the room is no longer considered a part of the building plans.



Figure 1. A walkthrough of the constrained growth process



3.1.2. Room Growth



After initial room placement, the rooms take turns growing themselves by one block each turn, until none of the rooms are able to grow any more. The order in which this is done is randomized, as room turns are shuffled after each iteration through all the rooms. Figure 0(b) displays the results of the constrained growth algorithm for the same building in Figure 0(a) after two iterations. The rules of growth are simple. On its turn, a room searches for potential growth locations, determined by their direct adjacency (not diagonal adjacency) to other blocks already in the room. A block that is already adjacent to another room is not considered a potential growth candidate. Rooms also cannot grow into the external walls. Each room is growing in an organic way, with no motivation to retain its initial geometrically square shape. Figure 0(d) displays the rooms after both have run out of room to grow.



3.1.3. Door Placement



After rooms are finished growing, the generator moves onto the door placement segment of the process. In this stage, doors are placed to connect rooms, and a single door is placed in the external wall to let one into the building. Unlike some generative methods which use an optimization graph-connectivity algorithm, door placement is done on a granular level. A door can only be placed where there is a wall and where it would be ”in-between” to two different rooms (or another door). In addition, doors can only be placed if it is adjacent to at least one other wall, and when a door is placed, it will place two walls on either side of it. Figure 2 displays 4444 different legal ways that doors might be placed in the previous building example. In some cases, several of these placement possibilities may occur simultaneously, so that rooms have multiple doors between them. Figure 0(c) shows an example of two doors placed adjacently, which can create the in-game effect of either one room being extended by a block or even making a small hallway.



Figure 2. Various legal door placement possibilities. ’D’ marks a door that has been placed. ’X’ marks a tile once designated as a room area that has been transformed into a wall because of door placement.



3.2. External Wall Generation



After the floor plan has been generated, the system begins the process of creating the external walls. This is done using a process that comes from a family of algorithms known as Cellular Automata (CA), a strategy well-known in games and simulations. In this system, CA is used to self-organize the placement of solid blocks and glass windows, to the effect of creating interesting exterior walls for structures.



This system uses a style of neighbor summation, or in other words, not caring so much about specific neighbor states, but the summation of those states. A block state is characterized as a 1111 if it is a window, and 00 if it is a solid block. Each block has 4 neighbors and themselves; therefore sum of the states can lie anywhere between 00 and 5555. At wall initialization, a matrix of the height at width/depth of the building (depending on which wall is being generated) is randomly generated with 75%percent7575\%75 % of the wall being solid blocks and 25%percent2525\%25 % being glass blocks. The rules for cellular automata are simple: if the sum equals 2222 or 3333, the current block is a glass block, otherwise it is a solid block. After 10101010 generations, the wall is considered finished. After generating all 4444 walls, they are placed into the sides of the building. An external door into one of the rooms is also placed randomly in one of the external walls, as an entrance into the building.



4. Analysis



The data from our structural analysis comes from 3333 experiments in which structures of various dimensions were generated. Premium ebooks for premium people Each experiment generated 1,00010001,0001 , 000 buildings. The first explored small 7x77𝑥77x77 italic_x 7 block buildings (3-room), the second skinny 6x126𝑥126x126 italic_x 12 block buildings (3-room), and the third larger 15x1515𝑥1515x1515 italic_x 15 block buildings (5-room). Several metrics are measured over the course of generating buildings and are described in Section 4.1. In Section 4.2, we present a subjective evaluation of the general organic feel of the buildings that are generated and provide screenshots of a few generated artifacts in Minecraft.



4.1. Metrics



All experiments were done on a MacBook Pro 2016 with a 2.92.92.92.9 GHz Intel Core i5555 processor and 8888 GB of RAM. Experiment 1 (small buildings) took approximately 7.907.907.907.90 seconds, and Experiment 2 (long skinny buildings) took approximately 12.3012.3012.3012.30 seconds, Experiment 3 (large buildings) took approximately 154.03154.03154.03154.03 seconds. Experiments were conducted on a single thread. As expected, the larger the dimensions of the building become, the more time is required for the constrained growth and cellular automata algorithms to complete.



In addition to time spent generating, 2222 building metrics are measured over the course of generation: number of doors and average room size. We want to point out that all buildings were fully connected (i.e. one could traverse all areas of empty space in the building). Figure 3 displays these metrics.



Figure 3. Metrics collected during experimentation; all buildings are fully connected. Error bars represent true mean 95%percent9595\%95 % confidence intervals



• 7x77𝑥77x77 italic_x 7 Small Buildings: These structures all contain 3333 rooms each. The average room size is approximately 5.725.725.725.72 with a 95% confidence interval of 0.0690.0690.0690.069. There are 3.923.923.923.92 doors on average with a 95% confidence interval of 0.0720.0720.0720.072.



• 6x126𝑥126x126 italic_x 12 Long Buildings: These structures also all contain 3333 rooms each. The average room size is approximately 9.569.569.569.56 with a 95%percent9595\%95 % confidence interval of 0.0690.0690.0690.069 There are 5.405.405.405.40 doors on average with a 95%percent9595\%95 % confidence interval of 0.0810.0810.0810.081



• 15x1515𝑥1515x1515 italic_x 15 Large Buildings: These structures all contain 5555 rooms each. The average room size is approximately 23.7823.7823.7823.78 with a 95%percent9595\%95 % confidence interval of 0.0610.0610.0610.061 There are 18.2118.2118.2118.21 doors on average with a 95%percent9595\%95 % confidence interval of 0.1800.1800.1800.180



The most obvious conclusion one can draw from these numbers is that as the dimensions of the structures increase (and thus square block-age increases), there is an exponential increase in the average room area. This is because room-count is determined by taking the cubic root of raw square block-age. Another conclusion is that average door count per building also increases at a seemingly exponential rate. Even in a building with only 5 rooms, there is an average of roughly 18181818 doors, suggesting that there are large inefficiencies in connectivity. However, this might make sense if, for example, the rooms in question were very long and might require multiple entrances and exits.



4.2. Observations



In this section, we discuss a curated group of structures of various sizes and layouts.



Figure 4 displays a generated ASCII building layout and the resulting building in Minecraft. Figures 5 display several examples of generated floor-plans using the same dimensional space. Unlike real-world structures, the layout of these rooms are organic looking and much less rectangular by comparison. Small alcoves and closet areas are more commonplace, and one can see a variety of odd shapes.



Figure 4. A generated ASCII character building layout compared to a Minecraft building generated using that layout



Figure 5. Examples generated layouts using identical dimensions (12 x 19)



When the buildings are small, they are simple. The lower average door count (compared to the larger structures) means that the buildings themselves are more linear. Figure 7 displays a room that could defined as a living room or a bedroom. As structures get larger, there are many more pathways through the structure. Sometimes this can be disorienting without any identifying features in the house. In addition to this, large buildings often have bigger rooms, and therefore more doors per room in close proximity. Figure 6 displays such an example of a large amount of door choices. In the future, a generator which includes an interior decoration system would be of great benefit in preventing confusion.



An interesting side effect of the door placement algorithm is the creation of small “closet rooms” or “pantries.” Figures 8 and 9 display two such examples of these rooms. One could easily classify these rooms as pantries, closets, or even bathrooms.



The cellular-automata-generated external walls provide adequate amounts of natural light into the building, without forsaking privacy. Sometimes windows are placed very high up on the wall, while other times the windows stretch the entirety of the floor to the ceiling. Overall, this method provides dynamic and unique mosaics that are interesting to look at. Figure 7 displays one such example of diagonal wall patterns, and Figure 9 displays a similar pattern within a “small room.”



5. Future Work



One of the main aims of this work was to provide a reusable and extendable framework for building generation to the GDMC community. In the following section we want to discuss some possible extension that could be carried out, either by us or by others.



5.1. Modularity



The generator executes several, modular stages, such a floor plan generation, door placement, and external wall generation. Each of these stages takes input from the previous step, but can be changed or extended in a modular way to create a greater variety of buildings, or buildings of a specific type. For example, one could provide something other than a rectangle for the initial building footprint. Or the expansion of rooms could be weighted, to create a range of smaller and bigger rooms. Similarly, the cellular automata that creates the walls can be modified to produce a different style of wall. It is even possible to just exchange one technique for another. So, instead of using a cellular automata, one could use a grammar based approach to create walls, while still using the other steps of the algorithm.



5.2. Adaptivity



The adaptivity to existing content is a central challenge of the GDMC Settlement Generation competition. While we do not directly address it here we want to outline how the framework could be extended to tackle this. First, this approach is flexible enough to produce floorplans for arbitrary building footprints - and said footprints could be determined from available flat land on a given map. During later states it would also be possible to integrate existing terrain into the progress. For example, the cellular automate could also check the type of block immediately next to the house to determine if it is air or something else. This could then be used to not have windows show up next to an external dirt wall. The growth like approach can also grow around existing obstacles - imagine a multi story building that stands partially on support stilts. It might be a good idea to have those stilts extend thought the building in the form of pillars or load bearing walls. To realize this, we could set some piece of the floor plan to walls (possible even made from a sturdier material), and then still have the rooms grow around them.



6. Conclusion



This paper introduces a simple yet effective way of floor-plan generation for Minecraft buildings. The method is a constrained growth approach, treating the rooms as individual entities which are allowed to grow one one block at a time. The generated buildings have an organic feel to them, differentiating themselves from traditional rectangular room layouts. As structures get larger, they often become disorienting due to the absence of any interior room landmarks. A cool side effect of the door placement algorithm produces “small rooms,” which are not originally designed in the constrained-growth-produced floor plan.



We hope to see this generator built on in future work. One of our motivations for this work was to push the current state of the GMDC settlement generator competition into moving away from template structure techniques and to use more procedurally generated ones. Our code is optimized to be used in place of a template, so we hope to see it or an augmented version of it used in a settlement generator. We would also like to improve this system by adding a room furnisher, which can add interior landmarks to help guide a player through the building. We believe this will help especially with the larger structures, which can sometimes be difficult to navigate.



Acknowledgements.Michael Cerny Green acknowledges the financial support of the SOE Fellowship from NYU Tandon School of Engineering. Christoph Salge is funded by the EU Horizon 2020 programme / Marie Sklodowska-Curie grant 705643