Search found 12 matches

by techboy123
Mon Sep 12, 2011 11:33 am
Forum: General/Off-Topic
Topic: Pie
Replies: 12
Views: 3105

Re: Pie

Delicious Banoffe pie.
by techboy123
Thu Sep 08, 2011 3:54 pm
Forum: Game Development
Topic: 2D RPG Engine
Replies: 153
Views: 99580

Re: Simple 2D RPG Engine

Nice work. I approve of the sound track selection and sprite selection :)
by techboy123
Sun Aug 28, 2011 3:09 am
Forum: Programming Discussion
Topic: need help
Replies: 9
Views: 1647

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...
by techboy123
Fri Aug 26, 2011 7:47 am
Forum: Programming Discussion
Topic: Fuction calls getting skipped in switch statements
Replies: 2
Views: 534

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...
by techboy123
Wed Aug 17, 2011 1:29 pm
Forum: Game Development
Topic: I finished a game!
Replies: 6
Views: 1745

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...
by techboy123
Wed Aug 17, 2011 1:06 pm
Forum: General/Off-Topic
Topic: Official "Hello, World! (I'm new!)" thread
Replies: 821
Views: 587516

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...
by techboy123
Sat Aug 13, 2011 2:00 pm
Forum: Game Development
Topic: Hey everyone... I made this game!
Replies: 9
Views: 2474

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...
by techboy123
Sat Aug 13, 2011 1:08 pm
Forum: General/Off-Topic
Topic: Official "Hello, World! (I'm new!)" thread
Replies: 821
Views: 587516

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...
by techboy123
Sat Aug 13, 2011 9:36 am
Forum: Programming Discussion
Topic: Qt and OpenGL
Replies: 4
Views: 823

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...
by techboy123
Mon Jan 10, 2011 4:18 pm
Forum: Programming Discussion
Topic: Ini Parser
Replies: 0
Views: 1814

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...
by techboy123
Sun Feb 21, 2010 8:18 am
Forum: Programming Discussion
Topic: How have Programming languages changed over time?
Replies: 2
Views: 467

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...
by techboy123
Sat Feb 20, 2010 12:06 pm
Forum: Programming Discussion
Topic: How have Programming languages changed over time?
Replies: 2
Views: 467

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...