Class: Player

Coreminer. Player

A player in this game. Every AI controls one player.

new Coreminer.Player()

Initializes a Player with basic logic as provided by the Creer code generator. Never use this directly. It is for internal Joueur use.

Extends

Members

Coreminer.Tile baseTile

The Tile this Player's base is on.

Array.<Coreminer.Bomb> bombs

Every Bomb owned by this Player.

string clientType

What type of client this is, e.g. 'Python', 'JavaScript', or some other language. For potential data mining purposes.

string gameObjectName

Inherited From:
Coreminer.GameObject#gameObjectName
String representing the top level Class that this game object is an instance of. Used for reflection to create new instances on clients, but exposed for convenience should AIs want this data.

Array.<Coreminer.Tile> hopperTiles

The Tiles this Player's hoppers are on.

string id

Inherited From:
Coreminer.GameObject#id
A unique id for each instance of a GameObject or a sub class. Used for client and server communication. Should never change value after being set.

Array.<string> logs

Inherited From:
Coreminer.GameObject#logs
Any strings logged will be stored here. Intended for debugging.

boolean lost

If the player lost the game or not.

Array.<Coreminer.Miner> miners

Every Miner owned by this Player.

number money

The amount of money this Player currently has.

string name

The name of the player.

Coreminer.Player opponent

This player's opponent in the game.

string reasonLost

The reason why the player lost the game.

string reasonWon

The reason why the player won the game.

number timeRemaining

The amount of time (in ns) remaining for this AI to send commands.

number value

The amount of value (victory points) this Player has gained.

boolean won

If the player won the game or not.

Methods

log(message)

Inherited From:
Coreminer.GameObject#log
Adds a message to this GameObject's logs. Intended for your own debugging purposes, as strings stored here are saved in the gamelog.
Name Type Description
message string A string to add to this GameObject's log. Intended for debugging.

boolean spawnMiner()

Spawns a Miner on this Player's base Tile.
Returns: boolean
True if successfully spawned, false otherwise.

string toString()

Inherited From:
BaseGameObject#toString
toString override for easier debugging
Returns: string
readable string in the format `GameObjectName #id`