Results 1 to 5 of 5
Thread: Need help with a project...
- 08-23-2010, 11:41 PM #1
Member
- Join Date
- Aug 2010
- Posts
- 2
- Rep Power
- 0
Need help with a project...
Hey all, I'm still pretty new to Java, and I need some help... I'm making a simple maze game in an applet, and I need some help making the computer calculate a the correct path. The "Map" is realy simple (a Two-dimensional array) and it's ordered kinda like:
1 = entranceJava Code:00000 12220 00020 00220 02200 32000 00000
2 = path
3= exit
I don't actually use integers tho. I use the class below
Java Code:public abstract class GameObject{ public abstract int getID(); // Planing to use it so it can get the images (HashMap) public abstract boolean canWalk(); // if you can walk on it or not public abstract Image getPaintImage(); // for painting the object (I pan on doing a better way later) }Last edited by matt123337; 08-23-2010 at 11:49 PM.
- 08-24-2010, 02:05 AM #2
What is your question?I need some help making the computer calculate a the correct path
Are you having problems with your code?
Please post the full content of the error messages you have questions about.
-
I agree with Norm. All I see is, "here is my assignment". Without a specific question (and the more specific the question, usually the more helpful the answer) about all we can do is direct you to the tutorials.
Luck.
- 08-24-2010, 03:56 PM #4
Member
- Join Date
- Aug 2010
- Posts
- 2
- Rep Power
- 0
Just ignore this thread I got it working :p
- 08-24-2010, 05:16 PM #5
Similar Threads
-
Adding a project to an existing project
By Seijuro in forum NetBeansReplies: 4Last Post: 08-08-2010, 10:15 AM -
Project Help
By jschmall12 in forum New To JavaReplies: 2Last Post: 04-28-2010, 05:20 AM -
Help with a project
By Mike_H in forum Advanced JavaReplies: 1Last Post: 04-21-2010, 08:31 AM -
open existing project project ..
By itaipee in forum EclipseReplies: 1Last Post: 12-28-2008, 08:12 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks