153 lines
3.8 KiB
Java
Raw Normal View History

package me.libraryaddict.disguise.utilities.sounds;
import lombok.Getter;
import me.libraryaddict.disguise.disguisetypes.Disguise;
2020-05-24 12:14:47 +12:00
import me.libraryaddict.disguise.disguisetypes.DisguiseType;
import me.libraryaddict.disguise.utilities.reflection.ReflectionManager;
2020-05-24 12:14:47 +12:00
import org.apache.commons.lang.math.RandomUtils;
import org.bukkit.Sound;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
2020-05-24 12:14:47 +12:00
import java.util.Random;
/**
* Created by libraryaddict on 23/05/2020.
*/
public class SoundGroup {
public enum SoundType {
CANCEL,
DEATH,
HURT,
IDLE,
STEP
}
@Getter
2020-05-24 13:10:48 +12:00
private final static LinkedHashMap<String, SoundGroup> groups = new LinkedHashMap<>();
private float damageSoundVolume = 1F;
@Getter
private final LinkedHashMap<Object, SoundType> disguiseSounds = new LinkedHashMap<>();
2020-05-24 12:14:47 +12:00
private boolean customSounds;
public SoundGroup(String name) {
groups.put(name, this);
2020-05-24 12:14:47 +12:00
try {
DisguiseType.valueOf(name);
}
catch (Exception ex) {
customSounds = true;
}
}
public void addSound(Object sound, SoundType type) {
2020-05-24 01:44:19 +12:00
if (sound instanceof Sound) {
sound = ReflectionManager.getCraftSound((Sound) sound);
} else if (sound instanceof String) {
sound = ReflectionManager.createSoundEffect((String) sound);
} else if (!sound.getClass().getName().equals("SoundEffect")) {
throw new IllegalArgumentException();
}
2020-05-24 01:45:13 +12:00
if (sound == null) {
return;
}
disguiseSounds.put(sound, type);
}
public float getDamageAndIdleSoundVolume() {
return damageSoundVolume;
}
public void setDamageAndIdleSoundVolume(float strength) {
this.damageSoundVolume = strength;
}
public Object getSound(SoundType type) {
if (type == null) {
return null;
}
2020-05-24 12:14:47 +12:00
if (customSounds) {
return getRandomSound(type);
}
for (Map.Entry<Object, SoundType> entry : disguiseSounds.entrySet()) {
if (entry.getValue() != type) {
continue;
}
return entry.getKey();
}
return null;
}
2020-05-24 12:14:47 +12:00
private Object getRandomSound(SoundType type) {
if (type == null) {
return null;
}
Object[] sounds = new Object[disguiseSounds.size()];
int i = 0;
for (Map.Entry<Object, SoundType> entry : disguiseSounds.entrySet()) {
if (entry.getValue() != type) {
continue;
}
sounds[i++] = entry.getKey();
}
if (i == 0) {
return null;
}
return sounds[RandomUtils.nextInt(i)];
}
public SoundType getSound(Object sound) {
if (sound == null) {
return null;
}
return disguiseSounds.get(sound);
}
/**
* Used to check if this sound name is owned by this disguise sound.
*/
public SoundType getType(Object sound, boolean ignoreDamage) {
if (sound == null) {
return SoundType.CANCEL;
}
SoundType soundType = getSound(sound);
if (soundType == SoundType.DEATH || (ignoreDamage && soundType == SoundType.HURT)) {
return null;
}
return soundType;
}
public boolean isCancelSound(String sound) {
return getSound(sound) == SoundType.CANCEL;
}
public static SoundGroup getGroup(Disguise disguise) {
if (disguise.getSoundGroup() != null) {
return getGroup(disguise.getSoundGroup());
}
return getGroup(disguise.getType().name());
}
public static SoundGroup getGroup(String name) {
return groups.get(name);
}
}