Hi all, First time on StackOverflow, keep see it coming up so thought id ask.
Im currently writing a very basic java game based on the idea of theme hospital. I'm quite new to java, currently studying at uni and in my first year. I have done java for nearly 2 years now on and off, but I'm finally devoting my time to a decent project.
Anyway sorry the question. I'm at the stage where I need to create a person (patient) to be admitted to the hospital. They need to go to the reception desk, then GP's office, and then back to their starting position. I have looked into A* path finding, but it seems really complicated to me. I understand how it works I think, but am unsure how to implement it into my game. So far, the user can place a reception desk, and build a GP's office. Each of these has a "point of usage" which will be the place the patient has to get to. The grid squares can only be full or not, there will be no different terrain.
I'm hesitant to paste any code yet, as it's messy as I've learn alot of new techniques to do with GUI in the past few months. My plan is to get to milestone 1, making the patient go to the desk then the office and then leave. Once I have this, I will tidy up the code more.
I've seen many implementations of A* and many different types. Can someone give me a starting point I can work with? Should I try and adapt an already written set of classes, or try to write my own from scratch?
Thanks in advance.
Rel