CityMap

class CityMap(homesPerSide: Int, populations: Vector[(Demographic, Int)]) extends Grid[Demographic]

A CityMap is a square grid that represents a simplified map of a city. It is a Grid whose elements are Demographic objects. That is, each GridPos (“street address”) on a CityMap is either Vacant or stores a household that belongs to aparticular demographic.

A CityMap is mutable. As a household moves, the corresponding Demographic object moves to a different GridPos on the CityMap.

Value parameters:
homesPerSide

the number of street addresses in each row and each column of the city grid (which is always square)

populations

a vector of pairs in which each Demographic is matched with a count of how many times it appears on this city map

class Object
trait Matchable
class Any

Value members

Concrete methods

Generates the elements that initially occupy the grid. In the case of a CityMap grid, this means generating new Demographic objects at random locations so that their distribution matches the populations parameter of the CityMap.

Generates the elements that initially occupy the grid. In the case of a CityMap grid, this means generating new Demographic objects at random locations so that their distribution matches the populations parameter of the CityMap.

def matches(address: GridPos, householdType: Demographic): Boolean

Determines whether the household at the given “street address” (GridPos) belongs to the given demographic.

Determines whether the household at the given “street address” (GridPos) belongs to the given demographic.

Value parameters:
address

a location on the city grid to examine

householdType

a demographic that the household at the given address is compared to (may be Vacant, too, in which case this method checks if the address is vacant)

Inherited methods

def allElements: Vector[Element]

Returns a collection of all the elements currently in the grid.

Returns a collection of all the elements currently in the grid.

Inherited from:
Grid

Returns a collection of all the locations on the grid.

Returns a collection of all the locations on the grid.

Inherited from:
Grid
def apply(location: GridPos): Element

Returns the element at the given pair of coordinates. (This does the same as elementAt.)

Returns the element at the given pair of coordinates. (This does the same as elementAt.)

Value parameters:
location

a location on the grid (which must be within range or this method will fail with an error)

Inherited from:
Grid
def contains(location: GridPos): Boolean

Determines whether the grid contains the given pair of coordinates. For instance, a grid with a width and height of 5 will contain (0, 0) and (4, 4) but not (-1, -1), (4, 5) or (5, 4).

Determines whether the grid contains the given pair of coordinates. For instance, a grid with a width and height of 5 will contain (0, 0) and (4, 4) but not (-1, -1), (4, 5) or (5, 4).

Inherited from:
Grid
def elementAt(location: GridPos): Element

Returns the element at the given pair of coordinates. (This does the same as apply.)

Returns the element at the given pair of coordinates. (This does the same as apply.)

Value parameters:
location

a location on the grid (which must be within range or this method will fail with an error)

Inherited from:
Grid
def neighbors(middleLoc: GridPos, includeDiagonals: Boolean): Vector[Element]

Returns a vector of all the neighboring elements of the element indicated by the first parameter. Depending on the second parameter, either only the four neighbors in cardinal compass directions (north, east, south, west) are considered, or the four diagonals as well.

Returns a vector of all the neighboring elements of the element indicated by the first parameter. Depending on the second parameter, either only the four neighbors in cardinal compass directions (north, east, south, west) are considered, or the four diagonals as well.

Note that an element at the grid’s edge has fewer neighbors than one in the middle. For instance, the element at (0, 0) of a 5-by-5 grid has only three neighbors, diagonals included.

Value parameters:
includeDiagonals

true if diagonal neighbors also count (resulting in up to eight neighbors), false if only cardinal directions count (resulting in up to four)

middleLoc

the location between the neighbors

Inherited from:
Grid
def swap(location1: GridPos, location2: GridPos): Unit

Swaps the elements at two given locations on the grid. The given locations must be within range or this method will fail with an error.

Swaps the elements at two given locations on the grid. The given locations must be within range or this method will fail with an error.

Inherited from:
Grid
def update(location: GridPos, newElement: Demographic): Unit

Modifies the grid by replacing the existing element at the given location with the new element.

Modifies the grid by replacing the existing element at the given location with the new element.

Value parameters:
location

a location on the grid (which must be within range or this method will fail with an error)

newElement

the new element that replaces the old one at location

Inherited from:
Grid

Inherited fields

val height: Int
Inherited from:
Grid
val size: Int

the number of elements in this grid, in total. (Equals width times height.)

the number of elements in this grid, in total. (Equals width times height.)

Inherited from:
Grid
val width: Int
Inherited from:
Grid