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

Unicode-ascii utf16-utf 8, How many bits are we used in Unicode, ASCII, U...

How many bits are we used in Unicode, ASCII, UTF-16, and UTF-8 characters?

Compiler design limit the loops, Problem : Compiler Design - Limit the loop...

Problem : Compiler Design - Limit the loops Rajni is a newbie to the programming and while learning the programming language he came to know the following rules: ???• Each program

Explain arithmetic promotion and binary operations, Explain Arithmetic Prom...

Explain Arithmetic Promotion and Binary Operations? An int divided through an int is an int, and a double divided by a double is a double, but what about an int divided by a do

Moving Blobs, Don''t know how to write this, can anyone help me? http://wi...

Don''t know how to write this, can anyone help me? http://wikisend.com/download/660980/Moving Blobs.zip

Ps1 emulator for android, PS1 emulator for android There is an open sour...

PS1 emulator for android There is an open source app known as psx4droid i want a developer to solve problems and bugs and doing performance improvement to source code to running

Illustrate an example of static variables, Illustrate an example of static ...

Illustrate an example of static variables System. out .println("some text"); -- out is a static variable JOptionPane. showMessageDialog (null, "some text"); -- showMessageDi

Illustrate the parser method, Illustrate the parser method The below ta...

Illustrate the parser method The below table summarizes the parser methods available to a java programmer.

Write a programme to create a webpage that prints the name o, Write a progr...

Write a programme to create a webpage that prints the name of the STUDENT database in Wide Latin font and set the subtitle with description of the STUDENT to the screen. Set the pa

Important nodes, there are N nodes in a graph, the graph isuni directional ...

there are N nodes in a graph, the graph isuni directional with M edges of these M nodes in a graph, there are K nodes which are important nodes. given initial position I within thi

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