I'm taking a beginning programming class, and we're on to making text based games, more like read you're own adventures then actual games and I don't quite understand how to get the information form my map, which has all the room information, into a file that will run it. I have the rooms file set up like...
0 roomone
you enter a room, and it looks odd. you can go north or south. which way?
2
north 1
south 2
//will having a space here make a difference? should i delete these?
1 hall
theres a hall here, with a door running east. continue north,go east, or go back south?
3
north 3
south 0
east 4
and so on, so that the room is assigned a number and a name, then it gets a description, then list the number of exits, list what they are, and then list which numbered room that answer should take you to. I don't know how to get it so that it reads into two things, one that takes the first three bits of information as room information, and the second which reads into the number of exits and creates an array with that number of exits, and then reads in the exits, and thier numbers.
what i have is
case class Map(location:Int,place:String,description:String,exits:Array )
case class Exits(numberexits:Int,direction:String,destination:Int)
I know there's probably some easy answer, but I'm really pretty lost on what I should be doing. I don't know how to get my file read in so the right parts go to the right places, and I'm enough of a beginner that alot of what i've been reading isn't very clear to me, so hopefully my questions clear enough that someone can help me out, and tell if i'm going about this even sort of right, and if it will work when i actually try to put it together, since if i understand what i'm doing it has to take user input, look up the direction typed in from the array of exits, look at the destination associated with that, then take that destination and look for a location in map that has that number and take you there and then println(Map.description) and wait for the next input?