Friday
Advanced Control Flow - Switch Statements
A switch statement allows you to control the flow of your program similar to if and else statements, but can be easier for the user to understand.
The Switch Statement
The structure of a switch statement is the following:
case <constant_expression> :
statements
break;
case <constant_expression> :
statements
break;
//More cases…
default :
statements
}
All entries filed under Programming & Development
no responses - Posted 08.21.08
Wondering how to modify or run our source code for our OpenGL/SDL projects in order to start editing and learning how to make video games? No worry. Below, I’ll run you through the 3 steps in order to do so. (Yes, your heard it right, simply 3).
Setting up your enviornment
Step 1
First things first, visit Codeblocks [...]
2 responses - Posted 08.20.08
Learn how to make an impressive blog using Wordpress for free with or without your own hosting account.
Series
This is the second part of our How to start blogging series.
Part 1 The What, Who, How, Where & Why of Blogging - So what is a blog? And who blogs anyways?
Wordpress
Wordpress is a very friendly CMS [...]
1 response - Posted 08.18.08
I finally got around to finish my version of Pong. It isn’t true to the original game, but resembles it somewhat in game play. This isn’t supposed to be a deep game, simply a downloadable game that you can modify in order to learn how to make a simple video game.
How to get started
You simply [...]
no responses - Posted 08.14.08
Just wanted to keep everyone up to date and let you all know that the source code for the Piranha Plant, Wario, and Coin Game has been posted to the forums.
Go ahead and give it a try, it will be a great experience to see what was put into making that simple game. Make a [...]
continueno responses - Posted 08.14.08
The ultimate test after you created your website, is to test it out using multiple browsers. Why? It might look great in Firefox but maybe not in Internet Explorer, Opera, Safari or Konquerer? Not your entire audience is going to use one browser.
Browsershots
Browsershots allows you to type in your website and choose from a [...]
6 responses - Posted 08.13.08
This is a quick and simple tutorial on how to setup CodeBlocks with support for the Simple DirectMedia Layer (SDL).
Lets start…
If you have never installed CodeBlocks before, keep reading until you see the You are done! text. If you already have CodeBlocks installed skip down to where it says I already have CodeBlocks!.

