RCL - RoboCLuedo  v1.0
Francesco Ganci - S4143910 - Experimental Robotics Lab - Assignment 1

◆ generateMystery()

void generateMystery ( std::vector< std::string >  list_who,
std::vector< std::string >  list_where,
std::vector< std::string >  list_what,
int  tot_hints 
)

generate the solution of the case and the hints

This is called once when the system starts. Here is how it works:

  1. shuffle of the three arrays from the text files
  2. generation of the solution and its ID from 0 to (tot_hints-1)
  3. for each index from 0 to tot_hints-1 (the available IDs):
    1. if the ID is the one choosen before for the solution, place the elements of the solution, then continue
    2. else, for each index from 0 to MAX_SIZE_HINTS -1:
      1. generate randomly one hint with the given ID and push inside the array
      2. or don't generate
  4. shuffle the final list
Parameters
list_whothe list of the individuals PERSON from file
list_wherethe list of the individuals PLACE from file
list_whatthelist of the individuals WEAPON from file
tot_hintsthe maximum number of hints ID the oracle must generate
Todo:
could this algorithm be further improved?
Todo:
let the user to modify this value instead of putting a constant.
Todo:
there should be parameters for altering the probabilities in generating the hints belonging to an ID

Definition at line 314 of file cluedo_oracle.cpp.

References chooseHintFrom(), OUTLABEL, solution_what, solution_where, and solution_who.

+ Here is the call graph for this function: