Next Article in Journal
Failure Detection of Composites with Control System Corrective Response in Drone System Applications
Next Article in Special Issue
Bridging the Gap between ABM and MAS: A Disaster-Rescue Simulation Using Jason and NetLogo
Previous Article in Journal
Low Effort Design Space Exploration Methodology for Configurable Caches
Previous Article in Special Issue
Battery Modelling and Simulation Using a Programmable Testing Equipment
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Levels for Hotline Miami 2: Wrong Number Using Procedural Content Generations

Artificial Intelligence in Games Development Lab, Innopolis University, Republic of Tatarstan 420500, Russia
*
Author to whom correspondence should be addressed.
Computers 2018, 7(2), 22; https://doi.org/10.3390/computers7020022
Submission received: 15 February 2018 / Revised: 29 March 2018 / Accepted: 30 March 2018 / Published: 4 April 2018

Abstract

:
Procedural Content Generation is the automatic process for generating game content in order to allow for a decrease in developer resources while adding to the replayability of a digital game. It has been found to be highly effective as a method when utilized in rougelike games, of which Hotline Miami 2: Wrong Number shares a number of factors. Search based procedural content, in this case, a genetic algorithm, allows for the creation of levels which meet with a number of designer set requirements. The generator proposed provides for an automatic creation of game content for a commercially available game: the level design, object placement, and enemy placement.

1. Introduction

The Hotline Miami series of games [1,2] involves a set of psychopathic killers who wear various animal masks during their attacks. It stylistically takes inspirations from movies like Drive and other neo-noir films with 1980s bright neon visuals and a synthesizer europop soundtrack. The storyline has been compared to the movies of David Lynch. The game is a top-down view of what looks like an architecture diagram of the building where a player has perfect knowledge of the space. Game play is fast paced, meeting with the idea of a psychopathic murder’s spree, and the player is killed with a single hit by an enemy; upon death, the player is immediately re-spawned into the level at the start in order to play through the level again. This makes the design of such levels decidedly different from the majority of game genres investigated for implementing Procedural Content Generators (PCG) for level design, see [3].
Hotline Miami levels are best examined, like for example top down dungeon crawlers and non-digital games such as Dungeons & Dragons [4,5,6,7,8]. Action based Role Playing Games (ARPGS) such as Diablo are close to the feel of Hotline Miami, however, the level size is much larger in Diablo, and considerations of line of sight are not as pressing in a hack and slash world with a character able to take a number of hits, compared to the immediate death and re-spawn mechanic of Hotline Miami. See Figure 1 for examples of the levels.
Many representations were introduced that allow the designer control over the type of mazes that are generated, e.g., caverns, rooms, and etc. Ashlock et al.’s studies [6,7] use a checkpoint-based genetic algorithm that optimizes the fitness function toward creating mazes with user-defined characteristics. McGuinness and Ashlock [5] showed that the resulting mazes generated in the previous work could be tiled in order to create larger, more complex mazes. This technique could be extended to include other generation types, e.g., terrain, in order to create large maps. Valtchanov and Brown [8] use a genetic programming approach to create Diablo style levels via the placement of pre-generated tiles. The tile method follows a number of current industry practices of the creation of random levels with game elements. The fitness functions used include a placement of ‘event rooms’ which could contain boss battles or treasure rooms. Aslam et al. [9] uses Genetic Algorithms as a placement method for title in a serious game, and demonstrate that they outperform humans on relatively simple placement tasks compared with an objective measure of fitness.
There have also been a number of PCG generations for the design of the interiors of buildings, primarily for architectural design problems such as those in [10,11,12]. However, their evaluations are based on optimizations of floor plans for realistic buildings and look to architectural requirements as their constraints. These methods primarily assume the external structures are fixed and are akin to layout and packing problems which have additional restrictions on the flow between the named areas, or restrictions based on use of the rooms, e.g., placing bathroom beside the master bedroom.
However, in all of these methods little integration to real games has been presented. In this paper, looking at Hotline Miami it was necessary to reverse engineer the level files in order to place the developed levels into a commercially playable game, rather than acting as a simple technical demo. We present a Genetic Algorithm (GA) approach, first seen in [13], to create the layout for levels using the reverse engineered level files, and examine a set of fitness functions for their suitability to create level layouts which meet with the constraints of player movement and with creating a connected tight space for players to act within. This is then extended looking at the placement of objects within the space via Petri nets, and the placement of enemies with a second GA.
Small example games have shown how PCG integration can be used to create an entire game. Cook and Colton [14] build an entire arcade game using various PCG techniques as presented above for a framework known as ANGELINA. The system creates what the authors call a multi-faceted evolution which procedurally generates a map, a layout defined as the player and NPC positions, and a rule-set for the game. Yet, very few academic generative methods have been applied with much success to current games and methods in the industry, in part due to trade secrets employed by developers. Noteworthy examples of PCG for commercially available games include: Ropossum levels [15], Mario Levels [16], a generator for Zelda levels [17], and Spelunky generation [18]. However, none of these examples are using the commercial game’s own engine as part of the tool chain and instead require a complete reimplementation of the game. Due to the reverse engineering of the file format for the available level editor, the generations upon Hotline Miami demonstrated in this paper can be used in the working commercial game, and the file format is described allowing for others to also demonstrate other techniques in this game. The method chosen allows for a level of control in generation via the use of a series of fitness evaluators which examine the generations for mechanical issues in game play, as well as for aspects in the connections, room size, and movement within the level. The generator produces levels ready for further development by a human to ensure aspects such as game difficulty which are currently beyond the scope of this work.
The development of PCG for Hotline Miami will progress in two stages. The first stage is the development of the level layout, and the second stage is placement of objects, enemies, and power-ups. We will examine the first of these two stages in detail, and give directions for the placement of objects and enemies.

