Beispiel #1
0
 public Option getMetaOption(Option defaultOption) {
   if (!metaOptions.containsKey(defaultOption.getName())) {
     setMetaOption(defaultOption);
     return defaultOption;
   }
   return getMetaOption(defaultOption.getName());
 }
Beispiel #2
0
 public static void reclaimArea(
     AIDelegate aiDelegate, CachedUnit unit, AIFloat3 pos, float radius, boolean queue) {
   AICommand command =
       new ReclaimAreaUnitAICommand(
           unit.getUnitId(), -1, queue ? queueOption : 0, commandTimeout.getValue(), pos, radius);
   handleCommand(aiDelegate, command);
 }
Beispiel #3
0
 public static void buildUnit(
     AIDelegate aiDelegate, CachedUnit builder, CachedUnitDef def, AIFloat3 pos, int facing) {
   AICommand command =
       new BuildUnitAICommand(
           builder.getUnitId(), -1, 0, commandTimeout.getValue(), def.getUnitDefId(), pos, facing);
   handleCommand(aiDelegate, command);
 }
Beispiel #4
0
 public static void fight(AIDelegate aiDelegate, CachedUnit unit, AIFloat3 pos, boolean queue) {
   AICommand command =
       new FightUnitAICommand(
           unit.getUnitId(), -1, queue ? queueOption : 0, commandTimeout.getValue(), pos);
   try {
     handleCommand(aiDelegate, command);
   } catch (Exception e) {
     System.err.println(unit.getDef().getHumanName() + "::" + FormatUtil.formatAIFloat3(pos));
   }
 }
Beispiel #5
0
 public static void guard(
     AIDelegate aiDelegate, CachedUnit unit, CachedUnit guard, boolean queue) {
   AICommand command =
       new GuardUnitAICommand(
           unit.getUnitId(),
           -1,
           queue ? queueOption : 0,
           commandTimeout.getValue(),
           guard.getUnitId());
   handleCommand(aiDelegate, command);
 }
Beispiel #6
0
 public static void reclaim(
     AIDelegate aiDelegate, CachedUnit unit, CachedUnit reclaim, boolean queue) {
   AICommand command =
       new ReclaimUnitAICommand(
           unit.getUnitId(),
           -1,
           queue ? queueOption : 0,
           commandTimeout.getValue(),
           reclaim.getUnitId());
   handleCommand(aiDelegate, command);
 }
Beispiel #7
0
 public static void factoryBuild(AIDelegate aiDelegate, String name, CachedUnit factory) {
   CachedUnitDef def = GlobalDelegate.getUnitDef(name, factory.getFaction());
   AICommand command =
       new BuildUnitAICommand(
           factory.getUnitId(),
           -1,
           0,
           commandTimeout.getValue(),
           def.getUnitDefId(),
           new AIFloat3(),
           0);
   handleCommand(aiDelegate, command);
 }
Beispiel #8
0
 public void setMetaOption(Option option) {
   if (metaOptions.containsKey(option.getName())) {
     Option currentOption = metaOptions.get(option.getName());
     currentOption.setValue(option.getValue());
   } else {
     metaOptions.put(option.getName(), option);
   }
 }
Beispiel #9
0
 public static void attack(
     AIDelegate aiDelegate, CachedUnit unit, CachedUnit attackUnit, boolean queue) {
   AICommand command =
       new AttackUnitAICommand(
           unit.getUnitId(),
           -1,
           queue ? queueOption : 0,
           commandTimeout.getValue(),
           attackUnit.getUnitId());
   try {
     handleCommand(aiDelegate, command);
   } catch (Exception e) {
     System.err.println(unit.getDef().getHumanName() + ", " + attackUnit.getUnitId());
   }
 }
Beispiel #10
0
 public static void stop(AIDelegate aiDelegate, CachedUnit unit) {
   AICommand command = new StopUnitAICommand(unit.getUnitId(), -1, 0, commandTimeout.getValue());
   handleCommand(aiDelegate, command);
 }
Beispiel #11
0
 public static void patrol(AIDelegate aiDelegate, CachedUnit unit, AIFloat3 pos, boolean queue) {
   AICommand command =
       new PatrolUnitAICommand(
           unit.getUnitId(), -1, queue ? queueOption : 0, commandTimeout.getValue(), pos);
   handleCommand(aiDelegate, command);
 }
Beispiel #12
0
 public static void setOnOff(AIDelegate aiDelegate, CachedUnit unit, boolean on) {
   AICommand command =
       new SetOnOffUnitAICommand(unit.getUnitId(), -1, 0, commandTimeout.getValue(), on);
   handleCommand(aiDelegate, command);
 }
Beispiel #13
0
 public static void setMoveState(AIDelegate aiDelegate, CachedUnit unit, int moveState) {
   AICommand command =
       new SetMoveStateUnitAICommand(
           unit.getUnitId(), -1, 0, commandTimeout.getValue(), moveState);
   handleCommand(aiDelegate, command);
 }