Posts Tagged ‘java’

Card Deck Version 0.5

Monday, December 28, 2009 16:50 No Comments

I got the urge to do some programming over the holidays and since one of my ideas was for a card game I thought I would create a deck of regular playing cards that could be used for playing any card game which uses a regular deck. Basically the deck includes all 52 cards plus [...]

This was posted under category: Card Deck Tags: , , , , , ,

Maze Solver Game

Saturday, December 19, 2009 15:43 No Comments

Essentially 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 [...]

This was posted under category: Programming-Uni Tags: , , , , , ,

Parsing XML

Saturday, December 19, 2009 14:34 1 Comment

For 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 [...]

This was posted under category: Programming-Uni Tags: , , , , , , , , , ,

Pathfinder: A path finding game.

Friday, October 30, 2009 17:56 1 Comment

Pathfinder 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 [...]

This was posted under category: Programming-Uni Tags: , , , , , , , , ,

Protocol, Chat, & LAN/Internet Play

Wednesday, September 2, 2009 7:49 No Comments

The following could probably easily be considered three ideas in one, but because the protocol idea seems to ‘bridge’ the other two I decided on an all-inclusive post.
I would like to write my own application-layer protocol that would allow me transfer the data, whether it be text (for chat) or something else relevant to my application(s). 
The following idea [...]

This was posted under category: Ideas Tags: , , , , , , , , , , ,

Packagers & Installers

Tuesday, July 14, 2009 13:35 No Comments

A while back I was surfing the Internet for a few days, in search of a way to package my Java application to make it executable (ideally on multiple operating systems).  I am able to make it an executable jar file, however, this did not solve wanting to have the documentation installed (well optional) with the program itself.
I [...]

This was posted under category: Programming Tags: , , , , , , , ,

SOS Version 1.0

Friday, July 10, 2009 16:59 No Comments

I am proud to announce the release of my SOS Game version 1.0.  This is the first “major” application I have done from start to finish on my own following some sort of software design.  Typically I would just dive in and started coding my applications, but this time I started by coming up with [...]

This was posted under category: SOS Tags: , , , , , , , , , ,

Pre-release fixes & UML Diagram

Wednesday, July 8, 2009 20:42 No Comments

The following is a summary of the glitches I found and thus fixed along with a little background on how I enhanced the look and feel of the GUI.
Pre 1.0 release testing Fixes:

WinnerView was not clearing the winner of previous game when new game was created

Board:

added variable boardSize, which stores SMALL, MEDIUM, or LARGE passed [...]

This was posted under category: SOS Tags: , , , , , , , , , , , ,

Logo + Final UML Diagram

Saturday, July 4, 2009 22:29 No Comments

I am pretty much ready to release v1.0 of my SOS game, however, I was hoping that I would have come up with a logo that I could use to represent both my website and my software.
The following is a summary of my progress this week leading up to the release of version 1.0 (official [...]

This was posted under category: SOS Tags: , , , , , , , , , , ,

Feature Set: SOS v1.0

Friday, July 3, 2009 14:46 No Comments

Version 1.0 contains these features from the original feature set:

Playing area (grid)
Two player
Three difficulty settings (ie: board sizes)
Scoreboard to keep track of the SOS’s for each player
Undo
Player 1 goes first
Assign own name
Help/Instructions

On top of initial feature set I added:

Games won: the ability to keep track of how many games were won by each player until [...]

This was posted under category: SOS Tags: , , , , , , , , ,