top of page

CSC 385 Data Structures & Algorithms Implementation of an Ant Colony Simulation in Java(Solved)

Semester Project:

100 pts.

Implementation of an Ant Colony Simulation

CSC 385 Data Structures & Algorithms Semester Project:

100 pts. Implementation of an Ant Colony Simulation

Introduction For the semester project you will be designing a simulation of an ant colony. Ant colonies are interesting for a variety of reasons, but one of the most interesting features of an ant colony is that it demonstrates a property known as emergence. Ant colonies are composed of thousands of individuals that carry out their assigned tasks. The combined individual behaviors of all the ants bring about the emergence of a self organize system: the colony itself. Each ant only lives for about one year, except for the queen, which can live for 20 years or more. The colony can survive as long as the queen still lives, meaning the colony can also survive for 20 years or more. Since the individual ants only live for about a year, the colony isn’t able to benefit from the wisdom of old “wise” ants. The colony lives simply because each individual ant does what it has been programmed to do. A well-ordered ant society emerges from the synergistic actions of the individuals. The colony you create will consist of a queen and her brood, which will have workers to gather food and scout the terrain surrounding the colony and soldiers to protect the colony from enemies. The colony will start off with only the queen and a few workers and soldiers. Over time the colony will expand to function like a real ant colony, to a limited extent. Since you will be building a simulation, how your colony behaves will depend on how certain parameters have been set. The purpose of a simulation is to mimic reality as closely as possible, but in many cases there may not be enough facts on hand to build an accurate simulation. In such cases, it is beneficial to build the simulation in a way that allows the various parameters to be changed easily. I will be providing you with values for as many parameters as I can, but many aspects of the simulation involve the use of random numbers. Therefore, the precise end result is indeterminate. When I grade your project I won’t be looking for a single, correct end result; instead I will be looking to see that the various components (i.e., the various ants) do their jobs correctly. If you are able to program your ants to do what they are supposed to do as individuals, your colony should emerge from their collective efforts. In the pages that follow I will specify the requirements for the project in detail. There is a lot of detail to minimize any ambiguity, but you may find that some requirements are still open for interpretation. Please do not hesitate to email me if you find any of the requirements confusing.


  1. Requirements 1. The Environment 1. The ants’ environment should be represented 1. using a 27 x 27 square grid. 2. Each square in the grid represents a discrete location in the environment. 3. The entrance to the colony is represented by a single square located in the center of the grid. The queen is located in this square. 4. The remaining squares will initially be unexplored terrain. 5. Certain ants (scout ants) will be capable of revealing the areas that have not been explored. 6. All other types of ants will only be allowed to move into squares that have been revealed by scout ants. 7. Each square can contain one or more of the following, in any combination: a. Zero or more enemy ants b. Zero or more friendly ants c. Zero or more units of food d. Zero or more units of pheromone 8. Eight directions of movement are possible (see diagram below):



2. The Types of Ants There are five types of ants that should be modeled in the simulation: 1. Queen 2. Forager 3. Scout 4. Soldier 5. Bala (actually a species, not a type) The requirements for each ant type will be described in more detail in later sections.


3. Characte Foragers are responsible for bringing food to the queen. They have two primary modes of behavior: forage mode and return-to-nest mode. The specific requirements for the forager ant are: as they are hatched. 2. All ant types (except for the queen) have a maximum life span of 1 year. 3. Dead ants should be removed from the simulation. 4. All ants are limited to one action per turn, with some exceptions that will be discussed later. 5. All ants except Bala ants may only move in squares that have been revealed by scout ants; Bala ants may also move into any square, including squares that have not been revealed by scout ants. 6. When moving, all ant types should move no more than 1 square per turn. 4. The Queen Ant The queen ant is responsible for hatching new ants. The specific requirements for the queen ant are: 1. The queen never moves from her square (i.e., she remains in the same square for the entire simulation). 2. The queen’s maximum lifespan is 20 years. 3. The queen hatches new ants at a constant rate of 1 ant/day (i.e., 1 ant every10 turns). 4. New ants should always be hatched on the first turn of each day. The type of ant that is hatched should be determined randomly according to the initial frequencies listed below. You may change these frequencies as you see fit — these are simply suggestions for a starting point. a. Forager - 50% b. Scout - 25% c. Soldier - 25% 5. The queen should consume 1 unit of the food in her chamber on each turn, including the turn in which she hatches a new ant. 6. If the food level in the queen’s square is zero when the queen tries to eat, the queen dies of starvation. 7. If the queen dies, either by starvation or by a Bala attack, the simulation should end immediately.


