Search found 12 matches
- Mon Sep 12, 2011 11:33 am
- Forum: General/Off-Topic
- Topic: Pie
- Replies: 12
- Views: 3972
Re: Pie
Delicious Banoffe pie.
- Thu Sep 08, 2011 3:54 pm
- Forum: Game Development
- Topic: 2D RPG Engine
- Replies: 153
- Views: 117593
Re: Simple 2D RPG Engine
Nice work. I approve of the sound track selection and sprite selection
- Sun Aug 28, 2011 3:09 am
- Forum: Programming Discussion
- Topic: need help
- Replies: 9
- Views: 2593
Re: need help
Reading the value of std::cin straight into an integer is generally a bad idea (as various jumbles of text looping for an eternity has taught me.) A much safer, less error prone way to go about this is to input the values into a stringstream before hand and then stream into the variable like so. #in...
- Fri Aug 26, 2011 7:47 am
- Forum: Programming Discussion
- Topic: Fuction calls getting skipped in switch statements
- Replies: 2
- Views: 708
Re: Fuction calls getting skipped in switch statements
The syntax of your function definitions is wrong. In the current C++ standard it is illegal to define functions within functions (the new standard allows this in the form of lambdas). I am unsure why it compiles though I put it down to your function bodies actually being scopes within the main funct...
- Wed Aug 17, 2011 1:29 pm
- Forum: Game Development
- Topic: I finished a game!
- Replies: 6
- Views: 2285
Re: I finished a game!
Great work! The game is well polished and the mechanics skillfully implemented to enhance the game-play rather than be an annoyance. The difficulty scaled with the waves at a good rate and the overheating adds a good element of strategy to which targets to go for (especially in the later game). Upgr...
- Wed Aug 17, 2011 1:06 pm
- Forum: General/Off-Topic
- Topic: Official "Hello, World! (I'm new!)" thread
- Replies: 821
- Views: 629532
Re: Official "Hello, World! (I'm new!)" thread
Hey Irish. Thanks for the welcome. I wish you luck in learning the art of C++. I remember certain areas being adventurous to learn (pointers left me feeling dizzy until a couple hundred crashes later). Have a great time and don't feel frustrated if you don't quite get something. Some parts of C++ ju...
- Sat Aug 13, 2011 2:00 pm
- Forum: Game Development
- Topic: Hey everyone... I made this game!
- Replies: 9
- Views: 2996
Re: Hey everyone... I made this game!
Awesome looking game . I especially like the varied tiles, objects and the audio. Now if only there were an android version...
- Sat Aug 13, 2011 1:08 pm
- Forum: General/Off-Topic
- Topic: Official "Hello, World! (I'm new!)" thread
- Replies: 821
- Views: 629532
Re: Official "Hello, World! (I'm new!)" thread
Hello Everyone. After lurking round the forums for quite a while now. I decided to actually make a hello post and get involved with the community. I've been programming in C++ for about 6 years (first two years were really just dabbling with the language). Today I now play around with game developme...
- Sat Aug 13, 2011 9:36 am
- Forum: Programming Discussion
- Topic: Qt and OpenGL
- Replies: 4
- Views: 1050
Re: Qt and OpenGL
After playing around with OpenGL in Qt and reading through the code. I found two things that could be cause of your texture issues. I'm assuming you have put the content folder in the working directory of the program (You do say it definitely exists; if you're unsure you can just call QDir::currentP...
- Mon Jan 10, 2011 4:18 pm
- Forum: Programming Discussion
- Topic: Ini Parser
- Replies: 0
- Views: 1974
Ini Parser
I was slightly bored of writing code to read a file to get settings, etc. So I wrote a class or two to make it a bit more painless for myself. I haven't tested what happens when the config file format is incorrect (my bad) but I would bet it ends badly. This config (or ini, never looked up any diffe...
- Sun Feb 21, 2010 8:18 am
- Forum: Programming Discussion
- Topic: How have Programming languages changed over time?
- Replies: 2
- Views: 674
Re: How have Programming languages changed over time?
Don't worry I wasn't expecting an essay (else i'd be done in for plagiarism ;)) . Thanks for all the helpful info, I'll be sure to get stuck right in. I just looked up the book you mentioned and luckily google's got a preview copy so im reading that. The chart was also very interesting and will be u...
- Sat Feb 20, 2010 12:06 pm
- Forum: Programming Discussion
- Topic: How have Programming languages changed over time?
- Replies: 2
- Views: 674
How have Programming languages changed over time?
I am doing extended project and decided to look at "How programming languages have changed over time". After snooping round the internet a little bit, I found out a small bit. However I found little regarding how they actually evolved and started drawing conclusions from various "x vs...