2. Methodology

Evolutionary Algorithms (EA) use principles from Darwinian evolutionary theory, specifically a fitness biased selection method, in order to solve problems in diverse field such as optimization and planning, see [19] for a general overview. We are interested in its ability to work as a design tool, which allows for a diversity of solutions, as well as optimization against a set of requirements. Genetic Algorithms (GA) are EAs developed first by Holland [20] which have populations of candidate solutions to the problem called chromosomes. Chromosomes are tested for their ability to solve a problem via a fitness evaluation which produces a fitness score. The fitness score informs a fitness biased selection which decides on the chromosomes which undergo variation operators. GAs use the notion of a genetic breeding between pairs of chromosomes, a crossover, and small changes to a single chromosome, mutation, as variation operators.

2.1. Representation and Translation

2.1.1. Representation

The representation used in this study is similar to the indirect positive method used by Ashlock et al. [6] which defines rooms using an integer representation of the areas they take up. We do not utilize a mapping function nor is placement relative to previous rooms such as in [8], but instead expressly place rooms into the space.
Rooms are defined as a five-tuple ( x , y , l , w , t ) where:
  • x is the starting x-coordinate of a room
  • y is the starting y-coordinate of a room
  • l is the length of the room
  • w is the width of the room
  • t is the placement type of a room, if it places on-top of (O) or under (U) previously placed rooms.
Chromosomes are sequences of rooms which will be placed in order. The first room is placed into the space. In order to ensure connectivity, a new room is only placed into the layout when it overlaps with a currently existing room. This allows for the algorithm to create levels with a number of rooms less or equal to the length of the chromosome. Doorways are important within Hotline Miami as they block line of sight for enemies, and doorways can be used to attack enemies by knocking them down, which stuns them for a coup de grâce by the player. The potential doorways are defined by adjacent borders of rooms. Doorways are placed at the random location in each adjacent wall. In an O type room, the wall of the newly placed room defines the potential doors, a U type room defines the walls of the previously placed rooms as being the locations of potential doors.
Figure 2 displays the generated level rendered by the in game development render for the chromosome in Figure 3.

2.1.2. Translation

The translation step changes the chromosome into a full working level for the game. A level editor for Hotline Miami 2: Wrong Number was released in beta, and via an exploratory process the level files were reverse engineered.
A Hotline Miami level is described by a set of plain text files, described below, with each line encoding a single value.
  • level.hlm ‘Hotline Miami level’ file.
    Holds meta information about the level such as name of the level, name of the author, and size of the level. See Table 1 for the breakdown of the attributes. The level of Hotline Miami is organized in square tiles each having the size of 16 px by 16 px. Maximum allowed size of the level is 1088 px by 768 px.
  • level.ver ‘version’ file.
    Contains a single integer, which represents version of the editor. At the moment of writing the value was ‘2’.
  • level0.obj ‘objects’ file.
    Holds information about the player character, player’s car, doors, enemies and decoration objects. Each entity is described by its object ID, coordinates ( x , y ) , sprite ID, rotation in degrees of the sprite, behaviour type for AIs(static, patrol, idle), index of the frame for the sprite of this object. This index allows the game to select the current image from the sprite sheet allowing the game to make animations. See Table 2 for a breakdown of the attributes.
  • level0.tls ‘tiles’ file.
    Describes the floor tiles. Each tile is a square of size 16 px × 16 px. See Table 3 for a breakdown of the attributes.
  • level0.wll ‘wall’ file.
    Contains descriptions of wall segments. Each wall is assumed to be 2 tiles or 32 px wide. See Table 4 for a breakdown of the attributes.
  • level0.play ‘play’ file.
    This file contains all game entities. On level launch, every entity from other files is transferred here. Level editor works without this file, but the game will not launch.
This was a major undertaking to decode the files to allow for a new level to be input into the system and demonstrates that developers who have explicitly provided level editors can prevent ease of use of their systems for the modding and academic communities by not using a human readable format.

2.2. The Algorithm

2.2.1. Internal Representation

Walls in Hotline Miami span two tiles, so to be properly translated into Hotline level format we used ’Wall Segment’ class which holds block of 2 × 2 tiles. For each segment there is a corresponding number describing to which room this segment belongs.

