I'm just starting out in C++ programming and I want to try creating a space invaders clone in C++, I want to avoid using game libraries and things that would solve a lot of the problems (like game loop and vector maths etc) so I can tackle these myself, but, I have no idea how to begin drawing things to a screen.

I was wondering if there's a good library I should use to simply allow myself to draw lines or graphics to the screen or whether I can do this without the use of a library?

I'd appreciate any advice,

Thanks.

link|improve this question
2  
What Operating System? – Aryabhatta Jun 23 '10 at 22:37
4  
C++ can't do anything without a library. It makes very few assumptions about the machine it will be running on; in particular it doesn't assume it has any graphics capability at all. – Mark Ransom Jun 23 '10 at 22:38
This might be a case where iterative development is a better approach, starting out with a library which solves most of the problems for you, just to get a minimal game functioning, then slowly replacing each piece provided by the library with something you wrote yourself. The down side is that your final structure will be quite similar to the design of the original library, but the upside is you will always have a functional program to go back to. – Conspicuous Compiler Jun 23 '10 at 22:41
feedback

8 Answers

up vote 6 down vote accepted

I recommend either Allegro or SDL, even though they are mostly 2D:

Allegro:
http://alleg.sourceforge.net/

SDL:
http://www.libsdl.org/

link|improve this answer
I've used both and they are both pretty easy to use if you know C++. – daveangel Jun 23 '10 at 23:10
This is the best book for using Allegro to make games: amazon.com/Game-Programming-All-Jonathan-Harbour/dp/1598632892/… – daveangel Jun 23 '10 at 23:19
feedback

Check out SDL.

link|improve this answer
feedback

I would check SDL or Allegro

link|improve this answer
feedback

I guess SDL is the simple library you're looking for. If you want you can work pretty much with the screen as a framebuffer where you modify pixel by pixel if you really want. It's a C library, but it's quite object oriented, so it's nice to work with in C++ as well.

link|improve this answer
feedback

PixelToaster (was OpenPTC/TinyPTC) is one of my favorites. It's fairly minimalistic and very easy to get started with.

link|improve this answer
feedback

There are a lot of simple libraries. SDL and Allegro have gotten a lot of mentions already, but there are several others as well:

  • OpenGL
  • DirectX (yes, yes, I know, not "simple," but certainly gets the job done)
  • Cairo (for vector drawing)
  • SFML (an SDL-alike that has some drawing primitives)
  • GGI
  • Qt (which does a lot more than widgets and is highly modular)
  • DirectFB (which works without a host GUI like X.org)

And many others I'll be kicking myself for forgetting.

link|improve this answer
OpenGL is very low-level though, I'm not sure a guy that just wants to make a game wants to look through all that. SDL already runs on OpenGL, so I guess that could be a substitute. Also, DirectX is a Windows-only platform, OpenGL is cross-platform. :) – Johannes Jensen Jun 23 '10 at 23:02
@Johannes Jensen: SDL doesn't run on OpenGL, as far as I know. It facilitates OpenGL, but doesn't actually use it. Indeed, unless there has been some major change to the API I'm unaware of, it doesn't even have drawing primitives. It just gives you a raster surface to draw on. I'd even say SDL is lower-level than OpenGL for that reason. (And I mention DirectX only for completeness.) – greyfade Jun 24 '10 at 1:42
SDL can make OpenGL contexts, but pure SDL uses a (very slow) software renderer. – nightcracker Jan 25 at 16:31
feedback

In my opinion, starting right away with a GUI library like wxWidgets (www.wxwidgets.org) is a good idea because they are often platform-independent and provide good drawing mechanisms -- plus all that other GUI stuff you might find useful later on.

link|improve this answer
feedback

Wouldn't it be more interesting to do it by printing 80x?? ascii characters on the screen every .x seconds?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.