Program of bug simulation , JAVA Programming

Assignment Help:

You will be creating a World that consists of ants and doodlebugs. Each time you click the board each bug will do some of the following: move, bread, eat, and starve.

Ants will function in a certain way, and doodlebugs in another.

This assignment is based on Absolute Java.

900_Bug Simulation 1.png

Bug Rules

Ants

Move

  1. Every time step the ant will attempt to move.
  2. Pick a random direction using a random generator (up, right, down, or left).
  3. If the space is on the grid, and not occupied then the ant will move there.

Breed

  1. If an ant survives 3 time steps he will attempt to breed.
  2. He breeds by creating a new ant in a space adjacent to himself.
  3. If there is no empty space adjacent to himself to breed then he will not do so.
  4. He will then wait 3 more time steps until tries to breed again.

Doodlebugs

Move

  1. Every time step the doodlebug will move.
  2. First he will check out each direction. If there is an ant in an adjacent space he will move there (consequently taking up the ants space and eating him!)
  3. If there was no ant in an adjacent space he will move just like ants do.
  4. Note: doodlebugs can't eat other doodlebugs

Breed

  1. If a doodlebug survives 8 time steps he will attempt to breed.
  2. He breeds in the same manner as an ant.

Starve

  1. If an ant has not eaten an ant within the last 3 time steps, then at the end of the last time step he will die of starvation. You will remove him from the grid.

UML

Ants and Doodlebugs will extend from a generic Organism.

Create a UML diagram for the Organism, Ant and Doodlebug. This diagram may change as you develop your design, but having a basic flow will greatly help in the implementation.

Provided Files

  1. World.java
  2. Organism.java
  3. Ant.java
  4. Doodlebug.java
  5. ant.png
  6. doodlebug.png

Word

Methods you will use in your classes. Don't modify this class.

public Organism getAt(int x, int y)

  1. Returns the Organism at the x, y position in the grid.
  2. If there is no organism it returns null

public void setAt(int x, int y, Organism bug)

  1. Sets the entry at the x, y position in the grid to the specified organism

public boolean pointInGrid(int x, int y)

  1. Returns true if the point x, y is in the grid and false if it goes beyond the grid space (e.g. if x = -1 that is not in the grid)

Images

  1. Put the two images in an images folder within your src

What you need to edit

  1. Organism.java
  2. Ant.java
  3. Doodlebug.java

Organims

Here are the methods that the World calls on the Organisms. I assume you will want to make more methods, such as move...

Organism(World world, int x, int y)

  1. Creates a new Organism
  2. The coordinates in the grid (X and Y) are required so you can pick a new location relative to its current to move to, and breed at.
  3. The World is required so you can call methods like getAt(x, y), setAt(x, y), and pointInGrid(x, y) on it.

public abstract String toString()

  1. This method is written for you
  2. Returns the string representation of the organism ("ant", "doodlebug"). Used by the World to determine which type of organism it is.

public void resetSimulation()

  1. This method has been written for you
  2. You will need to keep track of weather the organism has simulated this time step or not in an attribute of the class. This is important as it stops an organism from moving to a new place in the grid and then simulating again.

public boolean simulate()

  1. This will set the attribute that keeps track of weather it has simulated to true. This method returns true if it simulates, and false if it doesn't (has already simulated)
  2. If the organism was created this time step don't do the rest
  3. Call move, then breed, then starve (only for doodlebugs).
  4. You will then increment a time step counter

Ant and DoodleBug

  1. I want you to figure out what goes here

Related Discussions:- Program of bug simulation

Java , what is thread synchronization

what is thread synchronization

Explain preemptive scheduling and time slicing, In preemptive scheduling, t...

In preemptive scheduling, the highest priority task executes until it enters the waiting or dead states or a higher priority task comes into existence. In time slicing, a task i

Windows registry, need a java program that can read and display the values ...

need a java program that can read and display the values from a windows registry

Online doctor, can you explain me the er diagram for the online doctor syst...

can you explain me the er diagram for the online doctor system

Coarse grained soa, Coarse Grained SOA : Services are also could be coa...

Coarse Grained SOA : Services are also could be coarse grained. E.g:   You may have a purchase element with individual functions to make a purchase order, add line items, and a

Recursive Division Maze Generation, can you tell me what the code for a 2d ...

can you tell me what the code for a 2d random java array using Recursive Division Maze Generation

Explain difference between the boolean and operator, What is the difference...

What is the difference between the Boolean & operator and the && operator? If an expression including the Boolean & operator is evaluated, both operands are evaluated. Then the

JDBC Assignment, If we have 2 tables like bankcustomer(cid,cname,addr,acc_t...

If we have 2 tables like bankcustomer(cid,cname,addr,acc_type) and customeraccount(cid,amount). How to Deposit amount into the given customer account.?

Define the n-tier architecture or j2ee 3-tier?, Normal 0 false ...

Normal 0 false false false EN-US X-NONE X-NONE

What is numeric promotion, What is numeric promotion? Numeric promotion...

What is numeric promotion? Numeric promotion is the conversion of a smaller numeric type to a larger numeric type, so that integer and floating-point operations may take place.

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd