Results 1 to 9 of 9

Thread: Tutorial [Snake using Picture boxes] NMs Game tutorial 0.4

  1. #1

    Thread Starter
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190

    Tutorial [Snake using Picture boxes] NMs Game tutorial 0.4

    This is a tutorial on how to make a basic snake game. There is plenty of ways to complete such a task. I have chosen to start off with probably one of the simplest ways I can imagine, so if you are new to games programming in VB, this is a great tutorial for you. So I think we should just jump in to it. I am using VB6 in this example. But VB 5 should do fine too. To make this game you should know a little bit about VB from before. I am using simple collision detection, and key presses, and a module. If you don't know at all how to use this from before you should try to read about it before starting. I will try to make some tutorials on the subject soon but for now this is all I got.



    Setting form properties:

    When making games it is always easier to handle the coordinates of the screen in pixels than twips (twips is the default one). So start by changing the ScaleMode property of the form to Pixels. And if you don't know it from before, it is nice to know that in VB the coordinates of your form is (0,0) in the upper left corner. It is not easy to think this way of the coordinate system at once, but you will get used to it.
    Last edited by si_the_geek; Feb 27th, 2004 at 12:41 PM.

  2. #2

    Thread Starter
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Start Coding:

    We will split the snake in small parts. Lets call one square of the snake for a BodyPart. The head is one BodyPart. The next square of the snake is a body part and so on. Our game has to always remember the coordinates of this BodyParts and what way they are heading (facing). This way we can get the body to follow the head. To do this we will use a User Defined Type (UDT). It is more or less the same thing as any data type like String, Integer, or Double. But with the UDT we can make our own. Do to this we first have to add a module to the game. Open up the code for the module and enter the following code.

    VB Code:
    1. 'User Defined Type for a snake part.
    2.  
    3. Type SnakePart
    4.     X As Long               'X-Coordinate
    5.  
    6.     Y As Long               'Y-Coordinate
    7.  
    8.     Facing As Long          '1 = left, 2 = up, 3 = right, 4 = down
    9.  
    10. End Type


    We now have made our own UDT that is called SnakePart that can hold the X,Y coordinates and the way the part is facing (1 = left, 2 = up, 3 = right, 4 = down). But we will also know how many body parts the snake has to draw it in the right length. So lets add an other line of code to the module.

    VB Code:
    1. 'Length of the snake
    2.  
    3. Global Length As Long


    That is all the code that we need to put in the module. Now we will head back to the form.
    Last edited by si_the_geek; Feb 27th, 2004 at 12:42 PM.

  3. #3

    Thread Starter
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Making the SnakeParts:

    We need to make some variables that can hold the SnakeParts. For that we will use an array. We don't know how long the maximum snake will be, so we probably should have made the array dynamically. But to simplify things here, lets say that it is 100. So add this line to the top of your app.

    VB Code:
    1. Dim Snake(99) As SnakePart


    Now we have 100 variables of the SnakePart type that is ranged from 0 to 99. So now let’s get busy with the snake.


    Drawing the snake:

    We have to decide the size of each part of the snake. You can change this later. But leave it to be 10*10 pixels for now. You can change it if you want when you understand how all the code is working.
    Draw a small (10*10 pixels) drawing of a body part of a snake in MSPaint or any other paint app that you have installed. Then go back to VB and put an image control on your form. Set the name property of the image control to "imgSnake". Then place another image control on the form. And set the name property to "imgSnake". A msgbox pops up and ask you if you want to make an control array of the control. Press yes. Then go and place 4 more image controls on the form and call them "imgSnake". Now you have a control array of image controls. This is really powerful when we come to the loops in a little while.
    Now go to the paint app you used to make the bodypart for the snake. And use a selection tool to select the whole picture. Then press [Ctrl]+[C] (copy). Then move to VB and choose one of the image controls that you just made and then press [Ctrl]+[V] (paste) to paste the picture to the image control. Do the same to all the image controls that you have made. That is it. You have made a snake. It may not look like a snake, but in a moment we will try to make it at least move like a snake.
    Last edited by si_the_geek; Feb 23rd, 2007 at 01:27 PM. Reason: corrected number of image controls to copy

  4. #4

    Thread Starter
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Writing some code:

    Now we will write some code for the game. We need first some code in the form load event. To make all the starting values of the variables. We need to tell the game the starting length of the snake, where the "head" is placed, where the body is placed, and what way the snake is moving. We also need to move all the image controls to a starting place and update all the UDT for the body. We will do this in a loop. Write down this code in the form load event:

    VB Code:
    1. 'Sets the initial values of the snake
    2.  
    3.     Dim i as Long
    4.  
    5.     Length = 5
    6.     For i = 0 To 4
    7.         Snake(i).X = (120 - 10 * i)
    8.         Snake(i).Y = 120
    9.         imgSnake(i).Left = Snake(i).X
    10.         imgSnake(i).Top = Snake(i).Y
    11.         Snake(i).Facing = 3
    12.     Next i


    The code loops from 0 to 4. That makes the loop execute 5 times, once for each part of the body. In the loop it is in the first line setting the X coordinate of the body. You can see the i in the parentheses, it will change every time the loop is executed. So the first time it will be 0 and the next 1 and so on. So the first time it is executed we change the properties of the "head". First the X coordinate, then the Y coordinate. Then it places the first image control at the X,Y coordinate. And then it tells it what way that snake part is heading. Then the loop is executed with the i as 1. It will get all the same properties fixed except the X coordinate. This time the X coordinate is (10 * i) 10 pixels more to the left. Remember the width of a body part is 10pixels. So the net time the loop is executed it will be placed 10pixels to the left of that one too. This will make all the image control line up like a snake.


    Food:

    Now we are going to think of the food for a while. First we need a picture of the food. By thinking of the size of that picture, we can simplify a lot of things here. Lets make the pic 10*10 pixels and in an other color then the body. When you have painted it, go back to VB, place a new image control on the form. Set the name property to imgFood. Go back to paint, select the pic and copy it the same way as before. Then paste it to the image control on the form in VB. Now we need to think of a place to put the food. Let’s do that in code. Add this code to the form load event.

    VB Code:
    1. 'Randomizing the Rnd function.
    2.  
    3. Randomize
    4.      
    5. 'Placing the food for the game to start
    6.  
    7. Call PlaceFood


    The first statement is called and uses the time from the computer as a seed, to make the Rnd function random. So every time you start the app, the Rnd function will give a different value.
    the second statement is a call to a Sub. It is calling some code that we are going to write now. The code is going to put the food a place on the form, so the snake can get it. We want to move the snake a certain amount of pixels every time, so to simplify things a bit, we will do some code in the PlaceFood sub that might seem to be a little to much. But it is actually pretty smart. OK, make a new sub and call it PlaceFood. And then add this code to it.

    VB Code:
    1. Dim Temp As Long
    2.  
    3.  
    4.  
    5. 'Finds a new X-coordinate for the food.
    6. Do
    7.  
    8.     Temp = Rnd * (Form1.ScaleWidth - imgFood.Width)
    9.  
    10. Loop While (Temp Mod 10 <> 0)
    11.  
    12. imgFood.Left = Temp
    13.      
    14.  
    15.  
    16. 'Finds a new Y-coordinate for the food.
    17. Do
    18.    
    19.    Temp = Rnd * (Form1.ScaleHeight - imgFood.Height)
    20.  
    21. Loop While (Temp Mod 10 <> 0)
    22.  
    23. imgFood.Top = Temp


    It is made by two loops that is looping until we have found a place we can put the food so the snake can get it. The first loop, finds the X coordinate of the food. It uses the Rnd function to find a number between 0 and 1 and multiplies that number to the width of the form. It also takes away some of the width of the form, so the food is not going to be placed so some of the food is not placed out of the form. It then checks to see if we constantly moves the snake with 10 pixels, if it is possible for the snake to land on the exact same position as the food. We are using a temp variable of type long. That is because that variable is going to round the X coordinate to a whole number. So we don't get any problems with decimal precision. If it finds a X coordinate that suits, it assigns the variable to the imgFoods left property. And then a new loop are doing the exact same for the Y coordinate. When all the code in this sub is finished, it has placed the imgFood at a new place.
    Last edited by si_the_geek; Feb 27th, 2004 at 12:46 PM.

  5. #5

    Thread Starter
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Game Loop:

    We need a game loop that is running as long as the game is running. The simplest way to do this is to use a timer. Put a timer on the form. Set the Name property to tmrLoop, and the interval to 150, and enabled to true. This is now our game loop that is called every 0.15 second. We are going to use this "loop" to move the head of the snake, move the body, and to check if the snake found the food. Add these lines of code to the tmrLoop timer event.

    VB Code:
    1. 'Check to see if the snake finds food
    2.  
    3.     Call FindFood
    4.      
    5.     'Moves the snake
    6.  
    7.     Call MoveSnake


    These lines call two subs that we are going to make soon. The first one checks to see if the snake found food. And the other one is moving the whole snake. Let’s do the fun part first.


    Move Snake:

    We are going to move the body first and then the head. So the first loop is moving the body. It moves the back of the snake first, and then moves the part that is in front of that line and so on. The part of the snake that is in the rear gets the coordinates of the part that is in front of it. And it also gets the facing variable of the part in front. This movement is made in this loop. Make a Sub called MoveSnake, and then add this code:

    VB Code:
    1. Dim i As Long
    2.      
    3.     'Move body
    4.  
    5.     For i = (Length - 1) To 1 Step (-1)
    6.         Snake(i).X = Snake(i - 1).X
    7.         imgSnake(i).Left = Snake(i).X
    8.         Snake(i).Y = Snake(i - 1).Y
    9.         imgSnake(i).Top = Snake(i).Y
    10.         Snake(i).Facing = Snake(i - 1).Facing
    11.     Next i


    It is first giving the x coordinate of the UDT in front of it selves, then assigning it to the image holding that snake part. Then it does the same with the Y coordinate before it gives the facing variable to it.


    Move the head:

    But we need to treat the head a bit different. Because the head has no body part in front of it to give him his coordinates. So we need to find another way of moving him. We are going to use the heads facing variable to just move it in that direction the head is facing. This is very straight forward, so just add this code under the code for the body in the same Sub.

    VB Code:
    1. 'Move head
    2.  
    3.     If Snake(0).Facing = 1 Then         'Moves left
    4.  
    5.         Snake(0).X = Snake(0).X - 10
    6.         imgSnake(0).Left = Snake(0).X
    7.     ElseIf Snake(0).Facing = 2 Then     'Moves up
    8.  
    9.         Snake(0).Y = Snake(0).Y - 10
    10.         imgSnake(0).Top = Snake(0).Y
    11.     ElseIf Snake(0).Facing = 3 Then     'Moves right
    12.  
    13.         Snake(0).X = Snake(0).X + 10
    14.         imgSnake(0).Left = Snake(0).X
    15.     ElseIf Snake(0).Facing = 4 Then     'Moves down
    16.  
    17.         Snake(0).Y = Snake(0).Y + 10
    18.         imgSnake(0).Top = Snake(0).Y
    19.     End If


    If the facing variable of the head is 1 (left) then it moves 10 pixels to the left. If it 2 (up) then move 10 pixels up and so on. Nothing magical to it at all.


    Moving the head in another direction:

    But we want to be able to move the head in another direction. To do this we are going to use the arrow keys. To use the keyboard in VB we need to set the KeyPreview property of the form to true. Then we need to write some code to change the facing variable of the head. Do that in the form keydown event.

    VB Code:
    1. 'Turning the face of the snake
    2.  
    3.     If KeyCode = 37 Then            'Left
    4.  
    5.         Snake(0).Facing = 1
    6.     ElseIf KeyCode = 38 Then        'Up
    7.  
    8.         Snake(0).Facing = 2
    9.     ElseIf KeyCode = 39 Then        'Right
    10.  
    11.         Snake(0).Facing = 3
    12.     ElseIf KeyCode = 40 Then        'Down
    13.  
    14.         Snake(0).Facing = 4
    15.     End If


    This code changes the heads facing variable according to the arrow that is pressed. If the left arrow (keycode 37) is pressed. The facing variable is changed to 1. And so on. This is also very straight forward. And now when you have added these lines of code you can for the first time try the game, and move the snake in the direction you want it to. But there is one thing left before the game is playable at all. That is that, the snake can at the moment not eat food and grow.
    Last edited by si_the_geek; Feb 27th, 2004 at 12:49 PM.

  6. #6

    Thread Starter
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190
    Eat food:

    Start with making a Sub called FindFood. The firs thing we need to figure out is if the head of the snake is the same place as the food. And finally our hard coding work is finally paying off. Because we made sure that the food is placed exactly at a place where the snake can get, this is really easy to do. So to check if the snake found food, we only need to do a small if test. Place this code in the FindFood Sub.

    VB Code:
    1. Dim i As Long
    2.          
    3.     'If the head finds food
    4.  
    5.     If Snake(0).X = imgFood.Left And Snake(0).Y = imgFood.Top Then
    6.          
    7.     End if


    This if test are testing if the snakes head X and Y coordinates is at the exact same place as the foods X, Y coordinates. We now need some lines of code to make the snake bigger, and then place the new body part of the snake in a new place. To make a new image control of our array of image controls add this line of code in the If statement.

    VB Code:
    1. 'Loads a new instance of the snake body
    2.  
    3. Load imgSnake(Length)


    It is making one new image control. Then we need to place the image control at the end of the snake. Add this code in the same if statement.

    VB Code:
    1. 'Placing the new body on its place
    2.  
    3. If Snake(Length - 1).Facing = 1 Then        'Looking left
    4.  
    5.      Snake(Length).X = Snake(Length - 1).X - imgSnake(0).Width
    6.      Snake(Length).Y = Snake(Length - 1).Y
    7.      imgSnake(Length).Visible = True
    8. ElseIf Snake(Length - 1).Facing = 2 Then    'Looking up
    9.  
    10.      Snake(Length).X = Snake(Length - 1).X
    11.      Snake(Length).Y = Snake(Length - 1).Y + imgSnake(0).Height
    12.      imgSnake(Length).Visible = True
    13. ElseIf Snake(Length - 1).Facing = 3 Then    'Looking right
    14.  
    15.      Snake(Length).X = Snake(Length - 1).X - imgSnake(0).Width
    16.      Snake(Length).Y = Snake(Length - 1).Y
    17.      imgSnake(Length).Visible = True
    18. ElseIf Snake(Length - 1).Facing = 4 Then    'Looking down
    19.  
    20.      Snake(Length).X = Snake(Length - 1).X
    21.      Snake(Length).Y = Snake(Length - 1).Y - imgSnake(0).Height
    22.      imgSnake(Length).Visible = True
    23. End If


    This code is checking to see what way the back of the snake is heading. If it is heading left the new part is added to the right of the snake. If the rear is heading up, the new bodypart is added to the bottom of the snake. It is then setting the visible variable to true of that image control.
    We have now added a new body part. And now we need to increase the length of the snake variable. So add this line in the If statement as well.

    VB Code:
    1. Length = Length + 1


    And then we have to place the food in a new place on the form. But because we did this in another sub early in the game, we only need to write one line of code to make it work. This is a really powerful programming practice. So just add this line to the If statement as well.

    VB Code:
    1. 'Placing the food an other place
    2.  
    3. Call PlaceFood


    You have now finished the "game", and can try it. It is still tons of things that you can add to it to make it a game. But I will leave it here for now. And later when I have more time, I will add more to it. But I can make a list of things that you can try to add to the game.


    - Make it impossible to walk through your own body
    - A picture of an actual head of the snake.
    - A picture of an actual tail of the snake.
    - Make the game stop if the snake hits the outer bounds of the form.
    - Make walls in the game.
    - Add levels to it, with different speed and walls.
    - Add a two player game.


    If you have more questions, please ask in the forum, where there is probably more than just me that can answer to the questions.

    Here is the "full game" zipped down in the attachment.
    Attached Files Attached Files
    Last edited by si_the_geek; Feb 27th, 2004 at 12:52 PM.

  7. #7
    Super Moderator si_the_geek's Avatar
    Join Date
    Jul 2002
    Location
    Bristol, UK
    Posts
    41,927
    The files within this thread (submitted: 25 Feb 2004) have been checked for malware by a moderator.

    Disclaimer: This does not necessarily mean that any compiled files (DLL/EXE/OCX etc) are completely safe, but any supplied code does not contain any obvious malware. It also does not imply that code is error free, or that it performs exactly as described.

    It is recommended that you manually check any code before running it, and/or use an automated tool such as Source Search by Minnow (available here or here).
    If you find any serious issues (ie: the code causes damage or some sort), please contact a moderator of this forum.

    Usage of any code/software posted on this forum is at your own risk.



    The above posts have been edited (with NoteMe's permission) to correct spelling/grammar errors.

  8. #8
    New Member
    Join Date
    May 2012
    Posts
    5

    Re: Tutorial [Snake using Picture boxes] NMs Game tutorial 0.4

    Wow. Looks like I stumbled upon the most useful of ancient threads. Hopefully this will get a reply. Thanks for the tutorial, all the given code works great. I was wondering if anyone could tell me how I could generate some walls around the edge of the form as boundaries for the snake. Here's the code I have so far:

    Code:
    Option Explicit
    Dim Wall(176) As Wallpart  'Wallpart is user-defined type with properties X and Y
    
    Private Sub Form_Load()
        'Generate Walls
        
        For ib = 1 To 51       'Generate walls at the top
            Load imgWall(ib)
            Wall(ib).X = (8 + (ib * 10))
            Wall(ib).Y = 8
        Next
        For ib = 52 To 104       'Generate walls at the bottom
            Load imgWall(ib)
            Wall(ib).X = (8 + (ib * 10))
            Wall(ib).Y = 312
        Next
        For ib = 105 To 140       'Generate walls at the left
            Load imgWall(ib)
            Wall(ib).X = 8
            Wall(ib).Y = (16 + (ib * 10))
        Next
        For ib = 141 To 17       'Generate walls at the right
            Load imgWall(ib)
            Wall(ib).X = 424
            Wall(ib).Y = (16 + (ib * 10))
        Next
            
        imgWall(ib).Left = Wall(ib).X
        imgWall(ib).Top = Wall(ib).Y
    
    End Sub
    imgWall(0) is already loaded in the form at position Left = 8, Top = 8, and I want the border to be a 52x38 rectangle made of individual boxes 10x10 pixels in size.

    When I try to run the program, the error given is "Control array element "141" doesn't exist", and the line "imgWall(ib).Left = Wall(ib).X" is highlighted.

    What am I doing wrong?

    Also, I believe creating these borders changes the code for the PlaceFood sub since the food has to be placed within the walls, and I'm not sure how to do that either.
    Last edited by EpicMango; May 26th, 2012 at 08:39 PM.

  9. #9

    Thread Starter
    Retired G&G Mod NoteMe's Avatar
    Join Date
    Oct 2002
    Location
    @ Opera Software
    Posts
    10,190

    Re: Tutorial [Snake using Picture boxes] NMs Game tutorial 0.4

    Hehe, yeah. It brings back good old memories this thread. Been a long time since I did any VB though, and a long time since I have been on this side of the Internet .

    But about your problem. I guess it is only a small typo from your side. It actually took me a few seconds to see what is wrong as I haven't had VB installed for years. I guess if I did, it would be easy to see that the wall blocks it complain about is never created because you have an ill-defined for loop.

    You have:
    Code:
    For ib = 141 To 17       'Generate walls at the right
    But I am sure you did not mean 17!

    - ØØ -

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width