Making a portfolio

Pages: 12
Apr 25, 2009 at 12:54pm
Okey, so here's the thing.

Next year I want to do the study International Game Architecture and Design but the problem is that 50% of the students that get accepted, get accepted through a portfolio which you would have to hand in the 15th of may.

Seeing as I want to make sure I get accepted, I want to hand in a good portfolio but I have no game programming experience at all..

So my question would be: Can you guys help me with this? Give me some good short tutorial, anything really. Preferably in C++ because that is the programming language they focus on in that school.

Hope to get some help :)

Site of the school: http://www.nhtv.nl/default.aspx?themaset=221ba91b-a00c-4e6a-88e0-3695d1dc6a0f

Things I need to know according to them: http://www.nhtv-assessment.nl/files/comp_game.html
Last edited on Apr 25, 2009 at 1:12pm
Apr 25, 2009 at 1:22pm
You'll find gamedev.net 's forums will give you a lot of help with something like this I think.
Apr 25, 2009 at 1:53pm
Any thread in specific?
Apr 25, 2009 at 2:00pm
Apr 25, 2009 at 2:25pm
Yea thanks :) Gonna try a tutorial with Allegro now.
Apr 25, 2009 at 3:02pm
~~ Can't even figure out how to install Allegro..................... -fail-
Apr 25, 2009 at 3:39pm
Installing libraries isn't the easiest thing - You can try some console stuff like this - Here is a demo I made as I just started a website. It doesn't have the use of big functions. The main point of this one is to get people on there feet with the order of how a game should be made i guess.

Tell me what you think :)

http://cplusdev.com/pages/tutorials/tutorials.html

Hopefully you got visual studio 2008 installed :)
Apr 25, 2009 at 3:58pm
installing it atm ;)
Apr 25, 2009 at 4:08pm
Excellent - this is a very basic game but it gives you a good idea how games are laid out. And how to use some of windows platform sdk's awesome features.
Apr 25, 2009 at 4:13pm
YOU PHAILED EPIX L00ZER!!11!!!10!!!!1

xD I lol'd :P

So, I have no clue how to use this program, is there a start / play option or..?
Apr 25, 2009 at 4:14pm
Run it and find out - and read the tutorial page on what everything does.
Apr 25, 2009 at 4:21pm
yea reading it :)
Apr 25, 2009 at 4:33pm
Awesome - Hopefully somehow it helps. Sorry if I have any late reply's it's 2:30am here and I'm working on a particle engine at the moment so I'm getting tired heh :)
Apr 25, 2009 at 4:42pm
ah, its 6:42 PM here, no probs on the replies :) happy to have someone to talk to about this at all... any tips on how to compile and run the program? can't seem to get it to start

I do have bloodshed dev-C++ installed but it gives a few warnings / errors which makes me unable to compile: `main' must return `int'
Last edited on Apr 25, 2009 at 4:46pm
Apr 25, 2009 at 4:49pm
Not to sure about dev-c - But this was run in visual studio 2005 and 2008 and ran fine with no errors. Just create a new project in 2008 as you said you installed it - Make it a console app add a new .cpp file to it. Then paste the code from the .cpp you can download from my site into it. And well shouldn't need to do anything more than that.

Compile and run :)
Apr 25, 2009 at 4:53pm
1>.\Spaceinv.cpp(1) : warning C4627: '#include <stdio.h>': skipped when looking for precompiled header use
1> Add directive to 'stdafx.h' or rebuild precompiled header
1>.\Spaceinv.cpp(2) : warning C4627: '#include <windows.h>': skipped when looking for precompiled header use
1> Add directive to 'stdafx.h' or rebuild precompiled header
1>.\Spaceinv.cpp(3) : warning C4627: '#include <time.h>': skipped when looking for precompiled header use
1> Add directive to 'stdafx.h' or rebuild precompiled header
1>.\Spaceinv.cpp(416) : fatal error C1010: unexpected end of file while looking for precompiled header. Did you forget to add '#include "stdafx.h"' to your source?

hmmmmmmmmmz....
Apr 25, 2009 at 4:54pm
Oh yes your going to have to remake the project but when you do - make an "Empty Project" if possible?
Apr 25, 2009 at 4:55pm
Hmm I'll look :)
Apr 25, 2009 at 4:58pm
got it, needed some tweaking tho and you also needed to #include "stdafx.h"
Apr 25, 2009 at 4:59pm
omg, I roxed that invader's ass! :P
Pages: 12