/* * 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/gene-frequency-table.hpp" #include "game/ant/gene/antennae.hpp" #include "game/ant/gene/body-size.hpp" #include "game/ant/gene/cocoon.hpp" #include "game/ant/gene/diet.hpp" #include "game/ant/gene/egg.hpp" #include "game/ant/gene/eyes.hpp" #include "game/ant/gene/foraging-time.hpp" #include "game/ant/gene/founding-mode.hpp" #include "game/ant/gene/gaster.hpp" #include "game/ant/gene/head.hpp" #include "game/ant/gene/larva.hpp" #include "game/ant/gene/legs.hpp" #include "game/ant/gene/mandibles.hpp" #include "game/ant/gene/mesosoma.hpp" #include "game/ant/gene/nest-site.hpp" #include "game/ant/gene/ocelli.hpp" #include "game/ant/gene/pigmentation.hpp" #include "game/ant/gene/pilosity.hpp" #include "game/ant/gene/sculpturing.hpp" #include "game/ant/gene/sting.hpp" #include "game/ant/gene/waist.hpp" #include "game/ant/gene/wings.hpp" namespace game { namespace ant { /** * Pool of genes from which ant genomes can be generated. */ struct gene_pool { /// Gene pool name. std::string name; gene_frequency_table antennae; gene_frequency_table body_size; gene_frequency_table cocoon; gene_frequency_table diet; gene_frequency_table egg; gene_frequency_table eyes; gene_frequency_table foraging_time; gene_frequency_table founding_mode; gene_frequency_table gaster; gene_frequency_table head; gene_frequency_table larva; gene_frequency_table legs; gene_frequency_table mandibles; gene_frequency_table mesosoma; gene_frequency_table nest_site; gene_frequency_table ocelli; gene_frequency_table pigmentation; gene_frequency_table pilosity; gene_frequency_table sculpturing; gene_frequency_table sting; gene_frequency_table waist; gene_frequency_table wings; }; } // namespace ant } // namespace game #endif // ANTKEEPER_GAME_ANT_GENE_POOL_HPP