💿🐜 Antkeeper source code https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

75 lines
2.9 KiB

  1. /*
  2. * Copyright (C) 2023 Christopher J. Howard
  3. *
  4. * This file is part of Antkeeper source code.
  5. *
  6. * Antkeeper source code is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Antkeeper source code is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Antkeeper source code. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef ANTKEEPER_GAME_ANT_GENOME_HPP
  20. #define ANTKEEPER_GAME_ANT_GENOME_HPP
  21. #include "game/ant/genes/ant-antennae-gene.hpp"
  22. #include "game/ant/genes/ant-body-size-gene.hpp"
  23. #include "game/ant/genes/ant-pupa-gene.hpp"
  24. #include "game/ant/genes/ant-diet-gene.hpp"
  25. #include "game/ant/genes/ant-egg-gene.hpp"
  26. #include "game/ant/genes/ant-eyes-gene.hpp"
  27. #include "game/ant/genes/ant-foraging-time-gene.hpp"
  28. #include "game/ant/genes/ant-founding-mode-gene.hpp"
  29. #include "game/ant/genes/ant-gaster-gene.hpp"
  30. #include "game/ant/genes/ant-head-gene.hpp"
  31. #include "game/ant/genes/ant-larva-gene.hpp"
  32. #include "game/ant/genes/ant-legs-gene.hpp"
  33. #include "game/ant/genes/ant-mandibles-gene.hpp"
  34. #include "game/ant/genes/ant-mesosoma-gene.hpp"
  35. #include "game/ant/genes/ant-nest-site-gene.hpp"
  36. #include "game/ant/genes/ant-ocelli-gene.hpp"
  37. #include "game/ant/genes/ant-pigmentation-gene.hpp"
  38. #include "game/ant/genes/ant-pilosity-gene.hpp"
  39. #include "game/ant/genes/ant-sculpturing-gene.hpp"
  40. #include "game/ant/genes/ant-sting-gene.hpp"
  41. #include "game/ant/genes/ant-waist-gene.hpp"
  42. #include "game/ant/genes/ant-wings-gene.hpp"
  43. /**
  44. * Complete set of ant genes.
  45. */
  46. struct ant_genome
  47. {
  48. std::shared_ptr<ant_antennae_gene> antennae;
  49. std::shared_ptr<ant_body_size_gene> body_size;
  50. std::shared_ptr<ant_pupa_gene> pupa;
  51. std::shared_ptr<ant_diet_gene> diet;
  52. std::shared_ptr<ant_egg_gene> egg;
  53. std::shared_ptr<ant_eyes_gene> eyes;
  54. std::shared_ptr<ant_foraging_time_gene> foraging_time;
  55. std::shared_ptr<ant_founding_mode_gene> founding_mode;
  56. std::shared_ptr<ant_gaster_gene> gaster;
  57. std::shared_ptr<ant_head_gene> head;
  58. std::shared_ptr<ant_larva_gene> larva;
  59. std::shared_ptr<ant_legs_gene> legs;
  60. std::shared_ptr<ant_mandibles_gene> mandibles;
  61. std::shared_ptr<ant_mesosoma_gene> mesosoma;
  62. std::shared_ptr<ant_nest_site_gene> nest_site;
  63. std::shared_ptr<ant_ocelli_gene> ocelli;
  64. std::shared_ptr<ant_pigmentation_gene> pigmentation;
  65. std::shared_ptr<ant_pilosity_gene> pilosity;
  66. std::shared_ptr<ant_sculpturing_gene> sculpturing;
  67. std::shared_ptr<ant_sting_gene> sting;
  68. std::shared_ptr<ant_waist_gene> waist;
  69. std::shared_ptr<ant_wings_gene> wings;
  70. };
  71. #endif // ANTKEEPER_GAME_ANT_GENOME_HPP