2.2.2. Level Building

The core of the algorithm is the level building step, see Figure 4, which takes a chromosome and subsequently adds each rectangle to the level. During that process a room is created and assigned a list of segments that belong to the room. If overlapping rooms split another room into two sections, then they will not be placed. After all chromosomes have been added, the algorithm places a door between adjacent rooms.

2.3. Variation Operations

The evolution progresses for 100 generations, rounds of fitness evaluation followed by crossover/mutation, with a randomly initialized population subject to the following operations:

2.3.1. Crossover

The crossover utilized is a uniform order method with a probability of 0.5 for taking a room from each of the parents. See Figure 5 for an example.

2.3.2. Mutation

The mutation operation selects a random room and replaces it with a randomly generated one. See Figure 6 for an example.

2.4. Selection

The population in this study is set to 20 chromosome levels of size 10, which are evaluated via the fitness function. The crossover of the two fittest individuals is copied over the entire population, and the children are then subjected to the application of a mutation.

2.5. Fitness Evaluations

In order to demonstrate the method, and to show control over the level of development, a number of fitness evaluations were proposed to discover a setting which will create levels with properties beneficial to the game experience. At first, evaluation was set to encourage maximum amount (10) of rooms. However, in this case, rooms were disconnected from each other. To fix that, a new constraint was introduced: only overlapped or connected rooms are used in fitness calculation. With these conditions, other fitness functions were implemented:

2.5.1. Maximize Rooms

This evaluator increases fitness value for each connected room.
F i t n e s s = N r o o m
This provides levels with larger amounts of rooms that are connected. Note that as non-connected rooms are removed from the final translation of a chromosome into a layout, the evolution has an indirect control on the number of rooms placed.

2.5.2. Maximize Total Rooms Area

This evaluator increases fitness value for each tile inside building. One tile is a unit of area.
F i t n e s s = a r e a
This provides levels with large rooms and/or many rooms.

2.5.3. Minimize Total Rooms Area

This evaluator decreases fitness value for each tile and has maximizing number of rooms in priority, to prevent one small room in the output of the generator.
F i t n e s s = 1000 N r o o m a r e a
This fitness attempts to provide small rooms and also to cause rooms to not be utilized in the chromosome.

2.6. Graph Based Fitnesses

The following fitnesses assume that the reader has some familiarity with graph theory, see [21] for a review. A Simple Graph G ( V , E ) is a non-empty set V of vertexes or nodes and a set E of unordered pairs of elements of V, called edges. Two distinct nodes, v 1 and v 2 , are said to be neighbours if ( v 1 , v 2 ) E . The number of edges in E which contain a vertex is called the degree of the vertex. The diameter of a graph is the largest number of edges in any shortest path between any two of the vertices.

2.6.1. Maximize Degree

For the given chromosome, a graph is constructed, where every room defines a vertex, and each adjacent wall defines connection between two rooms. The fitness evaluator returns cardinality of edge set.
F i t n e s s = | E |
This fitness function should create levels with many connections between rooms.

2.6.2. Maximize Diameter

For the given graph, this evaluator calculates the diameter and returns the sum of rooms quantity and diameter.
F i t n e s s = 1000 N r o o m + d i a m e t e r
where N r o o m is the number of rooms.
This fitness function should encourage long paths between any pair of rooms.

2.6.3. Minimize Diameter

For the given graph, this evaluator calculates the diameter and returns the difference of rooms quantity and diameter.
F i t n e s s = 1000 N r o o m d i a m e t e r
This fitness function should encourage short paths between any pair of rooms.

2.7. Fitnesses with Corridor Penalty

2.7.1. Corridor Penalty

In all the aforementioned cases, fitness functions created narrow rooms in which a character could not move. This fitness function penalizes the gene for each tile in a narrow corridor and for one tile rooms.
F i t n e s s = N r o o m ( 1 + N n a r r o w ) 10 N t i n y
where N n a r r o w is the number of narrow rooms (with width or height equals to 1 tile) and N t i n y is the number of one tiled rooms.

2.7.2. Complex Fitness

This evaluator was developed to create interesting and realistic buildings. This fitness function aims to maximize the number of rooms, the diameter of graph, and keep the average degree close to two. It also penalizes each tile in a narrow corridor and one tile rooms.
F i t n e s s = e x p D e g r e e N r o o m log ( d i a m e t e r ) log ( e + N n a r r o w ) 10 N t i n y
where e x p D e g r e e = e ( a v g D e g r e e 2 ) 2 .
The goal of the evaluation of all these fitness functions is to demonstrate that the fitness function can provide a control to the designer on generation to create a room with the required characteristics.

3. Generated Level Examples

