From 61dc61d3566f1757299481311e3058b9eae713e3 Mon Sep 17 00:00:00 2001 From: Restioson Date: Sun, 7 May 2017 12:24:27 +0200 Subject: [PATCH 01/20] Attempt to fix git history #2 --- .../peripheral/speaker/SpeakerPeripheral.java | 220 ++++++++++++++++++ .../peripheral/speaker/TileSpeaker.java | 38 +++ 2 files changed, 258 insertions(+) create mode 100644 src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java create mode 100644 src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java new file mode 100644 index 000000000..bfb041103 --- /dev/null +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -0,0 +1,220 @@ +/** + * This file is part of ComputerCraft - http://www.computercraft.info + * Copyright Daniel Ratcliffe, 2011-2016. Do not distribute without permission. + * Send enquiries to dratcliffe@gmail.com + */ + +package dan200.computercraft.shared.peripheral.speaker; + +import dan200.computercraft.api.lua.ILuaContext; +import dan200.computercraft.api.lua.LuaException; +import dan200.computercraft.api.peripheral.IComputerAccess; +import dan200.computercraft.api.peripheral.IPeripheral; +import net.minecraft.util.ResourceLocation; +import net.minecraft.util.SoundCategory; +import net.minecraft.util.SoundEvent; + +public class SpeakerPeripheral implements IPeripheral { + + private final TileSpeaker m_speaker; + private long m_clock; + private long m_lastPlayTime; + + public SpeakerPeripheral(TileSpeaker speaker) + { + m_speaker = speaker; + m_clock = 0; + m_lastPlayTime = 0; + } + + protected void updateClock() + { + m_clock++; + } + + + /* IPeripheral implementations */ + + @Override + public boolean equals(IPeripheral other) + { + if (other != null && other instanceof SpeakerPeripheral) + { + SpeakerPeripheral otherSpeaker = (SpeakerPeripheral) other; + return otherSpeaker.m_speaker == m_speaker; + } + + else + { + return false; + } + + } + + + @Override + public void attach(IComputerAccess computerAccess) + { + } + + @Override + public void detach(IComputerAccess computerAccess) + { + } + + @Override + public String getType() + { + return "speaker"; + } + + @Override + public String[] getMethodNames() + { + return new String[] { + "playsound", // Plays sound at resourceLocator + "playnote" // Plays note + }; + } + + @Override + public Object[] callMethod(IComputerAccess computerAccess, ILuaContext context, int methodIndex, Object[] args) throws LuaException + { + + switch (methodIndex) + { + // playsound + case 0: { + return playSound(args); + } + + // playnote + case 1: + { + return playNote(args); + } + + default: + { + return null; + } + + } + } + + private Object[] playNote(Object[] arguments) throws LuaException + { + float volume = 1f; + float pitch = 1f; + + // Check if arguments are correct + if (arguments.length == 0) // Too few args + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + + if (!(arguments[0] instanceof String)) // Arg wrong type + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + + if (!SoundEvent.REGISTRY.containsKey(new ResourceLocation("block.note." + arguments[0]))) + { + throw new LuaException("Invalid instrument, \"" + arguments[0] + "\"!"); + } + + if (arguments.length > 1) + { + if (!(arguments[1] instanceof Double)) // Arg wrong type + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + volume = ((Double) arguments[1]).floatValue(); + + } + + if (arguments.length > 2) + { + if (!(arguments[2] instanceof Double)) // Arg wrong type + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + pitch = ((Double) arguments[2]).floatValue(); + } + + if (arguments.length > 3) + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + + return playSound(new Object[] {"block.note." + arguments[0], volume, pitch}); + + } + + private Object[] playSound(Object[] arguments) throws LuaException + { + + float volume = 1f; + float pitch = 1f; + + // Check if arguments are correct + if (arguments.length == 0) // Too few args + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + + if (!(arguments[0] instanceof String)) // Arg wrong type + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + + if (arguments.length > 1) + { + if (!(arguments[1] instanceof Double)) // Arg wrong type + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + volume = ((Double) arguments[1]).floatValue(); + + } + + if (arguments.length > 2) + { + if (!(arguments[2] instanceof Double)) // Arg wrong type + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + pitch = ((Double) arguments[2]).floatValue(); + } + + if (arguments.length > 3) + { + throw new LuaException("Expected string, number (optional), number (optional)"); + } + + ResourceLocation resourceName = new ResourceLocation((String) arguments[0]); + + if (m_clock - m_lastPlayTime > TileSpeaker.MIN_TICKS_BETWEEN_SOUNDS) + { + + if (SoundEvent.REGISTRY.containsKey(resourceName)) + { + m_speaker.getWorld().playSound(null, m_speaker.getPos(), new SoundEvent(resourceName), SoundCategory.RECORDS, volume, pitch); + m_lastPlayTime = m_clock; + return new Object[]{true}; // Success, return true + } + + else + { + return new Object[]{false}; // Failed - sound not existent, return false + } + + } + + else + { + return new Object[]{false}; // Failed - rate limited, return false + } + } +} + diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java new file mode 100644 index 000000000..275a117b7 --- /dev/null +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java @@ -0,0 +1,38 @@ +/** + * This file is part of ComputerCraft - http://www.computercraft.info + * Copyright Daniel Ratcliffe, 2011-2016. Do not distribute without permission. + * Send enquiries to dratcliffe@gmail.com + */ + +package dan200.computercraft.shared.peripheral.speaker; + +import dan200.computercraft.api.peripheral.IPeripheral; +import dan200.computercraft.shared.peripheral.common.TilePeripheralBase; +import net.minecraft.util.EnumFacing; + +public class TileSpeaker extends TilePeripheralBase +{ + // Statics + public static final int MIN_TICKS_BETWEEN_SOUNDS = 1; + + // Members + private SpeakerPeripheral m_peripheral; + + @Override + public synchronized void update() + { + if (m_peripheral != null) + { + m_peripheral.updateClock(); + } + + } + + // IPeripheralTile implementation + public IPeripheral getPeripheral(EnumFacing side) + { + m_peripheral = new SpeakerPeripheral(this); + return m_peripheral; + } + +} From 61c08afc7f759852e7030d6500494acee39e98fa Mon Sep 17 00:00:00 2001 From: Restioson Date: Sun, 7 May 2017 17:31:29 +0200 Subject: [PATCH 02/20] Implemented speaker. It's broken though - thinks it's a Disk Drive ~~Damn Tile Entities these days, always with their identity crises~~ --- .../shared/peripheral/PeripheralType.java | 3 ++- .../peripheral/common/BlockPeripheral.java | 18 +++++++++++++ .../common/BlockPeripheralVariant.java | 3 ++- .../peripheral/common/ItemPeripheral.java | 11 ++++++++ .../common/PeripheralItemFactory.java | 1 + .../proxy/ComputerCraftProxyCommon.java | 27 +++++++++++++------ 6 files changed, 53 insertions(+), 10 deletions(-) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/PeripheralType.java b/src/main/java/dan200/computercraft/shared/peripheral/PeripheralType.java index ed8510a7d..2cfaaf070 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/PeripheralType.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/PeripheralType.java @@ -20,7 +20,8 @@ public enum PeripheralType implements IStringSerializable WiredModem( "wired_modem" ), Cable( "cable" ), WiredModemWithCable( "wired_modem_with_cable" ), - AdvancedModem( "advanced_modem" ); + AdvancedModem( "advanced_modem" ), + Speaker( "speaker" ); private String m_name; diff --git a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java index 9f6758758..ba6f8ad1f 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java @@ -12,6 +12,7 @@ import dan200.computercraft.shared.peripheral.diskdrive.TileDiskDrive; import dan200.computercraft.shared.peripheral.modem.TileWirelessModem; import dan200.computercraft.shared.peripheral.monitor.TileMonitor; import dan200.computercraft.shared.peripheral.printer.TilePrinter; +import dan200.computercraft.shared.peripheral.speaker.TileSpeaker; import dan200.computercraft.shared.util.DirectionUtil; import net.minecraft.block.properties.PropertyDirection; import net.minecraft.block.properties.PropertyEnum; @@ -105,6 +106,10 @@ public class BlockPeripheral extends BlockPeripheralBase { state = state.withProperty( Properties.VARIANT, BlockPeripheralVariant.AdvancedMonitor ); } + else if (meta == 13) + { + state = state.withProperty( Properties.VARIANT, BlockPeripheralVariant.Speaker); + } return state; } @@ -164,6 +169,11 @@ public class BlockPeripheral extends BlockPeripheralBase meta = 12; break; } + case Speaker: + { + meta = 13; + break; + } } return meta; } @@ -323,6 +333,9 @@ public class BlockPeripheral extends BlockPeripheralBase } break; } + case Speaker: { + break; + } case Monitor: case AdvancedMonitor: { @@ -527,6 +540,10 @@ public class BlockPeripheral extends BlockPeripheralBase { return new TilePrinter(); } + case Speaker: + { + return new TileSpeaker(); + } } } @@ -543,6 +560,7 @@ public class BlockPeripheral extends BlockPeripheralBase switch( getPeripheralType( state ) ) { + case Speaker: case DiskDrive: case Printer: { diff --git a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheralVariant.java b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheralVariant.java index c98f90a5d..e7c6ee910 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheralVariant.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheralVariant.java @@ -121,7 +121,8 @@ public enum BlockPeripheralVariant implements IStringSerializable AdvancedMonitorDownLUD( "advanced_monitor_down_lud", PeripheralType.AdvancedMonitor ), AdvancedMonitorDownRU( "advanced_monitor_down_ru", PeripheralType.AdvancedMonitor ), AdvancedMonitorDownLRU( "advanced_monitor_down_lru", PeripheralType.AdvancedMonitor ), - AdvancedMonitorDownLU( "advanced_monitor_down_lu", PeripheralType.AdvancedMonitor ); + AdvancedMonitorDownLU( "advanced_monitor_down_lu", PeripheralType.AdvancedMonitor ), + Speaker( "speaker", PeripheralType.Speaker ); private String m_name; private PeripheralType m_peripheralType; diff --git a/src/main/java/dan200/computercraft/shared/peripheral/common/ItemPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/common/ItemPeripheral.java index afcf44269..59c95f6d4 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/common/ItemPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/common/ItemPeripheral.java @@ -56,6 +56,12 @@ public class ItemPeripheral extends ItemPeripheralBase stack = new ItemStack( this, quantity, 4 ); break; } + case Speaker: + { + stack = new ItemStack(this, quantity, 5); + break; + } + default: { // Ignore types we can't handle @@ -77,6 +83,7 @@ public class ItemPeripheral extends ItemPeripheralBase list.add( PeripheralItemFactory.create( PeripheralType.Monitor, null, 1 ) ); list.add( PeripheralItemFactory.create( PeripheralType.AdvancedMonitor, null, 1 ) ); list.add( PeripheralItemFactory.create( PeripheralType.WirelessModem, null, 1 ) ); + list.add( PeripheralItemFactory.create( PeripheralType.Speaker, null, 1) ); } @Override @@ -105,6 +112,10 @@ public class ItemPeripheral extends ItemPeripheralBase { return PeripheralType.AdvancedMonitor; } + case 5: + { + return PeripheralType.Speaker; + } } } } diff --git a/src/main/java/dan200/computercraft/shared/peripheral/common/PeripheralItemFactory.java b/src/main/java/dan200/computercraft/shared/peripheral/common/PeripheralItemFactory.java index 739ae34ee..95952414f 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/common/PeripheralItemFactory.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/common/PeripheralItemFactory.java @@ -25,6 +25,7 @@ public class PeripheralItemFactory ItemAdvancedModem advancedModem = ((ItemAdvancedModem)Item.getItemFromBlock( ComputerCraft.Blocks.advancedModem )); switch( type ) { + case Speaker: case DiskDrive: case Printer: case Monitor: diff --git a/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java b/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java index 251fd9809..9751914ce 100644 --- a/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java +++ b/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java @@ -44,6 +44,7 @@ import dan200.computercraft.shared.peripheral.modem.TileWirelessModem; import dan200.computercraft.shared.peripheral.monitor.TileMonitor; import dan200.computercraft.shared.peripheral.printer.ContainerPrinter; import dan200.computercraft.shared.peripheral.printer.TilePrinter; +import dan200.computercraft.shared.peripheral.speaker.TileSpeaker; import dan200.computercraft.shared.pocket.inventory.ContainerPocketComputer; import dan200.computercraft.shared.pocket.items.ItemPocketComputer; import dan200.computercraft.shared.pocket.items.PocketComputerItemFactory; @@ -308,6 +309,15 @@ public abstract class ComputerCraftProxyCommon implements IComputerCraftProxy 'Y', Items.REDSTONE ); + // Speaker + ItemStack speaker = PeripheralItemFactory.create( PeripheralType.Speaker, null, 1); + GameRegistry.addRecipe( speaker, + "XXX", "XYX", "XZX", + 'X', Blocks.STONE, + 'Y', Blocks.NOTEBLOCK, + 'Z', Items.REDSTONE + ); + // Wireless Modem ItemStack wirelessModem = PeripheralItemFactory.create( PeripheralType.WirelessModem, null, 1 ); GameRegistry.addRecipe( wirelessModem, @@ -541,14 +551,15 @@ public abstract class ComputerCraftProxyCommon implements IComputerCraftProxy private void registerTileEntities() { // Tile Entities - registerTileEntity( TileComputer.class, "computer" ); - registerTileEntity( TileDiskDrive.class, "diskdrive" ); - registerTileEntity( TileWirelessModem.class, "wirelessmodem" ); - registerTileEntity( TileMonitor.class, "monitor" ); - registerTileEntity( TilePrinter.class, "ccprinter" ); - registerTileEntity( TileCable.class, "wiredmodem" ); - registerTileEntity( TileCommandComputer.class, "command_computer" ); - registerTileEntity( TileAdvancedModem.class, "advanced_modem" ); + GameRegistry.registerTileEntity( TileComputer.class, "computer" ); + GameRegistry.registerTileEntity( TileDiskDrive.class, "diskdrive" ); + GameRegistry.registerTileEntity( TileWirelessModem.class, "wirelessmodem" ); + GameRegistry.registerTileEntity( TileMonitor.class, "monitor" ); + GameRegistry.registerTileEntity( TilePrinter.class, "ccprinter" ); + GameRegistry.registerTileEntity( TileCable.class, "wiredmodem" ); + GameRegistry.registerTileEntity( TileCommandComputer.class, "command_computer" ); + GameRegistry.registerTileEntity( TileAdvancedModem.class, "advanced_modem" ); + GameRegistry.registerTileEntity( TileSpeaker.class, "speaker" ); // Register peripheral providers ComputerCraftAPI.registerPeripheralProvider( new DefaultPeripheralProvider() ); From 6cf1801f7e683743637559fe69cf88485f9d2959 Mon Sep 17 00:00:00 2001 From: Restioson Date: Sun, 7 May 2017 17:37:52 +0200 Subject: [PATCH 03/20] Changed method names to camelCaser --- .../shared/peripheral/speaker/SpeakerPeripheral.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index bfb041103..de88f4d3a 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -72,8 +72,8 @@ public class SpeakerPeripheral implements IPeripheral { public String[] getMethodNames() { return new String[] { - "playsound", // Plays sound at resourceLocator - "playnote" // Plays note + "playSound", // Plays sound at resourceLocator + "playNote" // Plays note }; } From a748d0167b01c42e62cb086315fda03596b0af9a Mon Sep 17 00:00:00 2001 From: Restioson Date: Sun, 7 May 2017 17:48:06 +0200 Subject: [PATCH 04/20] Fixed Speaker being recognized as Disk Drive. Massive thanks to @SquidDev --- .../shared/peripheral/common/BlockPeripheral.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java index ba6f8ad1f..7d83ce3f5 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java @@ -502,6 +502,10 @@ public class BlockPeripheral extends BlockPeripheralBase { return getDefaultState().withProperty( Properties.VARIANT, BlockPeripheralVariant.AdvancedMonitor ); } + case Speaker: + { + return getDefaultState().withProperty( Properties.VARIANT, BlockPeripheralVariant.Speaker ); + } } } From 2444245b809ecc09fa78628ea241dfa23a6c3ffc Mon Sep 17 00:00:00 2001 From: gegy1000 Date: Sun, 7 May 2017 18:32:43 +0200 Subject: [PATCH 05/20] Speaker rendering and name --- .../client/proxy/ComputerCraftProxyClient.java | 2 ++ .../peripheral/common/ItemPeripheralBase.java | 4 ++++ .../computercraft/blockstates/peripheral.json | 5 +++++ .../assets/computercraft/lang/en_US.lang | 1 + .../computercraft/models/block/speaker.json | 8 ++++++++ .../assets/computercraft/models/item/speaker.json | 3 +++ .../textures/blocks/speakerFront.png | Bin 0 -> 493 bytes .../computercraft/textures/blocks/speakerSide.png | Bin 0 -> 327 bytes .../computercraft/textures/blocks/speakerTop.png | Bin 0 -> 290 bytes 9 files changed, 23 insertions(+) create mode 100644 src/main/resources/assets/computercraft/models/block/speaker.json create mode 100644 src/main/resources/assets/computercraft/models/item/speaker.json create mode 100644 src/main/resources/assets/computercraft/textures/blocks/speakerFront.png create mode 100644 src/main/resources/assets/computercraft/textures/blocks/speakerSide.png create mode 100644 src/main/resources/assets/computercraft/textures/blocks/speakerTop.png diff --git a/src/main/java/dan200/computercraft/client/proxy/ComputerCraftProxyClient.java b/src/main/java/dan200/computercraft/client/proxy/ComputerCraftProxyClient.java index d3c165767..7f9fb37ce 100644 --- a/src/main/java/dan200/computercraft/client/proxy/ComputerCraftProxyClient.java +++ b/src/main/java/dan200/computercraft/client/proxy/ComputerCraftProxyClient.java @@ -97,6 +97,8 @@ public class ComputerCraftProxyClient extends ComputerCraftProxyCommon registerItemModel( ComputerCraft.Blocks.peripheral, 3, "printer" ); registerItemModel( ComputerCraft.Blocks.peripheral, 4, "advanced_monitor" ); registerItemModel( ComputerCraft.Blocks.cable, 0, "cable" ); + registerItemModel( ComputerCraft.Blocks.peripheral, 5, "speaker" ); + registerItemModel( ComputerCraft.Blocks.cable, 0, "CC-Cable" ); registerItemModel( ComputerCraft.Blocks.cable, 1, "wired_modem" ); registerItemModel( ComputerCraft.Blocks.commandComputer, "command_computer" ); registerItemModel( ComputerCraft.Blocks.advancedModem, "advanced_modem" ); diff --git a/src/main/java/dan200/computercraft/shared/peripheral/common/ItemPeripheralBase.java b/src/main/java/dan200/computercraft/shared/peripheral/common/ItemPeripheralBase.java index a7e3b1189..aa408c5d0 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/common/ItemPeripheralBase.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/common/ItemPeripheralBase.java @@ -98,6 +98,10 @@ public abstract class ItemPeripheralBase extends ItemBlock implements IPeriphera { return "tile.computercraft:advanced_modem"; } + case Speaker: + { + return "tile.computercraft:speaker"; + } } } diff --git a/src/main/resources/assets/computercraft/blockstates/peripheral.json b/src/main/resources/assets/computercraft/blockstates/peripheral.json index 929c554eb..ac7a745c5 100644 --- a/src/main/resources/assets/computercraft/blockstates/peripheral.json +++ b/src/main/resources/assets/computercraft/blockstates/peripheral.json @@ -13,6 +13,11 @@ "facing=west,variant=disk_drive_invalid": { "model": "computercraft:disk_drive_invalid", "y": 270 }, "facing=east,variant=disk_drive_invalid": { "model": "computercraft:disk_drive_invalid", "y": 90 }, + "facing=north,variant=speaker": { "model": "computercraft:speaker" }, + "facing=south,variant=speaker": { "model": "computercraft:speaker", "y": 180 }, + "facing=west,variant=speaker": { "model": "computercraft:speaker", "y": 270 }, + "facing=east,variant=speaker": { "model": "computercraft:speaker", "y": 90 }, + "facing=north,variant=printer_empty": { "model": "computercraft:printer_empty" }, "facing=south,variant=printer_empty": { "model": "computercraft:printer_empty", "y": 180 }, "facing=west,variant=printer_empty": { "model": "computercraft:printer_empty", "y": 270 }, diff --git a/src/main/resources/assets/computercraft/lang/en_US.lang b/src/main/resources/assets/computercraft/lang/en_US.lang index 98361fac9..11e5c0693 100644 --- a/src/main/resources/assets/computercraft/lang/en_US.lang +++ b/src/main/resources/assets/computercraft/lang/en_US.lang @@ -9,6 +9,7 @@ tile.computercraft:wired_modem.name=Wired Modem tile.computercraft:cable.name=Networking Cable tile.computercraft:command_computer.name=Command Computer tile.computercraft:advanced_modem.name=Ender Modem +tile.computercraft:speaker.name=Speaker tile.computercraft:turtle.name=Turtle tile.computercraft:turtle.upgraded.name=%s Turtle diff --git a/src/main/resources/assets/computercraft/models/block/speaker.json b/src/main/resources/assets/computercraft/models/block/speaker.json new file mode 100644 index 000000000..afc4d4e21 --- /dev/null +++ b/src/main/resources/assets/computercraft/models/block/speaker.json @@ -0,0 +1,8 @@ +{ + "parent": "block/orientable", + "textures": { + "front": "computercraft:blocks/speakerFront", + "side": "computercraft:blocks/speakerSide", + "top": "computercraft:blocks/speakerTop" + } +} diff --git a/src/main/resources/assets/computercraft/models/item/speaker.json b/src/main/resources/assets/computercraft/models/item/speaker.json new file mode 100644 index 000000000..3aed864e9 --- /dev/null +++ b/src/main/resources/assets/computercraft/models/item/speaker.json @@ -0,0 +1,3 @@ +{ + "parent": "computercraft:block/speaker" +} diff --git a/src/main/resources/assets/computercraft/textures/blocks/speakerFront.png b/src/main/resources/assets/computercraft/textures/blocks/speakerFront.png new file mode 100644 index 0000000000000000000000000000000000000000..fc5b81ce3dcb01139565a87975243ad3e9ed94c0 GIT binary patch literal 493 zcmVPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D02p*dSaefwW^{L9 za%BK;VQFr3E^cLXAT%y8E;js(W8VM(0bWT&K~y+TWzkD&0#OhJ&|ZWl4*Y?Fh(@I) zB7WzJ8xq8U3lazJFXz3I#w2&p)aTw?Rj-TXa`~MxpU-Er*>pPn%INp|>-9Ri(!pS` zSS-r2OoHq6di#gVv{DFyM6ca!HU(0cOeSPTp*gG=jYg!kT8*FHHbaq2g}s!Q z2{umxcaSz3jcDTm2A)a`6vTvHuUB|S*AQguU!d_JH1{XPjEj|T%z473SA5SLT}wDcb;L6BmBcqIrK z#Dw&xVnN|fJG^5FaCc1EMIcX>FiJu`FW%ve)Z6%|Fn$n%`iG^Hd- zD2`)>@B7p=4M`rjAPA@|OUkm03q|iYqPMNPfcIhgzNdZPoj8tzwr%4R(6RG8scqX!06`EsD0c{G4iG_p z2O^-m=(}B{Iev*>BiL?i;1Qax>+S@cZ!^m%+66lphQV2&7io|3aDYuh3BXcZK%&h_ Z%@6XhcqWvM-X{P6002ovPDHLkV1nY3ks$y8 literal 0 HcmV?d00001 diff --git a/src/main/resources/assets/computercraft/textures/blocks/speakerTop.png b/src/main/resources/assets/computercraft/textures/blocks/speakerTop.png new file mode 100644 index 0000000000000000000000000000000000000000..88e2ade7823cbe47332790382d3f7d2b5e6e223e GIT binary patch literal 290 zcmV+-0p0$IP)oYPDx omWA4ACFB;FN?|VE#(%E!3+mWJZ^xVuNB{r;07*qoM6N<$f|#s Date: Sun, 7 May 2017 18:43:29 +0200 Subject: [PATCH 06/20] Fix speaker peripheral API --- .../peripheral/speaker/SpeakerPeripheral.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index de88f4d3a..e8e48214e 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -104,8 +104,8 @@ public class SpeakerPeripheral implements IPeripheral { private Object[] playNote(Object[] arguments) throws LuaException { - float volume = 1f; - float pitch = 1f; + double volume = 1f; + double pitch = 1f; // Check if arguments are correct if (arguments.length == 0) // Too few args @@ -114,7 +114,7 @@ public class SpeakerPeripheral implements IPeripheral { } if (!(arguments[0] instanceof String)) // Arg wrong type - { + { throw new LuaException("Expected string, number (optional), number (optional)"); } @@ -125,7 +125,7 @@ public class SpeakerPeripheral implements IPeripheral { if (arguments.length > 1) { - if (!(arguments[1] instanceof Double)) // Arg wrong type + if (!(arguments[1] instanceof Double)) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } @@ -135,7 +135,7 @@ public class SpeakerPeripheral implements IPeripheral { if (arguments.length > 2) { - if (!(arguments[2] instanceof Double)) // Arg wrong type + if (!(arguments[1] instanceof Double)) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } @@ -147,7 +147,7 @@ public class SpeakerPeripheral implements IPeripheral { throw new LuaException("Expected string, number (optional), number (optional)"); } - return playSound(new Object[] {"block.note." + arguments[0], volume, pitch}); + return playSound(new Object[] {"block.note." + arguments[0], volume, Math.pow(2d, (pitch - 12) / 12d)}); } @@ -180,7 +180,7 @@ public class SpeakerPeripheral implements IPeripheral { if (arguments.length > 2) { - if (!(arguments[2] instanceof Double)) // Arg wrong type + if (!(arguments[1] instanceof Double)) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } From dc96f2121adcd07fedf67aafdc40d8095b8c4285 Mon Sep 17 00:00:00 2001 From: Restioson Date: Mon, 8 May 2017 19:27:14 +0200 Subject: [PATCH 07/20] Fix Speaker not playing sounds on break and replace for entire Lua session --- .../peripheral/common/BlockPeripheral.java | 1 + .../peripheral/speaker/SpeakerPeripheral.java | 8 +++----- .../shared/peripheral/speaker/TileSpeaker.java | 16 +++++++++------- 3 files changed, 13 insertions(+), 12 deletions(-) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java index 7d83ce3f5..915bdb049 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java @@ -334,6 +334,7 @@ public class BlockPeripheral extends BlockPeripheralBase break; } case Speaker: { + state = state.withProperty( Properties.FACING, dir ); break; } case Monitor: diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index e8e48214e..bf096a422 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -16,7 +16,7 @@ import net.minecraft.util.SoundEvent; public class SpeakerPeripheral implements IPeripheral { - private final TileSpeaker m_speaker; + private TileSpeaker m_speaker; private long m_clock; private long m_lastPlayTime; @@ -27,12 +27,11 @@ public class SpeakerPeripheral implements IPeripheral { m_lastPlayTime = 0; } - protected void updateClock() + void updateClock() { m_clock++; } - /* IPeripheral implementations */ @Override @@ -80,7 +79,6 @@ public class SpeakerPeripheral implements IPeripheral { @Override public Object[] callMethod(IComputerAccess computerAccess, ILuaContext context, int methodIndex, Object[] args) throws LuaException { - switch (methodIndex) { // playsound @@ -96,7 +94,7 @@ public class SpeakerPeripheral implements IPeripheral { default: { - return null; + throw new LuaException("Method index out of range!"); } } diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java index 275a117b7..b74ac4a47 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java @@ -6,6 +6,7 @@ package dan200.computercraft.shared.peripheral.speaker; +import dan200.computercraft.api.peripheral.IComputerAccess; import dan200.computercraft.api.peripheral.IPeripheral; import dan200.computercraft.shared.peripheral.common.TilePeripheralBase; import net.minecraft.util.EnumFacing; @@ -18,20 +19,21 @@ public class TileSpeaker extends TilePeripheralBase // Members private SpeakerPeripheral m_peripheral; - @Override - public synchronized void update() + public TileSpeaker() { - if (m_peripheral != null) - { - m_peripheral.updateClock(); - } + super(); + m_peripheral = new SpeakerPeripheral(this); + } + @Override + public synchronized void update() { + m_peripheral.updateClock(); } // IPeripheralTile implementation + public IPeripheral getPeripheral(EnumFacing side) { - m_peripheral = new SpeakerPeripheral(this); return m_peripheral; } From 3bf15a37982a8fac617bba552d7f8b33aad20779 Mon Sep 17 00:00:00 2001 From: Restioson Date: Mon, 8 May 2017 19:34:21 +0200 Subject: [PATCH 08/20] Added speaker model - potentially glitched --- .../models/block/turtle_speaker_upgrade_left.json | 6 ++++++ .../models/block/turtle_speaker_upgrade_right.json | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_left.json create mode 100644 src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_right.json diff --git a/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_left.json b/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_left.json new file mode 100644 index 000000000..bfc5c4e3d --- /dev/null +++ b/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_left.json @@ -0,0 +1,6 @@ +{ + "parent": "computercraft:block/turtle_upgrade_base_left", + "textures": { + "texture": "computercraft:blocks/speakerFront" + } +} diff --git a/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_right.json b/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_right.json new file mode 100644 index 000000000..143d681fa --- /dev/null +++ b/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_right.json @@ -0,0 +1,6 @@ +{ + "parent": "computercraft:block/turtle_upgrade_base_right", + "textures": { + "texture": "computercraft:blocks/speakerFront" + } +} From a3b0e4e993501eeff2e04300e2d02de554058e37 Mon Sep 17 00:00:00 2001 From: Restioson Date: Wed, 10 May 2017 16:46:18 +0200 Subject: [PATCH 09/20] Added speaker as turtle peripheral --- .../dan200/computercraft/ComputerCraft.java | 1 + .../peripheral/speaker/SpeakerPeripheral.java | 25 ++- .../peripheral/speaker/TileSpeaker.java | 11 +- .../shared/proxy/CCTurtleProxyCommon.java | 9 +- .../shared/turtle/upgrades/TurtleSpeaker.java | 168 ++++++++++++++++++ .../assets/computercraft/lang/en_US.lang | 1 + 6 files changed, 203 insertions(+), 12 deletions(-) create mode 100644 src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java diff --git a/src/main/java/dan200/computercraft/ComputerCraft.java b/src/main/java/dan200/computercraft/ComputerCraft.java index 210af293e..18b951fde 100644 --- a/src/main/java/dan200/computercraft/ComputerCraft.java +++ b/src/main/java/dan200/computercraft/ComputerCraft.java @@ -164,6 +164,7 @@ public class ComputerCraft public static TurtleAxe diamondAxe; public static TurtleHoe diamondHoe; public static TurtleModem advancedModem; + public static TurtleSpeaker turtleSpeaker; } public static class PocketUpgrades diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index bf096a422..78ce71267 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -13,6 +13,8 @@ import dan200.computercraft.api.peripheral.IPeripheral; import net.minecraft.util.ResourceLocation; import net.minecraft.util.SoundCategory; import net.minecraft.util.SoundEvent; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.World; public class SpeakerPeripheral implements IPeripheral { @@ -20,18 +22,33 @@ public class SpeakerPeripheral implements IPeripheral { private long m_clock; private long m_lastPlayTime; - public SpeakerPeripheral(TileSpeaker speaker) + public SpeakerPeripheral() { - m_speaker = speaker; m_clock = 0; m_lastPlayTime = 0; } - void updateClock() + public SpeakerPeripheral(TileSpeaker speaker) + { + this(); + m_speaker = speaker; + } + + public void updateClock() { m_clock++; } + public World getWorld() + { + return m_speaker.getWorld(); + } + + public BlockPos getPos() + { + return m_speaker.getPos(); + } + /* IPeripheral implementations */ @Override @@ -197,7 +214,7 @@ public class SpeakerPeripheral implements IPeripheral { if (SoundEvent.REGISTRY.containsKey(resourceName)) { - m_speaker.getWorld().playSound(null, m_speaker.getPos(), new SoundEvent(resourceName), SoundCategory.RECORDS, volume, pitch); + getWorld().playSound(null, getPos(), new SoundEvent(resourceName), SoundCategory.RECORDS, volume, pitch); m_lastPlayTime = m_clock; return new Object[]{true}; // Success, return true } diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java index b74ac4a47..94a2b2243 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java @@ -6,18 +6,17 @@ package dan200.computercraft.shared.peripheral.speaker; -import dan200.computercraft.api.peripheral.IComputerAccess; -import dan200.computercraft.api.peripheral.IPeripheral; -import dan200.computercraft.shared.peripheral.common.TilePeripheralBase; -import net.minecraft.util.EnumFacing; + import dan200.computercraft.api.peripheral.IPeripheral; + import dan200.computercraft.shared.peripheral.common.TilePeripheralBase; + import net.minecraft.util.EnumFacing; public class TileSpeaker extends TilePeripheralBase { // Statics - public static final int MIN_TICKS_BETWEEN_SOUNDS = 1; + static final int MIN_TICKS_BETWEEN_SOUNDS = 1; // Members - private SpeakerPeripheral m_peripheral; + private SpeakerPeripheral m_peripheral; // TODO what happens when multiple computers wrap one peripheral? public TileSpeaker() { diff --git a/src/main/java/dan200/computercraft/shared/proxy/CCTurtleProxyCommon.java b/src/main/java/dan200/computercraft/shared/proxy/CCTurtleProxyCommon.java index 784633e16..f36f8eaf8 100644 --- a/src/main/java/dan200/computercraft/shared/proxy/CCTurtleProxyCommon.java +++ b/src/main/java/dan200/computercraft/shared/proxy/CCTurtleProxyCommon.java @@ -10,6 +10,7 @@ import dan200.computercraft.ComputerCraft; import dan200.computercraft.api.turtle.ITurtleUpgrade; import dan200.computercraft.shared.computer.core.ComputerFamily; import dan200.computercraft.shared.computer.items.ComputerItemFactory; +import dan200.computercraft.shared.peripheral.speaker.SpeakerPeripheral; import dan200.computercraft.shared.turtle.blocks.BlockTurtle; import dan200.computercraft.shared.turtle.blocks.TileTurtle; import dan200.computercraft.shared.turtle.blocks.TileTurtleAdvanced; @@ -124,7 +125,7 @@ public abstract class CCTurtleProxyCommon implements ICCTurtleProxy public static boolean isUpgradeVanilla( ITurtleUpgrade upgrade ) { - return upgrade instanceof TurtleTool || upgrade instanceof TurtleModem || upgrade instanceof TurtleCraftingTable; + return upgrade instanceof TurtleTool || upgrade instanceof TurtleModem || upgrade instanceof TurtleCraftingTable || upgrade instanceof TurtleSpeaker; } public static boolean isUpgradeSuitableForFamily( ComputerFamily family, ITurtleUpgrade upgrade ) @@ -404,8 +405,12 @@ public abstract class CCTurtleProxyCommon implements ICCTurtleProxy ComputerCraft.Upgrades.diamondHoe = new TurtleHoe( new ResourceLocation( "minecraft", "diamond_hoe" ), 7, "upgrade.minecraft:diamond_hoe.adjective", Items.DIAMOND_HOE ); registerTurtleUpgradeInternal( ComputerCraft.Upgrades.diamondHoe ); - ComputerCraft.Upgrades.advancedModem = new TurtleModem( true, new ResourceLocation( "computercraft", "advanced_modem" ), -1 ); + ComputerCraft.Upgrades.advancedModem = new TurtleModem( true, new ResourceLocation( "computercraft", "advanced_modem" ), -1 ); registerTurtleUpgradeInternal( ComputerCraft.Upgrades.advancedModem ); + + ComputerCraft.Upgrades.turtleSpeaker = new TurtleSpeaker( new ResourceLocation( "computercraft", "speaker" ), 8 ); + registerTurtleUpgradeInternal( ComputerCraft.Upgrades.turtleSpeaker ); + } @Override diff --git a/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java b/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java new file mode 100644 index 000000000..a83e5f193 --- /dev/null +++ b/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java @@ -0,0 +1,168 @@ +/* + * This file is part of ComputerCraft - http://www.computercraft.info + * Copyright Daniel Ratcliffe, 2011-2016. Do not distribute without permission. + * Send enquiries to dratcliffe@gmail.com + */ + + +package dan200.computercraft.shared.turtle.upgrades; + +import dan200.computercraft.api.peripheral.IPeripheral; +import dan200.computercraft.api.turtle.*; +import dan200.computercraft.shared.peripheral.PeripheralType; +import dan200.computercraft.shared.peripheral.common.PeripheralItemFactory; +import dan200.computercraft.shared.peripheral.speaker.SpeakerPeripheral; +import net.minecraft.client.Minecraft; +import net.minecraft.client.renderer.block.model.IBakedModel; +import net.minecraft.client.renderer.block.model.ModelManager; +import net.minecraft.client.renderer.block.model.ModelResourceLocation; +import net.minecraft.item.ItemStack; +import net.minecraft.util.EnumFacing; +import net.minecraft.util.ResourceLocation; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.World; +import net.minecraftforge.fml.relauncher.Side; +import net.minecraftforge.fml.relauncher.SideOnly; +import org.apache.commons.lang3.tuple.Pair; + +import javax.annotation.Nonnull; +import javax.vecmath.Matrix4f; + +public class TurtleSpeaker implements ITurtleUpgrade +{ + private static class Peripheral extends SpeakerPeripheral + { + // Members + ITurtleAccess m_turtle; + + public Peripheral(ITurtleAccess turtle) + { + super(); + m_turtle = turtle; + } + + @Override + public World getWorld() + { + return m_turtle.getWorld(); + } + + @Override + public BlockPos getPos() + { + return m_turtle.getPosition(); + } + + @Override + public boolean equals(IPeripheral other) + { + if (other instanceof Peripheral) + { + Peripheral otherPeripheral = (Peripheral) other; + return otherPeripheral.m_turtle == m_turtle; + } + + return false; + } + } + + // Members + ResourceLocation m_id; + int m_legacyID; + Peripheral m_peripheral; + + @SideOnly( Side.CLIENT ) + private ModelResourceLocation m_leftModel; + + @SideOnly( Side.CLIENT ) + private ModelResourceLocation m_rightModel; + + public TurtleSpeaker(ResourceLocation id, int legacyId ) + { + m_id = id; + m_legacyID = legacyId; + } + + @Nonnull + @Override + public ResourceLocation getUpgradeID() + { + return m_id; + } + + @Override + public int getLegacyUpgradeID() + { + return m_legacyID; + } + + @Nonnull + @Override + public String getUnlocalisedAdjective() + { + return "upgrade.computercraft:speaker.adjective"; + } + + @Nonnull + @Override + public TurtleUpgradeType getType() + { + return TurtleUpgradeType.Peripheral; + } + + @Override + public ItemStack getCraftingItem() + { + return PeripheralItemFactory.create( PeripheralType.Speaker, null, 1 ); + } + + @Override + public IPeripheral createPeripheral( @Nonnull ITurtleAccess turtle, @Nonnull TurtleSide side ) + { + m_peripheral = new TurtleSpeaker.Peripheral( turtle ); + return m_peripheral; // TODO does this go in constructor? + } + + @Nonnull + @Override + public TurtleCommandResult useTool(@Nonnull ITurtleAccess turtleAccess, @Nonnull TurtleSide turtleSide, @Nonnull TurtleVerb verb, @Nonnull EnumFacing direction) + { + return null; + } + + @SideOnly( Side.CLIENT ) + private void loadModelLocations() + { + if( m_leftModel == null ) + { + m_leftModel = new ModelResourceLocation( "computercraft:turtle_speaker_upgrade_left", "inventory" ); + m_rightModel = new ModelResourceLocation( "computercraft:turtle_speaker_upgrade_right", "inventory" ); + } + } + + @Nonnull + @Override + @SideOnly( Side.CLIENT ) + public Pair getModel(ITurtleAccess turtle, @Nonnull TurtleSide side ) { + + loadModelLocations(); + ModelManager modelManager = Minecraft.getMinecraft().getRenderItem().getItemModelMesher().getModelManager(); + + if (side == TurtleSide.Left) + { + return Pair.of(modelManager.getModel( m_leftModel ), null); + } + + else + { + return Pair.of(modelManager.getModel( m_rightModel ), null); + } + + } + + @Override + public void update(@Nonnull ITurtleAccess turtleAccess, @Nonnull TurtleSide turtleSide) + { + m_peripheral.updateClock(); + } +} diff --git a/src/main/resources/assets/computercraft/lang/en_US.lang b/src/main/resources/assets/computercraft/lang/en_US.lang index 11e5c0693..c336c33b4 100644 --- a/src/main/resources/assets/computercraft/lang/en_US.lang +++ b/src/main/resources/assets/computercraft/lang/en_US.lang @@ -37,6 +37,7 @@ upgrade.minecraft:diamond_hoe.adjective=Farming upgrade.computercraft:wireless_modem.adjective=Wireless upgrade.minecraft:crafting_table.adjective=Crafty upgrade.computercraft:advanced_modem.adjective=Ender +upgrade.computercraft:speaker.adjective=Noisy gui.computercraft:wired_modem.peripheral_connected=Peripheral "%s" connected to network gui.computercraft:wired_modem.peripheral_disconnected=Peripheral "%s" disconnected from network From 97a6679510ef425270a8e4e4ec78d1c5a769e80b Mon Sep 17 00:00:00 2001 From: Restioson Date: Wed, 10 May 2017 19:28:31 +0200 Subject: [PATCH 10/20] Dammit, I hope my git history works now! --- .../computercraft/client/proxy/ComputerCraftProxyClient.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main/java/dan200/computercraft/client/proxy/ComputerCraftProxyClient.java b/src/main/java/dan200/computercraft/client/proxy/ComputerCraftProxyClient.java index 7f9fb37ce..ecf46afea 100644 --- a/src/main/java/dan200/computercraft/client/proxy/ComputerCraftProxyClient.java +++ b/src/main/java/dan200/computercraft/client/proxy/ComputerCraftProxyClient.java @@ -97,11 +97,10 @@ public class ComputerCraftProxyClient extends ComputerCraftProxyCommon registerItemModel( ComputerCraft.Blocks.peripheral, 3, "printer" ); registerItemModel( ComputerCraft.Blocks.peripheral, 4, "advanced_monitor" ); registerItemModel( ComputerCraft.Blocks.cable, 0, "cable" ); - registerItemModel( ComputerCraft.Blocks.peripheral, 5, "speaker" ); - registerItemModel( ComputerCraft.Blocks.cable, 0, "CC-Cable" ); registerItemModel( ComputerCraft.Blocks.cable, 1, "wired_modem" ); registerItemModel( ComputerCraft.Blocks.commandComputer, "command_computer" ); registerItemModel( ComputerCraft.Blocks.advancedModem, "advanced_modem" ); + registerItemModel( ComputerCraft.Blocks.peripheral, 5, "speaker" ); registerItemModel( ComputerCraft.Items.disk, "disk" ); registerItemModel( ComputerCraft.Items.diskExpanded, "disk_expanded" ); From 093d2ea89f99fa9ecb52b71d60d592874ab52b00 Mon Sep 17 00:00:00 2001 From: Restioson Date: Fri, 12 May 2017 20:57:48 +0200 Subject: [PATCH 11/20] Added PocketSpeaker & corrected blockmodel for turtle speaker --- .../dan200/computercraft/ComputerCraft.java | 13 ++- .../client/proxy/CCTurtleProxyClient.java | 2 + .../peripheral/speaker/SpeakerPeripheral.java | 19 ++-- .../peripheral/speaker/TileSpeaker.java | 2 +- .../pocket/peripherals/PocketSpeaker.java | 87 ++++++++++++++++++ .../peripherals/PocketSpeakerPeripheral.java | 58 ++++++++++++ .../proxy/ComputerCraftProxyCommon.java | 4 + .../shared/turtle/upgrades/TurtleSpeaker.java | 27 ++++-- .../computercraft/models/block/speaker.json | 6 +- .../block/turtle_speaker_upgrade_left.json | 2 +- .../block/turtle_speaker_upgrade_right.json | 2 +- .../{speakerFront.png => speaker_front.png} | Bin .../{speakerSide.png => speaker_side.png} | Bin .../{speakerTop.png => speaker_top.png} | Bin .../textures/blocks/turtle_speaker_face.png | Bin 0 -> 452 bytes 15 files changed, 199 insertions(+), 23 deletions(-) create mode 100644 src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeaker.java create mode 100644 src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeakerPeripheral.java rename src/main/resources/assets/computercraft/textures/blocks/{speakerFront.png => speaker_front.png} (100%) rename src/main/resources/assets/computercraft/textures/blocks/{speakerSide.png => speaker_side.png} (100%) rename src/main/resources/assets/computercraft/textures/blocks/{speakerTop.png => speaker_top.png} (100%) create mode 100644 src/main/resources/assets/computercraft/textures/blocks/turtle_speaker_face.png diff --git a/src/main/java/dan200/computercraft/ComputerCraft.java b/src/main/java/dan200/computercraft/ComputerCraft.java index 18b951fde..abbcb5e18 100644 --- a/src/main/java/dan200/computercraft/ComputerCraft.java +++ b/src/main/java/dan200/computercraft/ComputerCraft.java @@ -40,6 +40,7 @@ import dan200.computercraft.shared.peripheral.modem.WirelessNetwork; import dan200.computercraft.shared.peripheral.printer.TilePrinter; import dan200.computercraft.shared.pocket.items.ItemPocketComputer; import dan200.computercraft.shared.pocket.peripherals.PocketModem; +import dan200.computercraft.shared.pocket.peripherals.PocketSpeaker; import dan200.computercraft.shared.proxy.ICCTurtleProxy; import dan200.computercraft.shared.proxy.IComputerCraftProxy; import dan200.computercraft.shared.turtle.blocks.BlockTurtle; @@ -132,6 +133,8 @@ public class ComputerCraft public static int floppySpaceLimit = 125 * 1000; public static int maximumFilesOpen = 128; + public static int maxNotesPerTick = 8; + // Blocks and Items public static class Blocks { @@ -171,6 +174,7 @@ public class ComputerCraft { public static PocketModem wirelessModem; public static PocketModem advancedModem; + public static PocketSpeaker pocketSpeaker; } public static class Config { @@ -196,6 +200,8 @@ public class ComputerCraft public static Property computerSpaceLimit; public static Property floppySpaceLimit; public static Property maximumFilesOpen; + public static Property maxNotesPerTick; + } // Registries @@ -287,6 +293,9 @@ public class ComputerCraft Config.turtlesCanPush = Config.config.get( Configuration.CATEGORY_GENERAL, "turtlesCanPush", turtlesCanPush ); Config.turtlesCanPush.setComment( "If set to true, Turtles will push entities out of the way instead of stopping if there is space to do so" ); + Config.maxNotesPerTick = Config.config.get( Configuration.CATEGORY_GENERAL, "maxNotesPerTick", maxNotesPerTick ); + Config.maxNotesPerTick.setComment( "Maximum amount of sounds a speaker can play at once" ); + for (Property property : Config.config.getCategory( Configuration.CATEGORY_GENERAL ).getOrderedValues()) { property.setLanguageKey( "gui.computercraft:config." + CaseFormat.LOWER_CAMEL.to( CaseFormat.LOWER_UNDERSCORE, property.getName() ) ); @@ -326,6 +335,8 @@ public class ComputerCraft turtlesObeyBlockProtection = Config.turtlesObeyBlockProtection.getBoolean(); turtlesCanPush = Config.turtlesCanPush.getBoolean(); + maximumFilesOpen = Math.max(1, Config.maximumFilesOpen.getInt()); + Config.config.save(); } @@ -704,7 +715,7 @@ public class ComputerCraft public static Iterable getVanillaPocketUpgrades() { List upgrades = new ArrayList(); for(IPocketUpgrade upgrade : pocketUpgrades.values()) { - if(upgrade instanceof PocketModem) { + if(upgrade instanceof PocketModem || upgrade instanceof PocketSpeaker) { upgrades.add( upgrade ); } } diff --git a/src/main/java/dan200/computercraft/client/proxy/CCTurtleProxyClient.java b/src/main/java/dan200/computercraft/client/proxy/CCTurtleProxyClient.java index 790eb8b99..22fdfe893 100644 --- a/src/main/java/dan200/computercraft/client/proxy/CCTurtleProxyClient.java +++ b/src/main/java/dan200/computercraft/client/proxy/CCTurtleProxyClient.java @@ -155,6 +155,8 @@ public class CCTurtleProxyClient extends CCTurtleProxyCommon loadModel( event, "advanced_turtle_modem_on_left" ); loadModel( event, "advanced_turtle_modem_off_right" ); loadModel( event, "advanced_turtle_modem_on_right" ); + loadModel( event, "turtle_speaker_upgrade_left" ); + loadModel( event, "turtle_speaker_upgrade_right" ); loadSmartModel( event, "turtle_dynamic", m_turtleSmartItemModel ); } diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index 78ce71267..79c19bf60 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -6,6 +6,7 @@ package dan200.computercraft.shared.peripheral.speaker; +import dan200.computercraft.ComputerCraft; import dan200.computercraft.api.lua.ILuaContext; import dan200.computercraft.api.lua.LuaException; import dan200.computercraft.api.peripheral.IComputerAccess; @@ -21,11 +22,13 @@ public class SpeakerPeripheral implements IPeripheral { private TileSpeaker m_speaker; private long m_clock; private long m_lastPlayTime; + private int m_notesThisTick; public SpeakerPeripheral() { m_clock = 0; m_lastPlayTime = 0; + m_notesThisTick = 0; } public SpeakerPeripheral(TileSpeaker speaker) @@ -34,9 +37,9 @@ public class SpeakerPeripheral implements IPeripheral { m_speaker = speaker; } - public void updateClock() - { + public void update() { m_clock++; + m_notesThisTick = 0; } public World getWorld() @@ -100,7 +103,7 @@ public class SpeakerPeripheral implements IPeripheral { { // playsound case 0: { - return playSound(args); + return playSound(args, false); } // playnote @@ -162,11 +165,15 @@ public class SpeakerPeripheral implements IPeripheral { throw new LuaException("Expected string, number (optional), number (optional)"); } - return playSound(new Object[] {"block.note." + arguments[0], volume, Math.pow(2d, (pitch - 12) / 12d)}); + // If the resource location for noteblock notes changes, this method call will need to be updated + Object[] returnValue = playSound(new Object[] {"block.note." + arguments[0], volume, Math.pow(2d, (pitch - 12) / 12d)}, true); + m_notesThisTick++; + + return returnValue; } - private Object[] playSound(Object[] arguments) throws LuaException + private Object[] playSound(Object[] arguments, boolean isNote) throws LuaException { float volume = 1f; @@ -209,7 +216,7 @@ public class SpeakerPeripheral implements IPeripheral { ResourceLocation resourceName = new ResourceLocation((String) arguments[0]); - if (m_clock - m_lastPlayTime > TileSpeaker.MIN_TICKS_BETWEEN_SOUNDS) + if (m_clock - m_lastPlayTime > TileSpeaker.MIN_TICKS_BETWEEN_SOUNDS || ((m_clock - m_lastPlayTime == 0) && (m_notesThisTick < ComputerCraft.maxNotesPerTick) && isNote)) { if (SoundEvent.REGISTRY.containsKey(resourceName)) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java index 94a2b2243..34d317e3e 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java @@ -26,7 +26,7 @@ public class TileSpeaker extends TilePeripheralBase @Override public synchronized void update() { - m_peripheral.updateClock(); + m_peripheral.update(); } // IPeripheralTile implementation diff --git a/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeaker.java b/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeaker.java new file mode 100644 index 000000000..534bd7f0c --- /dev/null +++ b/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeaker.java @@ -0,0 +1,87 @@ +/* + * This file is part of ComputerCraft - http://www.computercraft.info + * Copyright Daniel Ratcliffe, 2011-2016. Do not distribute without permission. + * Send enquiries to dratcliffe@gmail.com + */ + +package dan200.computercraft.shared.pocket.peripherals; + +import dan200.computercraft.api.peripheral.IPeripheral; +import dan200.computercraft.api.pocket.IPocketAccess; +import dan200.computercraft.api.pocket.IPocketUpgrade; +import dan200.computercraft.shared.peripheral.PeripheralType; +import dan200.computercraft.shared.peripheral.common.PeripheralItemFactory; +import net.minecraft.entity.Entity; +import net.minecraft.entity.EntityLivingBase; +import net.minecraft.item.ItemStack; +import net.minecraft.util.ResourceLocation; +import net.minecraft.world.World; + +import javax.annotation.Nonnull; +import javax.annotation.Nullable; + +public class PocketSpeaker implements IPocketUpgrade +{ + public PocketSpeaker() + { + } + + @Nonnull + @Override + public ResourceLocation getUpgradeID() + { + return new ResourceLocation( "computercraft", "speaker" ); + } + + @Nonnull + @Override + public String getUnlocalisedAdjective() + { + return "upgrade.computercraft:speaker.adjective"; + } + + @Nullable + @Override + public ItemStack getCraftingItem() + { + return PeripheralItemFactory.create(PeripheralType.Speaker, null, 1); + } + + @Nullable + @Override + public IPeripheral createPeripheral( @Nonnull IPocketAccess access ) + { + return new PocketSpeakerPeripheral(); + } + + @Override + public void update( @Nonnull IPocketAccess access, @Nullable IPeripheral peripheral ) + { + if ( peripheral instanceof PocketSpeakerPeripheral ) + { + Entity entity = access.getEntity(); + + PocketSpeakerPeripheral speaker = (PocketSpeakerPeripheral) peripheral; + + if ( entity instanceof EntityLivingBase) + { + EntityLivingBase player = (EntityLivingBase) entity; + speaker.setLocation( entity.getEntityWorld(), player.posX, player.posY + player.getEyeHeight(), player.posZ ); + } + + else if ( entity != null ) + { + speaker.setLocation( entity.getEntityWorld(), entity.posX, entity.posY, entity.posZ ); + } + speaker.update(); + } + } + + @Override + public boolean onRightClick(@Nonnull World world, @Nonnull IPocketAccess access, @Nullable IPeripheral peripheral ) + { + return false; + } + + +} diff --git a/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeakerPeripheral.java new file mode 100644 index 000000000..97bb6df58 --- /dev/null +++ b/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeakerPeripheral.java @@ -0,0 +1,58 @@ +/* + * This file is part of ComputerCraft - http://www.computercraft.info + * Copyright Daniel Ratcliffe, 2011-2016. Do not distribute without permission. + * Send enquiries to dratcliffe@gmail.com + */ + +package dan200.computercraft.shared.pocket.peripherals; + +import dan200.computercraft.api.peripheral.IPeripheral; +import dan200.computercraft.shared.peripheral.speaker.SpeakerPeripheral; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.World; + +public class PocketSpeakerPeripheral extends SpeakerPeripheral +{ + private World m_world; + private BlockPos m_position; + + public PocketSpeakerPeripheral() + { + super(); + m_world = null; + m_position = new BlockPos( 0.0, 0.0, 0.0 ); + } + + public void setLocation( World world, double x, double y, double z ) + { + m_position = new BlockPos( x, y, z ); + + if( m_world != world ) + { + m_world = world; + } + } + + @Override + public World getWorld() + { + return m_world; + } + + @Override + public BlockPos getPos() + { + if( m_world != null ) + { + return m_position; + } + return null; + } + + @Override + public boolean equals( IPeripheral other ) + { + // Sufficient because of use case: checking peripherals on individual pocket computers -- there will not be +1 + return other instanceof PocketSpeakerPeripheral; + } +} diff --git a/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java b/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java index 9751914ce..42d6ebd49 100644 --- a/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java +++ b/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java @@ -49,6 +49,7 @@ import dan200.computercraft.shared.pocket.inventory.ContainerPocketComputer; import dan200.computercraft.shared.pocket.items.ItemPocketComputer; import dan200.computercraft.shared.pocket.items.PocketComputerItemFactory; import dan200.computercraft.shared.pocket.peripherals.PocketModem; +import dan200.computercraft.shared.pocket.peripherals.PocketSpeaker; import dan200.computercraft.shared.pocket.recipes.PocketComputerUpgradeRecipe; import dan200.computercraft.shared.turtle.blocks.TileTurtle; import dan200.computercraft.shared.turtle.inventory.ContainerTurtle; @@ -453,6 +454,9 @@ public abstract class ComputerCraftProxyCommon implements IComputerCraftProxy ComputerCraft.PocketUpgrades.advancedModem = new PocketModem( true ); ComputerCraftAPI.registerPocketUpgrade( ComputerCraft.PocketUpgrades.advancedModem ); + ComputerCraft.PocketUpgrades.pocketSpeaker = new PocketSpeaker(); + ComputerCraftAPI.registerPocketUpgrade( ComputerCraft.PocketUpgrades.pocketSpeaker ); + // Wireless Pocket Computer GameRegistry.addRecipe( new PocketComputerUpgradeRecipe() ); diff --git a/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java b/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java index a83e5f193..923a45db4 100644 --- a/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java +++ b/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java @@ -24,7 +24,6 @@ import net.minecraft.world.World; import net.minecraftforge.fml.relauncher.Side; import net.minecraftforge.fml.relauncher.SideOnly; import org.apache.commons.lang3.tuple.Pair; - import javax.annotation.Nonnull; import javax.vecmath.Matrix4f; @@ -41,6 +40,12 @@ public class TurtleSpeaker implements ITurtleUpgrade m_turtle = turtle; } + @Override + public void update() + { + super.update(); + } + @Override public World getWorld() { @@ -67,9 +72,8 @@ public class TurtleSpeaker implements ITurtleUpgrade } // Members - ResourceLocation m_id; - int m_legacyID; - Peripheral m_peripheral; + private ResourceLocation m_id; + private int m_legacyID; @SideOnly( Side.CLIENT ) private ModelResourceLocation m_leftModel; @@ -77,7 +81,7 @@ public class TurtleSpeaker implements ITurtleUpgrade @SideOnly( Side.CLIENT ) private ModelResourceLocation m_rightModel; - public TurtleSpeaker(ResourceLocation id, int legacyId ) + public TurtleSpeaker(ResourceLocation id, int legacyId) { m_id = id; m_legacyID = legacyId; @@ -119,15 +123,14 @@ public class TurtleSpeaker implements ITurtleUpgrade @Override public IPeripheral createPeripheral( @Nonnull ITurtleAccess turtle, @Nonnull TurtleSide side ) { - m_peripheral = new TurtleSpeaker.Peripheral( turtle ); - return m_peripheral; // TODO does this go in constructor? + return new TurtleSpeaker.Peripheral(turtle); } @Nonnull @Override public TurtleCommandResult useTool(@Nonnull ITurtleAccess turtleAccess, @Nonnull TurtleSide turtleSide, @Nonnull TurtleVerb verb, @Nonnull EnumFacing direction) { - return null; + return TurtleCommandResult.failure(); } @SideOnly( Side.CLIENT ) @@ -161,8 +164,12 @@ public class TurtleSpeaker implements ITurtleUpgrade } @Override - public void update(@Nonnull ITurtleAccess turtleAccess, @Nonnull TurtleSide turtleSide) + public void update(@Nonnull ITurtleAccess turtle, @Nonnull TurtleSide turtleSide) { - m_peripheral.updateClock(); + if (turtle.getPeripheral(turtleSide) instanceof Peripheral) + { + Peripheral peripheral = (Peripheral) turtle.getPeripheral(turtleSide); + peripheral.update(); + } } } diff --git a/src/main/resources/assets/computercraft/models/block/speaker.json b/src/main/resources/assets/computercraft/models/block/speaker.json index afc4d4e21..288d44523 100644 --- a/src/main/resources/assets/computercraft/models/block/speaker.json +++ b/src/main/resources/assets/computercraft/models/block/speaker.json @@ -1,8 +1,8 @@ { "parent": "block/orientable", "textures": { - "front": "computercraft:blocks/speakerFront", - "side": "computercraft:blocks/speakerSide", - "top": "computercraft:blocks/speakerTop" + "front": "computercraft:blocks/speaker_front", + "side": "computercraft:blocks/speaker_side", + "top": "computercraft:blocks/speaker_top" } } diff --git a/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_left.json b/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_left.json index bfc5c4e3d..d2109d0ec 100644 --- a/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_left.json +++ b/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_left.json @@ -1,6 +1,6 @@ { "parent": "computercraft:block/turtle_upgrade_base_left", "textures": { - "texture": "computercraft:blocks/speakerFront" + "texture": "computercraft:blocks/turtle_speaker_face" } } diff --git a/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_right.json b/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_right.json index 143d681fa..96e67bcc0 100644 --- a/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_right.json +++ b/src/main/resources/assets/computercraft/models/block/turtle_speaker_upgrade_right.json @@ -1,6 +1,6 @@ { "parent": "computercraft:block/turtle_upgrade_base_right", "textures": { - "texture": "computercraft:blocks/speakerFront" + "texture": "computercraft:blocks/turtle_speaker_face" } } diff --git a/src/main/resources/assets/computercraft/textures/blocks/speakerFront.png b/src/main/resources/assets/computercraft/textures/blocks/speaker_front.png similarity index 100% rename from src/main/resources/assets/computercraft/textures/blocks/speakerFront.png rename to src/main/resources/assets/computercraft/textures/blocks/speaker_front.png diff --git a/src/main/resources/assets/computercraft/textures/blocks/speakerSide.png b/src/main/resources/assets/computercraft/textures/blocks/speaker_side.png similarity index 100% rename from src/main/resources/assets/computercraft/textures/blocks/speakerSide.png rename to src/main/resources/assets/computercraft/textures/blocks/speaker_side.png diff --git a/src/main/resources/assets/computercraft/textures/blocks/speakerTop.png b/src/main/resources/assets/computercraft/textures/blocks/speaker_top.png similarity index 100% rename from src/main/resources/assets/computercraft/textures/blocks/speakerTop.png rename to src/main/resources/assets/computercraft/textures/blocks/speaker_top.png diff --git a/src/main/resources/assets/computercraft/textures/blocks/turtle_speaker_face.png b/src/main/resources/assets/computercraft/textures/blocks/turtle_speaker_face.png new file mode 100644 index 0000000000000000000000000000000000000000..b115d457c27208379785723a8852773154f0c987 GIT binary patch literal 452 zcmV;#0XzPQP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D02y>eSaefwW^{L9 za%BK;VQFr3E^cLXAT%y8E-^MlX|MGF00A^fL_t(IPj!(?iiI!`MYD^Z_!%gOXsakK z;&-mNA>rY`1&IUq*C(k*kfz@qNUG|dR8>?>)BG4!RaF#4p6B02VHkE@Cso2Iit4&9 z%TfdTz8}Z&GU6b5p0{nogESDwF{w}1rvMm1(N1D~Ums)*+^$EGn8G-Y@Sf*6j>CZv zWm#q!7E?)*$P8qu4MrrvT-Qz0lu!UR(ExiGSOb*tp}z0&0Z2nia%m6*ig#oi0iGrf zy4NuHzAqiHwQZ|}MjY_*_RNh5fC>2$3V^7pWm(SiysnEZKBnR;cjHDhq=ezV?`fJe zKp+4YPzFF8WD^S@{U4qHH3q;WuY?4%9rT~JBMI}bq>2q*&GQT@DJz?KmfjuKb(NS4 uo{}UcVI-+Lus9rIp+BPhJ{f6KS^feDC;uoTjsm^_0000#ceK literal 0 HcmV?d00001 From 42962dcd483a6795a644b58a1d50b7479a2804a8 Mon Sep 17 00:00:00 2001 From: Restioson Date: Fri, 12 May 2017 21:10:53 +0200 Subject: [PATCH 12/20] Fix Noisy turtles not in creative - Thanks @SquidDev --- .../dan200/computercraft/shared/proxy/CCTurtleProxyCommon.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/dan200/computercraft/shared/proxy/CCTurtleProxyCommon.java b/src/main/java/dan200/computercraft/shared/proxy/CCTurtleProxyCommon.java index f36f8eaf8..87b807de4 100644 --- a/src/main/java/dan200/computercraft/shared/proxy/CCTurtleProxyCommon.java +++ b/src/main/java/dan200/computercraft/shared/proxy/CCTurtleProxyCommon.java @@ -8,6 +8,7 @@ package dan200.computercraft.shared.proxy; import dan200.computercraft.ComputerCraft; import dan200.computercraft.api.turtle.ITurtleUpgrade; +import dan200.computercraft.core.computer.Computer; import dan200.computercraft.shared.computer.core.ComputerFamily; import dan200.computercraft.shared.computer.items.ComputerItemFactory; import dan200.computercraft.shared.peripheral.speaker.SpeakerPeripheral; @@ -155,6 +156,7 @@ public abstract class CCTurtleProxyCommon implements ICCTurtleProxy addUpgradedTurtle( family, ComputerCraft.Upgrades.craftingTable, list ); addUpgradedTurtle( family, ComputerCraft.Upgrades.wirelessModem, list ); addUpgradedTurtle( family, ComputerCraft.Upgrades.advancedModem, list ); + addUpgradedTurtle( family, ComputerCraft.Upgrades.turtleSpeaker, list ); } private void addUpgradedTurtle( ComputerFamily family, ITurtleUpgrade upgrade, List list ) From 88b55934c77087ae5f651cf87cba87b02644a490 Mon Sep 17 00:00:00 2001 From: Restioson Date: Fri, 12 May 2017 21:19:37 +0200 Subject: [PATCH 13/20] Fix castException --- .../shared/peripheral/speaker/SpeakerPeripheral.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index 79c19bf60..995a326e9 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -202,7 +202,7 @@ public class SpeakerPeripheral implements IPeripheral { if (arguments.length > 2) { - if (!(arguments[1] instanceof Double)) // Arg wrong type + if (!(arguments[2] instanceof Double)) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } From aad81bead7b55738c886bfb7c3c18bcc94efccfa Mon Sep 17 00:00:00 2001 From: Restioson Date: Sat, 13 May 2017 09:39:24 +0200 Subject: [PATCH 14/20] Fix style @gegy1000 don't say *I* get distracted --- .../shared/peripheral/common/BlockPeripheral.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java index 915bdb049..eddee8948 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/common/BlockPeripheral.java @@ -333,7 +333,8 @@ public class BlockPeripheral extends BlockPeripheralBase } break; } - case Speaker: { + case Speaker: + { state = state.withProperty( Properties.FACING, dir ); break; } From 7ff4631a9f2dbed3af047199e842ec220b184629 Mon Sep 17 00:00:00 2001 From: Restioson Date: Sat, 13 May 2017 09:47:30 +0200 Subject: [PATCH 15/20] @gegy1000 strikes again --- .../shared/peripheral/speaker/SpeakerPeripheral.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index 995a326e9..191cf36f3 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -102,7 +102,8 @@ public class SpeakerPeripheral implements IPeripheral { switch (methodIndex) { // playsound - case 0: { + case 0: + { return playSound(args, false); } From b3c49db7617e5e43468015dca55ebb2c84451e0c Mon Sep 17 00:00:00 2001 From: Restioson Date: Mon, 15 May 2017 16:47:13 +0200 Subject: [PATCH 16/20] Made Speaker threadsafe & fix warnings --- .../shared/peripheral/speaker/SoundTask.java | 45 +++++++++++++++++++ .../peripheral/speaker/SpeakerPeripheral.java | 35 +++++++++------ .../peripheral/speaker/TileSpeaker.java | 4 +- .../peripherals/PocketSpeakerPeripheral.java | 4 +- .../shared/turtle/upgrades/TurtleSpeaker.java | 6 ++- 5 files changed, 74 insertions(+), 20 deletions(-) create mode 100644 src/main/java/dan200/computercraft/shared/peripheral/speaker/SoundTask.java diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SoundTask.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SoundTask.java new file mode 100644 index 000000000..8d680badb --- /dev/null +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SoundTask.java @@ -0,0 +1,45 @@ +/* + * This file is part of ComputerCraft - http://www.computercraft.info + * Copyright Daniel Ratcliffe, 2011-2016. Do not distribute without permission. + * Send enquiries to dratcliffe@gmail.com + */ + +package dan200.computercraft.shared.peripheral.speaker; + +import dan200.computercraft.api.lua.ILuaTask; +import dan200.computercraft.api.lua.LuaException; +import net.minecraft.util.ResourceLocation; +import net.minecraft.util.SoundCategory; +import net.minecraft.util.SoundEvent; +import net.minecraft.util.math.BlockPos; +import net.minecraft.world.World; + +import javax.annotation.Nullable; + +public class SoundTask implements ILuaTask +{ + + SoundTask(World world, BlockPos pos, ResourceLocation resourceName, float volume, float pitch) + { + m_world = world; + m_pos = pos; + m_resourceName = resourceName; + m_volume = volume; + m_pitch = pitch; + } + + // Fields + private World m_world; + private BlockPos m_pos; + private ResourceLocation m_resourceName; + private float m_volume; + private float m_pitch; + + + @Nullable + @Override + public Object[] execute() throws LuaException { + m_world.playSound(null, m_pos, new SoundEvent(m_resourceName), SoundCategory.RECORDS, m_volume, m_pitch); + return new Object[]{}; + } +} diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index 191cf36f3..172d026a9 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -1,4 +1,4 @@ -/** +/* * This file is part of ComputerCraft - http://www.computercraft.info * Copyright Daniel Ratcliffe, 2011-2016. Do not distribute without permission. * Send enquiries to dratcliffe@gmail.com @@ -12,11 +12,12 @@ import dan200.computercraft.api.lua.LuaException; import dan200.computercraft.api.peripheral.IComputerAccess; import dan200.computercraft.api.peripheral.IPeripheral; import net.minecraft.util.ResourceLocation; -import net.minecraft.util.SoundCategory; import net.minecraft.util.SoundEvent; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; +import javax.annotation.Nonnull; + public class SpeakerPeripheral implements IPeripheral { private TileSpeaker m_speaker; @@ -31,7 +32,7 @@ public class SpeakerPeripheral implements IPeripheral { m_notesThisTick = 0; } - public SpeakerPeripheral(TileSpeaker speaker) + SpeakerPeripheral(TileSpeaker speaker) { this(); m_speaker = speaker; @@ -72,21 +73,23 @@ public class SpeakerPeripheral implements IPeripheral { @Override - public void attach(IComputerAccess computerAccess) + public void attach(@Nonnull IComputerAccess computerAccess) { } @Override - public void detach(IComputerAccess computerAccess) + public void detach(@Nonnull IComputerAccess computerAccess) { } + @Nonnull @Override public String getType() { return "speaker"; } + @Nonnull @Override public String[] getMethodNames() { @@ -97,20 +100,20 @@ public class SpeakerPeripheral implements IPeripheral { } @Override - public Object[] callMethod(IComputerAccess computerAccess, ILuaContext context, int methodIndex, Object[] args) throws LuaException + public Object[] callMethod(@Nonnull IComputerAccess computerAccess, @Nonnull ILuaContext context, int methodIndex, @Nonnull Object[] args) throws LuaException { switch (methodIndex) { // playsound case 0: { - return playSound(args, false); + return playSound(args, context, false); } // playnote case 1: { - return playNote(args); + return playNote(args, context); } default: @@ -121,7 +124,7 @@ public class SpeakerPeripheral implements IPeripheral { } } - private Object[] playNote(Object[] arguments) throws LuaException + private Object[] playNote(Object[] arguments, ILuaContext context) throws LuaException { double volume = 1f; double pitch = 1f; @@ -167,14 +170,18 @@ public class SpeakerPeripheral implements IPeripheral { } // If the resource location for noteblock notes changes, this method call will need to be updated - Object[] returnValue = playSound(new Object[] {"block.note." + arguments[0], volume, Math.pow(2d, (pitch - 12) / 12d)}, true); - m_notesThisTick++; + Object[] returnValue = playSound(new Object[] {"block.note." + arguments[0], volume, Math.pow(2d, (pitch - 12) / 12d)}, context, true); + + if (returnValue[0] instanceof Boolean && (Boolean) returnValue[0]) + { + m_notesThisTick++; + } return returnValue; } - private Object[] playSound(Object[] arguments, boolean isNote) throws LuaException + private Object[] playSound(Object[] arguments, ILuaContext context, boolean isNote) throws LuaException { float volume = 1f; @@ -217,12 +224,12 @@ public class SpeakerPeripheral implements IPeripheral { ResourceLocation resourceName = new ResourceLocation((String) arguments[0]); - if (m_clock - m_lastPlayTime > TileSpeaker.MIN_TICKS_BETWEEN_SOUNDS || ((m_clock - m_lastPlayTime == 0) && (m_notesThisTick < ComputerCraft.maxNotesPerTick) && isNote)) + if (m_clock - m_lastPlayTime >= TileSpeaker.MIN_TICKS_BETWEEN_SOUNDS || ((m_clock - m_lastPlayTime == 0) && (m_notesThisTick < ComputerCraft.maxNotesPerTick) && isNote)) { if (SoundEvent.REGISTRY.containsKey(resourceName)) { - getWorld().playSound(null, getPos(), new SoundEvent(resourceName), SoundCategory.RECORDS, volume, pitch); + context.issueMainThreadTask(new SoundTask(getWorld(), getPos(), resourceName, volume, pitch)); m_lastPlayTime = m_clock; return new Object[]{true}; // Success, return true } diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java index 34d317e3e..150554685 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java @@ -1,4 +1,4 @@ -/** +/* * This file is part of ComputerCraft - http://www.computercraft.info * Copyright Daniel Ratcliffe, 2011-2016. Do not distribute without permission. * Send enquiries to dratcliffe@gmail.com @@ -16,7 +16,7 @@ public class TileSpeaker extends TilePeripheralBase static final int MIN_TICKS_BETWEEN_SOUNDS = 1; // Members - private SpeakerPeripheral m_peripheral; // TODO what happens when multiple computers wrap one peripheral? + private SpeakerPeripheral m_peripheral; public TileSpeaker() { diff --git a/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeakerPeripheral.java index 97bb6df58..433e902c2 100644 --- a/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/pocket/peripherals/PocketSpeakerPeripheral.java @@ -16,14 +16,14 @@ public class PocketSpeakerPeripheral extends SpeakerPeripheral private World m_world; private BlockPos m_position; - public PocketSpeakerPeripheral() + PocketSpeakerPeripheral() { super(); m_world = null; m_position = new BlockPos( 0.0, 0.0, 0.0 ); } - public void setLocation( World world, double x, double y, double z ) + void setLocation(World world, double x, double y, double z) { m_position = new BlockPos( x, y, z ); diff --git a/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java b/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java index 923a45db4..baa06c776 100644 --- a/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java +++ b/src/main/java/dan200/computercraft/shared/turtle/upgrades/TurtleSpeaker.java @@ -166,9 +166,11 @@ public class TurtleSpeaker implements ITurtleUpgrade @Override public void update(@Nonnull ITurtleAccess turtle, @Nonnull TurtleSide turtleSide) { - if (turtle.getPeripheral(turtleSide) instanceof Peripheral) + IPeripheral turtlePeripheral = turtle.getPeripheral(turtleSide); + + if (turtlePeripheral instanceof Peripheral) { - Peripheral peripheral = (Peripheral) turtle.getPeripheral(turtleSide); + Peripheral peripheral = (Peripheral) turtlePeripheral; peripheral.update(); } } From b28c5656652fa195507d98b96676bb257ed685ed Mon Sep 17 00:00:00 2001 From: Restioson Date: Tue, 16 May 2017 19:48:38 +0200 Subject: [PATCH 17/20] (Hopefully) addressed @dan200's concerns Push your fix to thread safety if this doesn't cut it --- .../dan200/computercraft/ComputerCraft.java | 4 +- .../shared/peripheral/speaker/SoundTask.java | 45 -------------- .../peripheral/speaker/SpeakerPeripheral.java | 60 ++++++++++++------- .../peripheral/speaker/TileSpeaker.java | 6 +- .../proxy/ComputerCraftProxyCommon.java | 18 +++--- .../assets/computercraft/lang/en_US.lang | 1 + 6 files changed, 52 insertions(+), 82 deletions(-) delete mode 100644 src/main/java/dan200/computercraft/shared/peripheral/speaker/SoundTask.java diff --git a/src/main/java/dan200/computercraft/ComputerCraft.java b/src/main/java/dan200/computercraft/ComputerCraft.java index abbcb5e18..9c39f2762 100644 --- a/src/main/java/dan200/computercraft/ComputerCraft.java +++ b/src/main/java/dan200/computercraft/ComputerCraft.java @@ -294,7 +294,7 @@ public class ComputerCraft Config.turtlesCanPush.setComment( "If set to true, Turtles will push entities out of the way instead of stopping if there is space to do so" ); Config.maxNotesPerTick = Config.config.get( Configuration.CATEGORY_GENERAL, "maxNotesPerTick", maxNotesPerTick ); - Config.maxNotesPerTick.setComment( "Maximum amount of sounds a speaker can play at once" ); + Config.maxNotesPerTick.setComment( "Maximum amount of notes a speaker can play at once" ); for (Property property : Config.config.getCategory( Configuration.CATEGORY_GENERAL ).getOrderedValues()) { @@ -335,7 +335,7 @@ public class ComputerCraft turtlesObeyBlockProtection = Config.turtlesObeyBlockProtection.getBoolean(); turtlesCanPush = Config.turtlesCanPush.getBoolean(); - maximumFilesOpen = Math.max(1, Config.maximumFilesOpen.getInt()); + maxNotesPerTick = Math.max(1, Config.maxNotesPerTick.getInt()); Config.config.save(); } diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SoundTask.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SoundTask.java deleted file mode 100644 index 8d680badb..000000000 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SoundTask.java +++ /dev/null @@ -1,45 +0,0 @@ -/* - * This file is part of ComputerCraft - http://www.computercraft.info - * Copyright Daniel Ratcliffe, 2011-2016. Do not distribute without permission. - * Send enquiries to dratcliffe@gmail.com - */ - -package dan200.computercraft.shared.peripheral.speaker; - -import dan200.computercraft.api.lua.ILuaTask; -import dan200.computercraft.api.lua.LuaException; -import net.minecraft.util.ResourceLocation; -import net.minecraft.util.SoundCategory; -import net.minecraft.util.SoundEvent; -import net.minecraft.util.math.BlockPos; -import net.minecraft.world.World; - -import javax.annotation.Nullable; - -public class SoundTask implements ILuaTask -{ - - SoundTask(World world, BlockPos pos, ResourceLocation resourceName, float volume, float pitch) - { - m_world = world; - m_pos = pos; - m_resourceName = resourceName; - m_volume = volume; - m_pitch = pitch; - } - - // Fields - private World m_world; - private BlockPos m_pos; - private ResourceLocation m_resourceName; - private float m_volume; - private float m_pitch; - - - @Nullable - @Override - public Object[] execute() throws LuaException { - m_world.playSound(null, m_pos, new SoundEvent(m_resourceName), SoundCategory.RECORDS, m_volume, m_pitch); - return new Object[]{}; - } -} diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index 172d026a9..669b532b0 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -8,15 +8,17 @@ package dan200.computercraft.shared.peripheral.speaker; import dan200.computercraft.ComputerCraft; import dan200.computercraft.api.lua.ILuaContext; +import dan200.computercraft.api.lua.ILuaTask; import dan200.computercraft.api.lua.LuaException; import dan200.computercraft.api.peripheral.IComputerAccess; import dan200.computercraft.api.peripheral.IPeripheral; import net.minecraft.util.ResourceLocation; +import net.minecraft.util.SoundCategory; import net.minecraft.util.SoundEvent; import net.minecraft.util.math.BlockPos; import net.minecraft.world.World; - import javax.annotation.Nonnull; +import javax.annotation.Nullable; public class SpeakerPeripheral implements IPeripheral { @@ -38,7 +40,7 @@ public class SpeakerPeripheral implements IPeripheral { m_speaker = speaker; } - public void update() { + public synchronized void update() { m_clock++; m_notesThisTick = 0; } @@ -124,7 +126,8 @@ public class SpeakerPeripheral implements IPeripheral { } } - private Object[] playNote(Object[] arguments, ILuaContext context) throws LuaException + @Nonnull + private synchronized Object[] playNote(Object[] arguments, ILuaContext context) throws LuaException { double volume = 1f; double pitch = 1f; @@ -147,29 +150,24 @@ public class SpeakerPeripheral implements IPeripheral { if (arguments.length > 1) { - if (!(arguments[1] instanceof Double)) // Arg wrong type + if (!(arguments[1] instanceof Double) && !(arguments[1] == null)) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } - volume = ((Double) arguments[1]).floatValue(); + volume = arguments[1] != null ? ((Double) arguments[1]).floatValue() : 1f; } if (arguments.length > 2) { - if (!(arguments[1] instanceof Double)) // Arg wrong type + if (!(arguments[1] instanceof Double) && !(arguments[2] == null)) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } - pitch = ((Double) arguments[2]).floatValue(); + pitch = arguments[2] != null ? ((Double) arguments[2]).floatValue() : 1f; } - if (arguments.length > 3) - { - throw new LuaException("Expected string, number (optional), number (optional)"); - } - - // If the resource location for noteblock notes changes, this method call will need to be updated + // If the resource location for note block notes changes, this method call will need to be updated Object[] returnValue = playSound(new Object[] {"block.note." + arguments[0], volume, Math.pow(2d, (pitch - 12) / 12d)}, context, true); if (returnValue[0] instanceof Boolean && (Boolean) returnValue[0]) @@ -181,7 +179,8 @@ public class SpeakerPeripheral implements IPeripheral { } - private Object[] playSound(Object[] arguments, ILuaContext context, boolean isNote) throws LuaException + @Nonnull + private synchronized Object[] playSound(Object[] arguments, ILuaContext context, boolean isNote) throws LuaException { float volume = 1f; @@ -196,31 +195,29 @@ public class SpeakerPeripheral implements IPeripheral { if (!(arguments[0] instanceof String)) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); + } if (arguments.length > 1) { - if (!(arguments[1] instanceof Double)) // Arg wrong type + if (!(arguments[1] instanceof Double) && !(arguments[1] == null)) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } - volume = ((Double) arguments[1]).floatValue(); + + volume = arguments[1] != null ? ((Double) arguments[1]).floatValue() : 1f; } if (arguments.length > 2) { - if (!(arguments[2] instanceof Double)) // Arg wrong type + if (!(arguments[2] instanceof Double) && !(arguments[2] == null)) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } - pitch = ((Double) arguments[2]).floatValue(); + pitch = arguments[2] != null ? ((Double) arguments[2]).floatValue() : 1f; } - if (arguments.length > 3) - { - throw new LuaException("Expected string, number (optional), number (optional)"); - } ResourceLocation resourceName = new ResourceLocation((String) arguments[0]); @@ -229,7 +226,24 @@ public class SpeakerPeripheral implements IPeripheral { if (SoundEvent.REGISTRY.containsKey(resourceName)) { - context.issueMainThreadTask(new SoundTask(getWorld(), getPos(), resourceName, volume, pitch)); + + final World world = getWorld(); + final BlockPos pos = getPos(); + final ResourceLocation resource = resourceName; + final float vol = volume; + final float soundPitch = pitch; + + context.issueMainThreadTask(new ILuaTask() { + + @Nullable + @Override + public Object[] execute() throws LuaException { + world.playSound(null, pos, new SoundEvent(resource), SoundCategory.RECORDS, vol, soundPitch); + return null; + } + + }); + m_lastPlayTime = m_clock; return new Object[]{true}; // Success, return true } diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java index 150554685..b76e149e0 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/TileSpeaker.java @@ -6,9 +6,9 @@ package dan200.computercraft.shared.peripheral.speaker; - import dan200.computercraft.api.peripheral.IPeripheral; - import dan200.computercraft.shared.peripheral.common.TilePeripheralBase; - import net.minecraft.util.EnumFacing; +import dan200.computercraft.api.peripheral.IPeripheral; +import dan200.computercraft.shared.peripheral.common.TilePeripheralBase; +import net.minecraft.util.EnumFacing; public class TileSpeaker extends TilePeripheralBase { diff --git a/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java b/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java index 42d6ebd49..196f1bcad 100644 --- a/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java +++ b/src/main/java/dan200/computercraft/shared/proxy/ComputerCraftProxyCommon.java @@ -555,15 +555,15 @@ public abstract class ComputerCraftProxyCommon implements IComputerCraftProxy private void registerTileEntities() { // Tile Entities - GameRegistry.registerTileEntity( TileComputer.class, "computer" ); - GameRegistry.registerTileEntity( TileDiskDrive.class, "diskdrive" ); - GameRegistry.registerTileEntity( TileWirelessModem.class, "wirelessmodem" ); - GameRegistry.registerTileEntity( TileMonitor.class, "monitor" ); - GameRegistry.registerTileEntity( TilePrinter.class, "ccprinter" ); - GameRegistry.registerTileEntity( TileCable.class, "wiredmodem" ); - GameRegistry.registerTileEntity( TileCommandComputer.class, "command_computer" ); - GameRegistry.registerTileEntity( TileAdvancedModem.class, "advanced_modem" ); - GameRegistry.registerTileEntity( TileSpeaker.class, "speaker" ); + registerTileEntity( TileComputer.class, "computer" ); + registerTileEntity( TileDiskDrive.class, "diskdrive" ); + registerTileEntity( TileWirelessModem.class, "wirelessmodem" ); + registerTileEntity( TileMonitor.class, "monitor" ); + registerTileEntity( TilePrinter.class, "ccprinter" ); + registerTileEntity( TileCable.class, "wiredmodem" ); + registerTileEntity( TileCommandComputer.class, "command_computer" ); + registerTileEntity( TileAdvancedModem.class, "advanced_modem" ); + registerTileEntity( TileSpeaker.class, "speaker" ); // Register peripheral providers ComputerCraftAPI.registerPeripheralProvider( new DefaultPeripheralProvider() ); diff --git a/src/main/resources/assets/computercraft/lang/en_US.lang b/src/main/resources/assets/computercraft/lang/en_US.lang index c336c33b4..8c7f386d1 100644 --- a/src/main/resources/assets/computercraft/lang/en_US.lang +++ b/src/main/resources/assets/computercraft/lang/en_US.lang @@ -59,3 +59,4 @@ gui.computercraft:config.advanced_turtle_fuel_limit=Advanced Turtle fuel limit gui.computercraft:config.turtles_obey_block_protection=Turtles obey block protection gui.computercraft:config.turtles_can_push=Turtles can push entities gui.computercraft:config.maximum_files_open=Maximum files open per computer +gui.computercraft:config.max_notes_per_tick=Maximum notes that a computer can play at once From 4df4b91d0957cddeb64f2eb88bea472b17e36e41 Mon Sep 17 00:00:00 2001 From: Restioson Date: Tue, 16 May 2017 20:02:59 +0200 Subject: [PATCH 18/20] Converted (!x == y) to x != y --- .../shared/peripheral/speaker/SpeakerPeripheral.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java index 669b532b0..e3e98fbe4 100644 --- a/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java +++ b/src/main/java/dan200/computercraft/shared/peripheral/speaker/SpeakerPeripheral.java @@ -150,7 +150,7 @@ public class SpeakerPeripheral implements IPeripheral { if (arguments.length > 1) { - if (!(arguments[1] instanceof Double) && !(arguments[1] == null)) // Arg wrong type + if (!(arguments[1] instanceof Double) && arguments[1] != null) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } @@ -160,7 +160,7 @@ public class SpeakerPeripheral implements IPeripheral { if (arguments.length > 2) { - if (!(arguments[1] instanceof Double) && !(arguments[2] == null)) // Arg wrong type + if (!(arguments[1] instanceof Double) && arguments[2] != null) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } @@ -200,7 +200,7 @@ public class SpeakerPeripheral implements IPeripheral { if (arguments.length > 1) { - if (!(arguments[1] instanceof Double) && !(arguments[1] == null)) // Arg wrong type + if (!(arguments[1] instanceof Double) && arguments[1] != null) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } @@ -211,7 +211,7 @@ public class SpeakerPeripheral implements IPeripheral { if (arguments.length > 2) { - if (!(arguments[2] instanceof Double) && !(arguments[2] == null)) // Arg wrong type + if (!(arguments[2] instanceof Double) && arguments[2] != null) // Arg wrong type { throw new LuaException("Expected string, number (optional), number (optional)"); } From 7e556acebc8bc3cfa6e02ba2b4c9b91cec2a5f40 Mon Sep 17 00:00:00 2001 From: Restioson Date: Tue, 16 May 2017 20:42:16 +0200 Subject: [PATCH 19/20] Added Speaker to Changelog --- src/main/resources/assets/computercraft/lua/rom/help/changelog | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/assets/computercraft/lua/rom/help/changelog b/src/main/resources/assets/computercraft/lua/rom/help/changelog index 00a671763..2c0b9c58f 100644 --- a/src/main/resources/assets/computercraft/lua/rom/help/changelog +++ b/src/main/resources/assets/computercraft/lua/rom/help/changelog @@ -30,6 +30,7 @@ New Features in ComputerCraft 1.80: * Turtles now use tinting * shell.resolveProgram now picks up on *.lua files * Fixed a handful of bugs in ComputerCraft +* Added speaker block, turtle upgrade, pocket upgrade, and peripheral api New Features in ComputerCraft 1.79: From 0113e7229fc3c74413d871c6784387a197d2766a Mon Sep 17 00:00:00 2001 From: Restioson Date: Tue, 16 May 2017 20:44:34 +0200 Subject: [PATCH 20/20] Added speaker to whatsnew --- src/main/resources/assets/computercraft/lua/rom/help/whatsnew | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/resources/assets/computercraft/lua/rom/help/whatsnew b/src/main/resources/assets/computercraft/lua/rom/help/whatsnew index df20c4088..347d0f8c1 100644 --- a/src/main/resources/assets/computercraft/lua/rom/help/whatsnew +++ b/src/main/resources/assets/computercraft/lua/rom/help/whatsnew @@ -30,5 +30,6 @@ New Features in ComputerCraft 1.80: * Turtles now use tinting * shell.resolveProgram now picks up on *.lua files * Fixed a handful of bugs in ComputerCraft +* Added speaker block, turtle upgrade, pocket upgrade, and peripheral api Type "help changelog" to see the full version history.