Verify my understanding && Introduce myself

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
short
ES Beta Backer
ES Beta Backer
Posts: 548
Joined: Thu Apr 30, 2009 2:22 am
Current Project: c++, c
Favorite Gaming Platforms: SNES, PS2, SNES, SNES, PC NES
Programming Language of Choice: c, c++
Location: Oregon, US

Verify my understanding && Introduce myself

Post by short »

Hello everyone,
I basically fell in love with the "Adventures in Game Development" Youtube series, so naturally I found this website and forum.

After watching the whole series in... basically one sitting I got inspired to actually create a game. The reason I found the series is I was looking for some advice on how to get started. It is pretty clear that I just need to do something, so I'm starting out by making a Tetris clone, which I will call Schmetris, because I know I am not allowed to use the word Tetris, even though it is just for myself.

Anyways my question is with SDL, well I think I got it figured out but I was hoping I could make sure my understanding is clear.

I posted my whole "heartbeat" as it is called at the bottom, I really just need to make sure I understand this little bit:

Code: Select all

{
		  // Clear the back buffer.
		  SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );

		  //Draw the backgroudn to the back buffer.
		  apply_surface( 0, 0, background, screen );
		  
		  // Draw the "message" to the back buffer.
		  apply_surface( ( SCREEN_WIDTH - message->w ) / 2, ( SCREEN_HEIGHT - message->h ) / 2, message, screen );

		  //Null the surface pointer
		  message = NULL;
        }

 //Swap the current and back buffer.
        if( SDL_Flip( screen ) == -1 )
        {
            return 1;
        }
Ok, so basically the way I understand it is that SDL takes care of which buffer is actually being drawn to the screen. When I am writing to a buffer (which I have called "screen", as I am following the tutorial I found somewhere on these forums =) ) it is always quote unquote the backbuffer, or the buffer currently not being drawn on the screen. So, when I call SDL_Flip(screen) it "blits" screen onto the backbuffer, then moves the pointer to which buffer is being drawn to that buffer which used to be the backbuffer, the one I had been working on, and the old buffer that was showing now becomes the backbuffer. At this point if I call SDL_FillRect(arguments) it will be performed on the now back buffer?


Please feel free to tell me where my understanding is totally failing =)



My entire "heartbeat":

Code: Select all

while( quit == false )
    {
        //If there's an event to handle
        if( SDL_PollEvent( &event ) )
        {
            //If a key was pressed
            if( event.type == SDL_KEYDOWN )
            {
                //Set the proper message surface
                switch( event.key.keysym.sym )
                {
                    case SDLK_UP: message = upMessage; break;
                    case SDLK_DOWN: message = downMessage; break;
                    case SDLK_LEFT: message = leftMessage; break;
                    case SDLK_RIGHT: message = rightMessage; break;
                }
            }

            else if( event.type == SDL_QUIT ) //if the user clicks the little X in the upper right corner.
            {
                quit = true;
            }
        }

        //If a message needs to be displayed
	 if( message != NULL )
     {
		  // Clear the back buffer.
		  SDL_FillRect( SDL_GetVideoSurface(), NULL, 0 );

		  //Draw the backgroudn to the back buffer.
		  apply_surface( 0, 0, background, screen );
		  
		  // Draw the "message" to the back buffer.
		  apply_surface( ( SCREEN_WIDTH - message->w ) / 2, ( SCREEN_HEIGHT - message->h ) / 2, message, screen );

		  //Null the surface pointer
		  message = NULL;
        }

        //Swap the current and back buffer.
        if( SDL_Flip( screen ) == -1 )
        {
            return 1;
        }
    }
My github repository contains the project I am currently working on,
link: https://github.com/bjadamson
User avatar
thejahooli
Chaos Rift Junior
Chaos Rift Junior
Posts: 265
Joined: Fri Feb 20, 2009 7:45 pm
Location: London, England

Re: Verify my understanding && Introduce myself

Post by thejahooli »

Welcome to the forums
short0014 wrote: so I'm starting out by making a Tetris clone, which I will call Schmetris, because I know I am not allowed to use the word Tetris, even though it is just for myself.
I don't even think you're even allowed to use 'tris' in your game name.
Last edited by thejahooli on Sat May 02, 2009 11:39 am, edited 1 time in total.
I'll make your software hardware.
User avatar
programmerinprogress
Chaos Rift Devotee
Chaos Rift Devotee
Posts: 632
Joined: Wed Oct 29, 2008 7:31 am
Current Project: some crazy stuff, i'll tell soon :-)
Favorite Gaming Platforms: PC
Programming Language of Choice: C++!
Location: The UK
Contact:

Re: Verify my understanding && Introduce myself

Post by programmerinprogress »

As far as programming is concerned, you carry out your blitting, and when you're finished you call SDL_Flip(SDL_Surface) to display everything you just blitted, once you call flip, everything is cleared from the buffer, ready for you to blit all over again ;)

I think for a beginner, you're getting this pretty well, keep it up!
---------------------------------------------------------------------------------------
I think I can program pretty well, it's my compiler that needs convincing!
---------------------------------------------------------------------------------------
And now a joke to lighten to mood :D

I wander what programming language anakin skywalker used to program C3-PO's AI back on tatooine? my guess is Jawa :P
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Verify my understanding && Introduce myself

Post by MarauderIIC »

short0014 wrote:Hello everyone,
I basically fell in love with the "Adventures in Game Development" Youtube series, so naturally I found this website and forum.
Welcome! :D
I will call Schmetris, because I know I am not allowed to use the word Tetris, even though it is just for myself.
Not allowed to use "tris" IIRC. But if its just for you you can call it SUPER ULTIMATE TETRIS, because I doubt that The Tetris Company will come and confiscate your computer.
Ok, so basically the way I understand it is that SDL takes care of which buffer is actually being drawn to the screen. When I am writing to a buffer (which I have called "screen", as I am following the tutorial I found somewhere on these forums =) ) it is always quote unquote the backbuffer, or the buffer currently not being drawn on the screen. So, when I call SDL_Flip(screen) it "blits" screen onto the backbuffer, then moves the pointer to which buffer is being drawn to that buffer which used to be the backbuffer, the one I had been working on, and the old buffer that was showing now becomes the backbuffer. At this point if I call SDL_FillRect(arguments) it will be performed on the now back buffer?
Yeah as long as you did SDL_Init with SDL_DOUBLEBUF or whatever. You have to clear the double buffer by doing the SDL_FillRect with some color so that you clear everything on it. If you get a "smear" it's because you're not doing this.
Please feel free to tell me where my understanding is totally failing =)
Nowhere that I saw. GJ.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
RyanPridgeon
Chaos Rift Maniac
Chaos Rift Maniac
Posts: 447
Joined: Sun Sep 21, 2008 1:34 pm
Current Project: "Triangle"
Favorite Gaming Platforms: PC
Programming Language of Choice: C/C++
Location: UK
Contact:

Re: Verify my understanding && Introduce myself

Post by RyanPridgeon »

Welcome to the forums and it looks like you're off to a good start
Ryan Pridgeon
C, C++, C#, Java, ActionScript 3, HaXe, PHP, VB.Net, Pascal
Music | Blog
Post Reply