package electrosphere.entity; import java.util.List; import org.joml.Vector3d; import electrosphere.engine.Globals; import electrosphere.entity.state.attach.AttachUtils; import electrosphere.entity.state.hitbox.HitboxCollectionState; import electrosphere.entity.state.inventory.InventoryUtils; import electrosphere.entity.state.inventory.ServerInventoryState; import electrosphere.entity.state.server.ServerCharacterData; import electrosphere.entity.types.collision.CollisionObjUtils; import electrosphere.logger.LoggerInterface; import electrosphere.net.parser.net.message.EntityMessage; import electrosphere.server.datacell.Realm; import electrosphere.server.datacell.ServerDataCell; import electrosphere.server.datacell.ServerWorldData; import electrosphere.server.datacell.utils.DataCellSearchUtils; import electrosphere.server.datacell.utils.EntityLookupUtils; import electrosphere.server.datacell.utils.ServerBehaviorTreeUtils; /** * Entity utilities specifically for the server side */ public class ServerEntityUtils { /** * Called when the creature is first spawned to serialize to all people in its initial chunk. *
* !!NOTE!!: This function must be called after the entity has fully been created. * The initializeServerSideEntity logic requires knowing the type of entity (creature, foliage, etc) * which is typically set further in the function than the initial "spawnServerEntity" that returns * the actual Entity() object. *
* @param entity * @param position */ public static void initiallyPositionEntity(Realm realm, Entity entity, Vector3d position){ if(position == null){ throw new Error("Trying to set server entity position to null!"); } //reposition entity, if the position isn't correct then it will spawn at 0,0,0 when the synchronization part is called CollisionObjUtils.serverPositionCharacter(entity, position); //get current server data cell ServerDataCell cell = realm.getDataCellManager().getDataCellAtPoint(position); if(cell != null){ //initialize server datacell tracking of this entity realm.initializeServerSideEntity(entity, cell); } else { //if it doesn't already exist, try creating it and if successfull move creature cell = realm.getDataCellManager().tryCreateCellAtPoint(position); if(cell == null){ throw new Error("Trying to initially position entity to position that cannot generate a data cell! " + position); } //initialize server datacell tracking of this entity realm.initializeServerSideEntity(entity, cell); } } /** * Called to reposition the entity * @param entity * @param position */ public static void repositionEntity(Entity entity, Vector3d position){ if(position == null){ throw new Error("Trying to set server entity position to null!"); } if(AttachUtils.getParent(entity) != null){ throw new Error("Trying to reposition attached entity!"); } Realm realm = Globals.realmManager.getEntityRealm(entity); ServerWorldData worldDat = realm.getServerWorldData(); if( position.x < 0 || position.y < 0 || position.z < 0 || ServerWorldData.convertRealToChunkSpace(position.x) >= worldDat.getWorldSizeDiscrete() || ServerWorldData.convertRealToChunkSpace(position.y) >= worldDat.getWorldSizeDiscrete() || ServerWorldData.convertRealToChunkSpace(position.z) >= worldDat.getWorldSizeDiscrete() ){ throw new Error("Providing invalid location to reposition! " + position); } ServerEntityUtils.repositionEntityRecursive(realm, entity, position); //reposition entity CollisionObjUtils.serverPositionCharacter(entity, position); } /** * Called to reposition the entity * @param realm The realm containing the entity * @param entity The entity * @param position The new position for the entity */ protected static void repositionEntityRecursive(Realm realm, Entity entity, Vector3d position){ //if server, get current server data cell ServerDataCell oldDataCell = Globals.entityDataCellMapper.getEntityDataCell(entity); ServerDataCell newDataCell = realm.getDataCellManager().getDataCellAtPoint(position); if(oldDataCell == null){ LoggerInterface.loggerEngine.WARNING( "Trying to reposition entity on server when it's former cell is null!\n" + "Entity original position: " + EntityUtils.getPosition(entity) + "\n" ); } if(oldDataCell != newDataCell){ if(newDataCell == null){ newDataCell = realm.getDataCellManager().tryCreateCellAtPoint(position); if(newDataCell == null){ LoggerInterface.loggerEngine.WARNING( "Trying to reposition entity on server when it's new cell is null!\n" + "Entity new position: " + position + "\n" ); return; } } ServerDataCell.moveEntityFromCellToCell(entity, oldDataCell, newDataCell); ServerBehaviorTreeUtils.updateCell(entity, oldDataCell); if(oldDataCell != null && oldDataCell.getScene().containsEntity(entity)){ throw new Error("Entity not removed from scene!"); } } if(AttachUtils.hasChildren(entity)){ List