You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
125 lines
4.4 KiB
125 lines
4.4 KiB
package engine.Dungeons; |
|
|
|
import engine.Enum; |
|
import engine.InterestManagement.WorldGrid; |
|
import engine.gameManager.DbManager; |
|
import engine.gameManager.ZoneManager; |
|
import engine.math.Vector3fImmutable; |
|
import engine.objects.*; |
|
import engine.powers.EffectsBase; |
|
import engine.server.MBServerStatics; |
|
|
|
import java.util.ArrayList; |
|
import java.util.HashSet; |
|
|
|
public class DungeonManager { |
|
public static ArrayList<Dungeon> dungeons; |
|
|
|
private static final float dungeonAiRange = 64f; |
|
private static final float maxTravel = 64f; |
|
|
|
public static void joinDungeon(PlayerCharacter pc, Dungeon dungeon){ |
|
if(requestEnter(pc,dungeon)) { |
|
dungeon.participants.add(pc); |
|
dungeon.applyDungeonEffects(pc); |
|
translocateToDungeon(pc, dungeon); |
|
} |
|
} |
|
|
|
public static void leaveDungeon(PlayerCharacter pc, Dungeon dungeon){ |
|
dungeon.participants.remove(pc); |
|
dungeon.removeDungeonEffects(pc); |
|
translocateOutOfDungeon(pc); |
|
} |
|
|
|
public static boolean requestEnter(PlayerCharacter pc, Dungeon dungeon){ |
|
int current = 0; |
|
Guild nation = pc.guild.getNation(); |
|
|
|
if(nation == null) |
|
return false; |
|
|
|
for(PlayerCharacter participant : dungeon.participants){ |
|
if(participant.guild.getNation().equals(nation)){ |
|
current ++; |
|
} |
|
} |
|
|
|
if(current >= dungeon.maxPerGuild) |
|
return false; |
|
|
|
return true; |
|
} |
|
|
|
public static void translocateToDungeon(PlayerCharacter pc, Dungeon dungeon){ |
|
pc.teleport(dungeon.entrance); |
|
pc.setSafeMode(); |
|
} |
|
|
|
public static void translocateOutOfDungeon(PlayerCharacter pc){ |
|
pc.teleport(pc.bindLoc); |
|
pc.setSafeMode(); |
|
} |
|
|
|
public static void pulse_dungeons(){ |
|
for(Dungeon dungeon : dungeons){ |
|
|
|
//early exit, if no players present don't waste resources |
|
if(dungeon.participants.isEmpty()) |
|
continue; |
|
|
|
if(dungeon.respawnTime > 0 && System.currentTimeMillis() > dungeon.respawnTime){ |
|
respawnMobs(dungeon); |
|
} |
|
|
|
//remove any players that have left |
|
HashSet<AbstractWorldObject> obj = WorldGrid.getObjectsInRangePartial(dungeon.entrance,4096f,MBServerStatics.MASK_PLAYER); |
|
for(PlayerCharacter player : dungeon.participants) |
|
if(!obj.contains(player)) |
|
leaveDungeon(player,dungeon); |
|
|
|
//cycle dungeon mob AI |
|
for(Mob mob : dungeon.dungeon_mobs) |
|
dungeonMobAI(mob); |
|
} |
|
} |
|
|
|
public static void dungeonMobAI(Mob mob){ |
|
|
|
} |
|
|
|
public static void respawnMobs(Dungeon dungeon){ |
|
for(Mob mob : dungeon.dungeon_mobs){ |
|
|
|
if(!mob.isAlive() && mob.despawned) |
|
mob.respawn(); |
|
|
|
if(!mob.isAlive() && !mob.despawned){ |
|
mob.despawn(); |
|
mob.respawn(); |
|
} |
|
|
|
} |
|
} |
|
|
|
public static void createDungeon(Vector3fImmutable loc, int count){ |
|
|
|
Zone parent = ZoneManager.findSmallestZone(loc); |
|
|
|
Dungeon dungeon = new Dungeon(loc,count); |
|
|
|
Vector3fImmutable loc1 = new Vector3fImmutable(loc.x + 128,loc.y,loc.z + 128); |
|
Vector3fImmutable loc2 = new Vector3fImmutable(loc.x - 128,loc.y,loc.z - 128); |
|
Vector3fImmutable loc3 = new Vector3fImmutable(loc.x - 128,loc.y,loc.z + 128); |
|
Vector3fImmutable loc4 = new Vector3fImmutable(loc.x + 128,loc.y,loc.z - 128); |
|
|
|
Building building1 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450200,loc1,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,454200,0f,0f); |
|
Building building2 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450200,loc2,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,454200,0f,0f); |
|
Building building3 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450200,loc3,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,454200,0f,0f); |
|
Building building4 = DbManager.BuildingQueries.CREATE_BUILDING(parent.getObjectUUID(),1,"Building",450200,loc4,1.0f,5000, Enum.ProtectionState.NPC,0,1,null,454200,0f,0f); |
|
WorldGrid.addObject(building1,loc1.x,loc1.z); |
|
WorldGrid.addObject(building2,loc2.x,loc2.z); |
|
WorldGrid.addObject(building3,loc3.x,loc3.z); |
|
WorldGrid.addObject(building4,loc4.x,loc4.z); |
|
} |
|
}
|
|
|