IDEAS FOR RYZOM


Prospect logic

* it then checks them against prospect action filter (grade, type, ecosystem) and deposit filter (grade, type, ecosystem, time, weather)

One thing at a time. Quoted is all I'm currently talking about. Checks happens serially not in parallel (?). So order in which they happen is (should be) relevant.*

First of all, generated results that are about to be checked against prospecting action filters need to be sorted by:
a) grade
b) mat brick

Throwing unsorted list/array/w.e. into checking procedures will always generate a mess that's then difficult to make sense of.

Thinking some more about prospecting actions, I think we should just be given ability to build grade filter ourselves.

Current stanzas get converted into series of single-grade stanzas; eg. 'Up to Choice' becomes 'Basic', 'Fine', 'Choice'
+ new stanza 'Inclusive' which tells server we want all matching nodes. This allows backward compatibility.

Next, new single-grade stanzas get introduced and we can use those to build grade filters as we see fit. These then operate in two possible modes (defined by stanza):
'Exclusive' = Return list of first matched
'Inclusive' = Return list of all matched

'Inclusive' example:
Prospect action is 'Excellent', 'Choice', 'Fine' + 'Inclusive'
Generated list has some 'Choice' and some 'Fine' but no 'Excels'. List is sorted so "E" is at the top (none), "C" in the middle (some) and "F" at the bottom (some). Then server goes from top to bottom and fills out list to return until w/e decides the length is met. So if, let's say, max 8 nodes are to be returned and there are 2 'Choice' and 9 'Fine' sources in generated list, we get 2 'Choice' and 6 'Fine'.
(It's even simpler if max number of sources is passed to generating procedure)

'Exclusive' example would be:
Prospect action is 'Choice', 'Fine' + 'Exclusive'. If there are no 'Choice' mats in generated list, server returns list of 'Fine' nodes. If there are, we get list of 'Choice' nodes but no 'Fine'.

This scheme also simplifies which fail messages to return. If there was no 'Excel' stanza in prospect then whole season/weather/time block can be skipped. I would even go so far as to skip that in every case except if 'Excel' or 'Sup' are alone in prospect action.

Additional complication would be disabling 'Inc/Exc' options during action build until at least two grade stanzas are in the list.

--------------
* Some type of checks could actually be parallelised fairly well. For instance distance and mat checks are independent but I suppose then one has to get into whole race conditions, shared variables and other assorted pain of threads so probably not worth it.
Show topic
Last visit Wednesday, 18 September 13:30:15 UTC
P_:PLAYER

powered by ryzom-api