config.py 710B

1234567891011121314151617181920212223242526
  1. from intelligine.synergy.Colony import Colony
  2. from intelligine.synergy.Environment import Environment
  3. from intelligine.synergy.Simulation import Simulation
  4. from intelligine.synergy.object.StockedFood import StockedFood
  5. from intelligine.synergy.object.Food import Food
  6. from intelligine.synergy.object.Rock import Rock
  7. from intelligine.synergy.object.ant.Ant import Ant
  8. from intelligine.synergy.object.ant.Egg import Egg
  9. map_config = {
  10. 'simulation': {
  11. 'base': Simulation
  12. },
  13. 'collection': {
  14. 'ant': Colony,
  15. 'env': Environment
  16. },
  17. 'object': {
  18. 'ant': Ant,
  19. 'egg': Egg,
  20. 'rock': Rock,
  21. 'food': Food,
  22. 'stocked_food': StockedFood
  23. }
  24. }