4
4
import net .minecraft .item .ItemStack ;
5
5
import net .minecraft .nbt .NBTTagCompound ;
6
6
import net .minecraft .nbt .NBTTagList ;
7
+ import net .minecraft .nbt .NBTTagString ;
7
8
import org .apache .commons .lang3 .tuple .Pair ;
8
9
9
10
/**
20
21
* copy this class while keeping the package name, to avoid conflicts if this
21
22
* class gets updated.
22
23
*/
24
+ @ SuppressWarnings ("unused" )
23
25
public final class IMC {
24
26
/**
25
27
* Register a callback that is used as a filter for assembler templates.
@@ -37,7 +39,7 @@ public final class IMC {
37
39
*
38
40
* @param callback the callback to register as a filtering method.
39
41
*/
40
- public static void registerAssemblerFilter (String callback ) {
42
+ public static void registerAssemblerFilter (final String callback ) {
41
43
FMLInterModComms .sendMessage (MOD_ID , "registerAssemblerFilter" , callback );
42
44
}
43
45
@@ -98,7 +100,7 @@ public static void registerAssemblerFilter(String callback) {
98
100
* with only two card slots will pass <tt>null</tt>
99
101
* for the third component slot. Up to nine.
100
102
*/
101
- public static void registerAssemblerTemplate (String name , String select , String validate , String assemble , Class host , int [] containerTiers , int [] upgradeTiers , Iterable <Pair <String , Integer >> componentSlots ) {
103
+ public static void registerAssemblerTemplate (final String name , final String select , final String validate , final String assemble , final Class host , final int [] containerTiers , final int [] upgradeTiers , final Iterable <Pair <String , Integer >> componentSlots ) {
102
104
final NBTTagCompound nbt = new NBTTagCompound ();
103
105
if (name != null ) {
104
106
nbt .setString ("name" , name );
@@ -187,7 +189,7 @@ public static void registerAssemblerTemplate(String name, String select, String
187
189
* @param disassemble callback used to apply a template and extract
188
190
* ingredients from an item.
189
191
*/
190
- public static void registerDisassemblerTemplate (String name , String select , String disassemble ) {
192
+ public static void registerDisassemblerTemplate (final String name , final String select , final String disassemble ) {
191
193
final NBTTagCompound nbt = new NBTTagCompound ();
192
194
if (name != null ) {
193
195
nbt .setString ("name" , name );
@@ -218,7 +220,7 @@ public static void registerDisassemblerTemplate(String name, String select, Stri
218
220
*
219
221
* @param callback the callback to register as a durability provider.
220
222
*/
221
- public static void registerToolDurabilityProvider (String callback ) {
223
+ public static void registerToolDurabilityProvider (final String callback ) {
222
224
FMLInterModComms .sendMessage (MOD_ID , "registerToolDurabilityProvider" , callback );
223
225
}
224
226
@@ -234,15 +236,15 @@ public static void registerToolDurabilityProvider(String callback) {
234
236
* <p/>
235
237
* Signature of callbacks must be:
236
238
* <pre>
237
- * boolean callback(EntityPlayer player, int x, int y, int z , boolean changeDurability)
239
+ * boolean callback(EntityPlayer player, BlockPos pos , boolean changeDurability)
238
240
* </pre>
239
241
* <p/>
240
242
* Callbacks must be declared as <tt>packagePath.className.methodName</tt>.
241
243
* For example: <tt>com.example.Integration.callbackMethod</tt>.
242
244
*
243
245
* @param callback the callback to register as a wrench tool handler.
244
246
*/
245
- public static void registerWrenchTool (String callback ) {
247
+ public static void registerWrenchTool (final String callback ) {
246
248
FMLInterModComms .sendMessage (MOD_ID , "registerWrenchTool" , callback );
247
249
}
248
250
@@ -265,7 +267,7 @@ public static void registerWrenchTool(String callback) {
265
267
*
266
268
* @param callback the callback to register as a wrench tool tester.
267
269
*/
268
- public static void registerWrenchToolCheck (String callback ) {
270
+ public static void registerWrenchToolCheck (final String callback ) {
269
271
FMLInterModComms .sendMessage (MOD_ID , "registerWrenchToolCheck" , callback );
270
272
}
271
273
@@ -291,7 +293,7 @@ public static void registerWrenchToolCheck(String callback) {
291
293
* @param canCharge the callback to register for checking chargeability.
292
294
* @param charge the callback to register for charging items.
293
295
*/
294
- public static void registerItemCharge (String name , String canCharge , String charge ) {
296
+ public static void registerItemCharge (final String name , final String canCharge , final String charge ) {
295
297
final NBTTagCompound nbt = new NBTTagCompound ();
296
298
nbt .setString ("name" , name );
297
299
nbt .setString ("canCharge" , canCharge );
@@ -319,7 +321,7 @@ public static void registerItemCharge(String name, String canCharge, String char
319
321
*
320
322
* @param callback the callback to register as an ink provider.
321
323
*/
322
- public static void registerInkProvider (String callback ) {
324
+ public static void registerInkProvider (final String callback ) {
323
325
FMLInterModComms .sendMessage (MOD_ID , "registerInkProvider" , callback );
324
326
}
325
327
@@ -332,7 +334,7 @@ public static void registerInkProvider(String callback) {
332
334
*
333
335
* @param peripheral the class of the peripheral to blacklist.
334
336
*/
335
- public static void blacklistPeripheral (Class peripheral ) {
337
+ public static void blacklistPeripheral (final Class peripheral ) {
336
338
FMLInterModComms .sendMessage (MOD_ID , "blacklistPeripheral" , peripheral .getName ());
337
339
}
338
340
@@ -351,7 +353,7 @@ public static void blacklistPeripheral(Class peripheral) {
351
353
* @param host the class of the host to blacklist the component for.
352
354
* @param stack the item stack representing the blacklisted component.
353
355
*/
354
- public static void blacklistHost (String name , Class host , ItemStack stack ) {
356
+ public static void blacklistHost (final String name , final Class host , final ItemStack stack ) {
355
357
final NBTTagCompound nbt = new NBTTagCompound ();
356
358
nbt .setString ("name" , name );
357
359
nbt .setString ("host" , host .getName ());
@@ -372,6 +374,44 @@ public static void registerCustomPowerSystem() {
372
374
FMLInterModComms .sendMessage (MOD_ID , "registerCustomPowerSystem" , "true" );
373
375
}
374
376
377
+ /**
378
+ * Register a mapping of program name to loot disk.
379
+ * <p/>
380
+ * The table of mappings is made available to machines to allow displaying
381
+ * a message to the user telling her on which floppy disk to find the program
382
+ * they were trying to run.
383
+ * <p/>
384
+ * For Lua programs, this should be the program <em>name</em>, i.e. the file
385
+ * name without the <code>.lua</code> extension.
386
+ * <p/>
387
+ * The list of architectures is optional, if it is not specified this mapping
388
+ * will be made available to all architectures. It allows filtering since
389
+ * typically programs will be written for one specific architecture type, e.g.
390
+ * Lua programs will not (directly) work on a MIPS architecture. The name
391
+ * specified is the in the {@link li.cil.oc.api.machine.Architecture.Name}
392
+ * annotation of the architecture (also shown in the CPU tooltip).
393
+ * <p/>
394
+ * The architecture names for Lua are <code>Lua 5.2</code>, <code>Lua 5.3</code>
395
+ * and <code>LuaJ</code> for example.
396
+ *
397
+ * @param programName the name of the program.
398
+ * @param diskLabel the label of the disk the program is on.
399
+ * @param architectures the names of the architectures this entry applies to.
400
+ */
401
+ public static void registerProgramDiskLabel (final String programName , final String diskLabel , final String ... architectures ) {
402
+ final NBTTagCompound nbt = new NBTTagCompound ();
403
+ nbt .setString ("program" , programName );
404
+ nbt .setString ("label" , diskLabel );
405
+ if (architectures != null && architectures .length > 0 ) {
406
+ final NBTTagList architecturesNbt = new NBTTagList ();
407
+ for (final String architecture : architectures ) {
408
+ architecturesNbt .appendTag (new NBTTagString (architecture ));
409
+ }
410
+ nbt .setTag ("architectures" , architecturesNbt );
411
+ }
412
+ FMLInterModComms .sendMessage (MOD_ID , "registerProgramDiskLabel" , nbt );
413
+ }
414
+
375
415
// ----------------------------------------------------------------------- //
376
416
377
417
private static final String MOD_ID = "OpenComputers" ;
0 commit comments