$$ \newcommand{\floor}[1]{\left\lfloor{#1}\right\rfloor} \newcommand{\ceil}[1]{\left\lceil{#1}\right\rceil} \renewcommand{\mod}{\,\mathrm{mod}\,} \renewcommand{\div}{\,\mathrm{div}\,} \newcommand{\metar}{\,\mathrm{m}} \newcommand{\cm}{\,\mathrm{cm}} \newcommand{\dm}{\,\mathrm{dm}} \newcommand{\litar}{\,\mathrm{l}} \newcommand{\km}{\,\mathrm{km}} \newcommand{\s}{\,\mathrm{s}} \newcommand{\h}{\,\mathrm{h}} \newcommand{\minut}{\,\mathrm{min}} \newcommand{\kmh}{\,\mathrm{\frac{km}{h}}} \newcommand{\ms}{\,\mathrm{\frac{m}{s}}} \newcommand{\mss}{\,\mathrm{\frac{m}{s^2}}} \newcommand{\mmin}{\,\mathrm{\frac{m}{min}}} \newcommand{\smin}{\,\mathrm{\frac{s}{min}}} $$

Prijavi problem


Obeleži sve kategorije koje odgovaraju problemu

Još detalja - opišite nam problem


Uspešno ste prijavili problem!
Status problema i sve dodatne informacije možete pratiti klikom na link.
Nažalost nismo trenutno u mogućnosti da obradimo vaš zahtev.
Molimo vas da pokušate kasnije.

Drawings movement

The animations we have seen so far are based on showing a different image we prepared in advance in each frame. Now we are also going to move the images that are shown, so that the same image appears in different places in the window, that is, it moves.

Let’s look at an example first:

../_images/car.png

As before, we have a new_frame function that shows an image in each frame. What is new in this example is that the position of that image changes from frame to frame.

The image is shown so that its upper left corner appears at the point (car_x, car_y). In order for the car to move to the right, in each frame we increase the x coordinate of the image. We only keep in mind that when the car goes too far to the right, we return the car so that its right end aligns with the left edge of the window. In this way, the car begins to gradually reappear on the left.


Similarly, we can also move drawings we draw ourselves (not just ready-made images). In doing so, we can move the image or drawing in any direction. Here is one example:

Notice how we check if the ball touches the edge of the screen. The far right of the ball has an x coordinate equal to \(cx+r\). If this value were equal to the width of the window, it would mean that the ball touches the right edge of the window, and if \(cx + r > width\), it means that the ball has already partially passed the right edge of the window. In this case, with the \(dx = -dx\) command, starting from the next frame a value opposite to the one so far will be added to the x coordinate of the ball, that is, the ball will henceforward be moving 3 pixels to the left. This will look like the ball bounced off the right edge of the window.

Notice another detail: instead of \(cx + r > width\) we could have also used \(cx + r >= width\) and the program would work almost the same. However, since the ball does not move by one pixel, it would not be valid if we used the condition \(cx + r == width\), because then the ball could skip the position we are checking and go through the edge of the window.

We thoroughly analyzed the case of the right edge of the window, and the same reasoning was applied to other edges when the program was being written. The overall effect of the two if commands is that the ball bounces off each edge of the window.

Check if you understand this by answering the following questions.

Drawings movement - questions

    Q-69: Match the check that the ball from the previous example has passed a certain edge to the appropriate *if* command. Try again!
  • for left edge
  • if cx - r < 0
  • for right edge
  • if cx + r > width
  • for top edge
  • if cy - r < 0
  • for bottom edge
  • if cy + r > height

    Q-70: To what side does an image move by adding a negative value to its x coordinate?

  • right
  • Try again
  • up
  • Try again
  • left
  • Correct!
  • down
  • Try again

    Q-71: Let the dimensions of a given image be im_width and im_height, and its upper left corner (x, y). How do we check if the image has completely gone through the top edge of the window and no part of it is visible?

  • if x + im_width < 0:
  • Try again
  • if y + im_height < 0:
  • Correct!
  • if x < 0:
  • Try again
  • if y < 0:
  • Try again
    Q-72: Let 'width' be the width of the window, 'im_width' the width of the image and (x, y) the upper left corner of the image. Match logical conditions to their meaning. Try again!
  • the image came out through the left edge of the window
  • x + im_width < 0
  • the image began to come out through the left edge of the window
  • x < 0
  • the image came out through the right edge of the window
  • x > width
  • the image began to come out through the right edge of the window
  • x + im_width > width

    Q-73: Let width be the width of the window, im_width the width of the image, (x, y) the upper left corner of the image and dx the value by which the x coordinate of the image will be changed later. What commands will cause the image to begin to appear entering the window through the right edge?

  • x = width; dx = -10
  • Correct!
  • x = width + im_width; dx = -10
  • No, that is too far from the right edge.
  • x = width - im_width; dx = -10
  • No, that way the whole image is already in the window.
  • x = width + im_width; dx = 10
  • No, the image is too far away and will keep getting farther.

Task - a car going left-right

Try reworking the first program so that the car moves alternately to one side and to the other, as in the example (“Play Task” button). The program already contains commands to form a tuple of two images. The image of the car facing right is loaded, while the image of the car facing the other side is obtained using the pg.transform.flip function, which transforms the given image into one symmetrical to it.