In order to show this control to be effective, a number of levels were generated of each type and compared statistically to demonstrate the effect of the control from the fitness functions above. The evaluated feature set includes the: Number of rooms placed in the final level, the total area taken by the map, the minimum room area, the maximum room area, the number of one tile corridors, the diameter of the graph formed by the connections between doors and the average degree of the graph formed by the connected rooms. The one tile corridors value is important, as a player character cannot move though such corridors, and should be minimized. The fitnesses expressed in Section 2.5 are examined on the average of 30 runs of the generator and means and 95 % confidence intervals are shown in Table 5, in order to show the expression of the levels based on the selected fitness function.
The statistics from the developed levels demonstrate that the generator responds well to control via a fitness function.
The maximize rooms fitness method was able to utilize all rooms in all cases; other fitness methods which provided the same outcome were the minimize area and the two diameter controls. Total Area and Min/Max Room Area in maximization of rooms fitness was not that different from the diameter fitness cases. One tile corridors were reduced in the minimization of diameter. Respectively, the Minimize and Maximize Diameter both were significantly different from Maximize Rooms in both diameter and degree. The Maximize Rooms fitness has no controls over area, diameter, or degree, and thus provided a baseline assessment of the generated room layouts.
There is a statistically significant increase/decrease in the room size for the Maximize/Minimize Area while maintaining similar degree and diameter of the graph, as seen in Figure 7. The levels visually demonstrate a common connective look, but the space is compressed or expanded.
Similarly, changes to the Min/Max Diameter of the graph do not significantly change other parameters, however, levels with low diameter have higher degree of about one more. This is expected as reduction of diameter is an outcome that results in higher connectivity between rooms. The GA can successfully see this trade. The maximization of the degree reduced the diameter compared to the Maximization Diameter fitness function, and even was significantly higher from minimization of diameter, accomplished most likely by small trade-offs on the number of rooms utilized.
The Corridor Penalty in its own fitness check removes the one tile rooms completely as part of the fitness. The Complex fitness levels share this removal of tight corridors as they also penalize the smaller rooms. Via removal of these small corridors, there is a significant increase, about five units, except for Maximize Areas where it is only two, in the minimum room area against all fitness functions which do not apply this penalty.
The Complex fitness function provided for levels which are close to some of those seen in the game, such as in Figure 8. The generated examples met with our original requirements of a compact construction of rooms with many connected doors which closely resembles a building layout as seen from above. Interestingly, this fitness function provided for statistically significant less rooms than any of the other methods, and was smaller in terms of total area, while keeping the minimum room area relatively high. Degree was kept within a tight distance to exactly two, only deviating upwards by 0.08. The diameter was also the second highest value. Other than the number of rooms, the generated levels were well within our requirements of this fitness function, most likely this is due to the fitness function in a way expecting too much and the lacking room penalization not being high enough to provide selection pressures away from increasing the other values by losing rooms.

4. Placement Problems in Generated Layouts

The layout of the level is only one factor in a fully featured generation. After the layout is developed, objects and enemies should populate the levels in order to both complete the mechanical requirement, that a player needs to defeat all the enemies in a level, as well as the narrative or thematic believability of a space as being lived in, rooms are not just empty in buildings as they have purpose for their construction and roles for their use.
The system first constructs the placing of objects into the rooms and then placing enemies. Objects can interfere mechanically with the player and with enemies’ movements which can make substantive changes to the outcome of the difficulty of a level based on blocked lines of movement.

4.1. Object Placement

Objects are placed in rooms using the Petri net method examined by Taylor and Parberry [22]. A Petri net is a directed bipartite graph with a set of tokens. The nodes in first partition are called places and the nodes in another partition are called transitions. Tokens are put on places of Petri net and transitions describe how they can move around the graph. If all of the places which connected by incoming edges with the transition contain at least one token then the transition is called live. At each step, one live transition is randomly chosen to fire, one token from each incoming place is removed and one token is added to each outgoing place.
Taylor and Parberry proposed to use anchor points of room as tokens in Petri net. Anchor points are some precomputed places in the room where objects can be set. In our case this is the tiles near walls, corner tiles and tiles in the center of the room excluding points near the doorways to prevent them from blocking.
For each incoming edge user can specify which type of tokens are allowed. Each incoming edge can create an object at the anchor point represented by the token. The tokens are fed to starting places of Petri net at the start of the program and after that live transitions execute randomly.
The objects within these rooms were limited to placement of a television, a bookshelf, and a billiards table into the room, to create something narratively described as a rec-room. Figure 9 displays an example output. However, the definition of these assets is rather general, and hence, themes for the rooms can be implemented.

4.2. Enemy Placement

