|
|
@ -6,7 +6,7 @@ |
|
|
|
// Magicbane Emulator Project © 2013 - 2022
|
|
|
|
// Magicbane Emulator Project © 2013 - 2022
|
|
|
|
// www.magicbane.com
|
|
|
|
// www.magicbane.com
|
|
|
|
|
|
|
|
|
|
|
|
package engine.jobs; |
|
|
|
package engine.jobs; |
|
|
|
|
|
|
|
|
|
|
|
import engine.InterestManagement.WorldGrid; |
|
|
|
import engine.InterestManagement.WorldGrid; |
|
|
|
import engine.job.AbstractScheduleJob; |
|
|
|
import engine.job.AbstractScheduleJob; |
|
|
@ -33,7 +33,7 @@ public class StuckJob extends AbstractScheduleJob { |
|
|
|
protected void doJob() { |
|
|
|
protected void doJob() { |
|
|
|
|
|
|
|
|
|
|
|
Vector3fImmutable stuckLoc; |
|
|
|
Vector3fImmutable stuckLoc; |
|
|
|
Building stuckBuilding = null; |
|
|
|
Building building = null; |
|
|
|
|
|
|
|
|
|
|
|
if (player == null) |
|
|
|
if (player == null) |
|
|
|
return; |
|
|
|
return; |
|
|
@ -41,79 +41,41 @@ public class StuckJob extends AbstractScheduleJob { |
|
|
|
if (player.getClientConnection() == null) |
|
|
|
if (player.getClientConnection() == null) |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
HashSet<AbstractWorldObject>awoList = WorldGrid.getObjectsInRangePartial(player, 150, MBServerStatics.MASK_BUILDING); |
|
|
|
HashSet<AbstractWorldObject> awoList = WorldGrid.getObjectsInRangePartial(player, 150, MBServerStatics.MASK_BUILDING); |
|
|
|
|
|
|
|
|
|
|
|
for (AbstractWorldObject awo:awoList){ |
|
|
|
for (AbstractWorldObject awo : awoList) { |
|
|
|
|
|
|
|
|
|
|
|
Building toStuckOutOf = (Building)awo; |
|
|
|
Building buildingEntry = (Building) awo; |
|
|
|
|
|
|
|
|
|
|
|
if (toStuckOutOf.getStuckLocation() == null) |
|
|
|
if (buildingEntry.getStuckLocation() == null) |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
|
|
if (Bounds.collide(player.getLoc(), toStuckOutOf)){ |
|
|
|
if (Bounds.collide(player.getLoc(), buildingEntry)) { |
|
|
|
stuckBuilding = toStuckOutOf; |
|
|
|
building = buildingEntry; |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//Could not find closest building get stuck location of nearest building.
|
|
|
|
if (building == null) { |
|
|
|
|
|
|
|
|
|
|
|
if (stuckBuilding == null){ |
|
|
|
|
|
|
|
ErrorPopupMsg.sendErrorMsg(player, "Unable to find desired location"); |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
} else |
|
|
|
|
|
|
|
stuckLoc = stuckBuilding.getStuckLocation(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (stuckLoc == null){ |
|
|
|
|
|
|
|
ErrorPopupMsg.sendErrorMsg(player, "Unable to find desired location"); |
|
|
|
ErrorPopupMsg.sendErrorMsg(player, "Unable to find desired location"); |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
stuckLoc = building.getStuckLocation(); |
|
|
|
|
|
|
|
|
|
|
|
player.teleport(stuckLoc); |
|
|
|
if (stuckLoc == null) { |
|
|
|
|
|
|
|
ErrorPopupMsg.sendErrorMsg(player, "Unable to find desired location"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Needs to be re-written with stuck locations
|
|
|
|
|
|
|
|
// Disabled for now.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Cannot have a null zone or player
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (this.player == null) |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ZoneManager.findSmallestZone(player.getLoc()) == null) |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// If player is on a citygrid make sure the stuck direction
|
|
|
|
|
|
|
|
// is facing away from the tree
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ((ZoneManager.findSmallestZone(player.getLoc()).isNPCCity()) || |
|
|
|
|
|
|
|
(ZoneManager.findSmallestZone(player.getLoc()).isPlayerCity())) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
zoneVector = player.getLoc().subtract(ZoneManager.findSmallestZone(player.getLoc()).getLoc()); |
|
|
|
|
|
|
|
zoneVector = zoneVector.normalize(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (zoneVector.dot(player.getFaceDir()) > 0) |
|
|
|
|
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
player.teleport(player.getLoc().add(player.getFaceDir().mult(34))); |
|
|
|
player.teleport(building.getLoc().add(stuckLoc)); |
|
|
|
*/ |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected void _cancelJob() { |
|
|
|
protected void _cancelJob() { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private void sendTrackArrow(float rotation) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|