5. Foragers Foragers are responsible for bringing food to the queen. They have two primary modes of behavior: forage mode and return-to-nest mode. The specificrequirements for the forager ant are: Forage Mode 1. Foragers are considered to be in forage mode whenever they are not carrying food. 2. In Forage Mode, foragers should always move to the adjacent square containing the highest level of pheromone, except: a. If more than one adjacent square has the same level of pheromone they should randomly pick one of those squares. b. When following a pheromone trail a forager should never move into the square it just came from unless it has no other choice. c. Depending on how you implement your movement algorithm, it is possible for a forager to get stuck in a loop, traveling round and round the same squares without getting anywhere. Try to detect when this happens, and prevent the endless looping. 3. Foragers should maintain a history of their movement, to be used when they need to return to the nest. 4. When a forager enters a square containing food, it should pick up 1 unit of food, unless it is already carrying food. 5. When a forager picks up a unit of food, it enters return-to-nest mode. 6. Foragers should never pick up food from the square containing the queen. 7. After a forager has picked up 1 unit of food, it should not move again until the next turn. Return-to-nest Mode 1. When a forager is carrying food, it should retrace its steps exactly back to the colony entrance; i.e., it should backtrack whatever path it took to get to the food. 2. Foragers should ignore pheromone in this mode; i.e., they should not move to the adjacent square containing the highest level of pheromone. 3. Foragers should not move randomly in this mode. 4. Foragers should deposit 10 units of pheromone in each square along the way back to the colony entrance, including the square in which the food was found, but excluding the colony entrance (the queen’s square). 5. Foragers should only deposit pheromone in a given square if the current pheromone total in the square is < 1000. 6. A forager may deposit pheromone in one square, and move to a new square in the same turn.


7. When a forager reaches the colony entrance, it should add the food it is carrying to the food supply in that square, in the same turn in which it entered the colony entrance. 8. Foragers should not move out of the colony entrance on the same turn they deliver food there. 9. If a forager dies while carrying food, the food it was carrying should remain in the square in which the forager died. 10. When a forager has deposited food at the nest, the forager re-enters forage mode, and its movement history should be reset. 6. Scouts Scouts are responsible for enlarging the foraging area available to the foragers. The specific requirements for the scout ant are: 1. Scouts should always randomly pick one of the eight possible directions of movement when it is their turn to do something. a. If the chosen square is open, the scout should simply a. move into that square. b. If the chosen square is closed, the scout should move into that square and the contents of that square should be revealed. 2. Whenever a closed square is revealed, there is a chance of there being food in the square, according to the following frequency: a. There is a 25% chance that the square will contain a random amount of food between 500 and 1000 units. b. The other 75% of the time the square is empty. c. You can predetermine the contents of all the squares at the beginning of the simulation, or you can dynamically determine the contents of each square as it is opened. 7. Soldier Ants Soldiers are responsible for protecting the colony by fighting the enemy Bala ants. Soldier ants have two primary modes of behavior: scout mode and attack mode. The specific requirements for the soldier ant are: Scout Mode 1. A soldier is in scout mode when it is in a square that does not contain any Bala ants. 2. If there are Bala ants in any of the squares adjacent to the square the soldier is in, the soldier should move into any one of the squares containing a Bala ant. 3. If there are no Bala ants in any of the adjacent squares, the soldier should move randomly.


