Game of life, JAVA Programming

Assignment Help:

Conway's Game of Life is a "cellular automaton" that is played on a 2D grid (array) of cells. At the start of the game, an initial configuration is set up in which a number of cells are considered to be alive, while the remainder of the cells are considered to be dead.

The game of life proceeds in discrete steps called generations. In each generation, some of the cells will change from dead to alive, and vice-versa, according to specific rules. The rules are based on the neighborhood of 8 cells surrounding each cell, and are given as follows:

1.     Any live cell with fewer than two live neighbours dies, as if caused by under-population.

2.     Any live cell with two or three live neighbours lives on to the next generation.

3.     Any live cell with more than three live neighbours dies, as if by overcrowding.

4.     Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.

Assignment

In this assignment, you will implement Conway's game of life. Like Mine Sweeper, this is a good project for working with 2D arrays, and also will give you some experience reading text files, as well as some simple GUI programming.

Instructions

1.  Write a program that will play Conway's game of life.

2.  The program must take the name of an input text file as user input somehow.

3. Input files will contain a first line stating the resolution of the life array, and then a number of lines giving the initial configuration of the array. (An "X" character is considered to be alive, and other characters are considered to be dead.) Your program must be able to handle life arrays of different sizes specified in an input file.

4.  Your program must handle "toroidal addressing" for the edges of the array. In other words, the left and right sides of the life array must be connected, as well as the top and bottom.

5.  You should display your life game in a GUI window. There are several ways to do this. One would be to have your application extend JFrame, and then use JLabels for each of the cells in a GridLayout.

6.   Provide a way for the user to specify the rate at which generations occur (for example, by using a Timer).

7.   Optional: Create a few interesting input files for your program.


Related Discussions:- Game of life

J2ee java website rebuild, J2EE Java Website rebuild Project Description...

J2EE Java Website rebuild Project Description: We are seeking an experienced developer to re-build a Java/J2EE based Website. We are in requirement to reconstruct our website

Explain the concept of multi-threaded- java, Explain the concept of Multi-T...

Explain the concept of Multi-Threaded- JAVA Java has a concept of concurrency wired right in to the language itself. This works out more cleanly than languages where concur

Want a anti iframe breaker, Want a ANTI Iframe Breaker Project Descripti...

Want a ANTI Iframe Breaker Project Description: I want an ANTI Iframe Breaker code made, so that if I'm iframing a site, that contains JavaScript, flash or otherwise, to forc

Describe about user security issues and social engineering, Describe about ...

Describe about User Security Issues and Social Engineering ? Contrary to popular belief most computer break-ins through external hackers don't happen since of great knowledge

What is overriding, What is Overriding? When a class explains a method ...

What is Overriding? When a class explains a method using the similar name, return type, and arguments as a method in its superclass, the method in the class overrides the metho

Determine the phase loading- java program development, Determine the phase ...

Determine the phase Loading- Java Program Development In phase 3, the program must first be placed in memory before it can be executed. This is done by the class loader, whic

Write a code in java to explain the while loop in java, Write a code in jav...

Write a code in java to explain the while loop in Java? // This is the Hello program in Java class Hello { public static void main (String args[]) { System.out.print("

What is operator overloading, What is Operator Overloading? A few objec...

What is Operator Overloading? A few object oriented languages, notably C++, permit you to not only overload techniques but also operators like + or -. This is very menaingful w

Student, what are Objects and Fields in java

what are Objects and Fields in java

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