Dunno wat to do

Aug 25, 2012 at 3:11pm
Can anyone suggest any project I should do?
I am a beginner...
Aug 25, 2012 at 3:16pm
Something that interests you (point is, we don't know what that is).
Last edited on Aug 25, 2012 at 3:17pm
Aug 25, 2012 at 3:50pm
closed account (o3hC5Di1)
Need4Sleep had a thread going for a while that offers beginner exercises:

http://www.cplusplus.com/forum/beginner/75558/

Hope that helps.

All the best,
NwN
Aug 25, 2012 at 5:28pm
I am a beginner...

What can you do? (Arrays, Pointers, Classes, Inheritance)
Aug 25, 2012 at 5:35pm
Could write a basic shell program. That's a pretty fun project, and if done right it's easy to just keep adding on to it.
Aug 25, 2012 at 7:00pm
@Script Coder

What can you do? (Arrays, Pointers, Classes, Inheritance)

All of these.
Last edited on Aug 25, 2012 at 7:01pm
Aug 25, 2012 at 7:36pm
Okay then why do you say you are a beginner? What do you define as a beginner?
Aug 26, 2012 at 1:46pm
Okay I'm not a pro. still learning...
Aug 26, 2012 at 8:12pm
If you are maths oriented then Project Euler. If you are more games oriented then simple text based games and slowly progress. Other wise here is a list:
Fully Useable Linked List, and Que that Inherits from it.
Some sort of db, maybe add ur own SQL like language (if you're up to it)
A web server (requires A LOT of technical reading)
A bignum class
Model a CPU
Aug 26, 2012 at 8:36pm
I wouldn't bother making text-based games unless you genuinely want to. Don't do it because you think it's easier: often, it won't be. No, you don't have to deal with rendering sprites or keyboard-and-mouse input, but that stuff is easier than text processing, unless you want to have hard-coded options for every situation (which will make the game boring to play and tedious to write, and requires the player to type everything exactly as you expect them to (unless you strip punctuation (easy), make everything lower-case (easy), check for synonyms (not so easy) and equivalent sentence structure (hard!))). Finally, the kind of thing you learn for text-based games won't really transfer to graphical games, so like I said, unless you actually want to make text-based games, don't bother.

If you want to learn to make games, the best way is to make some games. Where to start depends what genre of game you're into. Get a library for loading and rendering 2D sprites (I recommend SFML; it can do 3D as well (via OpenGL), but you should start with 2D graphics, as 3D is pretty complicated) and learn to use it. Then, start making something. Aim high, but be realistic - 3D FPS and MMORPG games are going to be out of your grasp, especially if you're on your own. A lot of people start with Pong, Space Invaders, etc. clones. That's probably the best way to start. You could also make clones of side-scrollers like Sonic the Hedgehog or top-down games like Pokemon and Zelda. Or you could make something totally new. Games like Pong and Space Invaders are probably easy because they don't have many different graphics and they have a static camera, so you don't have to worry about loading regions of a map. If you want to have a moving camera, the easiest perspectives are probably side-scrolling and top-down.
Last edited on Aug 26, 2012 at 8:49pm
Aug 26, 2012 at 8:55pm
www.projecteuler.net - Great website for learners!
Aug 27, 2012 at 5:08am
Thanks!!!
Aug 27, 2012 at 8:58am
@chrisname When I said text based games, I meant dungeon crawl like games, games that use tiles, sorry maybe I should have been clearer
Aug 27, 2012 at 7:00pm
For programming challenges http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8

Get a book: algorithms, data structures, computational {geometry,intelligence}, etc.
By instance, may try to create a multilayer perceptron (MLP FiM)

Fully Useable Linked List, and Que that Inherits from it.
queue, I suppose.
That's bad design, it breaks LSP. You better use composition.
Last edited on Aug 27, 2012 at 7:00pm
Topic archived. No new replies allowed.