Page 1 of 1

My Random Game

Posted: Thu Apr 01, 2010 4:44 pm
by dream_coder
Hey all, I am currently following some C++ tutorials. Whilst doing this I am applying the code to make a random game. So far I have a game menu. I really aint sure how this is going to turn out, Im just making it up as I go along. But as its just a console application Im imaging it will be some sort of text adventure game. I will keep you all posted as time goes on.

Re: My Random Game

Posted: Thu Apr 01, 2010 4:48 pm
by LeonBlade
Sounds like a cool idea :)
I'll be keeping watch on this, most definitely.

Re: My Random Game

Posted: Tue Apr 06, 2010 4:58 pm
by dream_coder
Not really done much so far. I have changed from VC++ to Dev C++. It seems to work as I expected. Redone all my code so far and added the ability for multi coloured text. Going to start designing my player and monster classes soon and create some basic battle system. Then need to design some sort of file structure to hold level information in, which may be quite a challenge.

Re: My Random Game

Posted: Tue Apr 06, 2010 5:21 pm
by Bakkon
dream_coder wrote:I have changed from VC++ to Dev C++.
Why would you do this?

Re: My Random Game

Posted: Tue Apr 06, 2010 5:30 pm
by dream_coder
I was just having problems with VC++ earlier on. WHen Ive run more or less identical code in Dev C++ Im getting less errors. Aint sure why this is.

Re: My Random Game

Posted: Tue Apr 06, 2010 5:55 pm
by eatcomics
dream_coder wrote:I was just having problems with VC++ earlier on. WHen Ive run more or less identical code in Dev C++ Im getting less errors. Aint sure why this is.
Visual c++ has a better debugger maybe? lol

Re: My Random Game

Posted: Tue Apr 06, 2010 6:28 pm
by dream_coder
Guess I might try it again in VC++ now I have sorted out the header file problems that I had before. And VC++ does look prettier as well, lol.

Re: My Random Game

Posted: Tue Apr 06, 2010 7:37 pm
by Moosader
dream_coder wrote:I was just having problems with VC++ earlier on. WHen Ive run more or less identical code in Dev C++ Im getting less errors. Aint sure why this is.
I'd suggest using Code::Blocks instead. VC++ is very old and outdated, never updated anymore. Code::Blocks, Eclipse, or NetBeans (I think it has a C++ environment?) are decent alternatives to Visual Studio.

Re: My Random Game

Posted: Tue Apr 06, 2010 8:07 pm
by Bakkon
Moosader wrote:VC++ is very old and outdated, never updated anymore.
Wait what? Are we talking about the same thing?
http://www.microsoft.com/express/Downlo ... Visual-CPP
I use this and love it.

Re: My Random Game

Posted: Tue Apr 06, 2010 8:50 pm
by eatcomics
she meant dev c++...

Edit: at least I thought...

Re: My Random Game

Posted: Wed Apr 07, 2010 2:33 am
by K-Bal
Moosader wrote:VC++ is very old and outdated, never updated anymore.
:>

Re: My Random Game

Posted: Wed Apr 07, 2010 3:43 am
by dream_coder
OK Ive finally got VC++ working the way I want it to, for now. Think my previous problems were my lack of knowledge in VC++ 2008. Just had a look at MSDN and it turns out that before when I was selecting a CLR COnsole App for my project I was doing it wrong. Ive now done it as a Win32 Console app with no precompiled headers and it works just fine. Totally different from when I did C++ at uni years and years ago as we used VC++ 6 back then. Shame I aint really touched it since then up until now.

Re: My Random Game

Posted: Wed Apr 07, 2010 3:59 pm
by jacob.krustchinsky
Moosader wrote:
dream_coder wrote:I was just having problems with VC++ earlier on. WHen Ive run more or less identical code in Dev C++ Im getting less errors. Aint sure why this is.
I'd suggest using Code::Blocks instead. VC++ is very old and outdated, never updated anymore. Code::Blocks, Eclipse, or NetBeans (I think it has a C++ environment?) are decent alternatives to Visual Studio.

Netbeans - nod nod- ! Very good editor in my book!

Re: My Random Game

Posted: Fri Apr 09, 2010 5:00 pm
by RyanPridgeon
Aye, get your IDE sorted and get to work, programming isn't easy :)

Look forward to seeing your progress!