We examine an early development of the enemy placement. Enemies are generated using a second Genetic Algorithm. The enemy placement algorithm is based on the previously generated room layout, decor objects, and placed level entrance. Each generated room has a list of tiles. Each decor object occupies some tiles. The graph of the generated rooms is used to calculate the indexes for the rooms in the chromosomes. First, the center of each room is calculated by calculating the center of all tiles of the room. This allows us to assign edges of the graph weights equal to distances between these centers. Then the distance from the entrance room to all the other rooms is calculated. Using the list of distances, the rooms are ordered and assigned indexes starting from 0.
A chromosome is represented by a list of enemies in one of the generated rooms and the generated index of that room. Tiles are represented by their absolute coordinates on the level plane. Available tiles are the tiles of the room less the tiles occupied by the decor objects. An enemy is represented by the tile it occupies and its type—an integer that corresponds to the type of the enemy in the game is described in detail later.
Generation of a chromosome is done by selecting a random amount of tiles from the available tiles of the room and placing enemies with random types in these tiles.
A desired difficulty is set for the level. Fitness of the generated gene (list of all chromosomes representing generated enemies) is calculated by a comparison of the desired difficulty of each room to the evaluated difficulty of the generated chromosomes.
This fitness function is defined to ensure four goals:
  • Set a desired level of difficulty for the whole level.
  • Adjust the types of enemies in the level by changing their difficulty.
  • Make the level progressively more difficult until the end
  • Add more enemies to the large rooms, and less to the smaller rooms
Each enemy type is assigned a difficulty value for a player. The list of the difficulty of types of enemies in descending order are: boss—100 points, dodger—80 points, dogs—40 points, uzi—30, shotgun—30, 9 mm—20 points, melee—10 points. The uzi, shotgun, 9 mm, and melee enemies can be set to a static position, or a patrol/random route. If they are set to have a patrol/random route they are worth an extra five points.
Fitness evaluation of the gene is done in the following steps: First the desired difficulty of each room is calculated based upon a developer assigned difficulty level:
d e s i r e d D i f f i c u l t y L e v e l × R o o m A r e a a v e r a g e R o o m A r e a × l o g 4 ( i n d e x o f t h e R o o m + 4 )
where
a v e r a g e R o o m A r e a = ( m a x R o o m S i z e 2 + m i n R o o m S i z e 2 ) 2
The minimum and maximum sizes of a room are the settings of the generator of the level above. Then the difficulty of the generated enemies in each room are calculated by taking the square of the number of enemies in the room plus the sum of the point values of those enemies.
This value is then compared to the desired difficulty of the room to give the final fitness value of a room:
f i t n e s s R o o m = | d e s i r e d D i f f i c u l t y g e n e r a t e d D i f f i c u l t y |
The sum of these differences for the rooms is then minimized by the GA.
For our example, see Figure 10 we used the settings of a desired difficulty of 80. It was run for 100 iterations with a population of 20. The top two results repeatedly breed to fill out the remainder of the population. We use a uniform crossover point crossover and a mutation which changes the enemies in a single room.

5. Discussion

5.1. Placement in the Taxonomy

In order to frame our discussion about the generator we look to Togelius et al.’s taxonomy for Procedural Content Generation methods [23].

5.1.1. Online v. Offline

The generator is an offline method of level creation. The search time and characteristics of the beta level editor means that we cannot have direct calls from the game to act for the production of levels, though given the time for generation of a level space, if accepted into the game then the development of new levels could be placed into a background process.

5.1.2. Necessary v. Optional

The level developed presents a necessary part of the game. The layouts developed ensure that they are playable by ensuring connectivity of rooms and not creating any unlinked rooms in order to ensure they meet with a playable level.

5.1.3. Levels of Control

As we have shown with the statistical analysis of the fitness function, the developer is able to have a level of control via the development of the fitness function. The representation was chosen to create a search space of levels which are likely to occur in the current human designed levels—a collection of tightly packed, connected rooms, separated by doorways which allow for lines of sight to be blocked as well as a unique attack in the game. The selection of attributes in the fitness function provides a control method.

5.1.4. Generic v. Adaptive

The generator is generic as it does not take into account player skills as part of the fitness evaluation method and targets a set difficulty by the developer. However, as we are generating the placement of enemies, a key component in the difficulty of a level, there is a need for an adaptive evaluation going forward.

5.1.5. Stochastic v. Deterministic

The GA presents a stochastic method for the development of levels. The GA also allows for a set of good levels to be produced via the same set of parameters and the selection of the fitness function. This guides the search method to a good subset of levels in the search space.

5.1.6. Constructive v. Generate & Test

The generator is a generate & test method for putting the levels to the test of a fitness function. However, the representation method ensures that the levels meet with a number of constructive problems such as avoiding rooms without entry ways and ensuring connectivity. The testing ensures that the level meets with the requirements to satisfy the control of the method.

5.1.7. Automatic v. Mixed Construction

The generation method provides an automatic development fully formed for the development of the playable space. The enemy generator is able to provide a working level space, and finally rooms can be populated by a set of objects. Only missing is any power-ups to be placed by the developer.

6. Conclusions

As stated above the goal of this project is to fully automate the development of levels for Hotline Miami in two stages: development of the level space and the placement of enemies and power-ups. This study fully examined the development of levels and the representation. We have shown a quantitative analysis of the effects of changing the fitness function, in order to allow for different characteristics to be shown in the developed levels. This set of fitness functions, much like those shown in [6,8], demonstrates an effective control on the features seen in a level under this framework. Controls can be placed on individual features, in this case size and graph measures, to prevent the level generation from demonstrating poor behaviours, i.e., small corridors, or combined into a composite function to provide entire levels meeting with a description of the space.
In future work we aim to include the further development of the placement of the enemies into this framework. In terms of the Petri nets we have only looked at the development of the level layout in terms of the mechanical properties and have not examined the aesthetics of the rooms—such as placing items to show a room to be a kitchen or an office building.

