Jul 25, 2013 at 2:39am UTC
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!
Jul 25, 2013 at 1:09pm UTC
That's a good idea, but I am not that advanced yet.
Thank you!
Jul 25, 2013 at 8:40pm UTC
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
Jul 25, 2013 at 8:48pm UTC
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!
Jul 25, 2013 at 9:06pm UTC
Last edited on Jul 25, 2013 at 9:10pm UTC
Jul 25, 2013 at 9:15pm UTC
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!
Jul 26, 2013 at 6:58pm UTC
You can make tetris
NOTE: tetris, snake and chess/checkers arent easy as they looks
Jul 26, 2013 at 7:05pm UTC
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 Jul 26, 2013 at 7:06pm UTC
Jul 26, 2013 at 7:08pm UTC
Try to make the tick-tck-toe game with several ways:
-With chars
-With string arrays
-With pointer-pointers
Jul 26, 2013 at 7:08pm UTC
I answered that in my previous reply.
I guess you were typing your reply while I posted mine.
Last edited on Jul 26, 2013 at 7:08pm UTC
Jul 26, 2013 at 7:15pm UTC
Sorry,
@DTSCode My reply before was wrong^^
I didn't read all of your reply.
Jul 26, 2013 at 7:16pm UTC
That is a good idea, senhor. I will try that when I make it.
Thank you!
Jul 27, 2013 at 9:19pm UTC
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?
Jul 27, 2013 at 9:27pm UTC
Nevermind. I fixed it.
I should have put '_'
instead of "_"
.
Jul 27, 2013 at 9:29pm UTC
board is char, "_" is string. Either change the contents to '_' or change board to std:string
Last edited on Jul 27, 2013 at 9:30pm UTC
Jul 27, 2013 at 9:31pm UTC
he has a char array which is a string. he could have written
{{"___"}, {"___"}, {"___"}}
Jul 27, 2013 at 9:40pm UTC
I have already solved the problem, but thanks anyway!