Beginner game ideas

Pages: 12
closed account (jwkNwA7f)
I have read a lot of Michael Dawson's Beginning C++ Through Game Programming 3rd edition, and I have made a few games. I have now ran out of ideas :(

Can anyone share any of your ideas?

Thanks in advance!
closed account (N36fSL3A)
Pong.
closed account (jwkNwA7f)
That's a good idea, but I am not that advanced yet.

Thank you!
Oh, I know! Clone call of duty!

lol jk. I am really not an internet troll-face.

ummmm, assuming you are still in the console, do a simple black jack game, THEN write your own card counter. aayyyyyy ohhh
closed account (jwkNwA7f)
I am still in the console windows, but I am now reading Charles Petzoid's Programming Windows 5th edition. I'll try making a black jack game a little later today.

Thank you!
chess/checkers
hangman
crossword puzzle
some maze game
High / Low Number Guessing
poker
tic tac toe
memory game
battleship
snake game

these are not games per se, but ill add them:
http://projecteuler.net/

this doesnt have to be python, but can be any language
http://www.pythonchallenge.com/

https://github.com/thekarangoel/Projects
Last edited on
closed account (jwkNwA7f)
I have read http://projecteuler.net/ and https://github.com/thekarangoel/Projects before, and they were a lot of help. I haven't read anything on http://www.pythonchallenge.com/ yet, but it does look helpful.

Thank you!
closed account (jwkNwA7f)
Just saw the edit to your reply with some more ideas:

chess/checkers
hangman
crossword puzzle
some maze game
High / Low Number Guessing
poker
tic tac toe
memory game
battleship
snake game


I have actually made a battleship and a number guessing game before.

The others look great too. I'll try making some of them later today.

Thank you!
closed account (1v5E3TCk)
You can make tetris
NOTE: tetris, snake and chess/checkers arent easy as they looks
closed account (jwkNwA7f)
I know, I was going to try hangman, the memory game, and maybe tic tac toe.

I will keep the other ideas for when I get better.
Hopefully soon :)

Thank you!
Last edited on
closed account (Dy7SLyTq)
chess/checkers arent easy as they looks

so true... i still for the life of me cant figure out how to do it
closed account (1v5E3TCk)
Try to make the tick-tck-toe game with several ways:
-With chars
-With string arrays
-With pointer-pointers
closed account (jwkNwA7f)
I answered that in my previous reply.

I guess you were typing your reply while I posted mine.
Last edited on
closed account (jwkNwA7f)
Sorry,
@DTSCode My reply before was wrong^^
I didn't read all of your reply.
closed account (jwkNwA7f)
That is a good idea, senhor. I will try that when I make it.

Thank you!
closed account (jwkNwA7f)
Working on the tic tac toe game and ran into a problem.

When I put this in it got an error.
char board[ROWS][COLUMNS] = {{"_", "_", "_"}, {"_","_" ,"_"}, {"_", "_","_"}};

For each {"_", "_", "_"} the middle "_" has an error that says "expected }"

How can I fix it?
closed account (jwkNwA7f)
Nevermind. I fixed it.

I should have put '_' instead of "_".
board is char, "_" is string. Either change the contents to '_' or change board to std:string
Last edited on
closed account (Dy7SLyTq)
he has a char array which is a string. he could have written
{{"___"}, {"___"}, {"___"}}
closed account (jwkNwA7f)
I have already solved the problem, but thanks anyway!
Pages: 12