Thread: Where to start C++ programming games?

  1. #1
    Registered User
    Join Date
    Dec 2005
    Posts
    155

    Where to start C++ programming games?

    Hi, I was looking around the net for some websites on starting C++ programming game examples with some source code to help me understand it better. I couldn't really find any to start off like that so I was wounding if any of you know of some?

  2. #2
    Dr Dipshi++ mike_g's Avatar
    Join Date
    Oct 2006
    Location
    On me hyperplane
    Posts
    1,218
    SDL is a nice easy one to start off with. Its designed for 2D software rendered stuff, but its does the stuff you would expect from a dame development lib. As in: draw graphics, play sound and deal with event polling. If you have Dev C++ you can go to:
    Tools -> Packet Manager
    And select SDL and it will download it for you and place the files in their intended directories.
    For tutorials google "SDL tutorials" and you should find loads of stuff to get you going

    If you are looking to create 3D stuff with hardware support then you really want to go for OpenGL or DirectX

  3. #3
    Registered User
    Join Date
    Dec 2005
    Posts
    155
    Quote Originally Posted by mike_g View Post
    SDL is a nice easy one to start off with. Its designed for 2D software rendered stuff, but its does the stuff you would expect from a dame development lib. As in: draw graphics, play sound and deal with event polling. If you have Dev C++ you can go to:
    Tools -> Packet Manager
    And select SDL and it will download it for you and place the files in their intended directories.
    For tutorials google "SDL tutorials" and you should find loads of stuff to get you going

    If you are looking to create 3D stuff with hardware support then you really want to go for OpenGL or DirectX
    Cool! Thanks for the fast reply. I kinda want to start out with simple 2d and work my way up to 3d for now, that way I have some back ground to go off befor just jumping into the pool lol. I'll take a look at it, Thanks again ^.^

  4. #4
    NotSoAvgProgrammer
    Join Date
    Jul 2007
    Location
    Virginia, U.S.
    Posts
    57
    For general game discussion gamedev.net, and for real good sdl tutorials, plus instructions on installing it on many IDE's, lazyfoo.net(real good).


    Joe
    A quality job is not necessarily a *good* job. A quality job is, by definition, conformance to requirements. Therefore a *good* job, may not be a quality job.

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Resources for professional games
    By EVOEx in forum Game Programming
    Replies: 8
    Last Post: 06-17-2009, 02:42 PM
  2. When done right, PC games are amazing
    By VirtualAce in forum A Brief History of Cprogramming.com
    Replies: 6
    Last Post: 08-13-2008, 05:32 PM
  3. Violent video games?
    By VirtualAce in forum A Brief History of Cprogramming.com
    Replies: 58
    Last Post: 04-26-2006, 01:43 PM
  4. Linked List Anamoly
    By gemini_shooter in forum C++ Programming
    Replies: 3
    Last Post: 02-28-2005, 05:32 PM