Skip to content Skip to sidebar Skip to footer

c visual studio wpf 3d drawing a circle

In this tutorial we will learn how to create a fully functional Pong game in visual studio using c# programming language. We will use Windows Form Awarding to make this game. Actor has upward and downwardly central board controls and we have an opponent controlled past the CPU and we will plan information technology in the code. We will be using Visual Studio 2010 version still this will work with any other new version of Visual Studio.

Lesson outcomes –

  1. Create a fully working pong arcade game
  2. Collision detection betwixt role player and CPU
  3. Using picture boxes and its properties in C#
  4. Using timer component to breathing the ball, player and opponent
  5. Create a purlieus limit for the thespian and CPU
  6. Go along score for both thespian and CPU
  7. Increment the ball speed when either of the players score in the game

Demo:

Offset Visual studio, create a new project, under C# programming linguistic communication choose Windows Form Awarding and name project pong and click OK.

Click OK

In the properties windows change the following for the form

Backcolor – MidnightBlue

Size – 944, 613

Text – Pong Game MOO ICT

This is what the form looks similar now after we made the changes in the properties.

We demand the tool box, if the tool box isn't present then go to View -> Click ok Toolbox

Find the picture box from the tool box and place three of them on the class

Prepare their properties to the post-obit

Now from the tool box drag and driblet a timer object to the class

Change the post-obit to the timer properties. Modify the name to gameTimer, modify enabled to Truthful and interval to twenty.

Drag and drop ii labels to the class from the toolbox. Change the following to these labels in the properties window.

With all this done

This is the final version of the course thus far.

Click on the Class and go to the events menu in the properties window.

Click on the little lightning commodities icon in the properties window to encounter the events carte

This is the events carte du jour.

Find the key downwards and key upwards pick, type keyisdown for primal down and keyisup for key up event. Press enter subsequently each, this will take yous to the code view. For now come up back to the blueprint view we need add ane more event for the timer.

Click on the timer object and go to the events window for the timer object

Type in timerTick and printing enter. This will accept you lot back to the lawmaking view. Now we tin get to programming the game.

These are events that we added to the game so far.

At present we volition add a few variables to the game. All of these variables volition be global variables so we need to declare them on top of the public Form1() line

// all the green lines are comments they tin be inserted into the lawmaking for like shooting fish in a barrel reading and keeping notes on the code. All of the codes will be explained in the green text.

We have several variables for this game.

Bool stands for Boolean we have two of them in the code in a higher place. GOUP and GODOWN both Booleans are prepare the simulated by default these volition exist used to check when to move the player up or down the screen.

INT stands for integer. Nosotros accept SPEED, BALLX, BALLY, SCORE and CPUPOINT as integers. Each of the has their own value for instance BALLX will determine the horizontal speed of the brawl and BALLY will determine the vertical speed of the brawl.

key downward event

In this KEYISDOWN function we have two if statement. In each we are checking if that given central is downwards for example if the player presses and holds the UP key then the GOUP Boolean becomes true so does the for the down key.

Fundamental up event

In this KEYISUP part if the player leaves that primal then nosotros tin change those Booleans to false. This event will only run when the key is pressed and released.

Timer Tick consequence part. In this part all the code volition run during the timer ticks, we set the timer to run every 20 milliseconds so all of these lawmaking will be loaded during that time. This gives usa a modify to check for collision, move the ball, animate the role player, animate the CPU and update the score or even stop the game. All of the lawmaking below are commented so delight read them through.

Inspecting the timer tick function.

First update the ii labels on the screen with the integers we created before.

Move the ball Horizontally and Vertically. Each object added to C# has their own properties. For example the brawl moving picture box we are using it has a belongings called Pinnacle and LEFT. Nosotros can animate this past speed information technology up using -= sign and a number. This will increase the speed towards the left and superlative of the screen. If we used += then it would increase the speed towards the right and lesser of the screen.

In the CPU picture box nosotros are using += with the speed variable this means the CPU will offset off by moving downward.

This is where we are setting up difficulty for the game. IF the overall score is less than 5 then CPU will move randomly up and downward. When the score is more than than 5 in the ELSE statement we will move the CPU with the ball.

This if statement above will determine if the ball has reached the far left side of the screen and then we will reset the ball, increase the speed on the negative management and increase the speed of the ball and add ane to the CPU Score.

This if statement determines if the ball has reached the far right end of the screen meaning the role player has scored and then we will set the ball in the middle of the screen, reverse the balls direction and add two to the ball speed. Finally we will increase the player score.

This if argument will determine if the ball hits either the height or the bottom of the screen. Since we have linked the BALLY variable to the Brawl.TOP holding and so we tin can simply contrary the speed of the ball when it hits either one of the boundaries.

In this IF argument volition determine if the ball hits the player or the CPU. Just as the nosotros accept the Superlative and LEFT property in the motion picture boxes we too have something chosen BOUNDS. This allows us to check if a object is colliding with another. In this example if the Brawl premises intersects with PLAYER bounds then we will reverse the Ten direction of the brawl and we volition do the aforementioned when the brawl collides with the CPU.

This IF argument will allow us to move the histrion if the become up Boolean is truthful and the thespian is still within the game boundary then nosotros volition go on to move the actor towards the top.

This if statement will let us to move the thespian if the go downwardly Boolean is truthful and the thespian is all the same within the game purlieus then we will keep to movement the player towards the bottom.

IF the player has scored more than 10 so we will cease the timer and bear witness a bulletin box saying y'all win the game.

IF the CPU has scored more than 10 then nosotros volition stop the timer and show a bulletin box saying CPU wins and y'all lose.

Lets exam the game out now

Click on the Debug button (The greenish play push) or press F5 to debug the game.

Game is working fine. If you get any errors in the errors log, refer to this tutorial and see which line the error is coming upwardly.

fultonthwithis.blogspot.com

Source: https://www.mooict.com/c-tutorial-create-a-pong-arcade-game-in-visual-studio/

Post a Comment for "c visual studio wpf 3d drawing a circle"