Go to file
2022-08-02 15:08:56 -05:00
audio Replaced game_success with tmnt Mikey saying "Cowabunga!" 2022-08-01 20:01:57 -05:00
images Made tons of progress, can now detect collisions and print index of card clicked on. 2022-07-31 23:14:09 -05:00
audio.py Updated game_success_sound comment 2022-08-01 18:36:46 -05:00
card.py Fixed link 2022-08-01 00:16:47 -05:00
main.py Issue fixed, but not in the ideal way. I'm working on that. 2022-08-01 21:41:21 -05:00
README.md Changed formatting 2022-08-02 15:08:56 -05:00

Memory Game

Benjamin Zimmerman

Info for users:

  • This is my final project (option 1) for ITSE-1479.
  • It is a memory game with a graphical interface.
  • You can click on a card to flip it. Match 2 cards correctly and the cards will stay flipped. Match all cards to win.
  • Scoring:
    • When you make an incorrect match, you lose 1 point.
    • When you make a correct match, you gain 5 points.

Technical info:

  • This program is written in Python 3, using the turtle module for graphics, and the pygame module for sound and music.
  • Instead of using the provided cardback.png image, I used a photo of one of my turtles as the card back.
  • Notable game behavior: If you make an incorrect match, the cards will flip back over after 1 second. However, if you click on a card while the incorrect match is still face up, nothing will happen.
    • Just wait until the cards flip back over.

Future plans:

  • Change the game behavior to a queue of cards to flip over once the incorrect match is flipped back over, instead of just waiting for the cards to flip back over.
  • Expand the game to include a stopwatch.
  • Expand score to include number of correct and incorrect matches.