Work on machine sounds
This commit is contained in:
parent
5efd8daab1
commit
6995f42924
4 changed files with 33 additions and 0 deletions
|
@ -24,9 +24,13 @@
|
|||
|
||||
package techreborn.init;
|
||||
|
||||
import net.minecraft.tileentity.TileEntity;
|
||||
import net.minecraft.util.ResourceLocation;
|
||||
import net.minecraft.util.SoundCategory;
|
||||
import net.minecraft.util.SoundEvent;
|
||||
import net.minecraftforge.registries.GameData;
|
||||
import reborncore.common.recipes.ICrafterSoundHanlder;
|
||||
import reborncore.common.recipes.RecipeCrafter;
|
||||
|
||||
/**
|
||||
* Created by Mark on 20/03/2016.
|
||||
|
@ -37,12 +41,18 @@ public class ModSounds {
|
|||
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 void init() {
|
||||
CABLE_SHOCK = getSound("cable_shock");
|
||||
BLOCK_DISMANTLE = getSound("block_dismantle");
|
||||
SAP_EXTRACT = getSound("sap_extract");
|
||||
AUTO_CRAFTING = getSound("auto_crafting");
|
||||
MACHINE_RUN = getSound("machine_run");
|
||||
MACHINE_START = getSound("machine_start");
|
||||
|
||||
RecipeCrafter.soundHanlder = new SoundHandler();
|
||||
}
|
||||
|
||||
private static SoundEvent getSound(String str) {
|
||||
|
@ -52,4 +62,15 @@ public class ModSounds {
|
|||
return GameData.register_impl(soundEvent);
|
||||
}
|
||||
|
||||
public static class SoundHandler implements ICrafterSoundHanlder {
|
||||
|
||||
@Override
|
||||
public void playSound(boolean firstRun, TileEntity tileEntity) {
|
||||
//TODO find a loopable sound
|
||||
// tileEntity.getWorld().playSound(null, tileEntity.getPos().getX(), tileEntity.getPos().getY(),
|
||||
// tileEntity.getPos().getZ(), ModSounds.MACHINE_RUN,
|
||||
// SoundCategory.BLOCKS, 0.1F, 1F);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -22,5 +22,17 @@
|
|||
"sounds": [
|
||||
"techreborn:auto_crafting"
|
||||
]
|
||||
},
|
||||
"machine_run": {
|
||||
"category": "block",
|
||||
"sounds": [
|
||||
"techreborn:machine_run"
|
||||
]
|
||||
},
|
||||
"machine_start": {
|
||||
"category": "block",
|
||||
"sounds": [
|
||||
"techreborn:machine_start"
|
||||
]
|
||||
}
|
||||
}
|
BIN
src/main/resources/assets/techreborn/sounds/machine_run.ogg
Normal file
BIN
src/main/resources/assets/techreborn/sounds/machine_run.ogg
Normal file
Binary file not shown.
BIN
src/main/resources/assets/techreborn/sounds/machine_start.ogg
Normal file
BIN
src/main/resources/assets/techreborn/sounds/machine_start.ogg
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue