I think you are missing the part where I said I don't want a crafting table for every recipe.
But, just in case you don't see the potential in the maker/stamper *digs through hours of video*, here ya go: Relevant bit starts at 1:10.
Oh, that's very helpful to explain how it works. So it's paper, then 9 items to fill the recipe? How do you set empty space in a recipe?
But it's tricky to use without a computer. I guess you could use that with redpower sorters set to roundrobin to fill the packets up on demand. But then you'd have a sorter per recipe instead of a crafting table, which doesn't make all that much difference.
That's pretty cool. combined with rednet messages you could supply it from all over the world.If you are talking about the code specific to the CCCrafter, sure:
setPattern(...): Uses item ID's to define the recipe for the item it is creating. nil is used as a 'blank' slot. Goes left to right, top to bottom.
craft(slot): Makes the items with the materials at hand, and puts the item into (slot).
list(): Tells you what items are in what slots
get(slot): Tells you what item (if any), and how many of that item, is in that slot.
Therefore, a simple crafting program would be:
rp.setBundledOutput(to get items for the crafting, it pulses redstone signals to trigger their being sent to the CCCrafter)
setPattern(...)
-- basically, makes the crafting recipe
craft(18)
-- makes the item, and puts it in the final item slot
rp.setBundledOutput(to get the finished product out, possibly pulsing a transposer on the CCCrafter to pull it out)
setPattern(nil, nil, nil, nil, nil, nil, nil, nil, nil,)
--clears the recipe for the next use
The first line could be quite complicated, or it could simply be a turtle fetching the items required.
But I still won't use it on account of it requiring programming. To me that's just too much like work. Of course I could download the program from somewhere else, but I like to feel proud of my creations. If someone else did it all I might as well download a map somewhere
And it's awesome to see a factory floor full of golems scurrying about when you tell them to make a redstone engine