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. |
---|
4 | |
---|
5 | #include <ctype.h> |
---|
6 | #include <frams/genetics/defgenoconv.h> |
---|
7 | #include <frams/model/model.h> |
---|
8 | #include <frams/util/multimap.h> |
---|
9 | |
---|
10 | #include "printconvmap.h" |
---|
11 | #include <frams/loggers/loggertostdout.h> |
---|
12 | |
---|
13 | /** |
---|
14 | @file |
---|
15 | Sample code: Genotype converter class |
---|
16 | */ |
---|
17 | |
---|
18 | /// Sample Geno converter not using Model class. |
---|
19 | /// (this converter generates the same output for each input). |
---|
20 | /// such a converter is responsible for doing valid |
---|
21 | /// f0 (or other format) output and storing temporary data |
---|
22 | class GenoConv_Test: public GenoConverter |
---|
23 | { |
---|
24 | public: |
---|
25 | GenoConv_Test() |
---|
26 | { |
---|
27 | name="Test Converter"; |
---|
28 | in_format='x'; |
---|
29 | } |
---|
30 | SString convert(SString &i,MultiMap *map) {return SString("after conversion...");} |
---|
31 | ~GenoConv_Test() {} |
---|
32 | }; |
---|
33 | |
---|
34 | /// Sample Geno converter using Model class. |
---|
35 | /// (this converter generates the same output for each input). |
---|
36 | class GenoConv_Test2: public GenoConverter |
---|
37 | { |
---|
38 | public: |
---|
39 | GenoConv_Test2() |
---|
40 | { |
---|
41 | name="Test Converter #2"; |
---|
42 | in_format='y'; |
---|
43 | } |
---|
44 | SString convert(SString &i,MultiMap *map) |
---|
45 | { |
---|
46 | Model mod; |
---|
47 | mod.open(); |
---|
48 | mod.singleStepBuild("p:"); |
---|
49 | mod.singleStepBuild("p:"); |
---|
50 | mod.singleStepBuild("j:0,1"); |
---|
51 | mod.getPart(1)->p=Pt3D(0,0.2,-1); |
---|
52 | mod.close(); |
---|
53 | return mod.getGeno().getGene(); |
---|
54 | } |
---|
55 | ~GenoConv_Test2() {} |
---|
56 | }; |
---|
57 | |
---|
58 | /// Sample Geno converter supporting conversion mapping. |
---|
59 | /// the conversion is very simple: any sequence of <digit><character> |
---|
60 | /// (but not inside neurons) is replaced by the repeated sequence of the character |
---|
61 | class GenoConv_Test3: public GenoConverter |
---|
62 | { |
---|
63 | public: |
---|
64 | GenoConv_Test3() |
---|
65 | { |
---|
66 | name="Test Converter #3"; |
---|
67 | in_format='z'; |
---|
68 | out_format='1'; |
---|
69 | mapsupport=1; |
---|
70 | } |
---|
71 | SString convert(SString &in,MultiMap *map); |
---|
72 | ~GenoConv_Test3() {} |
---|
73 | }; |
---|
74 | |
---|
75 | /** main converting routine - most important: direct conversion map example */ |
---|
76 | SString GenoConv_Test3::convert(SString &in,MultiMap *map) |
---|
77 | { |
---|
78 | SString dst; |
---|
79 | const char* src=in.c_str(); |
---|
80 | const char* t; |
---|
81 | int insideneuron=0; |
---|
82 | int n; |
---|
83 | for(t=src;*t;t++) |
---|
84 | { |
---|
85 | if (insideneuron&&*t==']') insideneuron=0; |
---|
86 | if (*t=='[') insideneuron=1; |
---|
87 | if ((!insideneuron)&&isdigit(*t)&&t[1]) |
---|
88 | { // special sequence detected! |
---|
89 | n=*t-'0'; |
---|
90 | t++; // *t will be repeated 'n' times |
---|
91 | for (int i=0;i<n;i++) |
---|
92 | dst+=*t; |
---|
93 | if (map) // fill in the map only if requested |
---|
94 | map->add(t-src, t-src, dst.len()-n, dst.len()-1); |
---|
95 | // meaning: source character (t-src) becomes (dst.len()-n ... dst.len()-1) |
---|
96 | } |
---|
97 | else |
---|
98 | { |
---|
99 | dst+=*t; |
---|
100 | if (map) |
---|
101 | map->add(t-src, t-src, dst.len()-1, dst.len()-1); |
---|
102 | // meaning: map single to single character: (t-src) into (dst.len()-1) |
---|
103 | } |
---|
104 | } |
---|
105 | return dst; |
---|
106 | } |
---|
107 | |
---|
108 | |
---|
109 | /////////////////////////////////////////////// |
---|
110 | |
---|
111 | void printGen(Geno &g) |
---|
112 | { |
---|
113 | printf("Genotype:\n%s\nFormat: %c\nValid: %s\nComment: %s\n", |
---|
114 | g.getGene().c_str(),g.getFormat(),g.isValid()?"yes":"no",g.getComment().c_str()); |
---|
115 | } |
---|
116 | |
---|
117 | int main(int argc,char *argv[]) |
---|
118 | { |
---|
119 | LoggerToStdout messages_to_stdout(LoggerBase::Enable); |
---|
120 | |
---|
121 | DefaultGenoConvManager gcm; |
---|
122 | gcm.addDefaultConverters(); |
---|
123 | gcm.addConverter(new GenoConv_Test()); |
---|
124 | gcm.addConverter(new GenoConv_Test2()); |
---|
125 | gcm.addConverter(new GenoConv_Test3()); |
---|
126 | Geno::useConverters(&gcm); |
---|
127 | |
---|
128 | Geno::Validators validators; |
---|
129 | ModelGenoValidator model_validator; |
---|
130 | validators+=&model_validator; |
---|
131 | Geno::useValidators(&validators); |
---|
132 | |
---|
133 | const char* src=(argc>1)?argv[1]:"X"; |
---|
134 | char dst=(argc>2)?*argv[2]:'0'; |
---|
135 | |
---|
136 | printf("*** source genotype:\n"); |
---|
137 | Geno g1(src); |
---|
138 | printGen(g1); |
---|
139 | MultiMap m; |
---|
140 | Geno g2=g1.getConverted(dst,&m); |
---|
141 | printf("*** converted to f%c:\n",dst); |
---|
142 | printGen(g2); |
---|
143 | if (m.isEmpty()) |
---|
144 | printf("(conversion map not available)\n"); |
---|
145 | else |
---|
146 | { |
---|
147 | printf("conversion map:\n"); |
---|
148 | m.print(); |
---|
149 | printConvMap(g1.getGene(),g2.getGene(),m); |
---|
150 | printf("reverse conversion map:\n"); |
---|
151 | MultiMap rm; |
---|
152 | rm.addReversed(m); |
---|
153 | rm.print(); |
---|
154 | printConvMap(g2.getGene(),g1.getGene(),rm); |
---|
155 | } |
---|
156 | |
---|
157 | Model mod1(g1,1); |
---|
158 | printf("\nmodel map for f%c genotype:\n",g1.getFormat()); |
---|
159 | printModelMap(g1.getGene(),mod1.getMap()); |
---|
160 | Model mod2(g2,1); |
---|
161 | printf("\nmodel map for f%c genotype:\n",g2.getFormat()); |
---|
162 | printModelMap(g2.getGene(),mod2.getMap()); |
---|
163 | return 0; |
---|
164 | } |
---|