61 lines
2.3 KiB
Java
61 lines
2.3 KiB
Java
/*
|
|
* This file is part of TechReborn, licensed under the MIT License (MIT).
|
|
*
|
|
* Copyright (c) 2020 TechReborn
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
package techreborn.init;
|
|
|
|
import net.minecraft.block.entity.BlockEntity;
|
|
import net.minecraft.sound.SoundCategory;
|
|
import net.minecraft.sound.SoundEvent;
|
|
import net.minecraft.world.World;
|
|
import reborncore.common.recipes.ICrafterSoundHanlder;
|
|
import techreborn.config.TechRebornConfig;
|
|
|
|
/**
|
|
* Created by Mark on 20/03/2016.
|
|
*/
|
|
public class ModSounds {
|
|
|
|
public static SoundEvent CABLE_SHOCK;
|
|
public static SoundEvent BLOCK_DISMANTLE;
|
|
public static SoundEvent SAP_EXTRACT;
|
|
public static SoundEvent AUTO_CRAFTING;
|
|
public static SoundEvent MACHINE_RUN;
|
|
public static SoundEvent MACHINE_START;
|
|
public static SoundEvent ALARM;
|
|
public static SoundEvent ALARM_2;
|
|
public static SoundEvent ALARM_3;
|
|
|
|
public static class SoundHandler implements ICrafterSoundHanlder {
|
|
|
|
@Override
|
|
public void playSound(boolean firstRun, BlockEntity blockEntity) {
|
|
World world = blockEntity.getWorld();
|
|
if (world == null) {
|
|
return;
|
|
}
|
|
world.playSound(null, blockEntity.getPos().getX(), blockEntity.getPos().getY(),
|
|
blockEntity.getPos().getZ(), ModSounds.MACHINE_RUN, SoundCategory.BLOCKS, TechRebornConfig.machineSoundVolume, 1F);
|
|
}
|
|
}
|
|
}
|