Ejemplo n.º 1
0
 public void updateNode(float position)
 {
     if (currentDeath < position)
     {
         currentNode  = currentNode.next;
         currentDeath = 1000f;
     }
 }
Ejemplo n.º 2
0
    public void addInput(float x, float delta = 0.1f, float epsilon = 0.1f)
    {
        //Goes to the next input for mario and allocate a spot.
        currentNode.next = new AIBranch();
        currentNode      = currentNode.next;

        //Sets the values.
        currentNode.x       = x;
        currentNode.delta   = delta;
        currentNode.epsilon = epsilon;
    }
Ejemplo n.º 3
0
 public void reset()
 {
     currentNode = root;
 }
Ejemplo n.º 4
0
 public DataStorage()
 {
     root        = new AIBranch();
     currentNode = root;
 }