Play Testing

The design process for a game should always include a requirement of play testing of the levels in order to determine suitability for the players at all skill levels and ensure the game is fun. This requirement should not be removed by the use of a PCG method, see [24] for a good example of PCG with player feedback. In fact, it is even more necessary as the generator is creating levels solely on the objective basis of the fitness function, which while meeting with constraints of the system may not meet with the subjective requirements of players. The game should be presented to a number of human players of various skill levels and qualitative and quantitative responses should be gathered about the levels. This would allow for a refinement of fitness functions.
Further, the levels generated could be compared to human developed methods in order to allow for a test on the human competitive ability of the process. One method would be to run a Turing test between human and generative methods [25]. Though many human developed levels will not meet with the principles of game design which most developers aspire towards, we believe a better test would be to look at the scores by a human play test group in terms of the playability or fun, when compared to a set of levels from the game itself and a set of player created levels. Otherwise, a test would be to release levels created by the generator via the Steam Workshop framework and look at user feedback, while not framing the level as a computer generated method.

Acknowledgments

The authors thank Elizabeth Reading for her proof reading.

Author Contributions

J.A.B. conceived and designed the experiments; B.L., P.O. and I.P. developed the code. B.L., P.O. and I.P. performed the experiments; J.A.B., B.L. and P.O. analyzed the data; J.A.B. wrote the paper.

Conflicts of Interest

The authors declare no conflict of interest.

Abbreviations

The following abbreviations are used in this manuscript:
PCGProcedural Content Generation
GAGenetic Algorithm
EAEvolutionary Algorithms

