Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Java Programming problem Part 1: Recursion and text file input This homework will ask you to find a path through a maze whose form is

Java Programming problem

Part 1: Recursion and text file input

This homework will ask you to find a path through a maze whose form is given to you via an input file. The input file will indicate the broad outline of a square Maze that you will find your way out of.

Such a maze in the file might look like the following (all characters are separate by a single space).

S

.

.

#

#

#

#

#

#

.

#

#

.

.

D

.

#

.

.

R

.

#

#

.

#

.

#

#

.

#

#

.

.

.

#

#

#

#

#

.

#

.

.

R

#

#

#

.

#

#

#

.

.

.

#

.

#

#

#

.

#

E

.

.

The Legend for this maze is the follows:

S => Start Point, E => End Point (Our Goal), . => Open Path (Cost is 1), # => Stone Impassable, R =>Rabbit (Cost is 10), D => Dragon (Cost is 75)

The idea is that you are an adventurer trying to find your way through this maze using the least expensive path. If your path takes you on a . square then the cost of this path is 1. However, if you encounter a Rabbit then you have to fight the rabbit for the square at a cost of 10. Finally if you encounter a Dragon then a major fight will ensue at a cost of 75. Different paths from S to E will cost different amount in total.

As adventurers we should really be taking the other path. However, this portion of the assignment does not require you to find the shortest path, but just one path through the maze.

Solution Design

Your program is to implement a Recursive solution to the problem of finding a path through the maze. In order to do this we are going to ask you to implement a GameCell Class and a GameBoard Class. A GameBoard is to be composed of a 2D square array of GameCell Entries. Each of these GameCell entries will correspond to one square in the maze. The GameBoard will then represent the entirety of the maze. UML diagrams (GameCell, GameBoard)for these classes are shown bellow.

GameCell

-cVal:char

-nRow:int

-nCol:int

-bVisited:boolean

+Rabbit_Cost:int

+Dragon_Cost:int

+Blocked_Cost:int

+Open_Cost:int

+GameCell(cVal:char,nRow:int,nCol:int)

+isVisited():boolean

+setVisited(bVal:boolean)

+getCurrentCost():int

+isBlocked():boolean

+isStart():boolean

+isEnd():Boolean

+toString():String

+getRow():int

+getCol():int

+getVal():char

The Methods are described as following:

GameCell - This method takes the current value that the square is to be associated with in the maze (i.e. R is rabbit, . Is open) and the row and the column position of the cell in the maze.

isVisited,setVisited These are used for determination of whether a square has been visited.

getCurrentCost This returns the current cost for a square (i.e. 1 open, 75 for dragon).

isStart,isEnd These indicate whether or not the current square is a start or end square (no cost).

getRow,getCol - Return the corresponding row and column values in the maze.

getVal Returns the corresponding character in that cell.

toString This will just return a string consisting of the current character value and a space character.

The following page will list the GameBoard UML Diagram

GameBoard

-aBoard:GameCell[][]

-nSquareSize:int

-nStartRow:int

-nStartCol:int

+GameBoard(String:sFileName)

#loadBoard(String:sFileName)

#getSize(String:sFileName):int

+playGame():void

-findStart():void

#findPath(nRow:int,nCol:int):ArrayList

#canGoUp(nRow:int, nCol:int):boolean

#canGoLeft(nRow:int, nCol:int):boolean

#canGoRight(nRow:int,nCol:int):boolean

#canGoDown(nRow:int,nCol:int):boolean

+pathCost(obPath:Vector):int

+printBoard():void

The Methods are described as follows:

GameBoard This is the constructor that takes the name of the file that is supposed to hold a representation of the maze (see Notes on input later).

loadBoard Helper routine which will handle the actual details of reading the file and instantiating the corresponding GameCells.

getSize This routine will return the number of lines in the associated file. Note that we will only be working with square matrices and the number of lines in the file is the same as the number of rows and columns in the max.

findStart This is a helper routine which sets the nStartRow and nStartCol values. Note that these values do not have to be on border square.

playGame This routine will print out

  • If there is a path from the start point to the end
  • The cost of path that was found
  • The Cell positions (row,column) on the path path.

It works by determining the starting position and then calling the recursive findPath routine.

findPath - This is the recursive routine that will walk the maze. In a nutshell this routine will determine if we can go left, right, up, or down and then call itself again in any valid directions. It will return the path from its current position to the end or null if no path from the current point to the end position exists.

canGoLeft, canGoRight, canGoUp, canGoDown - These routines will, when given the current cell position as an argument, indicate if it is ok to go in one of the indicated directions. A cell is valid to visit if

  • It is in the game boundary (i.e. you cant go left if you are in column 0).
  • It is not blocked (i.e. associated value is #)
  • You have not visited the cell before.

pathCost This routine given a path (as stored in a Vector) will return the cost of all squares on that path.

printBoard() This function will print out the contents of the current game board to the screen. The output should look like the following:

Game Board

# . . # # # # #

# . # # . . D .

# . . R . # # .

# # # # . # # S

. . # # # # # .

# . . R # # # .

# # # . . . # .

# # # . # E . .

Input notes:

Input files will consist of a series of lines that each describes a row in our maze. Each character (square) in that row will be separated from the next by a single space character. Note that the # of rows and columns in the maze is assumed to be a square.

The S character may not necessarily be at position (0,0) in the file.

Test Cases:

Test Case Code is provided to you in the subfolder MazeGameFiles/GameTestCases. It would be extremely helpful if you ran these test cases for the appropriate methods as you wrote them.

FYI: (I dont need the file here. I just need the solution code. then i will modify with my file)

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

Advances In Databases And Information Systems 22nd European Conference Adbis 2018 Budapest Hungary September 2 5 2018 Proceedings Lncs 11019

Authors: Andras Benczur ,Bernhard Thalheim ,Tomas Horvath

1st Edition

3319983970, 978-3319983974

More Books

Students also viewed these Databases questions

Question

D. Discuss the value of identifying just a few takeaway messages.

Answered: 1 week ago