Тёмный

Understanding framerate independence and deltatime 

Clear Code
Подписаться 210 тыс.
Просмотров 38 тыс.
50% 1

A video about using deltatime to create a game that runs at any framerate. I will use pygame to implement the logic but the theory applies everywhere.
If you want to support me: / clearcode
(You also get lots of perks)
Social stuff:
Twitter - / clear_coder
Discord - / discord

Опубликовано:

 

11 мар 2022

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 76   
@sbinti1152
@sbinti1152 2 года назад
in my honest opinions this channel is so underated this channel deserves 1 mil subs
@K5RTO
@K5RTO 2 года назад
you mean 1 bazillion subs 🙃
@leobozkir5425
@leobozkir5425 Год назад
@@K5RTO you mean 1 morbillion subs
@Sam2Reel
@Sam2Reel Год назад
I noticed just now that he has only 100k subs
@kenhaley4
@kenhaley4 Год назад
It's worth mentioning that this video doesn't show how smoothly the rectangle moves (probably because of RU-vid's video compression, I don't know). But it's definitely worth following along in this example to see how to achieve smooth motion! Before watching this, I was always a bit frustrated by the occasional jerkiness of object motion in Pygame--no matter what frame rate I used. This fixes the problem! If you care about smooth motion in Pygame, learn this technique!
@bombastic_side_eye_007
@bombastic_side_eye_007 10 месяцев назад
Yup I too was so frustrated by the choppy motion.
@seekeroftheball
@seekeroftheball 9 месяцев назад
Really well explained. I like the mix of theory and practical demonstrations.
@w1ngZ_
@w1ngZ_ 2 года назад
I struggled so much with the floating point issue and my position being 0 because of it. Thank you!!
@yourdad8228
@yourdad8228 2 года назад
Excellent video as always. Keep it up!
@RH_Guitar
@RH_Guitar 2 года назад
Thank you for the great videos! I ended up purchasing your course on Udemy and loved it.
@ellsonmendesYT
@ellsonmendesYT Год назад
Happy I found your channel, learning a lot here :)
@lnt2024
@lnt2024 2 года назад
Thanks RU-vid recommendations for this.. I've tried to make this already since August 2021 and didn't know how to solve it. Thanks you, man, you are really cool
@bersi3306
@bersi3306 7 месяцев назад
Attention at 4:50. The example there is about "fixed time", and does not count difference between frames. This could led to confusion if you implemented it in your code, expected that everything multiplied by that just "move correctly" (since it will not). To correct, you need to take your system's "now" time, subtracting "last_draw_time" from it. The result is the right value of the delta time that you can multiply. This value will have to (maybe) be elevated to some power of 10, just to reduce precision. But it works as expected.
@tails_the_god
@tails_the_god Год назад
BEST video about delta time in games i have never followed a tutorial that actually made me understand this THANK YOU!
@user-hr4sq5wp5g
@user-hr4sq5wp5g 8 месяцев назад
Very good explanation. Thanks for making the video.
@brunorcabral
@brunorcabral 2 года назад
For the Pygame fps, have you tried using time.perf_counter() instead of time.time()?
@sbinti1152
@sbinti1152 2 года назад
nice video clear code !
@brahimchaouchi
@brahimchaouchi 2 года назад
Very good content, and good advice from some comments. I may just add not to call time.time() twice, you are losing a (very tiny) amount of time between the two. Use a variable current_time that you use throughout all the current frame. This includes body loop and passing the variable to function that want the current time.
@oliviayan7718
@oliviayan7718 Год назад
luv it. best video about deltatime
@paxxous
@paxxous Год назад
Thanks bro, just taught me all of the basics :D
@Vofr
@Vofr 2 года назад
I like your vids because how clean they are 👍❤❤
@tatianaturin
@tatianaturin Год назад
You are an amazing teacher!
@gogonogo2069
@gogonogo2069 2 года назад
This was so worth every second
@namlasyruhdwohc6340
@namlasyruhdwohc6340 2 года назад
such an underrated channel 🙏
@Nyghtprowler
@Nyghtprowler 6 месяцев назад
This is exactly what I was looking for. Almost ALL tutorials handling movement and jumping using frame dependant code and it's always bothered me. They do not even touch on the topic of accurate movement. Today was watching a tutorial on jumping and they set jump_height = 15 (steps aka frames) then were monitoring a variable called jump timer counting frames and once you hit 15 you'd be at max height... But just like you explained if you ran this game at 600 fps... it would happen at light speed and you'd only jump a fraction of the height you'd jump at 30 fps. This is a such an important part of a game's development and I do not see anyone talking about this. I'm glad I found this video and am not going crazy lol.
@davidsyengo1893
@davidsyengo1893 3 месяца назад
Another solution or addition: Have two update methods. One for logic and the other for drawing. The drawing loop should run at computer speed while the logic loop should run at a fixed interval ideally 30-60 times a second
@Mouton_redstone
@Mouton_redstone Год назад
that's so useful, thank you man
@plrc4593
@plrc4593 2 года назад
Generally a very good video and helps a lot to grasp this really important matter, but you erroneously built the table from 5:50: 0) 1/30=0.033, not 0.33 etc. 1) units are wrong. On the left site you've got 1/s*pixel*s=pixel, whereas on the right site you've got pixel/s. 2) The variable you calculate in the table is just covered distance i.e. Δx, not Δx/Δt. 3) You indeed want to have the same Δx/Δt regardless of FPS, but to have it constant 4) You need to have various Δx and Δx/frame. For instance, since Δx/Δt=Δx/frames*frames/Δt=Δx/frames*FPS, if you've got FPS=10 and you want Δx/Δt=100 you must have Δx/frames=10 and Δx=10 in every frame, but if you've got FPS=30 and want Δx/Δt=100, you must have Δx/frames=100/30 and Δx=100/30 in every frame. Thus Δx/frames must differ.
@carlfranz6805
@carlfranz6805 Год назад
Thanks. I think what is missing is a standardised formula for speed from, oh, say, a speed variable value for 60 FPS to one for 1000 ticks per seconds. It would help us slow learners to get a handle on what he attempting to explaining. I'm not sure that "CDcodes" does it any better. Both make some logical leaps without more thought/examples/whatever. The following is stream of consciousnesses, feel free to ignore. Given his maths, I was attempting to determine just what the various speed numbers actually mean. Does "speed = 250" mean I want this object to move 250 pixels per second (as 1000 ticks =~ 1 second)... But there is some slop in his maths (or my head) that I'm just not getting (admittedly I'm a bit tired and a bit drunk 😇). I would like to not guess as to what the speed numbers mean and have to use (more then the normal) trial and error to determine them. If my standard game used 60 FPS, then there should be a pretty well defined formula for converting from the speed numbers I used with 60 FPS and the speed numbers I use for 'dt'. i.e ((original_speed * 60) / 1000)) No...that's not right. It should be just (original_speed * 60) and the 1000 ticks per second will take care of themselves, once you invert it (1/1000). Because I use both a fast Windows 10/HP laptop and (my preferred development environment) a relatively slow Raspberry Pi 4 (64 bit Debian)... this kind of thing is actually important to me.
@yanlucca8874
@yanlucca8874 10 месяцев назад
It's a bit easier to do that now in Pygame-CE thanks to frects, which are rects that use floats instead of integers, so you don't need that extra variable for the position.
@FameMonsterD3
@FameMonsterD3 10 месяцев назад
Pygame CE, I just read that this is a forked ver of pygame with more updates, what happened to og pygame?
@firnyx
@firnyx 2 года назад
Hi, I'm a beginner in programming and I'm trying to code my first mini game with the great help of your video 'the ultimate introduction to Pygame', but I have encoutered a problem with the framerate ; is there a simple way to reduce or remove the kind of lag when you run a simple animation ?
@KlaasJanssen
@KlaasJanssen 2 года назад
Is it a kind of stutter every second or so or just basic lag (help is much better on the clear discord though, so suggest you check that out)
@firnyx
@firnyx 2 года назад
@@KlaasJanssen a kind of stutter yes, you're right I posted my question on discord
@kenhaley4
@kenhaley4 Год назад
@@firnyx I struggled with the same problem until I watched this video. By using dt (delta time) as described, and (this is mportant!) keeping test_rec_pos in a separate variable including the fractional part, and then setting the position attribute (x or y) of the moving object to this variable every time you move it, you will get smooth motion! Watch the video starting at 18:02 if you don't understand what I mean.
@lowHP_
@lowHP_ 2 месяца назад
Underrated
@legendrags
@legendrags Год назад
I am not an expert in this but what if we use an OOP like structure and call the update function x times per second and to get x we do something like calculating delta time. something like using dt to calculate how many times we need to call update(). this way we dont need to mutiply everything by delta time
@user-qx4vs7ne8w
@user-qx4vs7ne8w Год назад
Hello. Everything has made a lot of sense, but I have one problem. For some reason, when I try to implement this into movement controls, my character moves slightly faster along the negative axis. Whenever I move my character along +y or +x, I'm forced to add speed in the equation so that the speeds even out in all directions. The amount of speed I have to add is dependent on what my framerate is. If I have 120fps then I have to add 100. If I have 60fps I have to add 60 speed. Is there any fix for this?
@kenhaley4
@kenhaley4 Год назад
Maybe you're setting the position (x or y) of your object by using += instead of just = . Only the external variable...in this case, test_rect_pos...should be updated with +=. (I had a similar problem.)
@0WierdAsHell
@0WierdAsHell Год назад
Thanks for this.
@MaxJ345
@MaxJ345 4 дня назад
Great video! I've heard that tying animation speed to frame-rate is "a bad thing to do". Is this true? Why? What are the other options?
@ClearCode
@ClearCode 4 дня назад
you could use a timer to update a frame every 1/10 of a second or something but I haven't really encountered problems why the animations on delta time
@punkseth1
@punkseth1 Год назад
i followed along with this video and I still had some trouble. I know some python basics and some pygame basics. Your explanations are great, but do you, or anyone else, have any recommendations for how I can get up to speed on understanding this code a little bit more? it's hard to wrap my head around some of it. thanks!
@thebosscodergg
@thebosscodergg Год назад
I'm late but it'd be best if you watched his introduction to pygame tutorial. You'd get most if not all of the code he wrote
@bbdd5609
@bbdd5609 Год назад
Can I just use speed = base_speed*max_fps/fps or does that not work?
@pacey_808
@pacey_808 3 месяца назад
I know this is old, but i have a lottle bit of a tough time understanding the exact math of this. Wouldnt delta be a measure of the amount of time per drame (sec/frame as the units). So wouldnt multiplying pixel/frame * frame/sec * sec/frame result in just pixels as a measurement? So then we arent really deifning a rate? I totslly get the explanstion if delta doesnt have a unit, but i don't understand why delta is just a scalar woth no unit.
@sakthisivanesh6880
@sakthisivanesh6880 2 года назад
Their is any possible way to make android games using pygame
@chadman4478
@chadman4478 9 месяцев назад
Instead of setting extra variable for previous time, then subtracting it from the current and then saving it into dt variable, simpler and more precise solution would be pygame.time.Clock.tick_busy_loop(), which is pre-compiled, thus, producing better results!
@Carlbarl.
@Carlbarl. 2 года назад
Question: are pygame sprites/objects supposed to move by themselves or are they suppose to move when you move your mouse?
@ClearCode
@ClearCode 2 года назад
They move by themselves. You messed up the indentation in the while loop!
@Carlbarl.
@Carlbarl. 2 года назад
@@ClearCode what would be the indentation error tho? My code under while true is: while True: for event in pygame.event.get(): If event.type == pygame.QUIT: pygame.quit() exit() screen.blit(sky_surface,(0,0)) screen.blit(ground_surface,(0,300)) screen.blit(text_surface,(300,50)) screen.blit(player_surface,player_rect) snail_rect.x -= 4 if snail_rect.right
@Carlbarl.
@Carlbarl. 2 года назад
@@ClearCode sorry if I am being annoying. The code is from the ultimate pygame introduction
@piotrgruszecki2400
@piotrgruszecki2400 Год назад
For anyone curious, i think that the problem is that the code rendering graphics etc. is placed inside event loop and it should be only in while true loop
@fakeinsten7839
@fakeinsten7839 Год назад
hey why are we using the pygame vector?
@kailasmanoj2121
@kailasmanoj2121 2 года назад
Hello can you plz do a series on kivymd
@Xplouding
@Xplouding Месяц назад
Hi, pygame-ce solve the problem of movement with integers?
@ClearCode
@ClearCode Месяц назад
yep, that's what FRects are for :)
@jimbo3947
@jimbo3947 14 дней назад
What editor are you using in this video?
@marcolartategui4832
@marcolartategui4832 Год назад
18:08 Why is the answer to the issue?
@yazeed739_game9
@yazeed739_game9 Год назад
How to move position from 0 to 100 in 1000ms??
@sakthisivanesh6880
@sakthisivanesh6880 2 года назад
How to make screen that fits display of any pc
@ThantiK
@ThantiK 2 года назад
Honestly, more than anything, I'd like to know a good cross platform engine that would allow Android/iOS games, as that's where all the potential players are.
@almospal4480
@almospal4480 2 года назад
Instant like
@ZgavY
@ZgavY 2 года назад
Piece of advice: multiply dt by 60 so you don't have to work with high speeds
@binkrassdufass
@binkrassdufass 2 года назад
Algo
@bexplosion
@bexplosion 2 года назад
If you don't limit the fps the game will empty the battery energy on laptops or smartphones/tablets.
@moritz3185
@moritz3185 Год назад
The fps are still limited with pygame.clock.time(60) even when using deltatime.
@sbinti1152
@sbinti1152 2 года назад
i liked and copied link :)
@krishivmehandiratta798
@krishivmehandiratta798 2 года назад
first comment
@IzUrBoiKK
@IzUrBoiKK 2 года назад
69th comment Lol, btw love ur vids bro.
@Vofr
@Vofr 2 года назад
Bot :?)
@IzUrBoiKK
@IzUrBoiKK 2 года назад
@@Vofr nah breh, 69 was a joke
@Vofr
@Vofr 2 года назад
@@IzUrBoiKK you are not the 69th comment ~_~. It doesn't work that way :3
@afailable
@afailable 14 дней назад
This isn't entirely correct. A more in depth look at how delta time works can be found here: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-yGhfUcPjXuE.htmlsi=sE4QcgXeCbMBxhzb This is still a good video as an introduction to dt
@Bankoru
@Bankoru 7 месяцев назад
lol pygame
@N0OBB
@N0OBB 2 года назад
good pc: 600+ fps (i think it's supposed to be 60 plus) bad pc: 30 fps
Далее
Dear Game Developers, Stop Messing This Up!
22:19
Просмотров 676 тыс.
TIMESTEPS and DELTA TIME | Game Engine series
28:06
Просмотров 45 тыс.
🎙Пою Вживую!
2:59:56
Просмотров 1,2 млн
Source Engine Tick System Explained
8:51
Просмотров 120 тыс.
Giving Personality to Procedural Animations using Math
15:30
How C++ took a turn for the worse
5:03
Просмотров 249 тыс.
The Largest Unsolved Problem in VR.
25:43
Просмотров 143 тыс.
Getting The Game Loop Right
8:27
Просмотров 27 тыс.
Pygame CE - Better & Faster
6:29
Просмотров 32 тыс.
Understanding decorators [Python tutorial]
42:31
Просмотров 24 тыс.
An introduction to Shader Art Coding
22:40
Просмотров 906 тыс.
🎙Пою Вживую!
2:59:56
Просмотров 1,2 млн