appeng.api.networking.crafting.ICraftingLink Java Examples

The following examples show how to use appeng.api.networking.crafting.ICraftingLink. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CraftingRequester.java    From OpenPeripheral-Integration with MIT License 4 votes vote down vote up
@Override
public IAEItemStack injectCraftedItems(ICraftingLink link, IAEItemStack items, Actionable mode) {
	return items;
}
 
Example #2
Source File: CraftingRequester.java    From OpenPeripheral-Integration with MIT License 4 votes vote down vote up
@Override
public void jobStateChange(ICraftingLink link) {
	access.signal(ModuleAppEng.CC_EVENT_STATE_CHANGED, requestedStack, link.isCanceled()? "canceled" : "done");
}
 
Example #3
Source File: CraftingRequester.java    From OpenPeripheral-Integration with MIT License 4 votes vote down vote up
@Override
public ImmutableSet<ICraftingLink> getRequestedJobs() {
	return null;
}
 
Example #4
Source File: IStorageHelper.java    From Framez with GNU General Public License v3.0 2 votes vote down vote up
/**
 * load a crafting link from nbt data.
 * 
 * @param data to be loaded data
 * @return crafting link
 */
ICraftingLink loadCraftingLink(NBTTagCompound data, ICraftingRequester req);
 
Example #5
Source File: IStorageHelper.java    From PneumaticCraft with GNU General Public License v3.0 2 votes vote down vote up
/**
 * load a crafting link from nbt data.
 *
 * @param data to be loaded data
 *
 * @return crafting link
 */
ICraftingLink loadCraftingLink( NBTTagCompound data, ICraftingRequester req );