Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Need help implmenting this Java class SquareMap Every Cell (the colored squares) in the SquareMap has an column and row index into a 2D array

Need help implmenting this Java class

SquareMap

Every Cell (the colored squares) in the SquareMap has an column and row index into a 2D array holding the cells. In Fig. 5, the top left cell has the index (column, row) = (0, 0), and its neighbor to the right has (1, 0), and so on. The neighbors for a cell at index (column, row) shall constitute the following if they're within the map: 1. The cell at index (col-1, row) 2. The cell at index (col+1, row) 3. The cell at index (col, row-1) 4. The cell at index (col, row+1) Depending on the cell's index in the 2D array, it can have as few as two neighbors and as many as four. (Note: here we're describing cell indices using the pairs (horizontal, vertical) as in mathematical coordinates. Remember when you access elements of the 2D array, you have to reverse them, since for a 2D array the row index is first.)

In addition to its column and row index, each cell is associated with a location in pixels within a graphical window. Pixels are measured from the upper left corner. The GraphMap class includes an attribute distance representing the size in pixels of each Cell. When creating Polygons for each cell, the coordinates in pixels shall follow the scheme shown in Fig. 5. There shall be an empty border around the cells with width of distance/2. The createPolygon method then shall return a square with width distance. The orange dot in Fig. 5 represents the point (0, 0) in pixels. For any point in pixels, the selectClosetIndex method shall return the cell's column and row if the given (x, y) is within its square. For example, focus on the pink dot in Fig. 5:

Let's say that distance equals 10, and let's say that the pink dot belongs to the point (19, 21) in pixels. Then the closest column and row would be (1, 1). A point on the boundary between cells is assumed to belong to the square to the right and/or below. Finally, the width of the GraphMap in pixels shall equal the sum of the widths of the polygons we need to draw in a row, plus the empty border on either side of the row. The height shall work similarly.

**A square lattice where each cell has 4 neighbors set up in a checker board pattern. **/

public class SquareMap extends GraphMap implements Updatable,Iterable { public SquareMap() { } @Override public void update() { // TODO Auto-generated method stub } //Gets the width of the window in pixels for rendering, including the border area. //Return: The width in pixels @Override public int getPixelWidth() { // TODO Auto-generated method stub return 0; }

//Gets the height of the window in pixels for rendering, including the border area. //Return: the height in pixels @Override public int getPixelHeight() { // TODO Auto-generated method stub return 0; } //Create an array of neighbors for the cell with given column and row. //Return: An array containing adjacent cells @Override public Cell[] createNeighbors(int col, int row) { // TODO Auto-generated method stub return null; } //Get the column and row indices for the cell closest to a given pixel (x, y) //coordinate, returned as a Point object in which x is the column and y is the row. //Return: column and row indices for the cell closest to the given (x, y) @Override protected Point selectClosestIndex(int x, int y) { // TODO Auto-generated method stub return null; }

//Create a polygon for the cell with the given column and row. //Returns: A polygon with correct pixel coordinates for rendering the cell @Override public Polygon createPolygon(int col, int row) { // TODO Auto-generated method stub return null; } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Microsoft Visual Basic 2017 For Windows Web And Database Applications

Authors: Corinne Hoisington

1st Edition

1337102113, 978-1337102117

Students also viewed these Databases questions