// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . // ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· // ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ // ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ // ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ // Magicbane Emulator Project © 2013 - 2022 // www.magicbane.com package engine.db.handlers; import engine.Enum; import engine.gameManager.DbManager; import engine.objects.Building; import engine.objects.Portal; import org.pmw.tinylog.Logger; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; public class dbRunegateHandler extends dbHandlerBase { public dbRunegateHandler() { } public ArrayList GET_RUNEGATE_LIST() { ArrayList gateList = new ArrayList<>(); try (Connection connection = DbManager.getConnection(); PreparedStatement preparedStatement = connection.prepareStatement("SELECT DISTINCT `sourceBuilding` FROM `static_runegate_portals`;")) { ResultSet rs = preparedStatement.executeQuery(); while (rs.next()) gateList.add(rs.getInt("sourceBuilding")); } catch (SQLException e) { Logger.error(e); } return gateList; } public ArrayList GET_PORTAL_LIST(int gateUID) { ArrayList portalList = new ArrayList<>(); Building sourceBuilding = (Building) DbManager.getObject(Enum.GameObjectType.Building, gateUID); try (Connection connection = DbManager.getConnection(); PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM `static_runegate_portals` WHERE `sourceBuilding` = ?;")) { preparedStatement.setInt(1, gateUID); ResultSet rs = preparedStatement.executeQuery(); while (rs.next()) { int targetBuildingID = rs.getInt("targetBuilding"); Building targetBuilding = (Building) DbManager.getObject(Enum.GameObjectType.Building, targetBuildingID); Enum.PortalType portalType = Enum.PortalType.valueOf(rs.getString("portalType")); Portal portal = new Portal(sourceBuilding, portalType, targetBuilding); portalList.add(portal); } } catch (SQLException e) { Logger.error(e); } return portalList; } }