Attack Mode 1. A soldier is in attack mode when it is in a square that contains one or more Bala ants. Attack mode takes precedence over scout mode. 2. While in attack mode, a soldier should attack any Bala ants present. 3. If there are multiple Bala ants present, only one of them should be attacked. 4. During an attack, there is a 50% chance the soldier kills the enemy ant; otherwise, the soldier misses and the enemy ant survives. 8. Bala ants Bala ants are enemies of the colony. They should enter only at the periphery of the colony (i.e., they should not simply pop up in the middle of the colony). Once in the colony they may move around freely. Assume they never leave the colony once they enter it. The specific requirements for the Bala ant are: 1. Each turn there is a 3% chance one Bala ant will appear in one of the squares at the boundary of the colony. You may choose to have Bala ants always enter at the same square (e.g., upper left corner), or you may have them enter randomly at any of[ the 106 squares on the edge of the colony. 2. Once a Bala appears, it should remain in the environment until it is killed, or dies of old age. 3. Bala ants should always move randomly. 4. Bala ants may move into squares that have not yet been revealed by scout ants. 5. If a Bala ant is in a square containing one or more friendly ants (scout, forager, soldier, queen), the Bala should always attack one of those ants. The ant that is attacked can be selected at random, or you can pick which ant gets attacked. 6. During an attack, there is a 50% chance a Bala kills the ant it attacks; otherwise, the Bala misses and the ant that is attacked survives. 9. Passage of Time in the Simulation Time plays an important role in controlling what happens in the simulation. Each “day” in the simulation is divided into 10 “turns”. Certain things happen at regular time intervals in the simulation: 1. The queen produces a new ant on the first turn of every day. 2. The pheromone level in each square should decrease by half (rounded down) each day (10 turns), but should never go below zero. 3. Every turn, each ant in the simulation should get a chance to perform an action, as defined above, depending on the ant type.


10. Death Ants may die in one of several ways: 1. They may be killed by an attack. 2. They may die of old age (they will die the day after they have reached their maximum allotted lifespan). 3. Starvation (only applies to the queen). When an ant dies: 1. The dead ant should be removed (i.e., deleted) from the square it is in. 2. If the ant died before it had a chance to do something, it does not get to do anything posthumously on that turn. 11. Initial State of the Simulation Your simulation should begin with the center square of the environment and its adjacent squares open (see figure below).The center square represents the entrance to the colony. It should contain the following: 1. the queen ant 2. 10 soldier ants 3. 50 forager ants 4. 4 scout ants 5. 1000 units of food




12. Ending State of the Simulation The simulation should end immediately when the queen ant dies from any one of the following causes: 1. Starvation (the amount of food in the queen’s location drops to 0) 2. Old age (the queen reaches her maximum lifespan) 3. Bala attack 13. Controlling the Simulation Since this is a fairly complex project, it is useful to have two different modes of execution: Continuous Execution In this mode the simulation simply runs non-stop until the ending state is reached. Stepwise Execution In this mode the simulation can be stepped forward one turn at a time, either at the click of a button or by a key press. This is helpful for observing what happens from one turn to the next. This mode is extremely valuable for testing purposes. 14. User Interface You must use a graphical user interface (GUI) for this project, as opposed to a simple command-line interface (CLI). A GUI will allow you to more easily interpret what is happening in the simulation as you test and debug your project, since you won’t have to read and interpret text output. Developing GUIs in Java is not a trivial thing to do, so I am giving you two options: 1. You can use the GUI I have provided. The challenge here is that you will need to design your simulation to use it. The GUI has all the necessary methods for your simulation to update it. You will need to understand how those methods work in order to connect your simulation to the interface. 2. You may build your own GUI. On the next page is a screenshot from a prototype project I’ve built, which uses the GUI I have provided. The squares containing text have been revealed by scout ants. The gray square near the center is the colony entrance, and contains the queen ant (the gold-colored ant in the upper right corner of the square). Scout ants are blue, soldier ants are black, and forager ants are green. The violet squares represent the pheromone trail that has been laid down by the foragers that found a food supply in square 9,5. The color changes to the various colors of the spectrum to reflect the strength of the pheromone concentration (violet = lowest, red = highest).



If you decide to use the GUI I have provided, you only need to make sure the following buttons are implemented: Normal Setup Clicking this button should initialize the simulation (see “Initial State of the Simulation”, above). This button should be clicked prior to clicking either the Run or Step buttons. Run After the simulation has been set up, clicking this button will run the simulation continuously. Step After the simulation has been set up, clicking this button will run the simulation one turn at a time. Test Buttons The 5 “Test” buttons for the 5 different ant types are there for your own convenience for testing purposes. You are not required to implement these buttons, but you may find them helpful in setting up the simulation with special starting conditions designed to test the behavior of each ant type individually. Examples of different setups you might use in this regard are: Queen Test: set up with only the queen node being open, and only the queen ant present


Scout Test: set up with only the queen node being open, and with the queen and one scout ant present. You might want to comment out the code that allows your queen to hatch new ants for this test. You might want to comment out the code that allows your queen to hatch new ants for this test. Forager Test: set up with enough open nodes to allow a reasonable food path (at least 3 node lengths), the queen ant and one forager ant present, and food present in only one node other than the queen’s node. Soldier Test: set up with several open nodes, the queen ant, one soldier ant, and one Bala ant present. If you decide to build your own GUI, the minimum requirements are: 1. It should be capable of displaying the environment grid similar to the figure shown on the preceding page. 2. It should be capable of displaying in text format the contents of each square (# of foragers, # of scouts, # of soldiers, # of Balas, whether the queen is present, amount of food, and pheromone level). 3. It should display the simulation time. 4. It should allow the user to choose which mode of execution to use (continuous or stepwise). You are NOT required to display ant icons or use color to indicate the pheromone 15. Use of Appropriate Data Structures One of the primary objectives of this course is to understand how to use data structures that are more sophisticated than simple arrays. Certain facets of this project can be solved more efficiently and more appropriately using particular data structures. In order to receive full points for this project you must avoid using simple arrays. The one exception is that you may use a two-dimensional array for the grid that models the ants’ environment. You may use either the data structures I have provided in the data Structures package for this course, or the ones in the java.util package of the J2SE library. Either choice is fine, but you should try to be consistent throughout your project and not mix the structures from the two packages, or you will run into namespace conflicts. You will also need to pay attention to how you design your algorithms for controlling the project’s execution. For example, traversals will be common, so think about how to do them efficiently to avoid slowing down your program. level if you are building your own GUI, although you may find it helpful to do so. 16. Random Number Generation

For several parts of the project you will need to generate random numbers. Java has a built-in class for dealing with random numbers: Random. The Random class is in the java.util package, so you will need to import that package in your source files that use it. The only method you will probably need to use is the nextInt(int n) method. This method returns a random integer between 0, inclusive, and n, exclusive. For example,

calling nextInt(20) will return a random number between 0 and 19. If you need a different range, for example a random number between 1 and 20, you could get that by using the following statement (r is a reference to a Random object):

int randNum = r.nextInt(20) + 1;

If you need a more complicated range, for example between 10 and 50, you would need to follow this formula:

int n = r.nextInt(maxValue - minValue + 1) + 10;

For the range 10 to 50, maxValue would be 50 and minValue would be 10, so you would write the statement:

int n = r.nextInt(41) + 10;


Keep in mind that computers don’t really generate truly random numbers. Instead, they generate a finite list of pseudorandom numbers which repeats itself when the end of the list is reached. In order to generate this list, a seed value is needed to do the random number computations. If you create an instance of the Random class using the Random() constructor, the current system time, in milliseconds, is used as the seed value. This can create a problem. If two instances of the Random class get created within the same millisecond, which often happens, they will both have the exact same list of pseudorandom numbers, and your application won’t behave as “randomly” as it should. Your best bet is to either:


1. Create a single instance of the Random class and use it for generating all random numbers (you will probably need to make it static, and use a static method to access it).


2. Use the Random(long seed) constructor and specify your own seed value.


17. Tips & Hints 1. This project may be relatively large compared to what you have done in the past, so don’t just sit down and start hacking out code! Analyze the problem and spend some time designing the architecture of your program before you write any code. Figure out which classes you will need before you start writing any code. The UML class diagram assignment posted for Module 5 should help you with this. 2. Several of the data structures we will be discussing in the course will be very useful for certain situations. Take advantage of them. Except for the grid that represents the environment, do NOT use simple arrays for anything. 3. Don’t try to tackle the entire problem all at once. Break the problem down into manageable sub-problems (divide & conquer). 4. After you have designed the project, try to code it incrementally. For example: first build the environment and make sure you can access the various squares. Then choose one type of ant (e.g., the queen) and add it to the project. Test it to make sure the queen can hatch the various types of ants. Then choose a second type of ant and add it to the project. Test the second type of ant alone, and in combination with the queen Use the Random(long seed) constructor and specify your own seed value.


Interested Students can Contact me Directly for Unique and plagiarism free manually written Solution with 100% accuracy. WhatsApp : +91-9953141035

Fixed Price : 150USD Note - Please contact only interested and serious person. Please Don't waste time. Thank you



80 views0 comments
bottom of page