|
| 1 | +package li.cil.tis3d.common.module; |
| 2 | + |
| 3 | +import cpw.mods.fml.common.network.NetworkRegistry; |
| 4 | +import cpw.mods.fml.relauncher.Side; |
| 5 | +import cpw.mods.fml.relauncher.SideOnly; |
| 6 | +import li.cil.tis3d.api.machine.Casing; |
| 7 | +import li.cil.tis3d.api.machine.Face; |
| 8 | +import li.cil.tis3d.api.machine.Pipe; |
| 9 | +import li.cil.tis3d.api.machine.Port; |
| 10 | +import li.cil.tis3d.api.prefab.module.AbstractModule; |
| 11 | +import li.cil.tis3d.api.util.RenderUtil; |
| 12 | +import li.cil.tis3d.client.render.TextureLoader; |
| 13 | +import li.cil.tis3d.common.network.Network; |
| 14 | +import li.cil.tis3d.common.network.message.MessageParticleEffect; |
| 15 | +import net.minecraft.client.Minecraft; |
| 16 | +import net.minecraft.client.renderer.texture.TextureAtlasSprite; |
| 17 | +import net.minecraft.client.renderer.texture.TextureMap; |
| 18 | +import net.minecraft.util.EnumFacing; |
| 19 | +import net.minecraft.world.World; |
| 20 | +import net.minecraftforge.common.MinecraftForge; |
| 21 | +import net.minecraftforge.event.world.NoteBlockEvent; |
| 22 | +import org.lwjgl.opengl.GL11; |
| 23 | + |
| 24 | +/** |
| 25 | + * The audio module, emitting sounds like none other. |
| 26 | + */ |
| 27 | +public final class ModuleAudio extends AbstractModule { |
| 28 | + // --------------------------------------------------------------------- // |
| 29 | + // Computed data |
| 30 | + |
| 31 | + /** |
| 32 | + * Resolve instrument ID to name of sound used for instrument. |
| 33 | + */ |
| 34 | + private static final String[] INSTRUMENT_SOUND_NAMES = new String[]{"note.harp", "note.bd", "note.snare", "note.hat", "note.bassattack"}; |
| 35 | + |
| 36 | + /** |
| 37 | + * The last tick we made a sound. Used to avoid emitting multiple sounds |
| 38 | + * per tick when overclocked, because that could quickly spam a lot of |
| 39 | + * packets, and sound horrible, too. |
| 40 | + */ |
| 41 | + private long lastStep = 0L; |
| 42 | + |
| 43 | + // --------------------------------------------------------------------- // |
| 44 | + |
| 45 | + public ModuleAudio(final Casing casing, final Face face) { |
| 46 | + super(casing, face); |
| 47 | + } |
| 48 | + |
| 49 | + // --------------------------------------------------------------------- // |
| 50 | + // Module |
| 51 | + |
| 52 | + @Override |
| 53 | + public void step() { |
| 54 | + stepInput(); |
| 55 | + |
| 56 | + lastStep = getCasing().getCasingWorld().getTotalWorldTime(); |
| 57 | + } |
| 58 | + |
| 59 | + @SideOnly(Side.CLIENT) |
| 60 | + @Override |
| 61 | + public void render(final boolean enabled, final float partialTicks) { |
| 62 | + if (!enabled) { |
| 63 | + return; |
| 64 | + } |
| 65 | + |
| 66 | + GL11.glEnable(GL11.GL_BLEND); |
| 67 | + |
| 68 | + Minecraft.getMinecraft().getTextureManager().bindTexture(TextureMap.locationBlocksTexture); |
| 69 | + final TextureAtlasSprite icon = Minecraft.getMinecraft().getTextureMapBlocks().getAtlasSprite(TextureLoader.LOCATION_MODULE_AUDIO_OVERLAY.toString()); |
| 70 | + RenderUtil.drawQuad(icon.getMinU(), icon.getMinV(), icon.getMaxU(), icon.getMaxV()); |
| 71 | + |
| 72 | + GL11.glDisable(GL11.GL_BLEND); |
| 73 | + } |
| 74 | + |
| 75 | + // --------------------------------------------------------------------- // |
| 76 | + |
| 77 | + /** |
| 78 | + * Update the input of the module, reading the type of note to play. |
| 79 | + */ |
| 80 | + private void stepInput() { |
| 81 | + for (final Port port : Port.VALUES) { |
| 82 | + // Continuously read from all ports, emit packet when receiving a value. |
| 83 | + final Pipe receivingPipe = getCasing().getReceivingPipe(getFace(), port); |
| 84 | + if (!receivingPipe.isReading()) { |
| 85 | + receivingPipe.beginRead(); |
| 86 | + } |
| 87 | + if (receivingPipe.canTransfer()) { |
| 88 | + // Don't actually read more values if we already sent a packet this tick. |
| 89 | + if (getCasing().getCasingWorld().getTotalWorldTime() > lastStep) { |
| 90 | + playNote(receivingPipe.read()); |
| 91 | + |
| 92 | + // Start reading again right away to read as fast as possible. |
| 93 | + receivingPipe.beginRead(); |
| 94 | + } |
| 95 | + } |
| 96 | + } |
| 97 | + } |
| 98 | + |
| 99 | + /** |
| 100 | + * Decode the specified value into instrument, note and volume and play it. |
| 101 | + * |
| 102 | + * @param value the value defining the sound to play. |
| 103 | + */ |
| 104 | + private void playNote(final int value) { |
| 105 | + final int noteId = (value & 0xFF00) >>> 8; |
| 106 | + final int volume = Math.min(4, (value & 0x00F0) >>> 4); |
| 107 | + final int instrumentId = value & 0x000F; |
| 108 | + |
| 109 | + // Skip mute sounds. |
| 110 | + if (volume < 1) { |
| 111 | + return; |
| 112 | + } |
| 113 | + |
| 114 | + // Send event to check if the sound may be played / should be modulated. |
| 115 | + final World world = getCasing().getCasingWorld(); |
| 116 | + final int posX = getCasing().getPositionX(); |
| 117 | + final int posY = getCasing().getPositionY(); |
| 118 | + final int posZ = getCasing().getPositionZ(); |
| 119 | + final NoteBlockEvent.Play event = new NoteBlockEvent.Play(world, posX, posY, posZ, world.getBlockMetadata(posX, posY, posZ), noteId, instrumentId); |
| 120 | + if (!MinecraftForge.EVENT_BUS.post(event)) { |
| 121 | + // Not cancelled, get pitch, sound effect name. |
| 122 | + final int note = event.getVanillaNoteId(); |
| 123 | + final float pitch = (float) Math.pow(2, (note - 12) / 12.0); |
| 124 | + final String sound = INSTRUMENT_SOUND_NAMES[event.instrument.ordinal()]; |
| 125 | + |
| 126 | + // Offset to have the actual origin be in front of the module. |
| 127 | + final EnumFacing facing = Face.toEnumFacing(getFace()); |
| 128 | + final double x = posX + 0.5 + facing.getFrontOffsetX() * 0.6; |
| 129 | + final double y = posY + 0.5 + facing.getFrontOffsetY() * 0.6; |
| 130 | + final double z = posZ + 0.5 + facing.getFrontOffsetZ() * 0.6; |
| 131 | + |
| 132 | + // Let there be sound! |
| 133 | + world.playSoundEffect(x, y, z, sound, volume, pitch); |
| 134 | + final MessageParticleEffect message = new MessageParticleEffect(world, "note", x, y, z); |
| 135 | + final NetworkRegistry.TargetPoint target = Network.getTargetPoint(world, x, y, z, Network.RANGE_LOW); |
| 136 | + Network.INSTANCE.getWrapper().sendToAllAround(message, target); |
| 137 | + } |
| 138 | + } |
| 139 | +} |
0 commit comments