Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/pets/PetManager.java

646 lines
22 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.pets;
import com.eu.habbo.Emulator;
import com.eu.habbo.habbohotel.gameclients.GameClient;
import com.eu.habbo.habbohotel.items.Item;
import com.eu.habbo.habbohotel.items.interactions.InteractionNest;
import com.eu.habbo.habbohotel.items.interactions.InteractionPetDrink;
import com.eu.habbo.habbohotel.items.interactions.InteractionPetFood;
import com.eu.habbo.habbohotel.items.interactions.InteractionPetToy;
2018-09-12 18:45:00 +02:00
import com.eu.habbo.habbohotel.pets.actions.*;
2018-07-06 15:30:00 +02:00
import com.eu.habbo.habbohotel.rooms.Room;
import com.eu.habbo.habbohotel.rooms.RoomTile;
import com.eu.habbo.habbohotel.rooms.RoomUnit;
import com.eu.habbo.habbohotel.users.Habbo;
import gnu.trove.map.TIntIntMap;
import gnu.trove.map.hash.THashMap;
import gnu.trove.map.hash.TIntIntHashMap;
import gnu.trove.map.hash.TIntObjectHashMap;
2018-12-22 11:39:00 +01:00
import gnu.trove.procedure.TIntObjectProcedure;
2018-07-06 15:30:00 +02:00
import gnu.trove.set.hash.THashSet;
2018-12-22 11:39:00 +01:00
import org.apache.commons.math3.distribution.NormalDistribution;
2018-07-06 15:30:00 +02:00
import java.sql.*;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Map;
public class PetManager
{
public static final int[] experiences = new int[]{ 100, 200, 400, 600, 900, 1300, 1800, 2400, 3200, 4300, 5700, 7600, 10100, 13300, 17500, 23000, 30200, 39600, 51900};
private final THashMap<Integer, THashSet<PetRace>> petRaces;
private final THashMap<Integer, PetData> petData;
private final TIntIntMap breedingPetType;
private final THashMap<Integer, TIntObjectHashMap<ArrayList<PetBreedingReward>>> breedingReward;
2018-09-12 18:45:00 +02:00
public final THashMap<Integer, PetAction> petActions = new THashMap<Integer, PetAction>()
{
{
put(0, new ActionFree());
put(1, new ActionSit());
put(2, new ActionDown());
put(3, new ActionHere());
put(4, new ActionBeg());
put(5, new ActionPlayDead());
put(6, new ActionStay());
put(7, new ActionFollow());
put(8, new ActionStand());
put(9, new ActionJump());
put(10, new ActionSpeak());
put(11, new ActionPlay());
put(12, new ActionSilent());
put(13, new ActionNest());
put(14, new ActionDrink());
put(15, new ActionFollowLeft());
put(16, new ActionFollowRight());
put(17, new ActionPlayFootball());
put(24, new ActionMoveForward());
put(25, new ActionTurnLeft());
put(26, new ActionTurnRight());
put(27, new ActionRelax());
put(28, new ActionCroak());
put(29, new ActionDip());
put(30, new ActionWave());
put(35, new ActionWings());
put(36, new ActionBreatheFire());
put(38, new ActionTorch());
put(43, new ActionEat());
2018-12-22 11:39:00 +01:00
put(46, new ActionBreed());
2018-09-12 18:45:00 +02:00
}
};
2018-07-06 15:30:00 +02:00
public PetManager()
{
long millis = System.currentTimeMillis();
2018-09-28 21:25:00 +02:00
this.petRaces = new THashMap<>();
this.petData = new THashMap<>();
2018-07-06 15:30:00 +02:00
this.breedingPetType = new TIntIntHashMap();
2018-09-28 21:25:00 +02:00
this.breedingReward = new THashMap<>();
2018-07-06 15:30:00 +02:00
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection())
{
this.loadRaces(connection);
this.loadPetData(connection);
this.loadPetCommands(connection);
2018-12-22 11:39:00 +01:00
this.loadPetBreeding(connection);
2018-07-06 15:30:00 +02:00
}
catch (SQLException e)
{
Emulator.getLogging().logSQLException(e);
Emulator.getLogging().logErrorLine("Pet Manager -> Failed to load!");
return;
}
Emulator.getLogging().logStart("Pet Manager -> Loaded! (" + (System.currentTimeMillis() - millis) + " MS)");
}
2018-12-22 11:39:00 +01:00
2018-07-06 15:30:00 +02:00
public void reloadPetData()
{
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection())
{
try (PreparedStatement statement = connection.prepareStatement("SELECT * FROM pet_actions ORDER BY pet_type ASC"))
{
try (ResultSet set = statement.executeQuery())
{
while (set.next())
{
PetData petData = this.petData.get(set.getInt("pet_type"));
if (petData != null)
{
2018-09-12 18:45:00 +02:00
petData.load(set);
2018-07-06 15:30:00 +02:00
}
else
{
this.petData.put(set.getInt("pet_type"), new PetData(set));
}
}
}
}
PetData.generalNestItems.clear();
PetData.generalFoodItems.clear();
PetData.generalDrinkItems.clear();
for(PetData data : this.petData.values())
{
data.getDrinkItems().clear();
data.getFoodItems().clear();
data.getToyItems().clear();
data.getNests().clear();
data.petVocals.clear();
}
this.loadPetItems(connection);
this.loadPetVocals(connection);
this.loadRaces(connection);
}
catch (SQLException e)
{
Emulator.getLogging().logSQLException(e);
}
}
private void loadRaces(Connection connection) throws SQLException
{
this.petRaces.clear();
try (Statement statement = connection.createStatement(); ResultSet set = statement.executeQuery("SELECT * FROM pet_breeds ORDER BY race, color_one, color_two ASC"))
{
while(set.next())
{
if(this.petRaces.get(set.getInt("race")) == null)
2018-09-28 21:25:00 +02:00
this.petRaces.put(set.getInt("race"), new THashSet<>());
2018-07-06 15:30:00 +02:00
this.petRaces.get(set.getInt("race")).add(new PetRace(set));
}
}
}
private void loadPetData(Connection connection) throws SQLException
{
try (Statement statement = connection.createStatement(); ResultSet set = statement.executeQuery("SELECT * FROM pet_actions ORDER BY pet_type ASC"))
{
while(set.next())
{
this.petData.put(set.getInt("pet_type"), new PetData(set));
}
}
this.loadPetItems(connection);
this.loadPetVocals(connection);
}
private void loadPetItems(Connection connection) throws SQLException
{
try (Statement statement = connection.createStatement(); ResultSet set = statement.executeQuery("SELECT * FROM pet_items"))
{
while(set.next())
{
Item baseItem = Emulator.getGameEnvironment().getItemManager().getItem(set.getInt("item_id"));
if(baseItem != null)
{
2018-09-12 18:45:00 +02:00
if(set.getInt("pet_id") == -1)
2018-07-06 15:30:00 +02:00
{
if(baseItem.getInteractionType().getType() == InteractionNest.class) PetData.generalNestItems.add(baseItem);
else if(baseItem.getInteractionType().getType() == InteractionPetFood.class) PetData.generalFoodItems.add(baseItem);
else if(baseItem.getInteractionType().getType() == InteractionPetDrink.class) PetData.generalDrinkItems.add(baseItem);
else if(baseItem.getInteractionType().getType() == InteractionPetToy.class) PetData.generalToyItems.add(baseItem);
}
else
{
PetData data = this.getPetData(set.getInt("pet_id"));
if(data != null)
{
if(baseItem.getInteractionType().getType() == InteractionNest.class) data.addNest(baseItem);
else if(baseItem.getInteractionType().getType() == InteractionPetFood.class) data.addFoodItem(baseItem);
else if(baseItem.getInteractionType().getType() == InteractionPetDrink.class) data.addDrinkItem(baseItem);
else if(baseItem.getInteractionType().getType() == InteractionPetToy.class) data.addToyItem(baseItem);
}
}
}
}
}
}
private void loadPetVocals(Connection connection) throws SQLException
{
try (Statement statement = connection.createStatement(); ResultSet set = statement.executeQuery("SELECT * FROM pet_vocals"))
{
while(set.next())
{
2018-09-12 18:45:00 +02:00
if(set.getInt("pet_id") >= 0)
2018-07-06 15:30:00 +02:00
{
2018-09-12 18:45:00 +02:00
if (this.petData.containsKey(set.getInt("pet_id")))
{
2018-11-17 14:28:00 +01:00
PetVocalsType petVocalsType = PetVocalsType.valueOf(set.getString("type").toUpperCase());
if (petVocalsType != null)
{
this.petData.get(set.getInt("pet_id")).petVocals.get(petVocalsType).add(new PetVocal(set.getString("message")));
}
else
{
Emulator.getLogging().logErrorLine("Unknown pet vocal type " + set.getString("type"));
}
2018-09-12 18:45:00 +02:00
}
else
{
Emulator.getLogging().logErrorLine("Missing pet_actions table entry for pet id " + set.getInt("pet_id"));
}
2018-07-06 15:30:00 +02:00
}
else
{
if(!PetData.generalPetVocals.containsKey(PetVocalsType.valueOf(set.getString("type").toUpperCase())))
2018-09-28 21:25:00 +02:00
PetData.generalPetVocals.put(PetVocalsType.valueOf(set.getString("type").toUpperCase()), new THashSet<>());
2018-07-06 15:30:00 +02:00
PetData.generalPetVocals.get(PetVocalsType.valueOf(set.getString("type").toUpperCase())).add(new PetVocal(set.getString("message")));
}
}
}
}
private void loadPetCommands(Connection connection) throws SQLException
{
2018-09-28 21:25:00 +02:00
THashMap<Integer, PetCommand> commandsList = new THashMap<>();
2018-07-06 15:30:00 +02:00
try (Statement statement = connection.createStatement(); ResultSet set = statement.executeQuery("SELECT * FROM pet_commands_data"))
{
while(set.next())
{
2018-09-12 18:45:00 +02:00
commandsList.put(set.getInt("command_id"), new PetCommand(set, this.petActions.get(set.getInt("command_id"))));
2018-07-06 15:30:00 +02:00
}
}
try (Statement statement = connection.createStatement(); ResultSet set = statement.executeQuery("SELECT * FROM pet_commands ORDER BY pet_id ASC"))
{
while(set.next())
{
PetData data = this.petData.get(set.getInt("pet_id"));
if(data != null)
{
data.getPetCommands().add(commandsList.get(set.getInt("command_id")));
}
}
}
}
private void loadPetBreeding(Connection connection) throws SQLException
{
try (Statement statement = connection.createStatement(); ResultSet set = statement.executeQuery("SELECT * FROM pet_breeding"))
{
while (set.next())
{
this.breedingPetType.put(set.getInt("pet_id"), set.getInt("offspring_id"));
}
}
try (Statement statement = connection.createStatement(); ResultSet set = statement.executeQuery("SELECT * FROM pet_breeding_races"))
{
while (set.next())
{
PetBreedingReward reward = new PetBreedingReward(set);
if (!this.breedingReward.containsKey(reward.petType))
{
2018-09-28 21:25:00 +02:00
this.breedingReward.put(reward.petType, new TIntObjectHashMap<>());
2018-07-06 15:30:00 +02:00
}
if (!this.breedingReward.get(reward.petType).containsKey(reward.rarityLevel))
{
2018-09-28 21:25:00 +02:00
this.breedingReward.get(reward.petType).put(reward.rarityLevel, new ArrayList<>());
2018-07-06 15:30:00 +02:00
}
this.breedingReward.get(reward.petType).get(reward.rarityLevel).add(reward);
}
}
}
public THashSet<PetRace> getBreeds(String petName)
{
if(!petName.startsWith("a0 pet"))
{
Emulator.getLogging().logErrorLine("Pet " + petName + " not found. Make sure it matches the pattern \"a0 pet<pet_id>\"!");
return null;
}
try
{
int petId = Integer.valueOf(petName.split("t")[1]);
return this.petRaces.get(petId);
}
catch (Exception e)
{
e.printStackTrace();
}
return null;
}
2018-12-22 11:39:00 +01:00
public TIntObjectHashMap<ArrayList<PetBreedingReward>> getBreedingRewards(int petType)
{
return this.breedingReward.get(petType);
}
public int getRarityForOffspring(Pet pet)
{
final int[] rarityLevel = {0};
TIntObjectHashMap<ArrayList<PetBreedingReward>> offspringList = this.breedingReward.get(pet.getPetData().getType());
offspringList.forEachEntry(new TIntObjectProcedure<ArrayList<PetBreedingReward>>()
{
@Override
public boolean execute(int i, ArrayList<PetBreedingReward> petBreedingRewards)
{
if (petBreedingRewards.contains(pet.getRace()))
{
rarityLevel[0] = i;
return false;
}
return true;
}
});
return 4 - rarityLevel[0];
}
2018-07-06 15:30:00 +02:00
public static int getLevel(int experience)
{
int index = 0;
for(int i = 0; i < experiences.length; i++)
{
if(experiences[i] > experience)
{
index = i;
break;
}
}
return index + 1;
}
public static int maxEnergy(int level)
{
//TODO: Add energy calculation.
return 100 * level;
}
public PetData getPetData(int type)
{
synchronized (this.petData)
{
if (this.petData.containsKey(type))
{
return this.petData.get(type);
}
else
{
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection())
{
Emulator.getLogging().logErrorLine("Missing petdata for type " + type + ". Adding this to the database...");
try (PreparedStatement statement = connection.prepareStatement("INSERT INTO pet_actions (pet_type) VALUES (?)"))
{
statement.setInt(1, type);
statement.execute();
}
try (PreparedStatement statement = connection.prepareStatement("SELECT * FROM pet_actions WHERE pet_type = ? LIMIT 1"))
{
statement.setInt(1, type);
try (ResultSet set = statement.executeQuery())
{
if (set.next())
{
PetData petData = new PetData(set);
this.petData.put(type, petData);
Emulator.getLogging().logErrorLine("Missing petdata for type " + type + " added to the database!");
return petData;
}
}
}
}
catch (SQLException e)
{
Emulator.getLogging().logSQLException(e);
}
}
}
return null;
}
public PetData getPetData(String petName)
{
synchronized (this.petData)
{
for (Map.Entry<Integer, PetData> entry : this.petData.entrySet())
{
if (entry.getValue().getName().equalsIgnoreCase(petName))
{
return entry.getValue();
}
}
}
return null;
}
public Collection<PetData> getPetData()
{
return this.petData.values();
}
public Pet createPet(Item item, String name, String race, String color, GameClient client)
{
int type = Integer.valueOf(item.getName().toLowerCase().replace("a0 pet", ""));
2018-09-28 21:25:00 +02:00
if (this.petData.containsKey(type))
{
Pet pet;
if (type == 15)
pet = new HorsePet(type, Integer.valueOf(race), color, name, client.getHabbo().getHabboInfo().getId());
else if (type == 16)
pet = createMonsterplant(null, client.getHabbo(), false, null);
else
pet = new Pet(type,
Integer.valueOf(race),
color,
name,
client.getHabbo().getHabboInfo().getId()
);
2018-07-06 15:30:00 +02:00
2018-09-28 21:25:00 +02:00
pet.needsUpdate = true;
pet.run();
return pet;
}
return null;
2018-07-06 15:30:00 +02:00
}
public Pet createPet(int type, String name, GameClient client)
2018-12-22 11:39:00 +01:00
{
return this.createPet(type, Emulator.getRandom().nextInt(this.petRaces.get(type).size() + 1), name, client);
}
public Pet createPet(int type, int race, String name, GameClient client)
2018-07-06 15:30:00 +02:00
{
2018-09-28 21:25:00 +02:00
if (this.petData.containsKey(type))
{
2018-12-22 11:39:00 +01:00
Pet pet = new Pet(type, race, "FFFFFF", name, client.getHabbo().getHabboInfo().getId());
2018-09-28 21:25:00 +02:00
pet.needsUpdate = true;
pet.run();
return pet;
}
return null;
2018-07-06 15:30:00 +02:00
}
public MonsterplantPet createMonsterplant(Room room, Habbo habbo, boolean rare, RoomTile t)
{
MonsterplantPet pet = new MonsterplantPet(
habbo.getHabboInfo().getId(), //Owner ID
2018-09-28 21:25:00 +02:00
randomBody(rare ? 4 : 0),
randomColor(rare ? 4 : 0),
Emulator.getRandom().nextInt(12) + 1,
Emulator.getRandom().nextInt(11),
Emulator.getRandom().nextInt(12) + 1,
Emulator.getRandom().nextInt(11),
Emulator.getRandom().nextInt(12) + 1,
Emulator.getRandom().nextInt(11)
2018-07-06 15:30:00 +02:00
);
pet.setUserId(habbo.getHabboInfo().getId());
pet.setRoom(room);
pet.setRoomUnit(new RoomUnit());
pet.getRoomUnit().setPathFinderRoom(room);
pet.needsUpdate = true;
pet.run();
return pet;
}
public Pet createGnome(String name, Room room, Habbo habbo)
{
Pet pet = new GnomePet(26, 0, "FFFFFF", name, habbo.getHabboInfo().getId(),
"5 " +
"0 -1 " + randomGnomeSkinColor() + " " +
"1 10" + (1 + Emulator.getRandom().nextInt(2)) + " " + randomGnomeColor() + " " +
"2 201 " + randomGnomeColor() + " " +
"3 30" + (1 + Emulator.getRandom().nextInt(2)) + " " + randomGnomeColor() + " " +
"4 40" + Emulator.getRandom().nextInt(2) + " " + randomGnomeColor()
);
pet.setUserId(habbo.getHabboInfo().getId());
pet.setRoom(room);
pet.setRoomUnit(new RoomUnit());
pet.getRoomUnit().setPathFinderRoom(room);
pet.needsUpdate = true;
pet.run();
return pet;
}
public Pet createLeprechaun(String name, Room room, Habbo habbo)
{
Pet pet = new GnomePet(27, 0, "FFFFFF", name, habbo.getHabboInfo().getId(),
"5 " +
"0 -1 0 " +
"1 102 19 " +
"2 201 27 " +
"3 302 23 " +
"4 401 27"
);
pet.setUserId(habbo.getHabboInfo().getId());
pet.setRoom(room);
pet.setRoomUnit(new RoomUnit());
pet.getRoomUnit().setPathFinderRoom(room);
pet.needsUpdate = true;
pet.run();
return pet;
}
private int randomGnomeColor()
{
int color = 19;
while (color == 19 || color == 27)
{
color = Emulator.getRandom().nextInt(34);
}
return color;
}
private int randomLeprechaunColor()
{
return Emulator.getRandom().nextInt(2) == 1 ? 19 : 27;
}
static int[] skins = new int[]{0, 1, 6, 7};
private int randomGnomeSkinColor()
{
return skins[Emulator.getRandom().nextInt(skins.length)];
}
public static int randomBody(int minimumRarity)
{
//int rarity = MonsterplantPet.indexedBody.get(random(0, MonsterplantPet.bodyRarity.size(), 2.0)).getValue();
int rarity = -1;
Integer bodyType = 0;
while (rarity < minimumRarity)
{
bodyType = (Integer) MonsterplantPet.bodyRarity.keySet().toArray()[random(0, MonsterplantPet.bodyRarity.size(), 2.0)];
rarity = MonsterplantPet.bodyRarity.get(bodyType).getValue();
}
return bodyType;
}
public static int randomColor(int minimumRarity)
{
int rarity = -1;
Integer colorType = 0;
while (rarity < minimumRarity)
{
colorType = (Integer) MonsterplantPet.colorRarity.keySet().toArray()[random(0, MonsterplantPet.colorRarity.size(), 2.0)];
rarity = MonsterplantPet.colorRarity.get(colorType).getValue();
}
return colorType;
}
public static int random(int low, int high, double bias)
{
2018-09-28 21:25:00 +02:00
double r = Math.random();
2018-07-06 15:30:00 +02:00
r = Math.pow(r, bias);
return (int) (low + (high - low) * r);
}
public static Pet loadPet(ResultSet set) throws SQLException
{
if(set.getInt("type") == 15)
return new HorsePet(set);
else if(set.getInt("type") == 16)
return new MonsterplantPet(set);
else if (set.getInt("type") == 26 || set.getInt("type") == 27)
return new GnomePet(set);
else
return new Pet(set);
}
2018-07-08 23:32:00 +02:00
2018-09-12 18:45:00 +02:00
public boolean deletePet(Pet pet)
2018-07-06 15:30:00 +02:00
{
try (Connection connection = Emulator.getDatabase().getDataSource().getConnection(); PreparedStatement statement = connection.prepareStatement("DELETE FROM users_pets WHERE id = ? LIMIT 1"))
{
statement.setInt(1, pet.getId());
return statement.execute();
}
catch (SQLException e)
{
Emulator.getLogging().logSQLException(e);
}
return false;
}
2018-12-22 11:39:00 +01:00
public static NormalDistribution getNormalDistributionForBreeding(int levelOne, int levelTwo)
{
return getNormalDistributionForBreeding((levelOne + levelTwo) / 2);
}
public static NormalDistribution getNormalDistributionForBreeding(double avgLevel)
{
return new NormalDistribution(avgLevel, (20 - (avgLevel / 2)) / 2);
}
}