use of com.minecolonies.api.sounds.EventType in project minecolonies by ldtteam.
the class SoundUtils method playSoundAtCitizenWith.
/**
* Plays a sound with a certain chance at a certain position.
*
* @param worldIn the world to play the sound in.
* @param position position to play the sound at.
* @param type sound to play.
* @param citizenData the citizen.
*/
public static void playSoundAtCitizenWith(@NotNull final World worldIn, @NotNull final BlockPos position, @Nullable final EventType type, @Nullable final ICitizenData citizenData) {
if (citizenData == null) {
return;
}
final Map<EventType, Tuple<SoundEvent, SoundEvent>> map;
if (citizenData.getJob() != null) {
map = CITIZEN_SOUND_EVENTS.get(citizenData.getJob().getJobRegistryEntry().getRegistryName().getPath());
} else {
map = CITIZEN_SOUND_EVENTS.get(citizenData.isChild() ? "child" : "citizen");
}
final SoundEvent event = citizenData.isFemale() ? map.get(type).getB() : map.get(type).getA();
if (type.getChance() > rand.nextDouble() * ONE_HUNDRED) {
worldIn.playSound(null, position, event, SoundCategory.NEUTRAL, (float) VOLUME, (float) PITCH);
}
}
use of com.minecolonies.api.sounds.EventType in project minecolonies by Minecolonies.
the class DefaultSoundProvider method run.
@Override
public void run(@NotNull final DirectoryCache cache) throws IOException {
sounds = new JsonObject();
final List<String> defaultMaleSounds = new ArrayList<>();
defaultMaleSounds.add("minecolonies:mob/citizen/male/say1");
defaultMaleSounds.add("minecolonies:mob/citizen/male/say2");
defaultMaleSounds.add("minecolonies:mob/citizen/male/say3");
final List<String> defaultFemaleSounds = new ArrayList<>();
defaultFemaleSounds.add("minecolonies:mob/citizen/female/say1");
defaultFemaleSounds.add("minecolonies:mob/citizen/female/say2");
defaultFemaleSounds.add("minecolonies:mob/citizen/female/say3");
final List<String> childSounds = new ArrayList<>();
childSounds.add("minecolonies:mob/citizen/child/laugh1");
childSounds.add("minecolonies:mob/citizen/child/laugh2");
for (final JobEntry job : IJobRegistry.getInstance().getValues()) {
if (job.getRegistryName().getNamespace().equals(Constants.MOD_ID) && !job.getRegistryName().getPath().equals("placeholder")) {
for (final EventType soundEvents : EventType.values()) {
sounds.add("mob." + job.getRegistryName().getPath() + ".male." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), defaultMaleSounds));
sounds.add("mob." + job.getRegistryName().getPath() + ".female." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), defaultFemaleSounds));
}
}
}
for (final EventType soundEvents : EventType.values()) {
sounds.add("mob.citizen.male." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), defaultMaleSounds));
sounds.add("mob.citizen.female." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), defaultFemaleSounds));
}
for (final EventType soundEvents : EventType.values()) {
sounds.add("mob.child.male." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), childSounds));
sounds.add("mob.child.female." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), childSounds));
}
for (final RaiderType type : RaiderType.values()) {
sounds.add("mob." + type.name().toLowerCase(Locale.US) + ".death", createSoundJson("hostile", getDefaultProperties(), ImmutableList.of("minecolonies:mob/barbarian/death")));
sounds.add("mob." + type.name().toLowerCase(Locale.US) + ".say", createSoundJson("hostile", getDefaultProperties(), ImmutableList.of("minecolonies:mob/barbarian/say")));
sounds.add("mob." + type.name().toLowerCase(Locale.US) + ".hurt", createSoundJson("hostile", getDefaultProperties(), ImmutableList.of("minecolonies:mob/barbarian/hurt1", "minecolonies:mob/barbarian/hurt2", "minecolonies:mob/barbarian/hurt3", "minecolonies:mob/barbarian/hurt4")));
}
sounds.add("mob.citizen.snore", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/citizen/snore")));
JsonObject tavernProperties = getDefaultProperties();
tavernProperties.addProperty("attenuation_distance", 23);
tavernProperties.addProperty("stream", true);
tavernProperties.addProperty("comment", "Credits to Darren Curtis - Fireside Tales");
sounds.add("tile.tavern.tavern_theme", createSoundJson("music", tavernProperties, ImmutableList.of("minecolonies:tile/tavern/tavern_theme")));
sounds.add("mob.mercenary.attack", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/attack/attack1", "minecolonies:mob/mercenary/attack/attack2", "minecolonies:mob/mercenary/attack/attack3", "minecolonies:mob/mercenary/attack/attack4")));
sounds.add("mob.mercenary.celebrate", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/celebrate/celebrate1")));
sounds.add("mob.mercenary.die", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/die/death1", "minecolonies:mob/mercenary/die/death2")));
sounds.add("mob.mercenary.hurt", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/hurt/hurt1", "minecolonies:mob/mercenary/hurt/hurt2", "minecolonies:mob/mercenary/hurt/hurt3")));
sounds.add("mob.mercenary.say", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/say/say1", "minecolonies:mob/mercenary/say/say2", "minecolonies:mob/mercenary/say/say3")));
sounds.add("mob.mercenary.step", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/step/step1", "minecolonies:mob/mercenary/step/step2", "minecolonies:mob/mercenary/step/step3", "minecolonies:mob/mercenary/step/step4")));
add("record", false, "raid.raid_alert", "raid.raid_alert_early", "raid.raid_won", "raid.raid_won_early");
add("music", true, "raid.desert.desert_raid", "raid.desert.desert_raid_warning", "raid.desert.desert_raid_victory", "raid.amazon.amazon_raid");
final Path savePath = generator.getOutputFolder().resolve(DataGeneratorConstants.ASSETS_DIR).resolve("sounds.json");
IDataProvider.save(DataGeneratorConstants.GSON, cache, sounds, savePath);
}
use of com.minecolonies.api.sounds.EventType in project minecolonies by Minecolonies.
the class SoundUtils method playSoundAtCivilian.
/**
* Plays a sound with a certain chance at a certain position.
*
* @param worldIn the world to play the sound in.
* @param position position to play the sound at.
* @param type sound to play.
* @param civilianData the citizen.
*/
public static void playSoundAtCivilian(@NotNull final World worldIn, @NotNull final BlockPos position, @Nullable final EventType type, @Nullable final ICivilianData civilianData) {
if (civilianData == null) {
return;
}
final Map<EventType, Tuple<SoundEvent, SoundEvent>> map = CITIZEN_SOUND_EVENTS.get(civilianData.isChild() ? "child" : "citizen");
final SoundEvent event = civilianData.isFemale() ? map.get(type).getB() : map.get(type).getA();
if (type.getChance() > rand.nextDouble() * ONE_HUNDRED) {
worldIn.playSound(null, position, event, SoundCategory.NEUTRAL, (float) VOLUME, (float) PITCH);
}
}
use of com.minecolonies.api.sounds.EventType in project minecolonies by Minecolonies.
the class SoundUtils method playSoundAtCitizenWith.
/**
* Plays a sound with a certain chance at a certain position.
*
* @param worldIn the world to play the sound in.
* @param position position to play the sound at.
* @param type sound to play.
* @param citizenData the citizen.
*/
public static void playSoundAtCitizenWith(@NotNull final World worldIn, @NotNull final BlockPos position, @Nullable final EventType type, @Nullable final ICitizenData citizenData) {
if (citizenData == null) {
return;
}
final Map<EventType, Tuple<SoundEvent, SoundEvent>> map;
if (citizenData.getJob() != null) {
map = CITIZEN_SOUND_EVENTS.get(citizenData.getJob().getJobRegistryEntry().getRegistryName().getPath());
} else {
map = CITIZEN_SOUND_EVENTS.get(citizenData.isChild() ? "child" : "citizen");
}
final SoundEvent event = citizenData.isFemale() ? map.get(type).getB() : map.get(type).getA();
if (type.getChance() > rand.nextDouble() * ONE_HUNDRED) {
worldIn.playSound(null, position, event, SoundCategory.NEUTRAL, (float) VOLUME, (float) PITCH);
}
}
use of com.minecolonies.api.sounds.EventType in project minecolonies by ldtteam.
the class DefaultSoundProvider method run.
@Override
public void run(@NotNull final DirectoryCache cache) throws IOException {
sounds = new JsonObject();
final List<String> defaultMaleSounds = new ArrayList<>();
defaultMaleSounds.add("minecolonies:mob/citizen/male/say1");
defaultMaleSounds.add("minecolonies:mob/citizen/male/say2");
defaultMaleSounds.add("minecolonies:mob/citizen/male/say3");
final List<String> defaultFemaleSounds = new ArrayList<>();
defaultFemaleSounds.add("minecolonies:mob/citizen/female/say1");
defaultFemaleSounds.add("minecolonies:mob/citizen/female/say2");
defaultFemaleSounds.add("minecolonies:mob/citizen/female/say3");
final List<String> childSounds = new ArrayList<>();
childSounds.add("minecolonies:mob/citizen/child/laugh1");
childSounds.add("minecolonies:mob/citizen/child/laugh2");
for (final JobEntry job : IJobRegistry.getInstance().getValues()) {
if (job.getRegistryName().getNamespace().equals(Constants.MOD_ID) && !job.getRegistryName().getPath().equals("placeholder")) {
for (final EventType soundEvents : EventType.values()) {
sounds.add("mob." + job.getRegistryName().getPath() + ".male." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), defaultMaleSounds));
sounds.add("mob." + job.getRegistryName().getPath() + ".female." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), defaultFemaleSounds));
}
}
}
for (final EventType soundEvents : EventType.values()) {
sounds.add("mob.citizen.male." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), defaultMaleSounds));
sounds.add("mob.citizen.female." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), defaultFemaleSounds));
}
for (final EventType soundEvents : EventType.values()) {
sounds.add("mob.child.male." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), childSounds));
sounds.add("mob.child.female." + soundEvents.name().toLowerCase(Locale.US), createSoundJson("neutral", getDefaultProperties(), childSounds));
}
for (final RaiderType type : RaiderType.values()) {
sounds.add("mob." + type.name().toLowerCase(Locale.US) + ".death", createSoundJson("hostile", getDefaultProperties(), ImmutableList.of("minecolonies:mob/barbarian/death")));
sounds.add("mob." + type.name().toLowerCase(Locale.US) + ".say", createSoundJson("hostile", getDefaultProperties(), ImmutableList.of("minecolonies:mob/barbarian/say")));
sounds.add("mob." + type.name().toLowerCase(Locale.US) + ".hurt", createSoundJson("hostile", getDefaultProperties(), ImmutableList.of("minecolonies:mob/barbarian/hurt1", "minecolonies:mob/barbarian/hurt2", "minecolonies:mob/barbarian/hurt3", "minecolonies:mob/barbarian/hurt4")));
}
sounds.add("mob.citizen.snore", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/citizen/snore")));
JsonObject tavernProperties = getDefaultProperties();
tavernProperties.addProperty("attenuation_distance", 23);
tavernProperties.addProperty("stream", true);
tavernProperties.addProperty("comment", "Credits to Darren Curtis - Fireside Tales");
sounds.add("tile.tavern.tavern_theme", createSoundJson("music", tavernProperties, ImmutableList.of("minecolonies:tile/tavern/tavern_theme")));
sounds.add("mob.mercenary.attack", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/attack/attack1", "minecolonies:mob/mercenary/attack/attack2", "minecolonies:mob/mercenary/attack/attack3", "minecolonies:mob/mercenary/attack/attack4")));
sounds.add("mob.mercenary.celebrate", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/celebrate/celebrate1")));
sounds.add("mob.mercenary.die", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/die/death1", "minecolonies:mob/mercenary/die/death2")));
sounds.add("mob.mercenary.hurt", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/hurt/hurt1", "minecolonies:mob/mercenary/hurt/hurt2", "minecolonies:mob/mercenary/hurt/hurt3")));
sounds.add("mob.mercenary.say", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/say/say1", "minecolonies:mob/mercenary/say/say2", "minecolonies:mob/mercenary/say/say3")));
sounds.add("mob.mercenary.step", createSoundJson("neutral", getDefaultProperties(), ImmutableList.of("minecolonies:mob/mercenary/step/step1", "minecolonies:mob/mercenary/step/step2", "minecolonies:mob/mercenary/step/step3", "minecolonies:mob/mercenary/step/step4")));
add("record", false, "raid.raid_alert", "raid.raid_alert_early", "raid.raid_won", "raid.raid_won_early");
add("music", true, "raid.desert.desert_raid", "raid.desert.desert_raid_warning", "raid.desert.desert_raid_victory", "raid.amazon.amazon_raid");
final Path savePath = generator.getOutputFolder().resolve(DataGeneratorConstants.ASSETS_DIR).resolve("sounds.json");
IDataProvider.save(DataGeneratorConstants.GSON, cache, sounds, savePath);
}
Aggregations