Skip to content
Advertisement

User needs to move mouse to fire bullet

When the user hits q to fire a bullet, there is no smooth motion. They need to move the mouse around the screen in order for the bullet to travel.

I’ve tried looking around StackOverflow, youtube, reorganizing the code.

JavaScript

I want the user to hit q and the bullet should fire with a parabola shape smoothly.

Advertisement

Answer

You’ve to do the update of the position in the main loop rather than the event loop. Note, the event loop is executed only when an event occurs. This means it is executed one time, when the button is pressed and a second time when the button is released. The movement of the mouse is an event, too and causes the event loop to be executed.

The following may work. Instead of an event loop, the internal event handling is done by pygame.event.pump():

JavaScript

But I recommend to change the design. Avoid functions and variables with the same name. Do not an extra loop with display updates inside the main loop:

JavaScript

If you want to generate a smooth motion, then you’ve to do the calculations with flotiong point values:

JavaScript

Cast (int()) or round the coordinates to integral values, when the object (circle) is drawn:

JavaScript

Note if the value is truncated to an integral value, before it is added, then the decimal places are lost:

JavaScript

If the cast operation is done later then the only the decimal places of the result are lost:

JavaScript

round() gives the next grater integral value, if the decimal places are >= 0.5:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement