Package l2p.extensions.listeners.events.AbstractAI

Examples of l2p.extensions.listeners.events.AbstractAI.AbstractAISetIntention


      {
        return;
      }
      intention = CtrlIntention.AI_INTENTION_IDLE;
    }
    getListenerEngine().fireMethodInvoked(new AbstractAISetIntention(MethodCollection.AbstractAIsetIntention, this, new Object[] {
      intention, arg0, arg1}));
    switch(intention)
    {
      case AI_INTENTION_IDLE:
        onIntentionIdle();
View Full Code Here


public abstract class AbstractAISetIntentionListener implements MethodInvokeListener, MethodCollection
{
  @Override
  public final void methodInvoked(MethodEvent e)
  {
    AbstractAISetIntention event = (AbstractAISetIntention) e;
    AbstractAI ai = event.getOwner();
    CtrlIntention evt = (CtrlIntention) event.getArgs()[0];
    Object arg0 = event.getArgs()[1];
    Object arg1 = event.getArgs()[2];
    SetIntention(ai, evt, arg0, arg1);
  }
View Full Code Here

TOP

Related Classes of l2p.extensions.listeners.events.AbstractAI.AbstractAISetIntention

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.