/* * Copyright (C) 2023 Christopher J. Howard * * This file is part of Antkeeper source code. * * Antkeeper source code is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Antkeeper source code is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Antkeeper source code. If not, see . */ #ifndef ANTKEEPER_GAME_ANT_GENE_POOL_HPP #define ANTKEEPER_GAME_ANT_GENE_POOL_HPP #include "game/ant/ant-gene-frequency-table.hpp" #include "game/ant/genes/ant-antennae-gene.hpp" #include "game/ant/genes/ant-body-size-gene.hpp" #include "game/ant/genes/ant-pupa-gene.hpp" #include "game/ant/genes/ant-diet-gene.hpp" #include "game/ant/genes/ant-egg-gene.hpp" #include "game/ant/genes/ant-eyes-gene.hpp" #include "game/ant/genes/ant-foraging-time-gene.hpp" #include "game/ant/genes/ant-founding-mode-gene.hpp" #include "game/ant/genes/ant-gaster-gene.hpp" #include "game/ant/genes/ant-head-gene.hpp" #include "game/ant/genes/ant-larva-gene.hpp" #include "game/ant/genes/ant-legs-gene.hpp" #include "game/ant/genes/ant-mandibles-gene.hpp" #include "game/ant/genes/ant-mesosoma-gene.hpp" #include "game/ant/genes/ant-nest-site-gene.hpp" #include "game/ant/genes/ant-ocelli-gene.hpp" #include "game/ant/genes/ant-pigmentation-gene.hpp" #include "game/ant/genes/ant-pilosity-gene.hpp" #include "game/ant/genes/ant-sculpturing-gene.hpp" #include "game/ant/genes/ant-sting-gene.hpp" #include "game/ant/genes/ant-waist-gene.hpp" #include "game/ant/genes/ant-wings-gene.hpp" /** * Pool of ant genes from which ant genomes can be generated. */ struct ant_gene_pool { /// Gene pool name. std::string name; ant_gene_frequency_table antennae; ant_gene_frequency_table body_size; ant_gene_frequency_table pupa; ant_gene_frequency_table diet; ant_gene_frequency_table egg; ant_gene_frequency_table eyes; ant_gene_frequency_table foraging_time; ant_gene_frequency_table founding_mode; ant_gene_frequency_table gaster; ant_gene_frequency_table head; ant_gene_frequency_table larva; ant_gene_frequency_table legs; ant_gene_frequency_table mandibles; ant_gene_frequency_table mesosoma; ant_gene_frequency_table nest_site; ant_gene_frequency_table ocelli; ant_gene_frequency_table pigmentation; ant_gene_frequency_table pilosity; ant_gene_frequency_table sculpturing; ant_gene_frequency_table sting; ant_gene_frequency_table waist; ant_gene_frequency_table wings; }; #endif // ANTKEEPER_GAME_ANT_GENE_POOL_HPP