new combat finalized
This commit is contained in:
@@ -41,6 +41,10 @@ public enum CombatManager {
|
|||||||
if (attacker == null || target == null || !attacker.isAlive() || !target.isAlive())
|
if (attacker == null || target == null || !attacker.isAlive() || !target.isAlive())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
if(attacker.getObjectType().equals(mbEnums.GameObjectType.Mob))
|
||||||
|
if (((Mob) attacker).nextAttackTime > System.currentTimeMillis())
|
||||||
|
return;
|
||||||
|
|
||||||
switch (target.getObjectType()) {
|
switch (target.getObjectType()) {
|
||||||
case Building:
|
case Building:
|
||||||
if (((Building) target).isVulnerable() == false)
|
if (((Building) target).isVulnerable() == false)
|
||||||
@@ -85,12 +89,6 @@ public enum CombatManager {
|
|||||||
|
|
||||||
public static void processAttack(AbstractCharacter attacker, AbstractWorldObject target, mbEnums.EquipSlotType slot) {
|
public static void processAttack(AbstractCharacter attacker, AbstractWorldObject target, mbEnums.EquipSlotType slot) {
|
||||||
|
|
||||||
// heck if character can even attack yet
|
|
||||||
|
|
||||||
//if (attacker.getTimestamps().containsKey("Attack" + slot.name()))
|
|
||||||
// if (System.currentTimeMillis() < attacker.getTimestamps().get("Attack" + slot.name()))
|
|
||||||
// return;
|
|
||||||
|
|
||||||
// check if character is in range to attack target
|
// check if character is in range to attack target
|
||||||
|
|
||||||
PlayerBonuses bonus = attacker.getBonuses();
|
PlayerBonuses bonus = attacker.getBonuses();
|
||||||
@@ -141,13 +139,36 @@ public enum CombatManager {
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//get delay for the auto attack job
|
||||||
|
long delay = 5000;
|
||||||
|
|
||||||
|
if (weapon != null) {
|
||||||
|
|
||||||
|
int wepSpeed = (int) (weapon.template.item_weapon_wepspeed);
|
||||||
|
|
||||||
|
if (weapon.getBonusPercent(mbEnums.ModType.WeaponSpeed, mbEnums.SourceType.None) != 0f) //add weapon speed bonus
|
||||||
|
wepSpeed *= (1 + weapon.getBonus(mbEnums.ModType.WeaponSpeed, mbEnums.SourceType.None));
|
||||||
|
|
||||||
|
if (attacker.getBonuses() != null && attacker.getBonuses().getFloatPercentAll(mbEnums.ModType.AttackDelay, mbEnums.SourceType.None) != 0f) //add effects speed bonus
|
||||||
|
wepSpeed *= (1 + attacker.getBonuses().getFloatPercentAll(mbEnums.ModType.AttackDelay, mbEnums.SourceType.None));
|
||||||
|
|
||||||
|
if (wepSpeed < 10)
|
||||||
|
wepSpeed = 10; //Old was 10, but it can be reached lower with legit buffs,effects.
|
||||||
|
|
||||||
|
delay = wepSpeed * 100;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(attacker.getObjectType().equals(mbEnums.GameObjectType.Mob))
|
||||||
|
((Mob)attacker).nextAttackTime = System.currentTimeMillis() + delay;
|
||||||
|
|
||||||
if (inRange) {
|
if (inRange) {
|
||||||
|
|
||||||
//handle retaliate
|
//handle retaliate
|
||||||
if(AbstractCharacter.IsAbstractCharacter(target)){
|
if(AbstractCharacter.IsAbstractCharacter(target)){
|
||||||
if(((AbstractCharacter)target).combatTarget == null){
|
if(((AbstractCharacter)target).combatTarget == null || ((AbstractCharacter)target).combatTarget.isAlive() == false){
|
||||||
((AbstractCharacter)target).combatTarget = attacker;
|
((AbstractCharacter)target).combatTarget = attacker;
|
||||||
|
if(target.getObjectType().equals(mbEnums.GameObjectType.PlayerCharacter) && ((AbstractCharacter) target).isCombat())
|
||||||
|
combatCycle((AbstractCharacter) target, attacker);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -225,6 +246,19 @@ public enum CombatManager {
|
|||||||
else
|
else
|
||||||
DispatchMessage.sendToAllInRange(attacker, msg);
|
DispatchMessage.sendToAllInRange(attacker, msg);
|
||||||
|
|
||||||
|
//calculate next allowed attack and update the timestamp
|
||||||
|
attacker.getTimestamps().put("Attack" + slot.name(), System.currentTimeMillis() + delay);
|
||||||
|
|
||||||
|
//handle auto attack job creation
|
||||||
|
ConcurrentHashMap<String, JobContainer> timers = attacker.getTimers();
|
||||||
|
|
||||||
|
if (timers != null) {
|
||||||
|
AttackJob aj = new AttackJob(attacker, slot.ordinal(), true);
|
||||||
|
JobContainer job;
|
||||||
|
job = JobScheduler.getInstance().scheduleJob(aj, (System.currentTimeMillis() + delay)); // offset 1 millisecond so no overlap issue
|
||||||
|
timers.put("Attack" + slot, job);
|
||||||
|
} else
|
||||||
|
Logger.error("Unable to find Timers for Character " + attacker.getObjectUUID());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -260,15 +294,41 @@ public enum CombatManager {
|
|||||||
else
|
else
|
||||||
DispatchMessage.sendToAllInRange(attacker, msg);
|
DispatchMessage.sendToAllInRange(attacker, msg);
|
||||||
|
|
||||||
|
//calculate next allowed attack and update the timestamp
|
||||||
|
attacker.getTimestamps().put("Attack" + slot.name(), System.currentTimeMillis() + delay);
|
||||||
|
|
||||||
|
//handle auto attack job creation
|
||||||
|
ConcurrentHashMap<String, JobContainer> timers = attacker.getTimers();
|
||||||
|
|
||||||
|
if (timers != null) {
|
||||||
|
AttackJob aj = new AttackJob(attacker, slot.ordinal(), true);
|
||||||
|
JobContainer job;
|
||||||
|
job = JobScheduler.getInstance().scheduleJob(aj, (System.currentTimeMillis() + delay)); // offset 1 millisecond so no overlap issue
|
||||||
|
timers.put("Attack" + slot, job);
|
||||||
|
} else
|
||||||
|
Logger.error("Unable to find Timers for Character " + attacker.getObjectUUID());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//calculate the base damage
|
//calculate the base damage
|
||||||
int damage = ThreadLocalRandom.current().nextInt(min, max + 1);
|
int damage = ThreadLocalRandom.current().nextInt(min, max + 1);
|
||||||
if (damage == 0)
|
if (damage == 0) {
|
||||||
return;
|
//calculate next allowed attack and update the timestamp
|
||||||
|
attacker.getTimestamps().put("Attack" + slot.name(), System.currentTimeMillis() + delay);
|
||||||
|
|
||||||
|
//handle auto attack job creation
|
||||||
|
ConcurrentHashMap<String, JobContainer> timers = attacker.getTimers();
|
||||||
|
|
||||||
|
if (timers != null) {
|
||||||
|
AttackJob aj = new AttackJob(attacker, slot.ordinal(), true);
|
||||||
|
JobContainer job;
|
||||||
|
job = JobScheduler.getInstance().scheduleJob(aj, (System.currentTimeMillis() + delay)); // offset 1 millisecond so no overlap issue
|
||||||
|
timers.put("Attack" + slot, job);
|
||||||
|
} else
|
||||||
|
Logger.error("Unable to find Timers for Character " + attacker.getObjectUUID());
|
||||||
|
return;
|
||||||
|
}
|
||||||
//get the damage type
|
//get the damage type
|
||||||
|
|
||||||
mbEnums.DamageType damageType;
|
mbEnums.DamageType damageType;
|
||||||
@@ -333,9 +393,22 @@ public enum CombatManager {
|
|||||||
|
|
||||||
//check for damage type immunities
|
//check for damage type immunities
|
||||||
|
|
||||||
if (resists.immuneTo(damageType))
|
if (resists.immuneTo(damageType)) {
|
||||||
return;
|
//calculate next allowed attack and update the timestamp
|
||||||
|
attacker.getTimestamps().put("Attack" + slot.name(), System.currentTimeMillis() + delay);
|
||||||
|
|
||||||
|
//handle auto attack job creation
|
||||||
|
ConcurrentHashMap<String, JobContainer> timers = attacker.getTimers();
|
||||||
|
|
||||||
|
if (timers != null) {
|
||||||
|
AttackJob aj = new AttackJob(attacker, slot.ordinal(), true);
|
||||||
|
JobContainer job;
|
||||||
|
job = JobScheduler.getInstance().scheduleJob(aj, (System.currentTimeMillis() + delay)); // offset 1 millisecond so no overlap issue
|
||||||
|
timers.put("Attack" + slot, job);
|
||||||
|
} else
|
||||||
|
Logger.error("Unable to find Timers for Character " + attacker.getObjectUUID());
|
||||||
|
return;
|
||||||
|
}
|
||||||
//calculate resisted damage including fortitude
|
//calculate resisted damage including fortitude
|
||||||
|
|
||||||
damage = (int) resists.getResistedDamage(attacker, (AbstractCharacter) target, damageType, damage, 0);
|
damage = (int) resists.getResistedDamage(attacker, (AbstractCharacter) target, damageType, damage, 0);
|
||||||
@@ -360,29 +433,9 @@ public enum CombatManager {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
//calculate next allowed attack and update the timestamp
|
//calculate next allowed attack and update the timestamp
|
||||||
|
|
||||||
long delay = 20 * 100;
|
|
||||||
|
|
||||||
if (weapon != null) {
|
|
||||||
|
|
||||||
int wepSpeed = (int) (weapon.template.item_weapon_wepspeed);
|
|
||||||
|
|
||||||
if (weapon.getBonusPercent(mbEnums.ModType.WeaponSpeed, mbEnums.SourceType.None) != 0f) //add weapon speed bonus
|
|
||||||
wepSpeed *= (1 + weapon.getBonus(mbEnums.ModType.WeaponSpeed, mbEnums.SourceType.None));
|
|
||||||
|
|
||||||
if (attacker.getBonuses() != null && attacker.getBonuses().getFloatPercentAll(mbEnums.ModType.AttackDelay, mbEnums.SourceType.None) != 0f) //add effects speed bonus
|
|
||||||
wepSpeed *= (1 + attacker.getBonuses().getFloatPercentAll(mbEnums.ModType.AttackDelay, mbEnums.SourceType.None));
|
|
||||||
|
|
||||||
if (wepSpeed < 10)
|
|
||||||
wepSpeed = 10; //Old was 10, but it can be reached lower with legit buffs,effects.
|
|
||||||
|
|
||||||
delay = wepSpeed * 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
attacker.getTimestamps().put("Attack" + slot.name(), System.currentTimeMillis() + delay);
|
attacker.getTimestamps().put("Attack" + slot.name(), System.currentTimeMillis() + delay);
|
||||||
|
|
||||||
//handle auto attack job creation
|
//handle auto attack job creation
|
||||||
|
|
||||||
ConcurrentHashMap<String, JobContainer> timers = attacker.getTimers();
|
ConcurrentHashMap<String, JobContainer> timers = attacker.getTimers();
|
||||||
|
|
||||||
if (timers != null) {
|
if (timers != null) {
|
||||||
|
|||||||
@@ -764,19 +764,8 @@ public class MobAI {
|
|||||||
mob.setCombatTarget(null);
|
mob.setCombatTarget(null);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (System.currentTimeMillis() > mob.getNextAttackTime()) {
|
AttackTarget(mob, mob.getCombatTarget());
|
||||||
int delay = 3000;
|
|
||||||
if (mob.charItemManager.getEquipped().get(mbEnums.EquipSlotType.RHELD) != null) {
|
|
||||||
delay = (int) (mob.charItemManager.getEquipped().get(mbEnums.EquipSlotType.RHELD).template.item_weapon_wepspeed * 100);
|
|
||||||
}
|
|
||||||
if (mob.charItemManager.getEquipped().get(mbEnums.EquipSlotType.LHELD) != null && mob.charItemManager.getEquipped().get(mbEnums.EquipSlotType.LHELD).template.item_type.equals(mbEnums.ItemType.WEAPON)) {
|
|
||||||
delay += (int) (mob.charItemManager.getEquipped().get(mbEnums.EquipSlotType.LHELD).template.item_weapon_wepspeed * 100);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
mob.nextAttackTime = System.currentTimeMillis() + delay;
|
|
||||||
AttackTarget(mob, mob.getCombatTarget());
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckForAttack" + " " + e.getMessage());
|
Logger.info(mob.getObjectUUID() + " " + mob.getName() + " Failed At: CheckForAttack" + " " + e.getMessage());
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user