(サンプルのクラス名を変更) |
(ModIDとブロックID、TileEntityIDの変更) |
||
(同じ利用者による、間の11版が非表示) | |||
1行目: | 1行目: | ||
− | + | [[ComputerCraft_API|ComputerCraft API]] > | |
− | {{前提MOD|reqmod="Minecraft Forge Universal 10.13.0.x~"及び"ComputerCraft 1. | + | {{前提MOD|reqmod="Minecraft Forge Universal 10.13.0.x~"及び"ComputerCraft 1.65~"}} |
== 周辺機器の追加 == | == 周辺機器の追加 == | ||
− | + | 何もしない周辺機器ブロックを追加します。 | |
+ | |||
+ | *IPeripheralの実装 | ||
+ | *IPeripheralProviderの実装 | ||
+ | *PeripheralProviderの登録 | ||
+ | |||
+ | このサンプルでは周辺機器ブロックのレシピを登録していないので、適当なレシピを追加するか、クリエイティブ・インベントリから取り出してください。 | ||
=== ソースコード === | === ソースコード === | ||
*SamplePeripheralCore.java | *SamplePeripheralCore.java | ||
<source lang = "java"> | <source lang = "java"> | ||
− | package mods. | + | package mods.sample.peripheral; |
import net.minecraft.block.Block; | import net.minecraft.block.Block; | ||
+ | import net.minecraft.creativetab.CreativeTabs; | ||
import cpw.mods.fml.common.Mod; | import cpw.mods.fml.common.Mod; | ||
import cpw.mods.fml.common.Mod.EventHandler; | import cpw.mods.fml.common.Mod.EventHandler; | ||
import cpw.mods.fml.common.event.FMLInitializationEvent; | import cpw.mods.fml.common.event.FMLInitializationEvent; | ||
+ | import cpw.mods.fml.common.event.FMLPreInitializationEvent; | ||
import cpw.mods.fml.common.registry.GameRegistry; | import cpw.mods.fml.common.registry.GameRegistry; | ||
import dan200.computercraft.api.ComputerCraftAPI; | import dan200.computercraft.api.ComputerCraftAPI; | ||
− | @Mod(modid=" | + | @Mod(modid=SamplePeripheralCore.MOD_ID, |
− | public | + | name=SamplePeripheralCore.MOD_NAME, |
− | + | version=SamplePeripheralCore.MOD_VERSION, | |
+ | dependencies = SamplePeripheralCore.MOD_DEPENDENCIES) | ||
+ | public class SamplePeripheralCore { | ||
+ | |||
+ | public static final String MOD_ID = "sampleperipheralmod"; | ||
+ | public static final String MOD_NAME = "Sample Peripheral Mod"; | ||
+ | public static final String MOD_VERSION = "1.0"; | ||
+ | public static final String MOD_DEPENDENCIES = "after:ComputerCraft"; | ||
public static Block blockSamplePeripheral; | public static Block blockSamplePeripheral; | ||
@EventHandler | @EventHandler | ||
− | public void | + | public void preInit(FMLPreInitializationEvent event) { |
− | + | blockSamplePeripheral = new BlockSamplePeripheral() | |
− | blockSamplePeripheral = new | + | GameRegistry.registerBlock(blockSamplePeripheral, "sample_peripheral"); |
− | GameRegistry.registerBlock(blockSamplePeripheral, " | + | } |
− | GameRegistry.registerTileEntity( | + | |
+ | @EventHandler | ||
+ | public void init(FMLInitializationEvent event) { | ||
+ | GameRegistry.registerTileEntity(TileSamplePeripheral.class, "tile_sample_peripheral"); | ||
ComputerCraftAPI.registerPeripheralProvider(new PeripheralProvider()); | ComputerCraftAPI.registerPeripheralProvider(new PeripheralProvider()); | ||
} | } | ||
+ | |||
} | } | ||
</source> | </source> | ||
− | * | + | *BlockSamplePeripheral.java |
<source lang = "java"> | <source lang = "java"> | ||
− | package mods. | + | package mods.sample.peripheral; |
import net.minecraft.block.BlockContainer; | import net.minecraft.block.BlockContainer; | ||
import net.minecraft.block.material.Material; | import net.minecraft.block.material.Material; | ||
− | |||
import net.minecraft.tileentity.TileEntity; | import net.minecraft.tileentity.TileEntity; | ||
import net.minecraft.world.World; | import net.minecraft.world.World; | ||
− | public class | + | public class BlockSamplePeripheral extends BlockContainer { |
+ | |||
+ | public BlockSamplePeripheral() { | ||
+ | super(Material.ground); | ||
− | + | setBlockName("sample_peripheral"); | |
− | |||
− | setBlockName(" | ||
setCreativeTab(CreativeTabs.tabBlock); | setCreativeTab(CreativeTabs.tabBlock); | ||
} | } | ||
54行目: | 73行目: | ||
@Override | @Override | ||
public TileEntity createNewTileEntity(World world, int a) { | public TileEntity createNewTileEntity(World world, int a) { | ||
− | return new | + | return new TileSamplePeripheral(); |
} | } | ||
} | } | ||
+ | |||
</source> | </source> | ||
− | * | + | *TileSamplePeripheral.java |
<source lang = "java"> | <source lang = "java"> | ||
− | package mods. | + | package mods.sample.peripheral; |
import net.minecraft.tileentity.TileEntity; | import net.minecraft.tileentity.TileEntity; | ||
70行目: | 90行目: | ||
import dan200.computercraft.api.peripheral.IPeripheral; | import dan200.computercraft.api.peripheral.IPeripheral; | ||
− | public class | + | public class TileSamplePeripheral extends TileEntity implements IPeripheral { |
− | { | ||
@Override | @Override | ||
− | public String getType() | + | public String getType() { |
− | |||
return "sample"; | return "sample"; | ||
} | } | ||
@Override | @Override | ||
− | public String[] getMethodNames() | + | public String[] getMethodNames() { |
− | + | return new String[] {}; | |
− | return new String[] { | ||
} | } | ||
88行目: | 105行目: | ||
public Object[] callMethod(IComputerAccess computer, ILuaContext context, | public Object[] callMethod(IComputerAccess computer, ILuaContext context, | ||
int method, Object[] arguments) throws LuaException, | int method, Object[] arguments) throws LuaException, | ||
− | InterruptedException | + | InterruptedException { |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
return null; | return null; | ||
} | } | ||
@Override | @Override | ||
− | public void attach(IComputerAccess computer) | + | public void attach(IComputerAccess computer) { |
− | |||
} | } | ||
@Override | @Override | ||
− | public void detach(IComputerAccess computer) | + | public void detach(IComputerAccess computer) { |
− | |||
} | } | ||
@Override | @Override | ||
− | public boolean equals(IPeripheral other) | + | public boolean equals(IPeripheral other) { |
− | + | if ((other != null) && (other instanceof TileSamplePeripheral)) { | |
− | + | return other == this; | |
+ | } | ||
+ | |||
+ | return false; | ||
} | } | ||
142行目: | 133行目: | ||
*PeripheralProvider.java | *PeripheralProvider.java | ||
<source lang = "java"> | <source lang = "java"> | ||
− | package mods. | + | package mods.sample.peripheral; |
import net.minecraft.tileentity.TileEntity; | import net.minecraft.tileentity.TileEntity; | ||
149行目: | 140行目: | ||
import dan200.computercraft.api.peripheral.IPeripheralProvider; | import dan200.computercraft.api.peripheral.IPeripheralProvider; | ||
− | public class PeripheralProvider implements IPeripheralProvider | + | public class PeripheralProvider implements IPeripheralProvider { |
− | { | ||
@Override | @Override | ||
− | public IPeripheral getPeripheral(World world, int x, int y, int z, int side) | + | public IPeripheral getPeripheral(World world, int x, int y, int z, int side) { |
− | |||
TileEntity tile = world.getTileEntity(x, y, z); | TileEntity tile = world.getTileEntity(x, y, z); | ||
− | + | if (tile != null && tile instanceof TileSamplePeripheral) { | |
− | if (tile != null && tile instanceof | + | return (IPeripheral)tile; |
− | return | ||
} | } | ||
168行目: | 156行目: | ||
=== 解説 === | === 解説 === | ||
− | |||
==== SamplePeripheralCore.java ==== | ==== SamplePeripheralCore.java ==== | ||
− | ==== | + | Modのコアとなるクラス |
− | ==== | + | |
+ | *dependencies | ||
+ | <source lang = "java"> | ||
+ | @Mod( | ||
+ | dependencies = SamplePeripheralCore.MOD_DEPENDENCIES) | ||
+ | public class SamplePeripheralCore { | ||
+ | |||
+ | public static final String MOD_DEPENDENCIES = "after:ComputerCraft"; | ||
+ | </source> | ||
+ | @Modのdependenciesで、このmodがComputerCraftの後に読み込まれるように設定しています。 | ||
+ | |||
+ | *周辺機器のブロックとTileEntityの登録 | ||
+ | <source lang = "java"> | ||
+ | blockSamplePeripheral = new BlockSamplePeripheral() | ||
+ | GameRegistry.registerBlock(blockSamplePeripheral, "sample_peripheral"); | ||
+ | </source> | ||
+ | <source lang = "java"> | ||
+ | GameRegistry.registerTileEntity(TileSamplePeripheral.class, "tile_sample_peripheral"); | ||
+ | </source> | ||
+ | |||
+ | *PeripheralProviderの登録 | ||
+ | <source lang = "java"> | ||
+ | ComputerCraftAPI.registerPeripheralProvider(new PeripheralProvider()); | ||
+ | </source> | ||
+ | 接続したComputerへ周辺機器のIPeripheral実装クラスを提供するためのIPeripheralProvider実装クラス(後述)を、ComputerCraftAPI.registerPeripheralProvider()でComputerCraftに登録します。 | ||
+ | これは、'''自作周辺機器をComputerから使えるようにするために必須'''です。 | ||
+ | |||
+ | ==== BlockSamplePeripheral.java ==== | ||
+ | 周辺機器のブロック | ||
+ | |||
+ | *BlockContainerの継承 | ||
+ | <source lang = "java"> | ||
+ | public class BlockSamplePeripheral extends BlockContainer { | ||
+ | |||
+ | @Override | ||
+ | public TileEntity createNewTileEntity(World world, int a) { | ||
+ | return new TileSamplePeripheral(); | ||
+ | } | ||
+ | </source> | ||
+ | 周辺機器はTileEntityを持つブロックとして実装するので、BlockContainerを継承し、createNewTileEntity()で周辺機器のTileEntityのインスタンスを生成して返しています。 | ||
+ | |||
+ | ==== TileSamplePeripheral.java ==== | ||
+ | 周辺機器のTileEntity | ||
+ | |||
+ | *IPeripheralの実装 | ||
+ | <source lang = "java"> | ||
+ | public class TileSamplePeripheral extends TileEntity implements IPeripheral { | ||
+ | </source> | ||
+ | 今回は周辺機器のTileEntityクラスでIPeripheralも実装しています。 | ||
+ | |||
+ | ちなみに、周辺機器は後述のPeripheralProviderでComputerへ提供されるため、IPeripheralはTileEntity以外のクラスで実装する事もできます。 | ||
+ | |||
+ | *getType() | ||
+ | <source lang = "java"> | ||
+ | @Override | ||
+ | public String getType() { | ||
+ | return "sample"; | ||
+ | } | ||
+ | </source> | ||
+ | 周辺機器の種類を表す文字列を返します。ゲーム内のLuaプログラムではperipheral.getType()で取得したこの文字列によって周辺機器の種類を判別します。 | ||
+ | |||
+ | *getMethodNames() | ||
+ | <source lang = "java"> | ||
+ | @Override | ||
+ | public String[] getMethodNames() { | ||
+ | return new String[] {}; | ||
+ | } | ||
+ | </source> | ||
+ | Computerから呼び出せる周辺機器のメソッド名を表す文字列の配列を返します。ゲーム内のLuaプログラムではperipheral.getMethods()の戻り値になります。<br> | ||
+ | 今回は実装しないので空の配列を返しています。 | ||
+ | |||
+ | *callMethod() | ||
+ | <source lang = "java"> | ||
+ | @Override | ||
+ | public Object[] callMethod(IComputerAccess computer, ILuaContext context, | ||
+ | int method, Object[] arguments) throws LuaException, | ||
+ | InterruptedException { | ||
+ | return null; | ||
+ | } | ||
+ | </source> | ||
+ | Computerからperipheral.call()で周辺機器のメソッドを呼び出したときの処理を実装します。<br> | ||
+ | 今回はメソッドを実装しないので何もしません。 | ||
+ | |||
+ | *attach()とdetach() | ||
+ | <source lang = "java"> | ||
+ | @Override | ||
+ | public void attach(IComputerAccess computer) { | ||
+ | |||
+ | } | ||
+ | |||
+ | @Override | ||
+ | public void detach(IComputerAccess computer) { | ||
+ | |||
+ | } | ||
+ | </source> | ||
+ | 周辺機器ブロックがComputerに接続されたとき(attach)と、取り外されたとき(detach)に呼び出されます。<br> | ||
+ | 今回は何もしません。 | ||
+ | |||
+ | *equals() | ||
+ | <source lang = "java"> | ||
+ | @Override | ||
+ | public boolean equals(IPeripheral other) { | ||
+ | if ((other != null) && (other instanceof TileSamplePeripheral)) { | ||
+ | return other == this; | ||
+ | } | ||
+ | |||
+ | return false; | ||
+ | } | ||
+ | </source> | ||
+ | Computerに周辺機器が着脱されたときに現在取り付けられている周辺機器(this)が、それまで取り付けられていた周辺機器(other)と同一かどうかを調べるために呼び出されます。<br> | ||
+ | 周辺機器のTileEntityインスタンスが同一かどうかを比較して返しています。 | ||
+ | |||
==== PeripheralProvider.java ==== | ==== PeripheralProvider.java ==== | ||
+ | Computerへ周辺機器(IPeripheralの実装クラス)を提供するためのクラス | ||
+ | |||
+ | *IPeripheralProviderの実装 | ||
+ | <source lang = "java"> | ||
+ | public class PeripheralProvider implements IPeripheralProvider { | ||
+ | </source> | ||
+ | IPeripheralProviderを実装します。<br> | ||
+ | 前述の通り、このクラスのインスタンスをComputerCraftAPI.registerPeripheralProvider()でComputerCraftへ登録します。 | ||
+ | |||
+ | *getPeripheral() | ||
+ | <source lang = "java"> | ||
+ | @Override | ||
+ | public IPeripheral getPeripheral(World world, int x, int y, int z, int side) { | ||
+ | TileEntity tile = world.getTileEntity(x, y, z); | ||
+ | if (tile != null && tile instanceof TileSamplePeripheral) { | ||
+ | return (IPeripheral)tile; | ||
+ | } | ||
+ | |||
+ | return null; | ||
+ | } | ||
+ | </source> | ||
+ | 周辺機器がComputerへ接続されたときに呼び出されます。x, y, zは周辺機器の座標、sideは周辺機器から見た接続方向です。<br> | ||
+ | 今回は周辺機器のTileEntityでIPeripheralを実装したため、座標から周辺機器のTileEntityを取得し、IPeripheralのインスタンスとして返しています。 |
2015年12月28日 (月) 20:48時点における最新版
この記事は"Minecraft Forge Universal 10.13.0.x~"及び"ComputerCraft 1.65~"を前提MODとしています。 |
目次
周辺機器の追加[編集]
何もしない周辺機器ブロックを追加します。
- IPeripheralの実装
- IPeripheralProviderの実装
- PeripheralProviderの登録
このサンプルでは周辺機器ブロックのレシピを登録していないので、適当なレシピを追加するか、クリエイティブ・インベントリから取り出してください。
ソースコード[編集]
- SamplePeripheralCore.java
package mods.sample.peripheral; import net.minecraft.block.Block; import net.minecraft.creativetab.CreativeTabs; import cpw.mods.fml.common.Mod; import cpw.mods.fml.common.Mod.EventHandler; import cpw.mods.fml.common.event.FMLInitializationEvent; import cpw.mods.fml.common.event.FMLPreInitializationEvent; import cpw.mods.fml.common.registry.GameRegistry; import dan200.computercraft.api.ComputerCraftAPI; @Mod(modid=SamplePeripheralCore.MOD_ID, name=SamplePeripheralCore.MOD_NAME, version=SamplePeripheralCore.MOD_VERSION, dependencies = SamplePeripheralCore.MOD_DEPENDENCIES) public class SamplePeripheralCore { public static final String MOD_ID = "sampleperipheralmod"; public static final String MOD_NAME = "Sample Peripheral Mod"; public static final String MOD_VERSION = "1.0"; public static final String MOD_DEPENDENCIES = "after:ComputerCraft"; public static Block blockSamplePeripheral; @EventHandler public void preInit(FMLPreInitializationEvent event) { blockSamplePeripheral = new BlockSamplePeripheral() GameRegistry.registerBlock(blockSamplePeripheral, "sample_peripheral"); } @EventHandler public void init(FMLInitializationEvent event) { GameRegistry.registerTileEntity(TileSamplePeripheral.class, "tile_sample_peripheral"); ComputerCraftAPI.registerPeripheralProvider(new PeripheralProvider()); } }
- BlockSamplePeripheral.java
package mods.sample.peripheral; import net.minecraft.block.BlockContainer; import net.minecraft.block.material.Material; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; public class BlockSamplePeripheral extends BlockContainer { public BlockSamplePeripheral() { super(Material.ground); setBlockName("sample_peripheral"); setCreativeTab(CreativeTabs.tabBlock); } @Override public TileEntity createNewTileEntity(World world, int a) { return new TileSamplePeripheral(); } }
- TileSamplePeripheral.java
package mods.sample.peripheral; import net.minecraft.tileentity.TileEntity; import dan200.computercraft.api.lua.ILuaContext; import dan200.computercraft.api.lua.LuaException; import dan200.computercraft.api.peripheral.IComputerAccess; import dan200.computercraft.api.peripheral.IPeripheral; public class TileSamplePeripheral extends TileEntity implements IPeripheral { @Override public String getType() { return "sample"; } @Override public String[] getMethodNames() { return new String[] {}; } @Override public Object[] callMethod(IComputerAccess computer, ILuaContext context, int method, Object[] arguments) throws LuaException, InterruptedException { return null; } @Override public void attach(IComputerAccess computer) { } @Override public void detach(IComputerAccess computer) { } @Override public boolean equals(IPeripheral other) { if ((other != null) && (other instanceof TileSamplePeripheral)) { return other == this; } return false; } }
- PeripheralProvider.java
package mods.sample.peripheral; import net.minecraft.tileentity.TileEntity; import net.minecraft.world.World; import dan200.computercraft.api.peripheral.IPeripheral; import dan200.computercraft.api.peripheral.IPeripheralProvider; public class PeripheralProvider implements IPeripheralProvider { @Override public IPeripheral getPeripheral(World world, int x, int y, int z, int side) { TileEntity tile = world.getTileEntity(x, y, z); if (tile != null && tile instanceof TileSamplePeripheral) { return (IPeripheral)tile; } return null; } }
解説[編集]
SamplePeripheralCore.java[編集]
Modのコアとなるクラス
- dependencies
@Mod( dependencies = SamplePeripheralCore.MOD_DEPENDENCIES) public class SamplePeripheralCore { public static final String MOD_DEPENDENCIES = "after:ComputerCraft";
@Modのdependenciesで、このmodがComputerCraftの後に読み込まれるように設定しています。
- 周辺機器のブロックとTileEntityの登録
blockSamplePeripheral = new BlockSamplePeripheral() GameRegistry.registerBlock(blockSamplePeripheral, "sample_peripheral");
GameRegistry.registerTileEntity(TileSamplePeripheral.class, "tile_sample_peripheral");
- PeripheralProviderの登録
ComputerCraftAPI.registerPeripheralProvider(new PeripheralProvider());
接続したComputerへ周辺機器のIPeripheral実装クラスを提供するためのIPeripheralProvider実装クラス(後述)を、ComputerCraftAPI.registerPeripheralProvider()でComputerCraftに登録します。 これは、自作周辺機器をComputerから使えるようにするために必須です。
BlockSamplePeripheral.java[編集]
周辺機器のブロック
- BlockContainerの継承
public class BlockSamplePeripheral extends BlockContainer { @Override public TileEntity createNewTileEntity(World world, int a) { return new TileSamplePeripheral(); }
周辺機器はTileEntityを持つブロックとして実装するので、BlockContainerを継承し、createNewTileEntity()で周辺機器のTileEntityのインスタンスを生成して返しています。
TileSamplePeripheral.java[編集]
周辺機器のTileEntity
- IPeripheralの実装
public class TileSamplePeripheral extends TileEntity implements IPeripheral {
今回は周辺機器のTileEntityクラスでIPeripheralも実装しています。
ちなみに、周辺機器は後述のPeripheralProviderでComputerへ提供されるため、IPeripheralはTileEntity以外のクラスで実装する事もできます。
- getType()
@Override public String getType() { return "sample"; }
周辺機器の種類を表す文字列を返します。ゲーム内のLuaプログラムではperipheral.getType()で取得したこの文字列によって周辺機器の種類を判別します。
- getMethodNames()
@Override public String[] getMethodNames() { return new String[] {}; }
Computerから呼び出せる周辺機器のメソッド名を表す文字列の配列を返します。ゲーム内のLuaプログラムではperipheral.getMethods()の戻り値になります。
今回は実装しないので空の配列を返しています。
- callMethod()
@Override public Object[] callMethod(IComputerAccess computer, ILuaContext context, int method, Object[] arguments) throws LuaException, InterruptedException { return null; }
Computerからperipheral.call()で周辺機器のメソッドを呼び出したときの処理を実装します。
今回はメソッドを実装しないので何もしません。
- attach()とdetach()
@Override public void attach(IComputerAccess computer) { } @Override public void detach(IComputerAccess computer) { }
周辺機器ブロックがComputerに接続されたとき(attach)と、取り外されたとき(detach)に呼び出されます。
今回は何もしません。
- equals()
@Override public boolean equals(IPeripheral other) { if ((other != null) && (other instanceof TileSamplePeripheral)) { return other == this; } return false; }
Computerに周辺機器が着脱されたときに現在取り付けられている周辺機器(this)が、それまで取り付けられていた周辺機器(other)と同一かどうかを調べるために呼び出されます。
周辺機器のTileEntityインスタンスが同一かどうかを比較して返しています。
PeripheralProvider.java[編集]
Computerへ周辺機器(IPeripheralの実装クラス)を提供するためのクラス
- IPeripheralProviderの実装
public class PeripheralProvider implements IPeripheralProvider {
IPeripheralProviderを実装します。
前述の通り、このクラスのインスタンスをComputerCraftAPI.registerPeripheralProvider()でComputerCraftへ登録します。
- getPeripheral()
@Override public IPeripheral getPeripheral(World world, int x, int y, int z, int side) { TileEntity tile = world.getTileEntity(x, y, z); if (tile != null && tile instanceof TileSamplePeripheral) { return (IPeripheral)tile; } return null; }
周辺機器がComputerへ接続されたときに呼び出されます。x, y, zは周辺機器の座標、sideは周辺機器から見た接続方向です。
今回は周辺機器のTileEntityでIPeripheralを実装したため、座標から周辺機器のTileEntityを取得し、IPeripheralのインスタンスとして返しています。