rle.core.board
Interface CreatureAi

All Superinterfaces:
PlugIn
All Known Implementing Classes:
SimpleMonsterAi

public interface CreatureAi
extends PlugIn

Interface for classes that control creature actions.


Method Summary
 Creature getCreature()
           
 void setCreature(Creature c)
           
 void takeTurn()
          Perform the next action this Artificial Intelligence wants its creature to take.
 
Methods inherited from interface rle.core.vm.PlugIn
config, getContext, paramMap, setConfig, setParameters
 

Method Detail

setCreature

void setCreature(Creature c)

getCreature

Creature getCreature()

takeTurn

void takeTurn()
Perform the next action this Artificial Intelligence wants its creature to take. This method MUST consume enough energy to put the creature's energy level under GameClock.getEnergyRequiredToTakeTurn() before returning to work properly with the GameClock creature scheduling contract!!