[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. |
---|
[109] | 4 | |
---|
| 5 | #ifndef _MODEL_H_ |
---|
| 6 | #define _MODEL_H_ |
---|
| 7 | |
---|
| 8 | #include <common/nonstd_math.h> |
---|
| 9 | #include <stdlib.h> |
---|
| 10 | #include <stdio.h> |
---|
| 11 | |
---|
| 12 | #include "modelparts.h" |
---|
| 13 | #include <frams/util/advlist.h> |
---|
| 14 | #include <frams/util/usertags.h> |
---|
| 15 | |
---|
| 16 | extern ParamEntry f0_model_paramtab[]; |
---|
| 17 | |
---|
| 18 | //#define EASYMAPDEBUG |
---|
| 19 | |
---|
| 20 | enum ModelBuildStatus {empty,building,invalid,valid}; |
---|
| 21 | |
---|
| 22 | class MultiMap; |
---|
| 23 | |
---|
| 24 | class VisualModel; |
---|
| 25 | |
---|
| 26 | /** |
---|
[408] | 27 | "Model" is the skeleton of the Framsticks creature. |
---|
[109] | 28 | This object can be used for 2 purposes: |
---|
[408] | 29 | - you can build a creature from any supported Framsticks genotype |
---|
[109] | 30 | format |
---|
| 31 | - or generate low level f0 genotype from existing construct. |
---|
| 32 | |
---|
| 33 | In both cases you have access to geometry and neuron net data. |
---|
| 34 | Using this standard class assures compatibility and good |
---|
[408] | 35 | integration with core Framsticks engine. |
---|
[109] | 36 | |
---|
| 37 | Model contains 3 kinds of objects: |
---|
| 38 | - Parts (class Part). |
---|
| 39 | - Joints (class Joint). Each Joint is connected with 2 Parts. (@see Joint::attachToParts()). |
---|
| 40 | - Neurons (class Neuro). Neuron can have 0 or more inputs - other neurons. (@see Neuro::addInput()). |
---|
| 41 | Each Neuron can be located on the physical structure, i.e. it can ba attached to Part or Joint |
---|
| 42 | (@see Neuro::attachToPart(), Neuro::attachToJoint()). |
---|
| 43 | |
---|
| 44 | \f[(dot) |
---|
| 45 | digraph Model |
---|
| 46 | { |
---|
| 47 | Joint1; Joint2; |
---|
| 48 | node [ shape=box ] |
---|
| 49 | Part1; Part2; Part3; |
---|
| 50 | Joint1 -> Part1; Joint1 -> Part2; Joint2 -> Part2; Joint2 -> Part3 |
---|
| 51 | node [ shape=diamond ] |
---|
| 52 | Neuro1 -> Neuro2; Neuro1 -> Neuro3; Neuro2 -> Neuro2; Neuro3 -> Neuro2; |
---|
| 53 | Neuro1 -> Part1; Neuro2 -> Joint2; |
---|
| 54 | } |
---|
| 55 | \f] |
---|
| 56 | */ |
---|
| 57 | |
---|
| 58 | class Model: public DestrBase |
---|
| 59 | { |
---|
| 60 | protected: |
---|
| 61 | Geno geno,f0geno; |
---|
| 62 | char modelfromgenotype; |
---|
| 63 | char f0genoknown; |
---|
| 64 | /// make model map in build() |
---|
| 65 | bool autobuildmaps; |
---|
| 66 | /// valid if build from f0 genotype |
---|
| 67 | int f0errorposition; |
---|
| 68 | /// valid if build from f0 genotype |
---|
| 69 | int f0warnposition; |
---|
| 70 | |
---|
| 71 | ModelBuildStatus buildstatus; |
---|
| 72 | /// NULL if the map is not (yet) created |
---|
| 73 | MultiMap *map,*f0map; |
---|
| 74 | |
---|
| 75 | SList parts,joints,neurons; |
---|
| 76 | char partmappingchanged; |
---|
| 77 | |
---|
| 78 | #ifdef MODEL_V1_COMPATIBLE |
---|
| 79 | /** NeuroCount value. |
---|
| 80 | compatibility_neurocount = -1 if its value is unknown and the layout is not compatible |
---|
| 81 | @see reorderToOldLayout() |
---|
| 82 | */ |
---|
| 83 | int oldneurocount; |
---|
| 84 | char oldconnections; |
---|
| 85 | |
---|
| 86 | /** calculate oldNeuroCount */ |
---|
| 87 | void calcOldNeuroCount(); |
---|
| 88 | /** some new calls can invalidate old compatibility data */ |
---|
| 89 | void invalidateOldNeuroCount() {oldneurocount=-1;} |
---|
| 90 | /** |
---|
| 91 | for compatibility with old NeuroClass the layout of Neurons |
---|
| 92 | is changed when old 'Neuro' accessing methods are in use. |
---|
| 93 | Neurons: |
---|
| 94 | 0 .. compatibility_neurocount-1 : old Neurons (class "N") |
---|
| 95 | compatibility_neurocount .. neurons.size()-1 : other units |
---|
| 96 | */ |
---|
| 97 | int reorderToOldLayout(); |
---|
| 98 | |
---|
| 99 | /** check if compatibility should be preserved */ |
---|
| 100 | int hasOldNeuroLayout() {return oldneurocount>=0;} |
---|
| 101 | |
---|
| 102 | /** add inputs to the old "-" units. |
---|
| 103 | @return 1=ok, 0=invalid input detected */ |
---|
| 104 | int addOldConnectionsInputs(); |
---|
| 105 | #endif |
---|
| 106 | |
---|
| 107 | void internalCopy(const Model &mod); |
---|
| 108 | |
---|
| 109 | /// make the model from current genotype |
---|
| 110 | void build(); |
---|
| 111 | |
---|
| 112 | friend class NeuroNetFactory; |
---|
| 113 | friend class VisualModel; |
---|
| 114 | friend class GLVisualModel; |
---|
| 115 | friend class Creature; |
---|
| 116 | friend class PartBase; |
---|
| 117 | |
---|
| 118 | int checklevel; |
---|
| 119 | |
---|
[269] | 120 | public: |
---|
| 121 | enum Shape {SHAPE_UNKNOWN,SHAPE_ILLEGAL,SHAPE_OLD,SHAPE_NEW}; |
---|
| 122 | protected: |
---|
| 123 | Shape shape; |
---|
| 124 | |
---|
[109] | 125 | void updateNeuroRefno(); // set Neuro::refno for all neurons |
---|
| 126 | int internalcheck(int final); |
---|
| 127 | |
---|
| 128 | void moveNeuro(int oldpos,int newpos); |
---|
| 129 | |
---|
| 130 | void init(const Geno &srcgen); |
---|
| 131 | void init(); |
---|
| 132 | |
---|
| 133 | void delMap(); |
---|
| 134 | void delF0Map(); |
---|
| 135 | void initMap(); |
---|
| 136 | void initF0Map(); |
---|
| 137 | |
---|
| 138 | public: |
---|
| 139 | /** get current model state. |
---|
| 140 | \f[(dot) |
---|
| 141 | digraph M |
---|
| 142 | { |
---|
| 143 | node [fontsize=12] |
---|
| 144 | edge [fontsize=10] |
---|
| 145 | building [label="building = can be modified"] |
---|
| 146 | valid -> building [label="open()"] |
---|
| 147 | building -> valid [label="close()"] |
---|
| 148 | invalid -> building [label="open()"] |
---|
| 149 | building -> invalid [label="close() [failed]"] |
---|
| 150 | empty -> building [label="open()"] |
---|
| 151 | } |
---|
| 152 | \f] |
---|
| 153 | */ |
---|
| 154 | ModelBuildStatus getStatus() const {return buildstatus;} |
---|
| 155 | int isValid() const {return buildstatus==valid;} |
---|
| 156 | int getErrorPosition(bool includingwarnings=false); |
---|
[269] | 157 | Shape getShape() {return shape;} |
---|
[109] | 158 | |
---|
| 159 | void updateRefno(); // set ::refno for all elements |
---|
| 160 | |
---|
| 161 | /// The bounding box size. Valid if the model is valid. Read only. |
---|
| 162 | Pt3D size; |
---|
| 163 | |
---|
| 164 | SString vis_style; |
---|
| 165 | double startenergy; |
---|
| 166 | Callback delmodel_list; |
---|
| 167 | ModelUserTags userdata; |
---|
| 168 | |
---|
| 169 | /// Create empty model with invalid empty genotype |
---|
| 170 | Model(); |
---|
| 171 | |
---|
| 172 | /** Create a model based on provided genotype |
---|
| 173 | @param buildmaps if not 0, generate mapping information for the model. |
---|
| 174 | default is 0, because mapping uses additional time and memory. |
---|
| 175 | @see getMap() |
---|
| 176 | */ |
---|
| 177 | Model(const Geno &src,bool buildmaps=false); |
---|
| 178 | Model(const Model &mod,bool buildmaps=false); |
---|
| 179 | /** duplicate the model. |
---|
| 180 | the resulting object's status is 'building' (opened). |
---|
| 181 | @see getStatus() |
---|
| 182 | */ |
---|
| 183 | void operator=(const Model &source); |
---|
| 184 | |
---|
| 185 | /** move all elements from 'source' into our model object. |
---|
| 186 | 'source' becomes empty after this operation. |
---|
| 187 | the model will be opened if it is not already open. |
---|
| 188 | @see addElementsFrom(const Model &source); |
---|
| 189 | */ |
---|
| 190 | void moveElementsFrom(Model &source); |
---|
| 191 | |
---|
| 192 | /** copy all elements from 'source' into our model object |
---|
| 193 | without affecting the 'source'. |
---|
| 194 | the model will be opened if it is not already open. |
---|
| 195 | @see moveElementsFrom(Model &source); |
---|
| 196 | */ |
---|
| 197 | void addElementsFrom(const Model &source) |
---|
| 198 | {Model m(source); moveElementsFrom(m);} |
---|
| 199 | |
---|
| 200 | void operator+=(const Model &source) |
---|
| 201 | {addElementsFrom(source);} |
---|
| 202 | |
---|
| 203 | ~Model(); |
---|
| 204 | |
---|
| 205 | /** @return source genotype. |
---|
| 206 | @warn source genotype will not automatically change |
---|
| 207 | when the model is modified. this behaviour is inconsistent |
---|
| 208 | with the previous release. use getF0Geno() if you need |
---|
| 209 | the updated genotype. |
---|
| 210 | @see getF0Geno(), setGeno() |
---|
| 211 | */ |
---|
| 212 | const Geno &getGeno() const; |
---|
| 213 | |
---|
| 214 | /// change source genotype |
---|
| 215 | void setGeno(const Geno& newgeno); |
---|
| 216 | |
---|
| 217 | /** @return f0 genotype - generated from current model state |
---|
| 218 | don't use between open()-close() |
---|
| 219 | */ |
---|
| 220 | const Geno getF0Geno(); |
---|
| 221 | |
---|
| 222 | /// make f0 genotype from current construction (low level version of getF0Geno) |
---|
| 223 | void makeGeno(Geno &,MultiMap *map=0,bool handle_defaults=true); |
---|
| 224 | |
---|
[304] | 225 | /** @return Mapping from source genotype (0-based position in text) to model elements reference numbers. |
---|
| 226 | Read about how mappings work: http://www.framsticks.com/files/common/GeneticMappingsInArtificialGenomes.pdf |
---|
| 227 | The map can be empty if the mapping hasn't been requested earlier (in constructor) |
---|
[109] | 228 | or the converters don't support mapping. |
---|
[304] | 229 | If you create or modify the model using singleStepBuild() or direct manipulation |
---|
[109] | 230 | the map will be not changed or created automatically - it is your responsibility. |
---|
| 231 | @see Model(const Geno &src,int buildmaps=0), singleStepBuild(), PartBase::addMapping() |
---|
| 232 | @see clearMap() |
---|
| 233 | @see convmap |
---|
| 234 | |
---|
| 235 | */ |
---|
| 236 | MultiMap &getMap(); |
---|
| 237 | |
---|
[304] | 238 | /** Read about how mappings work: http://www.framsticks.com/files/common/GeneticMappingsInArtificialGenomes.pdf |
---|
| 239 | @return mapping from f0 genotype (0-based position in text) to model elements reference numbers |
---|
[109] | 240 | */ |
---|
| 241 | const MultiMap &getF0Map(); |
---|
| 242 | |
---|
| 243 | /** discard all mapping information for this model. |
---|
| 244 | getMap().clear() also works, but it doesn't remove mappings from model elements. |
---|
[258] | 245 | If there are any mappings, they will be incorporated into model map during close(). |
---|
[109] | 246 | @see close(), getMap(), PartBase::clearMapping() |
---|
| 247 | */ |
---|
| 248 | void clearMap(); |
---|
| 249 | |
---|
[304] | 250 | /** Generate mapping from the current genotype to the f0 genotype. |
---|
[258] | 251 | This works only if both current and f0 maps are already known. |
---|
[304] | 252 | Read about how mappings work: http://www.framsticks.com/files/common/GeneticMappingsInArtificialGenomes.pdf |
---|
[109] | 253 | @see convmap |
---|
| 254 | */ |
---|
| 255 | void getCurrentToF0Map(MultiMap& m); |
---|
| 256 | |
---|
| 257 | void setValidationLevel(int level) |
---|
| 258 | {checklevel=level;} |
---|
| 259 | |
---|
| 260 | /// calculate location of the new part connected to the existing one |
---|
| 261 | /// using delta option |
---|
| 262 | Pt3D whereDelta(const Part& start,const Pt3D& rot, const Pt3D& delta); |
---|
| 263 | |
---|
| 264 | /// create the whole model from scratch, using current genotype |
---|
| 265 | void rebuild(bool buildmaps); |
---|
| 266 | |
---|
| 267 | /// setGeno(newgeno); rebuild(); |
---|
| 268 | void rebuild(const Geno& newgeno,bool buildmaps) {setGeno(newgeno); rebuild(buildmaps);} |
---|
| 269 | |
---|
| 270 | /// reuse current model object but discard all model data |
---|
| 271 | void clear(); |
---|
| 272 | |
---|
[304] | 273 | /** Execute single line of <B>f0</B> genotype. |
---|
| 274 | Return value is non-negative reference number of the created item, |
---|
[109] | 275 | or negative value. reference number can be used to access |
---|
| 276 | the item using getPart(int), getJoint(int) and getNeuroItem(int) methods. |
---|
| 277 | @param srcrange source genotype range which will be mapped to this element |
---|
| 278 | */ |
---|
| 279 | int singleStepBuild(const SString &singleline,const MultiRange* srcrange=0); |
---|
| 280 | |
---|
| 281 | /// separate build stages (for future use) |
---|
| 282 | void checkpoint(); |
---|
| 283 | |
---|
| 284 | /// call resetDelta() on all joints |
---|
| 285 | void resetAllDelta(); |
---|
| 286 | |
---|
| 287 | /// call useDelta() on all joints |
---|
| 288 | void useAllDelta(bool yesno); |
---|
| 289 | |
---|
[304] | 290 | /// Final validity check of the model, all model data has to be available at this point. |
---|
| 291 | /// If the model was modified, the genotype will be also updated. |
---|
| 292 | /// It also calls "validate" with all side effects. |
---|
[109] | 293 | /// @return > 0 means "valid" |
---|
| 294 | int close(); |
---|
| 295 | |
---|
[304] | 296 | /// Enable model building. |
---|
| 297 | /// You should use it if you need to create new model, modify the model after close |
---|
[109] | 298 | /// or modify the model created from the genotype. |
---|
[304] | 299 | /// Between open() and close() the model is not fully usable. |
---|
[109] | 300 | void open(); |
---|
| 301 | |
---|
[304] | 302 | /// Current model written as f0 genotype while building |
---|
| 303 | /// (not cached, not validated, probably unusable and bad if used before close(). But good for debugging.) |
---|
[109] | 304 | Geno rawGeno(); |
---|
| 305 | |
---|
| 306 | /// partial validity check - you can use this call |
---|
| 307 | /// anytime between open - close. |
---|
| 308 | /// this function will check (and repair) |
---|
| 309 | /// - part-joint-neuro connections |
---|
| 310 | /// - model geometry (if "delta option" was used) |
---|
| 311 | /// - physical/biological limits |
---|
| 312 | /// @return 1 = valid |
---|
| 313 | /// @return 0 = invalid |
---|
| 314 | /// validate doesn't make the model fully usable (for simulation) |
---|
| 315 | /// you still need to use close if you have changed anything |
---|
| 316 | int validate(); |
---|
| 317 | |
---|
| 318 | int getPartCount() const; |
---|
| 319 | /// you can access parts 0 .. getPartCount()-1. |
---|
| 320 | Part *getPart(int i) const; |
---|
| 321 | |
---|
| 322 | int getJointCount() const; |
---|
| 323 | /// you can access joints 0 .. getJointCount()-1. |
---|
| 324 | Joint *getJoint(int i) const; |
---|
| 325 | |
---|
| 326 | int getNeuroCount() const; |
---|
| 327 | int getConnectionCount() const; |
---|
| 328 | /// you can access neurons 0 .. getNeuroCount()-1. |
---|
| 329 | Neuro *getNeuro(int i) const; |
---|
| 330 | |
---|
| 331 | #ifdef MODEL_V1_COMPATIBLE |
---|
| 332 | /* compatibility calls for accessing old Neuro objects */ |
---|
| 333 | |
---|
| 334 | /// @deprecated Neuro class will be removed soon |
---|
| 335 | /// @see compat |
---|
| 336 | int old_getNeuroCount(); |
---|
| 337 | /// you can access neurons 0 .. getNeuroCount()-1. |
---|
| 338 | /// @deprecated Neuro class will be removed soon |
---|
| 339 | Neuro *old_getNeuro(int i); |
---|
| 340 | /// @see addNewNeuro, addNeuro |
---|
| 341 | /// @deprecated Neuro class will be removed soon |
---|
| 342 | Neuro *old_addNewNeuro(); |
---|
| 343 | /// @return neuro index or -1 if not found |
---|
| 344 | /// @deprecated Neuro class will be removed soon |
---|
| 345 | int old_findNeuro(Neuro* n); |
---|
| 346 | #endif |
---|
| 347 | |
---|
| 348 | /** create new Part and add it to the model. @see addPart() */ |
---|
| 349 | Part *addNewPart(Part::Shape shape=Part::SHAPE_DEFAULT) {return addPart(new Part(shape));} |
---|
| 350 | /** create new Joint and add it to the model. @see addJoint() */ |
---|
| 351 | Joint *addNewJoint(Part *p1=NULL,Part *p2=NULL,Joint::Shape shape=Joint::SHAPE_DEFAULT) { Joint *j=addJoint(new Joint()); j->shape=shape; if ((p1!=NULL)&&(p2!=NULL)) j->attachToParts(p1,p2); return j;} |
---|
| 352 | /** create new Neuro and add it to the model. @see addNeuro() */ |
---|
| 353 | Neuro *addNewNeuro() {return addNeuro(new Neuro());} |
---|
| 354 | |
---|
| 355 | /** add p to the model. p->refno is adjusted. @return the Part just added (==p). */ |
---|
| 356 | Part *addPart(Part *p); |
---|
| 357 | /** add j to the model. j->refno is adjusted. @return the Joint just added (==j). */ |
---|
| 358 | Joint *addJoint(Joint *j); |
---|
| 359 | /** add n to the model. n->refno is adjusted. @return the Neuro just added (==n). */ |
---|
| 360 | Neuro *addNeuro(Neuro *n); |
---|
| 361 | |
---|
| 362 | /** remove the part from model. |
---|
| 363 | @param removeattachedjoints if not 0 -> remove all joints connected with this part |
---|
| 364 | @param removeattachedneurons if not 0 -> remove neurons attached to this part */ |
---|
| 365 | void removePart(int partindex,int removeattachedjoints=1,int removeattachedneurons=1); |
---|
| 366 | |
---|
| 367 | /** remove the joint from model. |
---|
| 368 | @param removeattachedneurons if not 0 -> remove neurons attached to this joint */ |
---|
| 369 | void removeJoint(int jointindex,int removeattachedneurons=1); |
---|
| 370 | |
---|
| 371 | /** remove the neuron from model. |
---|
| 372 | @param removereferences if true -> look for references to this neuron |
---|
| 373 | (i.e. connections from other neurons) and remove them as well */ |
---|
| 374 | void removeNeuro(int neuroindex,bool removereferences=true); |
---|
| 375 | |
---|
| 376 | void removeNeuros(SList &nlist); |
---|
| 377 | |
---|
| 378 | /// @return part index or -1 if not found in the model |
---|
| 379 | int findPart(Part* p); |
---|
| 380 | /// @return joint index or -1 if not found in the model |
---|
| 381 | int findJoint(Joint* j); |
---|
| 382 | /// @return neuro index or -1 if not found in the model |
---|
| 383 | int findNeuro(Neuro* nu); |
---|
| 384 | /// @return joint index or -1 if not found in the model |
---|
| 385 | int findJoint(Part *p1, Part *p2); |
---|
| 386 | |
---|
| 387 | /** make the list of neuros satisfying given search criteria: classname,part,joint |
---|
| 388 | @param result objects will be appended here |
---|
| 389 | @return number of objects found */ |
---|
| 390 | int findNeuros(SList& result,const char* classname=0,const Part* part=0,const Joint* joint=0); |
---|
| 391 | |
---|
| 392 | /** search for joints connected to the part |
---|
| 393 | @param result objects will be appended here |
---|
| 394 | @return number of objects found */ |
---|
| 395 | int findJoints(SList& result,const Part* part=0); |
---|
| 396 | |
---|
| 397 | void disturb(double amount); |
---|
[274] | 398 | void move(const Pt3D& shift); |
---|
| 399 | /// rotate around the origin (move-rotate-move to rotate around arbitrary point) |
---|
| 400 | void rotate(const Orient& rotation); |
---|
| 401 | /// rotate around the origin (move-rotate-move to rotate around arbitrary point) |
---|
| 402 | void rotate(const Pt3D& angles) {Orient o=Orient_1; o.rotate(angles); rotate(o);} |
---|
[109] | 403 | |
---|
[273] | 404 | /// build this model using new shapes, based on the provided model that uses old shapes. See also shapeconvert.cpp. |
---|
[269] | 405 | void buildUsingNewShapes(const Model& src_old_shapes, Part::Shape default_shape = Part::SHAPE_CYLINDER, float thickness = 0.2); |
---|
| 406 | |
---|
[109] | 407 | #ifdef EASYMAPDEBUG |
---|
| 408 | static int partToMap(int i) {return 0+i;} |
---|
| 409 | static int jointToMap(int i) {return 10+i;} |
---|
| 410 | static int neuroToMap(int i) {return 20+i;} |
---|
| 411 | static int mapToPart(int i) {return i-0;} |
---|
| 412 | static int mapToJoint(int i) {return i-10;} |
---|
| 413 | static int mapToNeuro(int i) {return i-20;} |
---|
| 414 | #else |
---|
| 415 | static int partToMap(int i) {return 0x10000000+i;} |
---|
| 416 | static int jointToMap(int i) {return 0x20000000+i;} |
---|
| 417 | static int neuroToMap(int i) {return 0x30000000+i;} |
---|
| 418 | static int mapToPart(int i) {return i-0x10000000;} |
---|
| 419 | static int mapToJoint(int i) {return i-0x20000000;} |
---|
| 420 | static int mapToNeuro(int i) {return i-0x30000000;} |
---|
| 421 | #endif |
---|
| 422 | |
---|
| 423 | static void makeGenToGenMap(MultiMap& result,const MultiMap& gen1tomodel,const MultiMap& gen2tomodel); |
---|
| 424 | |
---|
| 425 | /////////////////////////// |
---|
| 426 | |
---|
| 427 | static Part& getMinPart(); |
---|
| 428 | static Part& getMaxPart(); |
---|
| 429 | static Part& getDefPart(); |
---|
| 430 | static Joint& getMinJoint(); |
---|
| 431 | static Joint& getMaxJoint(); |
---|
| 432 | static Joint& getDefJoint(); |
---|
| 433 | static Neuro& getMinNeuro(); |
---|
| 434 | static Neuro& getMaxNeuro(); |
---|
| 435 | static Neuro& getDefNeuro(); |
---|
| 436 | }; |
---|
| 437 | |
---|
| 438 | #endif |
---|