MUTUAL EXCLUSION AND JAVA LOCKS

Qualified Writers
Rated 4.9/5 based on 2480 reviews

100% Plagiarism Free & Custom Written - Tailored to Your Instructions

Snake Game simulation

In this exercise you will simulate a parallel version of the classic Snake game. In this version, a snake occupies a number of adjacent cells on a square cell grid. It moves through the grid by choosing a direction (up, down, left or right) and moving its head to that position. After the head cell moves, each cell in the body moves, with the first cell of the body moving to where the head was, the second cell moving to where the first was and so on. If the head tries to move to a cell that is currently occupied by another snake or itself, the snake dies and does not move any more. Please note that the snake does not move backwards, thus, at every turn it will only have three directions to chose from. The movement of a snake must appear atomic to other snakes.

 

You will simulate the execution of a gSize x gSize grid with n snakes with snakeSize cells in their bodies. Model each snake as a thread that sleeps for 100ms and tries to move to a random adjacent position: if the position is already occupied by other snake, the snake dies (its thread ends), but it remains in the grid (i.e., other snakes can collide with it); if a snake hits the end of the grid, it wraps around. After moving nMovements times, the snake dies, but it remains in the grid.

 

The snakes are initialized in a random column, with the head on the second row and the body following it downwards. Two snakes cannot be initialized in the same column. Thus, it is not possible for two snakes to overlap with each other at initialization.

 

You will also have a thread that prints the grid every 300ms. This thread will sleep for 300ms, and print the grid upon waking up. This thread only dies after all snakes are dead. Furthermore, snake movement must appear atomic to the printing thread.

 

The printed grid will have one character for each grid cell: a * if there are no snakes in that cell, or the id of the snake that occupies it. Print one row per line using a space character to separate columns.

 

Thus, the printed 5x5 grid with the initial position 2 snakes of size 2 will be:

 

  • * * * *
  • 0 * 1 *
  • 0 * 1 *
  • * * * *

 

  • * * * *

 

Your program will receive the following command line arguments, in that order:

 

  • gSize: the size of a side of the grid (the grid will have gSize2 cells).

 

CS-406 - Programming Assignment 2

 

  • nSnakes: the number of snakes to be in the grid

 

  • snakeSize: the size of the snakes

 

  • nSteps: minimum number of steps by each snake before they stop.

 

You have to use the java.util.concurrent.locks.ReentrantLock for synchronization. This lock implements the same lock semantics you saw in class.

 

Furthermore, AFTER the end of the simulation, your program will print a log with all movements made by all snakes, using the following format:

 

Snake n died at : (posx,posy) at timestamp1

 

Snake m moved from: (oldposx,oldposy) to (newposx,newposy) at timestamp2

 

where the first message indicates a snake with id n that died at the position with cordinates (posx,posy) at the time timestamp1 and the second message indicates a snake with id m that moved from the position (oldposx,oldposy) to the position (newposx,newposy) at the time timestamp2. The (0,0) position is the top left cell of the grid. You can generate the timestamp by calling the System.currentTimeMillis() method.

 

Make sure to follow this template correctly, for example, you could have the following log messages:

 

Snake 0 died at : (0,2) at 1427211289653

 

Snake 1 moved from: (4,2) to (4,1) at 1427211289653

 

Submission

 

Deadline: 21.03.2017

 

Submit a pdf for exercise 1 and all source files for exercise 2 in a zipped folder.

Price: £115

100% Plagiarism Free & Custom Written - Tailored to Your Instructions