Rawrmy’s Crafting System

This week was spent working on Rawrmy’s escort and crafting system.

One of the things that I struggled with this week was the limitations of Django’s queryset API – while it’s both powerful and flexible, there are a few things that it cannot do. This problem reared it’s head when I was working on the crafting system.

When a player goes to craft an item, they are presented with a multi-select that will display all of the craftable items in their inventory. They then select which items they would like to craft with, and we retrieve anything that they can make out of them.

The problem, here, is that ‘ingredients’ on our craftables is a ManyToManyField – and I wanted to retrieve an exact match. For example, if a player had tried to craft with ‘flour’ and ‘yeast’, any craftable with ‘flour’ or ‘yeast’ and not ’sugar’ would be returned. Retrieving the ‘flour’ and ‘yeast’ craftables was easy, using an __in query:

craftables = Craftables.objects.filter(ingredients__in=form.cleaned_data['ingredients])[php]
However, making sure that the ’sugar’ craftables were not retrieved was slightly more difficult(and took me a while to figure out). Essentially, the process involves first creating a list of ingredients that are not in the group of selected ingredients, and then excluding any craftable with ingredients in that list(after we filtered). The new code looked something like this:

	[php]bad_ids = [ingredient.id for ingredient in form.cleaned_data['ingredients']]
	craftable = Craftable.objects.filter(ingredients__in=form.cleaned_data['ingredients']).exclude(ingredients__in=Item.objects.exclude(id__in=bad_ids))

Unfortunately, that only seemed to work in some cases – and as a result, I’ve been debugging and rebugging the same piece of code for most of the week.

This slowdown is unfortunate – but I think that, moving forward, the crafting system is going to get replaced with a simpler two dropdown system and learnable recipes.

Completed this week:

  • Laid the groundwork for crafting and the escort system.

Still to do:

  • Fix the bugs in crafting item retrieval – they’re a gamebreaker right now.