Class: Proxy

World.Tile.Proxy(tile, pos)

Tile proxy class. This is created to act as a proxy to the expensive tile class. Each type of tile is created in World.TileSetup() and then a proxy object takes the reference to each tile and is used by the rest of the simulation. This prevents expensive copies of the tile being created. The proxy object stores a local copy of the position of the object so that if another proxy changes it for the subject tile it can be changed back. This is critical for position dependent code such as calls to WorldTile.Proxy.draw().

Constructor

new Proxy(tile, pos)

Constructor for a tile proxy.
Parameters:
Name Type Description
tile World.Tile A reference to tile object that is the proxy subject
pos p5.Vector The position of the proxy tile
Source:
See:

Methods

copy() → {World.Tile.Proxy}

A method to copy this proxy object. It passes a reference to the subject tile and a copy of the current position. This is not a pass through to the World.Tile.copy() method.
Source:
Returns:
- A new proxy to the same tile subject
Type
World.Tile.Proxy

draw()

Draws the tile subject in the location that the proxy has saved
Source:

generatePG()

Pass through to World.Tile.generatePg()
Source:

getLines() → {Array.<World.Line>}

Pass through to World.Tile.getLines()
Source:
Returns:
- The array of lines in the tile
Type
Array.<World.Line>

getName() → {string}

get name of the tile proxy
Source:
Returns:
- the name of the tile
Type
string

getPG() → {p5.Graphics}

Pass through to World.Tile.getPG()
Source:
Returns:
- The tile image
Type
p5.Graphics

setLines(lines)

Pass through to World.Tile.setLines(lines)
Parameters:
Name Type Description
lines Array.<World.Line> The new array of lines
Source:

setName(name)

set the name of the tile proxy
Parameters:
Name Type Description
name string the name of the tile proxy
Source:

setPos(newPos)

Pass through to World.Tile.setPos(newPos). The proxy object also saves the location for the position so that when it calls position dependent pass through functions it can set the position correctly.
Parameters:
Name Type Description
newPos p5.Vector the new position of the tile
Source:

Documentation generated by JSDoc 4.0.2 on Fri Aug 30 2024 16:12:55 GMT-0600 (Mountain Daylight Time)