Read our blogs, tips and tutorials
Try our exercises or test your skills
Watch our tutorial videos or shorts
Take a self-paced course
Read our recent newsletters
License our courseware
Book expert consultancy
Buy our publications
Get help in using our site
540 attributed reviews in the last 3 years
Refreshingly small course sizes
Outstandingly good courseware
Whizzy online classrooms
Wise Owl trainers only (no freelancers)
Almost no cancellations
We have genuine integrity
We invoice after training
Review 30+ years of Wise Owl
View our top 100 clients
Search our website
We also send out useful tips in a monthly email newsletter ...
Flappy Bird in Excel VBA Part 5 - Starting and Ending the Game |
---|
This part of the tutorial adds a basic menu system with ActiveX command buttons to start and stop the game. |
In this blog
Return to the Flappy Bird in Excel VBA Tutorial index.
Download Flappy Owl Pt5 - Start Stop Buttons.
This part of the tutorial will show you how to give the player a way to start and stop the game using simple buttons. If you'd prefer not to type out the code yourself you can download a working version of the workbook from the link above.
This task is relatively straightforward and you may well have created buttons to run your VBA macros already. To do this, head into Excel and insert a new worksheet called Menu. Next, go to the Developer tab in the ribbon, click the Insert tool and find the Command Button tool in the ActiveX Controls section of the list:
Use an ActiveX Command Button , not the Form Controls version.
If you're working in Excel 2003 you'll need to display another toolbar to get access to these tools. From the menu choose View | Toolbars | Control Toolbox
Once you've selected the Command Button tool simply click somewhere on the worksheet to draw the button.
This should be the end result of drawing the button on the worksheet.
We'll use this button to start the game, we also need one to stop it. Head to the Test sheet and draw another button in the same way.
Make sure that this button is out of the way of the bird's flight path.
You should notice that when you've drawn an ActiveX control on the worksheet Excel automatically enters Design Mode.
Design Mode is activated automatically when you add an ActiveX control to a sheet.
In design mode, when you click on a button on the worksheet the button is selected. You can turn off design mode by clicking the tool on the ribbon. If you do that, clicking on the button on the worksheet will fire that button's click event. We'll stay in design mode for now as we want to change a few properties of our button.
The reason we've used ActiveX buttons rather than basic Form buttons isn't simply because ActiveX buttons sound cooler. This type of button can be controlled in a much more detailed way than a standard Form button, both in code and by manually editing its properties.
To change the properties of a control you'll need to view the Properties window. Right-click on the button that you added to the Test sheet and choose Properties.
Right-click the button and choose this option.
In the Properties window, change the (Name) property to cmdStopGame and the Caption to Stop Game.
There are lots of properties for changing the appearance of the button too. We'll worry about making our buttons look pretty later on.
Now go back to the button on the Menu sheet and change its name and caption to cmdStartGame and Start Game respectively.
Again, just change two properties for now.
When you've finished changing properties you can close the window by clicking the cross in the top right hand corner of the window.
Now we need to make the buttons do something when a player clicks on them. Right-click on the cmdStartGame button and choose View Code.
Choosing this option will take you back to the VB Editor.
You'll be taken back to the VB Editor, viewing the code page for the Menu sheet with a system-generated event procedure for the click event of the button.
This is what you should see.
Before we write any code we should change the code name of the Menu sheet. If you closed the Properties window in Excel you'll probably notice that it's also disappeared in the VB Editor. To bring it back just press F4 then change the name of the sheet to shMenu. You may need to exit design mode in order to see the properties of the sheet rather than the properties of the command button. You can exit design mode from the VB Editor by clicking the tool shown below:
Click this tool to exit design mode.
Now add a single line of code to the procedure for the click event of the button. The final result should look like this:
Option Explicit
Private Sub cmdStartGame_Click()
InitialiseGame
End Sub
Now we'll add code for the button which stops the game. You don't need to go back to Excel to do this, we can get to the click event procedure from the VB Editor. Start by double-clicking the shTest sheet object in the Project Explorer window.
Double-click this object.
At the top of the code page which appears click the drop down menu on the left and select the cmdStopGame option.
Select this option.
This will generate the default event procedure for the button, which is exactly what we want. If you wanted to see which other events a button has you can use the drop down list at the top right of the code page.
This is the event procedure that will be generated.
Now add two lines of code to the procedure to stop the game and go back to the Menu sheet.
Option Explicit
Private Sub cmdStopGame_Click()
TerminateGame
shMenu.Select
End Sub
Now we're ready to see if we can start and stop the game successfully. Before we do that, go back into Excel and select the Test sheet. Make sure that you've exited design mode and that you don't still have the button selected.
Make sure Design Mode is turned off and that you have a cell selected rather than the button.
Now head to the Menu sheet, click on a cell and save the workbook! You should find that you can now click the button to start the game and click the other button to stop it again.
Click here to start the game.
It's not a very exciting game yet, but hopefully you can at least see it running . If something went wrong you could either attempt to find the problem by going back through all of your code, or you could download a working version from the link at the top of the page.
Now that we can start and stop the game we need to provide a way for the player to give the game some input. In the next part of the tutorial we'll look at how to detect key presses to make the bird flap.
Some other pages relevant to the above blog include:
From: | duggie |
When: | 22 Mar 22 at 14:07 |
I have reached this page of the code and started the game.
What I can't understand is how does the blue pixel drop down, then rises and repeats itself? I can't see any loop in the code that makes it do that.
I added a breakpoint on this line:
Public Sub InitialiseGame()
'Called once when game first starts
'Used to set starting parameters
'Begins the game timer
ShTest.Select
Range("A1").Select
Cells.Clear
InitialiseBird
InitialiseTimer 'ADDED A BREAK POINT
End Sub
Then when I ran that line of code, the blue pixel started dropping down, then rising and dropping. It only stopped when I clicked on the Stop Game button.
Can you please explain which line of code is causing this?
From: | Andrew G |
When: | 22 Mar 22 at 16:06 |
Hi duggie!
The game timing loop is explained in the previous part of the series - it basically uses a Windows API function to repeatedly call the UpdateGame procedure every x number of milliseconds
https://www.wiseowl.co.uk/blog/s404/flappy-bird-excel-vba-timing-loop.htm
I hope that helps!
Kingsmoor House
Railway Street
GLOSSOP
SK13 2AA
Landmark Offices
99 Bishopsgate
LONDON
EC2M 3XD
Holiday Inn
25 Aytoun Street
MANCHESTER
M1 3AE
© Wise Owl Business Solutions Ltd 2024. All Rights Reserved.