[286] | 1 | // This file is a part of Framsticks SDK. http://www.framsticks.com/ |
---|
| 2 | // Copyright (C) 1999-2015 Maciej Komosinski and Szymon Ulatowski. |
---|
| 3 | // See LICENSE.txt for details. |
---|
[151] | 4 | |
---|
[145] | 5 | #ifndef _PRECONFIGURED_GENETICS_H_ |
---|
| 6 | #define _PRECONFIGURED_GENETICS_H_ |
---|
| 7 | |
---|
| 8 | #include "genman.h" |
---|
| 9 | #include "defgenoconv.h" |
---|
| 10 | |
---|
| 11 | /** This class handles a typical initialization procedure and configuration of genetics: |
---|
| 12 | - adds converters between genetic formats as configured by gen-config.h, |
---|
| 13 | - validation of genotypes by dedicated genetic operators, or by conversion to f0 if no genetic operator is found that can validate a genotype. |
---|
| 14 | */ |
---|
| 15 | class PreconfiguredGenetics |
---|
| 16 | { |
---|
| 17 | public: |
---|
| 18 | DefaultGenoConvManager gcm; |
---|
| 19 | GenMan genman; |
---|
[348] | 20 | Geno::Validators validators; |
---|
[145] | 21 | ModelGenoValidator model_validator; //validation through conversion |
---|
| 22 | |
---|
| 23 | PreconfiguredGenetics() |
---|
| 24 | { |
---|
| 25 | gcm.addDefaultConverters(); //without converters, the application would only handle "format 0" genotypes |
---|
[551] | 26 | if (Geno::useConverters(&gcm)!=NULL) |
---|
| 27 | logPrintf("PreconfiguredGenetics", "init", LOG_WARN, "Geno converters already configured"); //someone is using multiple PreconfiguredGenetics objects? (or other potentially unsafe configuration) |
---|
| 28 | if (Geno::useValidators(&validators)!=NULL) |
---|
| 29 | logPrintf("PreconfiguredGenetics", "init", LOG_WARN, "Geno validators already configured"); |
---|
[348] | 30 | validators+=&genman; //primary validation: use the extended validity checking (through dedicated genetic operators) |
---|
| 31 | validators+=&model_validator; //secondary validation: this simple validator handles all cases when there is no dedicated genetic validation operator, but a converter for a particular format is available. Converters may be less strict in detecting invalid genotypes but using them and checking whether they produced a valid f0 genotype is also some way to tell whether the initial genotype was valid. Otherwise, without dedicated genetic validation operator, we would have no validity check at all. |
---|
[145] | 32 | } |
---|
[551] | 33 | |
---|
| 34 | ~PreconfiguredGenetics() |
---|
| 35 | { |
---|
| 36 | Geno::useConverters(NULL); |
---|
| 37 | Geno::useValidators(NULL); |
---|
| 38 | } |
---|
[145] | 39 | }; |
---|
| 40 | |
---|
| 41 | #endif |
---|