Jump to content

ChristopherJ

New Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by ChristopherJ

  1. I am tasked with writing an application that is similar to battle ship. There is a 100x100 grid. Initial, each cell of the grid has a red box in it. A user clicks the red box, enters a special code that they were given, and that red box reveals a letter or a blank space. There a certain "winning words". So lets say the letters WINNIN have been revealed. The person who reveals the G is a "winner". So, the application does a few things: Firstly, after a user clicks the square and enters a code, it checks to see if the code is valid. Then, assuming the code is valid, the red square turns into a letter or a blank space. If a letter is revealed, the system checks to see if it's a "winning" letter. Therefore, the system would need to see if the other letters in that same word have been revealed. I am using a WAMP stack and javascript (jQuery). I am having trouble figuring out how to swap the image (from a red square to a letter) after an image is clicked. Keep in mind this needs to be swapped for everyone who will subsequently view the application and therefore must be database driven. I'm thinking to have a 2 MySql table (with only one column) that corresponds with the visual html table before and after being clicked (lets call them VISUAL_TABLE and ACTUAL_TABLE). Initially, all the rows in the visual table would contain the following string <img src="redsquare.jpg" />, and row 1 would correspond with cell 1 in the actual html table, row 2 would be cell 2 in the actual html table, etc. Then, when a user clicks the image in cell 1 (which row 1 in VISUAL_TABLE), it replaces row 1 in VISUAL_TABLE with row 1 in ACTUAL_TABLE. The row 1 in actual table may contain the following string <img src="letter1.jpg" />, After this swap has been made, I can run a php script that checks to see if that swap was a winner. So, for example, if the winning word was WIN, the W being in row 1, the I in row 2, and the N in row 3, the php script would see if all 3 of those rows is no longer <img src="redsquare.jpg" /> and if so then it saves that person as a winner. Does that make sense to anyone else? Is there a better way to do this? Is there a framework/library that could make this easier?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.