forked from MagicBane/Server
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.
257 lines
9.0 KiB
257 lines
9.0 KiB
3 years ago
|
// • ▌ ▄ ·. ▄▄▄· ▄▄ • ▪ ▄▄· ▄▄▄▄· ▄▄▄· ▐▄▄▄ ▄▄▄ .
|
||
|
// ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪▐█ ▀█▪▐█ ▀█ •█▌ ▐█▐▌·
|
||
|
// ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄▐█▀▀█▄▄█▀▀█ ▐█▐ ▐▌▐▀▀▀
|
||
|
// ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌██▄▪▐█▐█ ▪▐▌██▐ █▌▐█▄▄▌
|
||
|
// ▀▀ █▪▀▀▀ ▀ ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ ·▀▀▀▀ ▀ ▀ ▀▀ █▪ ▀▀▀
|
||
|
// Magicbane Emulator Project © 2013 - 2022
|
||
|
// www.magicbane.com
|
||
|
|
||
|
|
||
|
package engine.db.handlers;
|
||
|
|
||
2 years ago
|
import engine.gameManager.DbManager;
|
||
2 years ago
|
import engine.gameManager.LootManager;
|
||
2 years ago
|
import engine.loot.*;
|
||
3 years ago
|
import engine.objects.Item;
|
||
|
import engine.objects.LootTable;
|
||
|
import org.pmw.tinylog.Logger;
|
||
|
|
||
2 years ago
|
import java.sql.Connection;
|
||
|
import java.sql.PreparedStatement;
|
||
3 years ago
|
import java.sql.ResultSet;
|
||
|
import java.sql.SQLException;
|
||
2 years ago
|
import java.util.ArrayList;
|
||
|
import java.util.HashMap;
|
||
3 years ago
|
|
||
2 years ago
|
public class dbLootHandler extends dbHandlerBase {
|
||
3 years ago
|
|
||
2 years ago
|
public dbLootHandler() {
|
||
3 years ago
|
|
||
|
}
|
||
|
|
||
2 years ago
|
public HashMap<Integer, ArrayList<BootySetEntry>> LOAD_BOOTY_FOR_MOBS() {
|
||
|
|
||
|
HashMap<Integer, ArrayList<BootySetEntry>> bootySets = new HashMap<>();
|
||
|
BootySetEntry bootySetEntry;
|
||
|
int bootySetID;
|
||
|
int recordsRead = 0;
|
||
|
|
||
|
try (Connection connection = DbManager.getConnection();
|
||
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_npc_bootySet")) {
|
||
|
|
||
|
ResultSet rs = preparedStatement.executeQuery();
|
||
|
|
||
|
while (rs.next()) {
|
||
|
|
||
|
recordsRead++;
|
||
|
|
||
|
bootySetID = rs.getInt("bootySet");
|
||
|
bootySetEntry = new BootySetEntry(rs);
|
||
|
|
||
|
if (bootySets.get(bootySetID) == null) {
|
||
|
ArrayList<BootySetEntry> bootyList = new ArrayList<>();
|
||
|
bootyList.add(bootySetEntry);
|
||
|
bootySets.put(bootySetID, bootyList);
|
||
|
} else {
|
||
|
ArrayList<BootySetEntry> bootyList = bootySets.get(bootySetID);
|
||
|
bootyList.add(bootySetEntry);
|
||
|
bootySets.put(bootySetID, bootyList);
|
||
|
}
|
||
|
}
|
||
|
} catch (SQLException e) {
|
||
|
Logger.error(e);
|
||
|
return bootySets;
|
||
|
}
|
||
|
|
||
|
Logger.info("read: " + recordsRead + " cached: " + bootySets.size());
|
||
|
return bootySets;
|
||
|
}
|
||
|
|
||
2 years ago
|
public void populateGenTables() {
|
||
2 years ago
|
|
||
3 years ago
|
int recordsRead = 0;
|
||
2 years ago
|
|
||
|
try (Connection connection = DbManager.getConnection();
|
||
2 years ago
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT `genTable`, `minRoll`, `maxRoll`, `itemTableID`, `pModTableID`, `sModTableID` FROM `static_gentables`")) {
|
||
2 years ago
|
|
||
|
ResultSet rs = preparedStatement.executeQuery();
|
||
|
|
||
|
while (rs.next()) {
|
||
|
recordsRead++;
|
||
2 years ago
|
LootTable lootTable = LootTable.getGenTable(rs.getInt("genTable"));
|
||
2 years ago
|
lootTable.addRow(rs.getFloat("minRoll"), rs.getFloat("maxRoll"), rs.getInt("itemTableID"), rs.getInt("pModTableID"), rs.getInt("sModTableID"), "");
|
||
2 years ago
|
}
|
||
|
|
||
3 years ago
|
} catch (SQLException e) {
|
||
2 years ago
|
Logger.error(e);
|
||
3 years ago
|
}
|
||
2 years ago
|
|
||
2 years ago
|
Logger.info("read: " + recordsRead + " cached: " + LootTable.getGenTables().size());
|
||
3 years ago
|
}
|
||
|
|
||
2 years ago
|
public void populateItemTables() {
|
||
2 years ago
|
|
||
3 years ago
|
int recordsRead = 0;
|
||
2 years ago
|
|
||
2 years ago
|
try (Connection connection = DbManager.getConnection();
|
||
2 years ago
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT `itemTable`, `minRoll`, `maxRoll`, `itemBaseUUID`, `minSpawn`, `maxSpawn` FROM `static_itemtables`")) {
|
||
2 years ago
|
|
||
2 years ago
|
ResultSet rs = preparedStatement.executeQuery();
|
||
|
|
||
|
while (rs.next()) {
|
||
|
recordsRead++;
|
||
2 years ago
|
LootTable lootTable = LootTable.getItemTable(rs.getInt("itemTable"));
|
||
2 years ago
|
lootTable.addRow(rs.getFloat("minRoll"), rs.getFloat("maxRoll"), rs.getInt("itemBaseUUID"), rs.getInt("minSpawn"), rs.getInt("maxSpawn"), "");
|
||
|
}
|
||
2 years ago
|
|
||
3 years ago
|
} catch (SQLException e) {
|
||
2 years ago
|
Logger.error(e);
|
||
3 years ago
|
}
|
||
2 years ago
|
|
||
2 years ago
|
Logger.info("read: " + recordsRead + " cached: " + LootTable.getItemTables().size());
|
||
3 years ago
|
}
|
||
|
|
||
|
public void populateModTables() {
|
||
2 years ago
|
|
||
3 years ago
|
int recordsRead = 0;
|
||
2 years ago
|
|
||
2 years ago
|
try (Connection connection = DbManager.getConnection();
|
||
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT `modTable`,`minRoll`,`maxRoll`,`value`,`action` FROM `static_modtables`")) {
|
||
|
|
||
|
ResultSet rs = preparedStatement.executeQuery();
|
||
|
|
||
|
while (rs.next()) {
|
||
|
recordsRead++;
|
||
|
LootTable lootTable = LootTable.getModTable(rs.getInt("modTable"));
|
||
|
lootTable.addRow(rs.getFloat("minRoll"), rs.getFloat("maxRoll"), rs.getInt("value"), 0, 0, rs.getString("action"));
|
||
|
}
|
||
|
|
||
3 years ago
|
} catch (SQLException e) {
|
||
2 years ago
|
Logger.error(e);
|
||
3 years ago
|
}
|
||
2 years ago
|
|
||
|
Logger.info("read: " + recordsRead + " cached: " + LootTable.getModTables().size());
|
||
3 years ago
|
}
|
||
|
|
||
2 years ago
|
public void populateModTypeTables() {
|
||
2 years ago
|
|
||
3 years ago
|
int recordsRead = 0;
|
||
2 years ago
|
|
||
2 years ago
|
try (Connection connection = DbManager.getConnection();
|
||
2 years ago
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT `modType`,`minRoll`,`maxRoll`,`subTableID` FROM `static_modtypetables`")) {
|
||
2 years ago
|
|
||
|
ResultSet rs = preparedStatement.executeQuery();
|
||
|
|
||
|
while (rs.next()) {
|
||
|
recordsRead++;
|
||
2 years ago
|
LootTable lootTable = LootTable.getModTypeTable(rs.getInt("modType"));
|
||
2 years ago
|
lootTable.addRow(rs.getFloat("minRoll"), rs.getFloat("maxRoll"), rs.getInt("subTableID"), 0, 0, "");
|
||
|
}
|
||
|
|
||
3 years ago
|
} catch (SQLException e) {
|
||
2 years ago
|
Logger.error(e);
|
||
3 years ago
|
}
|
||
2 years ago
|
|
||
2 years ago
|
Logger.info("read: " + recordsRead + " cached: " + LootTable.getModTypeTables().size());
|
||
3 years ago
|
}
|
||
|
|
||
|
public void LOAD_ENCHANT_VALUES() {
|
||
2 years ago
|
|
||
2 years ago
|
try (Connection connection = DbManager.getConnection();
|
||
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT `IDString`, `minMod` FROM `static_power_effectmod` WHERE `modType` = ?")) {
|
||
2 years ago
|
|
||
2 years ago
|
preparedStatement.setString(1, "Value");
|
||
|
ResultSet rs = preparedStatement.executeQuery();
|
||
|
|
||
|
while (rs.next())
|
||
3 years ago
|
Item.addEnchantValue(rs.getString("IDString"), rs.getInt("minMod"));
|
||
2 years ago
|
|
||
3 years ago
|
} catch (SQLException e) {
|
||
2 years ago
|
Logger.error(e);
|
||
3 years ago
|
}
|
||
|
}
|
||
2 years ago
|
|
||
2 years ago
|
public void LOAD_ALL_GENTABLES() {
|
||
2 years ago
|
|
||
2 years ago
|
int recordsRead = 0;
|
||
|
|
||
2 years ago
|
try (Connection connection = DbManager.getConnection();
|
||
2 years ago
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_gentables")) {
|
||
2 years ago
|
|
||
2 years ago
|
ResultSet rs = preparedStatement.executeQuery();
|
||
2 years ago
|
|
||
|
while (rs.next()) {
|
||
2 years ago
|
GenTableRow row = new GenTableRow(rs);
|
||
2 years ago
|
LootManager.AddGenTableRow(rs.getInt("gentable"), row);
|
||
2 years ago
|
}
|
||
|
|
||
|
} catch (SQLException e) {
|
||
2 years ago
|
Logger.error(e);
|
||
2 years ago
|
}
|
||
2 years ago
|
|
||
|
Logger.info("read: " + recordsRead);
|
||
2 years ago
|
}
|
||
|
|
||
2 years ago
|
public void LOAD_ALL_ITEMTABLES() {
|
||
2 years ago
|
|
||
|
int recordsRead = 0;
|
||
|
|
||
2 years ago
|
try (Connection connection = DbManager.getConnection();
|
||
2 years ago
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_itemtables")) {
|
||
2 years ago
|
|
||
2 years ago
|
ResultSet rs = preparedStatement.executeQuery();
|
||
2 years ago
|
|
||
|
while (rs.next()) {
|
||
|
recordsRead++;
|
||
2 years ago
|
ItemTableRow row = new ItemTableRow(rs);
|
||
2 years ago
|
LootManager.AddItemTableRow(rs.getInt("itemTable"), row);
|
||
2 years ago
|
}
|
||
|
|
||
|
} catch (SQLException e) {
|
||
2 years ago
|
Logger.error(e);
|
||
2 years ago
|
}
|
||
2 years ago
|
|
||
|
Logger.info("read: " + recordsRead);
|
||
2 years ago
|
}
|
||
|
|
||
2 years ago
|
public void LOAD_ALL_MODTYPES() {
|
||
2 years ago
|
int recordsRead = 0;
|
||
|
|
||
2 years ago
|
try (Connection connection = DbManager.getConnection();
|
||
2 years ago
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_modtypetables")) {
|
||
2 years ago
|
|
||
2 years ago
|
ResultSet rs = preparedStatement.executeQuery();
|
||
2 years ago
|
|
||
|
while (rs.next()) {
|
||
|
recordsRead++;
|
||
2 years ago
|
ModTypeTableRow mttr = new ModTypeTableRow(rs);
|
||
2 years ago
|
LootManager.AddModTypeTableRow(rs.getInt("modType"), mttr);
|
||
2 years ago
|
}
|
||
|
|
||
|
} catch (SQLException e) {
|
||
2 years ago
|
Logger.error(e);
|
||
2 years ago
|
}
|
||
2 years ago
|
Logger.info("read: " + recordsRead);
|
||
2 years ago
|
}
|
||
|
|
||
|
public void LOAD_ALL_MODTABLES() {
|
||
|
int recordsRead = 0;
|
||
|
|
||
2 years ago
|
try (Connection connection = DbManager.getConnection();
|
||
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM static_modtables")) {
|
||
2 years ago
|
|
||
2 years ago
|
ResultSet rs = preparedStatement.executeQuery();
|
||
2 years ago
|
|
||
|
while (rs.next()) {
|
||
|
recordsRead++;
|
||
2 years ago
|
ModTableRow mtr = new ModTableRow(rs);
|
||
2 years ago
|
LootManager.AddModTableRow(rs.getInt("modTable"), mtr);
|
||
2 years ago
|
}
|
||
|
|
||
|
} catch (SQLException e) {
|
||
2 years ago
|
Logger.error(e);
|
||
2 years ago
|
}
|
||
2 years ago
|
Logger.info("read: " + recordsRead);
|
||
2 years ago
|
}
|
||
3 years ago
|
}
|