References

  1. Dennaton Games. Hotline Miami; Devolver Digital: Austin, TX, USA, 2012. [Google Scholar]
  2. Dennaton Games. Hotline Miami 2: Wrong Number; Devolver Digital: Austin, TX, USA, 2015. [Google Scholar]
  3. Shaker, N.; Togelius, J.; Nelson, M.J. Procedural Content Generation in Games; Springer: Cham, Switzerland, 2016. [Google Scholar]
  4. Johnson, L.; Yannakakis, G.N.; Togelius, J. Cellular automata for real-time generation of infinite cave levels. In Proceedings of the 2010 Workshop on Procedural Content Generation in Games, Monterey, CA, USA, 19–21 June 2010; ACM: New York, NY, USA, 2010; pp. 1–4. [Google Scholar]
  5. McGuinness, C.; Ashlock, D. Decomposing the level generation problem with tiles. In Proceedings of the 2011 IEEE Congress on Evolutionary Computation (CEC), New Orleans, LA, USA, 5–8 June 2011; pp. 849–856. [Google Scholar]
  6. Ashlock, D.; Lee, C.; McGuinness, C. Search-Based Procedural Generation of Maze-Like Levels. IEEE Trans. Comput. Intell. AI Games 2011, 3, 260–273. [Google Scholar] [CrossRef]
  7. Ashlock, D.; Lee, C.; McGuinness, C. Simultaneous Dual Level Creation for Games. IEEE Comput. Intell. Mag. 2011, 6, 26–37. [Google Scholar] [CrossRef]
  8. Valtchanov, V.; Brown, J.A. Evolving dungeon crawler levels with relative placement. In Proceedings of the Fifth International Conference on Computer Science and Software Engineering, Montréal, QC, Canada, 27–29 June 2012; ACM: New York, NY, USA, 2012; pp. 27–35. [Google Scholar]
  9. Aslam, H.; Sidorov, A.; Bogomazov, N.; Berezyuk, F.; Brown, J.A. Relief Camp Manager: A Serious Game Using the World Health Organization’s Relief Camp Guidelines. In Applications of Evolutionary Computation, Proceedings of the 20th European Conference, EvoApplications 2017, Amsterdam, The Netherlands, 19–21 April 2017; Squillero, G., Sim, K., Eds.; Springer International Publishing: Cham, Switzerland, 2017; pp. 407–417. [Google Scholar]
  10. Merrell, P.; Schkufza, E.; Koltun, V. Computer-generated residential building layouts. In Proceedings of the ACM SIGGRAPH Asia, Seoul, Korea, 15–18 December 2010; ACM: New York, NY, USA, 2010; pp. 1–12. [Google Scholar]
  11. Coia, C.; Ross, B. Automatic evolution of conceptual building architectures. In Proceedings of the 2011 IEEE Congress on Evolutionary Computation (CEC), New Orleans, LA, USA, 5–8 June 2011; pp. 1140–1147. [Google Scholar]
  12. Flack, R.W.J.; Ross, B. Evolution of Architectural Floor Plans. In Applications of Evolutionary Computation; Lecture Notes in Computer Science; Chio, C., Brabazon, A., Caro, G.A., Drechsler, R., Farooq, M., Grahl, J., Greenfield, G., Prins, C., Romero, J., Squillero, G., et al., Eds.; Springer: Berlin/Heidelberg, Germany, 2011; Volume 6625, pp. 313–322. [Google Scholar]
  13. Brown, J.A.; Lutfullin, B.; Oreshin, P. Procedural Content Generation of Level Layouts for Hotline Miami. In Proceedings of the 2017 9th Computer Science and Electronic Engineering (CEEC), Colchester, UK, 27–29 September 2017; pp. 106–111. [Google Scholar]
  14. Cook, M.; Colton, S. Multi-faceted evolution of simple arcade games. In Proceedings of the 2011 IEEE Conference on Computational Intelligence and Games (CIG), Seoul, Korea, 31 August–3 September 2011; pp. 289–296. [Google Scholar]
  15. Shaker, M.; Shaker, N.; Togelius, J. Ropossum: An Authoring Tool for Designing, Optimizing and Solving Cut the Rope Levels. In Proceedings of the Artificial Intelligence and Interactive Digital Entertainment (AIIDE 13), Boston, MA, USA, 14–18 October 2013. [Google Scholar]
  16. Smith, G.; Treanor, M.; Whitehead, J.; Mateas, M. Rhythm-based level generation for 2D platformers. In Proceedings of the 4th International Conference on Foundations of Digital Games, Port Canaveral, FL, USA, 26–30 April 2009; ACM: New York, NY, USA, 2009; pp. 175–182. [Google Scholar]
  17. Lavender, B.; Thompson, T. Adventures in Hyrule: Generating Missions & Maps for Action Adventure Games. In Proceedings of the Foundation of Digital Games, Pacific Grove, CA, USA, 22–25 June 2015. [Google Scholar]
  18. Baghdadi, W.; Eddin, F.S.; Al-Omari, R.; Alhalawani, Z.; Shaker, M.; Shaker, N. Applications of Evolutionary Computation. In Proceedings of the 18th European Conference, EvoApplications 2015, Copenhagen, Denmark, 8–10 April 2015; Chapter A Procedural Method for Automatic Generation of Spelunky Levels. Springer International Publishing: Cham, Switzerland, 2015; pp. 305–317. [Google Scholar]
  19. Ashlock, D.A. Evolutionary Computation for Modeling and Optimization; Springer: New York, NY, USA, 2006. [Google Scholar]
  20. Holland, J.H. Adaptation in Natural and Artificial Systems; MIT Press: Cambridge, MA, USA, 1992. [Google Scholar]
  21. West, D.B. Introduction to Graph Theory; Prentice Hall: Upper Saddle River, NJ, USA, 2001; Volume 2. [Google Scholar]
  22. Taylor, J.; Parberry, I. Randomness + Structure = Clutter: A Procedural Object Placement Generator. In Proceedings of the Entertainment Computing–ICEC 2011, Vancouver, BC, Canada, 5–8 October 2011; Anacleto, J.C., Fels, S., Graham, N., Kapralos, B., Saif El-Nasr, M., Stanley, K., Eds.; Springer: Berlin/Heidelberg, Germany, 2011; pp. 424–427. [Google Scholar]
  23. Togelius, J.; Yannakakis, G.; Stanley, K.; Browne, C. Search-Based Procedural Content Generation: A Taxonomy and Survey. IEEE Trans. Comput. Intell. AI Games 2011, 3, 172–186. [Google Scholar] [CrossRef]
  24. Roberts, J.; Chen, K. Learning-Based Procedural Content Generation. IEEE Trans. Comput. Intell. AI Games 2015, 7, 88–101. [Google Scholar] [CrossRef]
  25. Hingston, P. A Turing Test for Computer Game Bots. IEEE Trans. Comput. Intell. AI Games 2009, 1, 169–186. [Google Scholar] [CrossRef]
