💿🐜 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.

84 lines
2.5 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/gene/antennae.hpp"
  22. #include "game/ant/gene/body-size.hpp"
  23. #include "game/ant/gene/cocoon.hpp"
  24. #include "game/ant/gene/diet.hpp"
  25. #include "game/ant/gene/egg.hpp"
  26. #include "game/ant/gene/eyes.hpp"
  27. #include "game/ant/gene/foraging-time.hpp"
  28. #include "game/ant/gene/founding-mode.hpp"
  29. #include "game/ant/gene/gaster.hpp"
  30. #include "game/ant/gene/head.hpp"
  31. #include "game/ant/gene/larva.hpp"
  32. #include "game/ant/gene/legs.hpp"
  33. #include "game/ant/gene/mandibles.hpp"
  34. #include "game/ant/gene/mesosoma.hpp"
  35. #include "game/ant/gene/nest-site.hpp"
  36. #include "game/ant/gene/ocelli.hpp"
  37. #include "game/ant/gene/pigmentation.hpp"
  38. #include "game/ant/gene/pilosity.hpp"
  39. #include "game/ant/gene/sculpturing.hpp"
  40. #include "game/ant/gene/sting.hpp"
  41. #include "game/ant/gene/waist.hpp"
  42. #include "game/ant/gene/wings.hpp"
  43. namespace game {
  44. namespace ant {
  45. /**
  46. * Complete set of ant genes.
  47. */
  48. struct genome
  49. {
  50. /// Constructs an empty genome.
  51. genome();
  52. const gene::antennae* antennae;
  53. const gene::body_size* body_size;
  54. const gene::cocoon* cocoon;
  55. const gene::diet* diet;
  56. const gene::egg* egg;
  57. const gene::eyes* eyes;
  58. const gene::foraging_time* foraging_time;
  59. const gene::founding_mode* founding_mode;
  60. const gene::gaster* gaster;
  61. const gene::head* head;
  62. const gene::larva* larva;
  63. const gene::legs* legs;
  64. const gene::mandibles* mandibles;
  65. const gene::mesosoma* mesosoma;
  66. const gene::nest_site* nest_site;
  67. const gene::ocelli* ocelli;
  68. const gene::pigmentation* pigmentation;
  69. const gene::pilosity* pilosity;
  70. const gene::sculpturing* sculpturing;
  71. const gene::sting* sting;
  72. const gene::waist* waist;
  73. const gene::wings* wings;
  74. };
  75. } // namespace ant
  76. } // namespace game
  77. #endif // ANTKEEPER_GAME_ANT_GENOME_HPP