I was wondering which is the simplest and most configurable way to obtain what I need in the following situation:
- I have a counter, let's call it
Xthat will be used to extract one of the sets - I have a variable number of sets
S1, S2, ..which can be considered total ordered between themselves - I want to mix these sets in a fuzzy way so that for
X = 0it will give meS1, for, let's say,X = 20it will give meS1with 70% chance, andS2with 30% chance - Increasing
Xwill decrease probability ofS1until 0% while increasingS2up to 100%, then there can be a zone in which it will always give meS2until a new threshold for whichS2will start to decrease andS3will start getting its chance and so on
I know how to do it by hardcoding everything, but since it will need some tweaking I would like to apply a solution which easily allows me to configure how many sets I have and the single thresholds (start/end of increasing probability and start/end of decreasing prob). Of course I don't need any intersection between more than 2 sets each and a linear increase/decrease of probability is ok.. any good clues?
Thanks in advance!