source: cpp/frams/genetics/fF/conv_fF.h @ 667

Last change on this file since 667 was 667, checked in by Maciej Komosinski, 7 years ago
  • fF foraminifera encoding supports scaling (radius) of the initial chamber (three new parameters added: radii for x,y,z)
  • mutation ignores these three parameters
  • float -> double for consistency everywhere
  • Property svn:eol-style set to native
File size: 1.7 KB
RevLine 
[286]1// This file is a part of Framsticks SDK.  http://www.framsticks.com/
[667]2// Copyright (C) 1999-2017  Maciej Komosinski and Szymon Ulatowski.
[286]3// See LICENSE.txt for details.
[140]4
5#ifndef _CONV_FF_H_
6#define _CONV_FF_H_
7
[176]8#define fF_TOO_MUCH 0.75
9#define fF_TOO_LITTLE 0.10
[174]10
[667]11#define fF_HOLE_RADIUS 0.05
[176]12#define fF_LONGITUDE_NUM 69
[174]13
[176]14#define fF_LATITUDE_NUM ((fF_LONGITUDE_NUM - 1)*2)
15#define fF_AMOUNT ((fF_LATITUDE_NUM)*(fF_LONGITUDE_NUM))
[174]16
[176]17#define fF_THICK_RATIO 0.95
[174]18
[176]19#define fF_SIZE fF_LONGITUDE_NUM * fF_LATITUDE_NUM + fF_LATITUDE_NUM
[174]20
[140]21#include <frams/util/multimap.h>
22#include <frams/util/sstring.h>
23#include <frams/genetics/genoconv.h>
[256]24#include <frams/model/model.h>
[174]25#include "fF_chamber3d.h"
[140]26
[178]27
28//A point on the surface of a chamber
29struct fF_point
30{
31        double x, y, z;
32        bool inside; //helper field used when computing whether this point is inside some chamber
33};
34
35
[174]36// The f9->f0 converter
37class GenoConv_fF0 : public GenoConverter {
[140]38public:
[176]39        GenoConv_fF0();
40        ~GenoConv_fF0();
41        //implementation of the GenoConverter method
42        SString convert(SString &in, MultiMap *map);
[140]43
44protected:
[667]45        void createSphere(int ktora, fF_chamber3d **chambers, double radius0x, double radius0y, double radius0z, double translation, double alpha, double gamma, double kx, double ky, double kz);
46        fF_point* generate_points(fF_chamber3d *chamber);
[176]47        double dist(double x1, double y1, double z1, double x2, double y2, double z2);
[667]48        void search_hid(int nr, fF_chamber3d **spheres);
49        int find_hole(int which, double x, double y, double z, fF_chamber3d **chambers);
50        double get_radius(double prev_radius, double scale, double radius0);
[178]51private:
52        double* cosines;
53        double* sines;
54        void precompute_cos_and_sin();
[256]55        Part *addNewPart(Model *m, const fF_chamber3d* c);
[140]56};
57
58#endif
Note: See TracBrowser for help on using the repository browser.