Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Suggestion: AE2 getItemByLabel(label) #856

Closed
Keridos opened this issue Jan 26, 2015 · 5 comments
Closed

Suggestion: AE2 getItemByLabel(label) #856

Keridos opened this issue Jan 26, 2015 · 5 comments
Milestone

Comments

@Keridos
Copy link
Contributor

Keridos commented Jan 26, 2015

Currently We can only get a List of items in the network. So when we try to maintain a specific amount of items for some items, we need to iterate over the items we want to keep stocked, then iterate over the getCraftables table and after that iterate over the getItemsInNetwork table. With 150 craftables and 2200 items in network, the worst case scenario is about 330k iterations for EACH item we want to have maintained at a specific level. This results in extremely long computation times and currently there seems to be no way to alter this in any way. So I propose to add the function getItemByLabel(label) function that returns the itemStack of the item in the network. Label would be the one that craftables[entry].getItemStack().label would be. Alternatively use the internal name of the item, f.ex: minecraft:planks. Or add in both ways.

@fnuecke
Copy link
Member

fnuecke commented Jan 27, 2015

Hmm, maybe an optional parameter to the existing methods that defines a filter (like id=minecraft:dirt or label=Bucket)?

@theron61
Copy link

theron61 commented Feb 3, 2015

I would like the call to reference the database component as the match should take NBT into account. Further, how can we handle multiple references to the same item?

@fnuecke
Copy link
Member

fnuecke commented Feb 5, 2015

Using the db for this is a great idea. Not sure what you mean with 'multiple references to the same item'?

@Keridos
Copy link
Contributor Author

Keridos commented Feb 5, 2015

Another way would be like the old bug was, but maybe return the itemStack that is in the Network as a separate table for the Craftables. That would be optional though.

@theron61
Copy link

theron61 commented Feb 6, 2015

I retract the multiple references question. I thought you could set multiple priorities on like patterns to have more than one way to craft the same item. Even still, it should still be a single reference.

@fnuecke fnuecke added this to the v1.5.5 milestone Mar 30, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants