// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ . // ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌· // ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀ // ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌ // ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀ // Magicbane Emulator Project © 2013 - 2022 // www.magicbane.com package engine.db.handlers; import engine.gameManager.DbManager; import engine.objects.Race; import org.pmw.tinylog.Logger; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.util.HashSet; import java.util.concurrent.ConcurrentHashMap; public class dbRaceHandler extends dbHandlerBase { public dbRaceHandler() { } public HashSet BEARD_COLORS_FOR_RACE(final int id) { HashSet integerSet = new HashSet<>(); try (Connection connection = DbManager.getConnection(); PreparedStatement preparedStatement = connection.prepareStatement("SELECT `color` FROM `static_rune_racebeardcolor` WHERE `RaceID` = ?")) { preparedStatement.setInt(1, id); ResultSet rs = preparedStatement.executeQuery(); while (rs.next()) integerSet.add(rs.getInt(1)); } catch (SQLException e) { Logger.error(e); } return integerSet; } public HashSet BEARD_STYLES_FOR_RACE(final int id) { HashSet integerSet = new HashSet<>(); try (Connection connection = DbManager.getConnection(); PreparedStatement preparedStatement = connection.prepareStatement("SELECT `beardStyle` FROM `static_rune_racebeardstyle` WHERE `RaceID` = ?")) { preparedStatement.setInt(1, id); ResultSet rs = preparedStatement.executeQuery(); while (rs.next()) integerSet.add(rs.getInt(1)); } catch (SQLException e) { Logger.error(e); } return integerSet; } public HashSet HAIR_COLORS_FOR_RACE(final int id) { HashSet integerSet = new HashSet<>(); try (Connection connection = DbManager.getConnection(); PreparedStatement preparedStatement = connection.prepareStatement("SELECT `color` FROM `static_rune_racehaircolor` WHERE `RaceID` = ?")) { preparedStatement.setInt(1, id); ResultSet rs = preparedStatement.executeQuery(); while (rs.next()) integerSet.add(rs.getInt(1)); } catch (SQLException e) { Logger.error(e); } return integerSet; } public HashSet HAIR_STYLES_FOR_RACE(final int id) { HashSet integerSet = new HashSet<>(); try (Connection connection = DbManager.getConnection(); PreparedStatement preparedStatement = connection.prepareStatement("SELECT `hairStyle` FROM `static_rune_racehairstyle` WHERE `RaceID` = ?")) { preparedStatement.setInt(1, id); ResultSet rs = preparedStatement.executeQuery(); while (rs.next()) integerSet.add(rs.getInt(1)); } catch (SQLException e) { Logger.error(e); } return integerSet; } public HashSet SKIN_COLOR_FOR_RACE(final int id) { HashSet integerSet = new HashSet<>(); try (Connection connection = DbManager.getConnection(); PreparedStatement preparedStatement = connection.prepareStatement("SELECT `color` FROM `static_rune_raceskincolor` WHERE `RaceID` = ?")) { preparedStatement.setInt(1, id); ResultSet rs = preparedStatement.executeQuery(); while (rs.next()) integerSet.add(rs.getInt(1)); } catch (SQLException e) { Logger.error(e); } return integerSet; } public ConcurrentHashMap LOAD_ALL_RACES() { ConcurrentHashMap races; Race thisRace; races = new ConcurrentHashMap<>(); int recordsRead = 0; try (Connection connection = DbManager.getConnection(); PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_rune_race")) { ResultSet rs = preparedStatement.executeQuery(); while (rs.next()) { recordsRead++; thisRace = new Race(rs); races.put(thisRace.getRaceRuneID(), thisRace); } } catch (SQLException e) { Logger.error(e); } Logger.info("read: " + recordsRead + " cached: " + races.size()); return races; } }