Figure 1. Level of Hotline Miami 2: Wrong Number [2]. Note the connectivity via doorways and the tight room placement.
Figure 1. Level of Hotline Miami 2: Wrong Number [2]. Note the connectivity via doorways and the tight room placement.
Computers 07 00022 g001
Figure 2. Internal rendering of the generated level.
Figure 2. Internal rendering of the generated level.
Computers 07 00022 g002
Figure 3. Sample Chromosome.
Figure 3. Sample Chromosome.
Computers 07 00022 g003
Figure 4. Pseudocode for level building.
Figure 4. Pseudocode for level building.
Computers 07 00022 g004
Figure 5. Example uniform order crossover with probability of 0.5 of the parents which was randomly selected to occur after the third room.
Figure 5. Example uniform order crossover with probability of 0.5 of the parents which was randomly selected to occur after the third room.
Computers 07 00022 g005
Figure 6. Mutation in the chromosome at position four, labeled in dark gray.
Figure 6. Mutation in the chromosome at position four, labeled in dark gray.
Computers 07 00022 g006
Figure 7. Example levels of the Maximization and Minimization of level area.
Figure 7. Example levels of the Maximization and Minimization of level area.
Computers 07 00022 g007
Figure 8. Example level using the complex fitness function in the editor with coloured rooms.
Figure 8. Example level using the complex fitness function in the editor with coloured rooms.
Computers 07 00022 g008
Figure 9. Example rooms with the placement of the television, billiards table, and bookshelf.
Figure 9. Example rooms with the placement of the television, billiards table, and bookshelf.
Computers 07 00022 g009
Figure 10. Example enemies layout and in game render.
Figure 10. Example enemies layout and in game render.
Computers 07 00022 g010
Table 1. .hlm file format.
Table 1. .hlm file format.
DescriptionTypeSample/Default ValueAdditional Info
level namestringLevel One
unknown parameterinteger0
authorstringJamie
unknown parameterinteger0
S rank scoreinteger 100 , 500
player character idinteger5
unknown parameterinteger1
unknown parameterinteger 1
music idinteger0possible values: [ 0 : 46 ]
x coordinate of level’s left cornerinteger0
y coordinate of level’s left cornerinteger0
level widthinteger1088in pixels. Must be divisible by 16.
level heightinteger768in pixels. Must be divisible by 16.
unknown parameterinteger974editor only works well when the value is equal to 974
unknown parameterinteger0
hourinteger00
minuteinteger00
dayinteger01
monthinteger02
yearinteger1991
citystringMiami
statestringFlorida
addressstring42, Main st.
unknown parameterinteger0
unknown parameterinteger9999
unknown parameterinteger9999
Table 2. .obj file format.
Table 2. .obj file format.
ValueSample/Default ValueAdditional Info
object ID1582
x coordinate128in pixels
y coordinate160in pixels
sprite ID0
rotation0in degrees
behaviour0static, patrol, idle, etc.
frame0index of frame
Table 3. .tls file format.
Table 3. .tls file format.
ValueSample/Default ValueAdditional Info
tile category2floor, rugs, bathroom, etc.
column number48column in sprites table
row number0row sprites table
x coordinate128in pixels
y coordinate160in pixels
z coordinate1001
Table 4. .wll file format.
Table 4. .wll file format.
ValueSample/Default ValueAdditional Info
object ID1271
x coordinate128in pixels
y coordinate160in pixels
sprite ID2149
rotation0
Table 5. Mean and 95% Confidence internals for each of the fitness evaluation types with 30 runs of the GA. Note that 0 E 0 represents a machine zero.
Table 5. Mean and 95% Confidence internals for each of the fitness evaluation types with 30 runs of the GA. Note that 0 E 0 represents a machine zero.
Fitness MeasureRoomsAreaMin Room AreaMax Room AreaOne Tile CorridorsDiameterDegree
Maximize Rooms10.00293.405.1771.8015.474.033.08
± 0 E 0 ± 14.94 ± 1.45 ± 5.45 ± 3.05 ± 0.27 ± 0.14
Maximize Area9.33433.638.8799.7312.273.733.05
0.30 ± 7.36 ± 2.10 ± 9.55 ± 2.79 ± 0.26 ± 0.14
Minimize Area10.00227.934.1955.1916.003.903.18
± 0 E 0 ± 10.67 ± 0.91 ± 4.36 ± 2.60 ± 0.20 ± 0.11
Maximize Degree9.77291.934.2376.1315.52.974.07
± 0.16 ± 14.46 ± 1.13 ± 5.69 ± 2.28 ± 0.15 ± 0.11
Maximize Diameter10.00298.005.2771.9312.435.172.84
± 0 E 0 ± 15.10 ± 1.28 ± 6.23 ± 2.16 ± 0.20 ± 0.11
Minimize Diameter10.00303.375.0072.1015.502.903.39
± 0 E 0 ± 16.46 ± 0.93 ± 6.84 ± 3.00 ± 0.15 ± 0.10
Corridor Penalty 8.67 295.4310.0074.100.003.772.84
± 0.30 ± 17.48 ± 1.86 ± 6.46 ± 0 E 0 ± 0.25 ± 0.14
Complex7.70263.5311.0771.770.104.702.08
± 0.26 ± 12.06 ± 1.71 ± 5.40 ± 0.11 ± 0.24 ± 0.07

Share and Cite

MDPI and ACS Style

Brown, J.A.; Lutfullin, B.; Oreshin, P.; Pyatkin, I. Levels for Hotline Miami 2: Wrong Number Using Procedural Content Generations. Computers 2018, 7, 22. https://doi.org/10.3390/computers7020022

AMA Style

Brown JA, Lutfullin B, Oreshin P, Pyatkin I. Levels for Hotline Miami 2: Wrong Number Using Procedural Content Generations. Computers. 2018; 7(2):22. https://doi.org/10.3390/computers7020022

Chicago/Turabian Style

Brown, Joseph Alexander, Bulat Lutfullin, Pavel Oreshin, and Ilya Pyatkin. 2018. "Levels for Hotline Miami 2: Wrong Number Using Procedural Content Generations" Computers 7, no. 2: 22. https://doi.org/10.3390/computers7020022

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop