turtle_match/README.md

24 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2022-08-02 15:09:21 -05:00
# Memory Game
### Benjamin Zimmerman
2022-08-03 18:27:09 -05:00
2022-08-02 15:09:57 -05:00
---
2022-08-03 18:27:09 -05:00
Info for users:
2022-09-22 11:00:37 -05:00
- This is my final project (option 1) for ITSE-1479 (Intro to Scripting Languages)
- It is a memory game with a graphical interface.
2022-08-02 15:07:56 -05:00
- 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.
2022-08-02 13:29:52 -05:00
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:
2022-08-04 17:02:03 -05:00
- Change the game behavior to a queue of cards to flip over, 1 pair at a time.
2022-08-02 15:07:56 -05:00
- Expand the game to include a stopwatch.
2022-08-04 17:02:03 -05:00
- Expand score to include number of correct and incorrect matches.