Program an Atari Game

by Becker_K in Circuits > Computers

619 Views, 3 Favorites, 0 Comments

Program an Atari Game

ab1.png

This is a simple way to make a quick and fun game in Visual Studios

Creating 1st Interface

ab2.png
ab4.png
ab3.png
ab6.png
ab7.png
ab5.png
ab8.png
ab9.png
ab10.png
ab11.png
ab12.png
ab13.png

To start this off you need the Microsoft Visual Basic Program. If you don't have it, it's a free download from the Microsoft website.

Anyway, to begin click New Project. Then name it what ever you want. I named mine AtariBreakoutGeniusProject

Now to start your GUI

1st go to your Properties tab and make sure they look like they ones from the first 3 photos

2nd Go to your tool bar and drag on two Labels. Make them look like the pictures above

3rd do the same with the buttons

Creating Credits Screen

ab14.png
ab15.png

To start go to Project > Add Windows Form

1st make the size the same as the first GUI

2nd Add labels for all the information you want to display

3rd create and name a return button

Creating the Main Game

ab16.png
ab23.png
ab22.png
ab27.png

Create another form like last time

1st make it the same size

2nd add and name labels for how many boxes you want, the scores etc.

3rd add a "ball" and a paddle

4th go to Components (in the Toolbar) and click and drag a Timer. Make all the properties look like the picture.

5th add labels and buttons for the menu. Don't forget to set their visibility to False

Coding the Game

ab17.png
ab18.png
ab19.png
ab20.png
ab24.png
ab25.png
ab26.png
ab28.png
ab29.png
ab21.png
ab30.png

Start by double clicking on each GUI to open the code window\

!st copy the first picture's code into the Title's Screen

2nd copy the second picture's code into the Credits' Screen

3rd copy the rest into the Main Game's Screen (note: The code to make the rest of the boxes disappear is the same with just differences in name, location etc)

4th YOU'RE DONE!.