2020-05-23 22:48:50 +12:00
|
|
|
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;
|
2020-05-23 22:48:50 +12:00
|
|
|
import me.libraryaddict.disguise.utilities.reflection.ReflectionManager;
|
2020-05-24 12:14:47 +12:00
|
|
|
import org.apache.commons.lang.math.RandomUtils;
|
2020-05-23 22:48:50 +12:00
|
|
|
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;
|
2020-05-23 22:48:50 +12:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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<>();
|
2020-05-23 22:48:50 +12:00
|
|
|
private float damageSoundVolume = 1F;
|
|
|
|
@Getter
|
|
|
|
private final LinkedHashMap<Object, SoundType> disguiseSounds = new LinkedHashMap<>();
|
2020-05-24 12:14:47 +12:00
|
|
|
private boolean customSounds;
|
2020-05-23 22:48:50 +12:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
2020-05-23 22:48:50 +12:00
|
|
|
}
|
|
|
|
|
|
|
|
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-23 22:48:50 +12:00
|
|
|
}
|
|
|
|
|
2020-05-24 01:45:13 +12:00
|
|
|
if (sound == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-05-23 22:48:50 +12:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-05-23 22:48:50 +12:00
|
|
|
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)];
|
|
|
|
}
|
|
|
|
|
2020-05-23 22:48:50 +12:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|