Refactor to remove abstraction
This commit is contained in:
@@ -146,8 +146,8 @@ public class dbBuildingHandler extends dbHandlerBase {
|
|||||||
|
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
Logger.error("Building", e);
|
Logger.error("Building", e);
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return building;
|
return building;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,8 +12,12 @@ package engine.db.handlers;
|
|||||||
import engine.Enum;
|
import engine.Enum;
|
||||||
import engine.gameManager.DbManager;
|
import engine.gameManager.DbManager;
|
||||||
import engine.objects.Zone;
|
import engine.objects.Zone;
|
||||||
|
import org.pmw.tinylog.Logger;
|
||||||
|
|
||||||
|
import java.sql.Connection;
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.SQLException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
|
||||||
public class dbZoneHandler extends dbHandlerBase {
|
public class dbZoneHandler extends dbHandlerBase {
|
||||||
@@ -46,48 +50,74 @@ public class dbZoneHandler extends dbHandlerBase {
|
|||||||
|
|
||||||
public Zone GET_BY_UID(long ID) {
|
public Zone GET_BY_UID(long ID) {
|
||||||
|
|
||||||
Zone zone = (Zone) DbManager.getFromCache(Enum.GameObjectType.Zone, (int)ID);
|
Zone zone = (Zone) DbManager.getFromCache(Enum.GameObjectType.Zone, (int) ID);
|
||||||
|
|
||||||
if (zone != null)
|
if (zone != null)
|
||||||
return zone;
|
return zone;
|
||||||
prepareCallable("SELECT `obj_zone`.*, `object`.`parent` FROM `object` INNER JOIN `obj_zone` ON `obj_zone`.`UID` = `object`.`UID` WHERE `object`.`UID` = ?;");
|
|
||||||
setLong(1, ID);
|
try (Connection connection = DbManager.getConnection();
|
||||||
return (Zone) getObjectSingle((int) ID);
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT `obj_zone`.*, `object`.`parent` FROM `object` INNER JOIN `obj_zone` ON `obj_zone`.`UID` = `object`.`UID` WHERE `object`.`UID` = ?;")) {
|
||||||
|
|
||||||
|
preparedStatement.setLong(1, ID);
|
||||||
|
|
||||||
|
ResultSet rs = preparedStatement.executeQuery();
|
||||||
|
zone = (Zone) getObjectFromRs(rs);
|
||||||
|
|
||||||
|
} catch (SQLException e) {
|
||||||
|
Logger.error(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
return zone;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ArrayList<Zone> GET_MAP_NODES(final int objectUUID) {
|
public ArrayList<Zone> GET_MAP_NODES(final int objectUUID) {
|
||||||
prepareCallable("SELECT `obj_zone`.*, `object`.`parent` FROM `object` INNER JOIN `obj_zone` ON `obj_zone`.`UID` = `object`.`UID` WHERE `object`.`parent` = ?;");
|
|
||||||
setLong(1, (long) objectUUID);
|
ArrayList<Zone> zoneList = new ArrayList<>();
|
||||||
return getObjectList();
|
|
||||||
|
try (Connection connection = DbManager.getConnection();
|
||||||
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT `obj_zone`.*, `object`.`parent` FROM `object` INNER JOIN `obj_zone` ON `obj_zone`.`UID` = `object`.`UID` WHERE `object`.`parent` = ?;")) {
|
||||||
|
|
||||||
|
preparedStatement.setLong(1, (long) objectUUID);
|
||||||
|
|
||||||
|
ResultSet rs = preparedStatement.executeQuery();
|
||||||
|
zoneList = getObjectsFromRs(rs, 2000);
|
||||||
|
|
||||||
|
} catch (SQLException e) {
|
||||||
|
Logger.error(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
return zoneList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ResultSet GET_ZONE_EXTENTS(final int loadNum) {
|
public ResultSet GET_ZONE_EXTENTS(final int loadNum) {
|
||||||
prepareCallable("SELECT * FROM `static_zone_size` WHERE `loadNum`=?;");
|
|
||||||
setInt(1, loadNum);
|
|
||||||
return executeQuery();
|
|
||||||
}
|
|
||||||
|
|
||||||
public String SET_PROPERTY(final Zone z, String name, Object new_value) {
|
try (Connection connection = DbManager.getConnection();
|
||||||
prepareCallable("CALL zone_SETPROP(?,?,?)");
|
PreparedStatement preparedStatement = connection.prepareStatement("SELECT * FROM `static_zone_size` WHERE `loadNum`=?;")) {
|
||||||
setLong(1, (long) z.getObjectUUID());
|
|
||||||
setString(2, name);
|
|
||||||
setString(3, String.valueOf(new_value));
|
|
||||||
return getResult();
|
|
||||||
}
|
|
||||||
|
|
||||||
public String SET_PROPERTY(final Zone z, String name, Object new_value, Object old_value) {
|
preparedStatement.setInt(1, loadNum);
|
||||||
prepareCallable("CALL zone_GETSETPROP(?,?,?,?)");
|
|
||||||
setLong(1, (long) z.getObjectUUID());
|
return preparedStatement.executeQuery();
|
||||||
setString(2, name);
|
|
||||||
setString(3, String.valueOf(new_value));
|
} catch (SQLException e) {
|
||||||
setString(4, String.valueOf(old_value));
|
Logger.error(e);
|
||||||
return getResult();
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean DELETE_ZONE(final Zone zone) {
|
public boolean DELETE_ZONE(final Zone zone) {
|
||||||
|
|
||||||
prepareCallable("DELETE FROM `object` WHERE `UID` = ? AND `type` = 'zone'");
|
try (Connection connection = DbManager.getConnection();
|
||||||
setInt(1, zone.getObjectUUID());
|
PreparedStatement preparedStatement = connection.prepareStatement("DELETE FROM `object` WHERE `UID` = ? AND `type` = 'zone'")) {
|
||||||
return (executeUpdate() != 0);
|
|
||||||
|
preparedStatement.setInt(1, zone.getObjectUUID());
|
||||||
|
|
||||||
|
return (preparedStatement.executeUpdate() > 0);
|
||||||
|
|
||||||
|
} catch (SQLException e) {
|
||||||
|
Logger.error(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user