Archive for the ‘School’ Category
Maze Solver Game
Saturday, December 19, 2009 15:43 No CommentsEssentially what the game consists of is you enter the size of your maze as an integer n (ie: 10) and then it generates a random maze of size nxn (ie: 10×10) which can be different for each nxn matrix you generate. Do to time restraints I wasn’t able to implement the A* search like [...]
Parsing XML
Saturday, December 19, 2009 14:34 1 CommentFor one of my classes a project was to write two programs, one of which uses the document object model (DOM) API to parse an XML file and one which uses the Simple API for XML (SAX) API. The programs are just tiny and do not dod anything fancy. Basically just breaks down the content of the XML files into [...]
Pathfinder: A path finding game.
Friday, October 30, 2009 17:56 1 CommentPathfinder is all about finding a path between point A and point B. The GUI portion, provided for us, is sectioned off into a grid of ‘tiny’ squares where two are colored turquoise (set by programmer), in my case one on the mid left and the other on the mid right side of the grid. You start [...]
Shopping Mall: Java App
Thursday, June 4, 2009 23:02 No CommentsIn the Winter term of 2009 the class was given a project, done in partners using pair programming, required us to design a shopping mall application from the ground up providing a UML class, sequence, and state diagrams along with a fully functional application. We were required to have at least one shoe, game and [...]