This is a modern C++ implementation of the classic Atari 2600 game "Dodge 'Em" released in 1980. The game was originally programmed by Carla Meninsky and released by Sears for the "Sears Video Arcade" under the name "Dodger Cars". Our implementation uses the SFML (Simple and Fast Multimedia Library) for graphics rendering.
Dodge 'Em is a driving game based on a single screen of concentric roadways. The player navigates a car through these roadways, collecting items while avoiding opponent cars controlled by the computer.
- The player drives a brown colored car to collect rewards while avoiding collisions with blue opponent cars
- The player car moves clockwise while opponent cars move counter-clockwise
- Each player starts with three lives
- Players earn 10 points when collecting rectangular-shaped gift boxes placed in the arena
- When the player car collides with an opponent car, one life is lost and the arena is refilled with gift boxes
- Score and remaining lives are displayed at the top of the screen
- Each roadway has four turns, one after each quarter of the roadway
- The player car starts from the middle of the topmost roadway
- Opponent cars start randomly at any turn, at least one turn away from the player car on the same roadway
- The player controls their car using the W, A, S, D keys
- Opponent cars decide whether to take turns based on the distance from the player car, taking turns if it brings them closer to the roadway where the player car is moving
- Level 1: The opponent car is less active and cannot take top or bottom turns on any roadway, while the player can take any of the four turns to avoid collisions
- Level 2: The opponent car becomes fully active and can take any turn just like the player car
- Level 3: The opponent car is in active mode with increased speed
- Level 4: Two opponent cars chase the player car in active mode as in level 2, but starting from different locations. Upon completing level 4, the game ends with a "You won!" message
The game features four types of collectible items:
- Red Rectangle: Awards 10 points
- Green Circle: Gives an extra life and 20 points
- Orange Hexagon: Increases player speed by 1.5x for 10 seconds and gives 10 points
- White Triangle: Makes enemy cars disappear for 10 seconds
- When the game starts, high scores are read from a file (highscores.txt)
- Scores are stored in an array of size 5
- If the current game score makes it to the high score list, the lowest score is removed and the updated list is saved back to the file
The game includes a menu-driven interface with the following options:
- Start a new game
- See high scores
- Help (displays game rules and controls)
- Exit
During gameplay, pressing the 'P' key pauses the game and displays a similar menu with an additional "Continue" option.
- Written in C++ using object-oriented programming principles
- Graphics rendering using SFML library
- Class hierarchy with inheritance for various game elements
- Collision detection between cars and collectibles
- File I/O for saving/loading high scores
- Game state management for different levels and menus
- W: Move up
- A: Move left
- S: Move down
- D: Move right
- P: Pause game
- ESC: Exit current screen/Return to menu
This game was developed as an academic project for an Object-Oriented Programming course.