Arcturus-Community/src/main/java/com/eu/habbo/habbohotel/items/CrackableReward.java

77 lines
2.3 KiB
Java
Raw Normal View History

2018-07-06 15:30:00 +02:00
package com.eu.habbo.habbohotel.items;
import com.eu.habbo.Emulator;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.AbstractMap;
import java.util.HashMap;
import java.util.Map;
public class CrackableReward
{
public final int itemId;
public final int count;
public final Map<Integer, Map.Entry<Integer, Integer>> prizes;
public int totalChance;
public final String achievementTick;
public final String achievementCracked;
2018-12-22 11:39:00 +01:00
public final int requiredEffect;
2018-07-06 15:30:00 +02:00
public CrackableReward(ResultSet set) throws SQLException
{
this.itemId = set.getInt("item_id");
this.count = set.getInt("count");
this.achievementTick = set.getString("achievement_tick");
this.achievementCracked = set.getString("achievement_cracked");
2018-12-22 11:39:00 +01:00
this.requiredEffect = set.getInt("required_effect");
2018-07-06 15:30:00 +02:00
String[] data = set.getString("prizes").split(";");
2018-09-28 21:25:00 +02:00
this.prizes = new HashMap<>();
2018-07-06 15:30:00 +02:00
this.totalChance = 0;
for(int i = 0; i < data.length; i++)
{
try
{
int itemId = 0;
int chance = 100;
if (data[i].contains(":") && data[i].split(":").length == 2)
{
itemId = Integer.valueOf(data[i].split(":")[0]);
chance = Integer.valueOf(data[i].split(":")[1]);
}
else
{
itemId = Integer.valueOf(data[i].replace(":", ""));
}
2018-09-28 21:25:00 +02:00
this.prizes.put(itemId, new AbstractMap.SimpleEntry<>(this.totalChance, this.totalChance + chance));
2018-07-06 15:30:00 +02:00
this.totalChance += chance;
}
catch (Exception e)
{
Emulator.getLogging().logErrorLine(e);
}
}
}
public int getRandomReward()
{
int random = Emulator.getRandom().nextInt(this.totalChance);
int notFound = 0;
for (Map.Entry<Integer, Map.Entry<Integer, Integer>> set : this.prizes.entrySet())
{
notFound = set.getKey();
if (random >= set.getValue().getKey() && random < set.getValue().getValue())
{
return set.getKey();
}
}
return notFound;
}
}