Add Pygame and Arcade mocking support for educational game development #146
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR implements comprehensive mocking support for both Pygame and Arcade, the two most popular Python game development libraries used in educational settings.
What's Added
Arcade Mock (
MockArcade)Arcade is a modern, Pythonic game library designed specifically for education. The mock captures:
open_window,set_background_color,close_window)Pygame Mock (
MockPygame)Pygame is the classic Python game library with widespread adoption. The mock captures:
pygame.init(),pygame.quit())pygame.display.set_mode(),pygame.display.flip())pygame.draw.rect(),pygame.draw.circle(), etc.)pygame.event.get())pygame.mixer.Sound)pygame.time.Clock)Educational Benefits
Both mocks follow the same pattern as the existing matplotlib mock, allowing educators to:
Example Usage
The implementation includes comprehensive test coverage with both unit tests for the mock classes and integration tests demonstrating usage within the pedal sandbox system.
Fixes #9.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.