+ 77
Can anyone give some ideas for simple c++ or python games and ideas for simple software
102 Answers
+ 46
Here are two games I wrote a while ago (both easy and fun):
1-Finger trainer. You have to tap the screen as much as possible in 7 seconds. Has highscores.
2-Reflex trainer. At first there is a traffic light with gray light. Once you tap the screen, the light goes yellow and it waits a random number of seconds ranging from 1 to 7. Once this time has passed, the light goes green and you have to tap the screen as fast as possible. With highscores too.
Both making and playing these games with friends were fun, so it was a motivating project for me.
It is not difficult to change the tap with a click.
+ 33
Snake 🐍 😃
+ 25
Hangman
+ 22
You can create platform games like “Super Mario Bros” using SFML
+ 22
a yahtzee game 👍😉
rui pedro Congratulations for your trending question 👍😉
+ 21
tic tac toe
+ 18
"guess my number"
+ 16
Here are some ideas which I come up with you can make these little and simple softwares / games to develop your understanding more about softwares.
1). Guess my number
2). Maze
3). Tap to catch the ball
4). Tap to hit my moving target
5). Type and save in file
6). Get weather. = for any states,city, country,
7). Remove the given characters from a given big large file.
https://code.sololearn.com/czIMAOmT8LS4/?ref=app
+ 15
https://code.sololearn.com/WGM65WO5mv2T/?ref=app
+ 15
The snake game like that one in the old Nokia phones
+ 14
simple game with gravity
js,svg,html,css
https://code.sololearn.com/WRiuSlTisgqa/?ref=app
+ 13
Start way super basic. First get a shape to move with keyListener. After that I think working with a bitmaps collision would prove the most interesting and give you the most insentive to keep going.
Dont worry about copying code from others at first. Just make sure you notate and understand why they use stuff like keyListener and window.end. You should be fine.
Also NEVER forget that your first game should be super basic and take no longer than a month to develope.
+ 13
Try something that hasn't been done here already. Perhaps Solitaire? I don't think that's been created here, but I could be wrong.
+ 12
I made a few games:
https://code.sololearn.com/cfsyqlQp6eHu/?ref=app
https://code.sololearn.com/cd93rAmddsYz/?ref=app
https://code.sololearn.com/cx3nV5n0h4wY/?ref=app
https://code.sololearn.com/WL2rQTx60TLz/?ref=app
https://code.sololearn.com/Wqi2W8dWaqUm/?ref=app
https://code.sololearn.com/Wi6MyG54imEX/?ref=app
https://code.sololearn.com/WJbOBHz4JhEi/?ref=app
+ 11
idk.....a easier version of Pac-Man
+ 11
I can give you ideas for those games I created in c++ :
1. Tic-Tac-Toe
2. Snakes
3. Number guessing game
4. Hangman
5. Word guessing game
All these games can easily be created without learning graphics.
Best of luck!!😀
+ 9
Hangman, rock paper scissors game, dice games, guessing games etc.
+ 9
2048 is the best if you create. cause it include almost similar logic like In tic-tac-toe, snake, PAC man. and it's really challenging.
+ 8
With Python you could code a pacman game with either TKInter or TurtleTool.