Understanding framerate independence and deltatime

  Рет қаралды 43,937

Clear Code

Clear Code

Күн бұрын

Пікірлер: 86
@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 2 жыл бұрын
@@K5RTO you mean 1 morbillion subs
@Sam2Reel
@Sam2Reel 2 жыл бұрын
I noticed just now that he has only 100k subs
@michaelwallace9461
@michaelwallace9461 4 ай бұрын
This is such an elegant explanation. Just wanted to add, that I had fun adding my scaling factor to the speed as well. My game is using a standard 320x180 pixel art canvas then everything is scaled up 4x or 6x (or less for fun). The scaling was only applying to the image sizes but now I am adding scaling to the speeds. As I understand it, using dt also simplifies the choice of speed as a value basically translates to pixels per second. Therefore, I have to correct it with my 4x or 6x scaling. (Don't want 100 pixels per second on a 320 screen AND a 1920 screen). Very satisfying
@kenhaley4
@kenhaley4 2 жыл бұрын
It's worth mentioning that this video doesn't show how smoothly the rectangle moves (probably because of KZbin'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 Жыл бұрын
Yup I too was so frustrated by the choppy motion.
@w1ngZ_
@w1ngZ_ 2 жыл бұрын
I struggled so much with the floating point issue and my position being 0 because of it. Thank you!!
@bersi3306
@bersi3306 Жыл бұрын
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.
@lnt2024
@lnt2024 2 жыл бұрын
Thanks KZbin 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
@tails_the_god
@tails_the_god 2 жыл бұрын
BEST video about delta time in games i have never followed a tutorial that actually made me understand this THANK YOU!
@seekeroftheball
@seekeroftheball Жыл бұрын
Really well explained. I like the mix of theory and practical demonstrations.
@Nyghtprowler
@Nyghtprowler Жыл бұрын
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.
@DylanBeaudry
@DylanBeaudry 2 ай бұрын
5:09 wouldn't the formula be movement*target framerate*deltatime to prevent lag?
@oliviayan7718
@oliviayan7718 Жыл бұрын
luv it. best video about deltatime
@ellsonmendesYT
@ellsonmendesYT 2 жыл бұрын
Happy I found your channel, learning a lot here :)
@namlasyruhdwohc6340
@namlasyruhdwohc6340 2 жыл бұрын
such an underrated channel 🙏
@RH_Guitar
@RH_Guitar 2 жыл бұрын
Thank you for the great videos! I ended up purchasing your course on Udemy and loved it.
@יואבט
@יואבט Жыл бұрын
Very good explanation. Thanks for making the video.
@yourdad8228
@yourdad8228 2 жыл бұрын
Excellent video as always. Keep it up!
@sbinti1152
@sbinti1152 2 жыл бұрын
nice video clear code !
@davidsyengo1893
@davidsyengo1893 10 ай бұрын
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
@Retrofire-47
@Retrofire-47 7 ай бұрын
*Review*: ok, so by multiplying the desired speed by Δt each frame refresh, this enables you to scale the speed traveled each frame according to the hardware fps. so. Each frame refresh the motion would actually be different with this formula. *but* since there are more frames being output at 120fps vs 60fps, over 1 second the lower motion per frame should normalize to a constant value
@yanlucca8874
@yanlucca8874 Жыл бұрын
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 Жыл бұрын
Pygame CE, I just read that this is a forked ver of pygame with more updates, what happened to og pygame?
@gogonogo2069
@gogonogo2069 2 жыл бұрын
This was so worth every second
@paxxous
@paxxous 2 жыл бұрын
Thanks bro, just taught me all of the basics :D
@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 2 жыл бұрын
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.
@marcolartategui4832
@marcolartategui4832 2 жыл бұрын
18:08 Why is the answer to the issue?
@brunorcabral
@brunorcabral 2 жыл бұрын
For the Pygame fps, have you tried using time.perf_counter() instead of time.time()?
@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.
@Vofr
@Vofr 2 жыл бұрын
I like your vids because how clean they are 👍❤❤
@amirrezasharifi9327
@amirrezasharifi9327 3 ай бұрын
i thinck you can skip most of the second part ,because with new cpygame you can make "FRect" instead of "Rect" and it will do the work with float numbers as well (this video is for 2022, in his newer videos he said you should use the FRect almost every time)
@tatianaturin
@tatianaturin 2 жыл бұрын
You are an amazing teacher!
@LunaticEdit
@LunaticEdit 4 ай бұрын
It really doesn't matter I'm sure, but I set new_time to the time, calculate the delta with new_time then set last_time to new_time that way I can't possibly loose time between the two lines that call get time.
@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
@pacey_808
@pacey_808 11 ай бұрын
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.
@Mouton_redstone
@Mouton_redstone 2 жыл бұрын
that's so useful, thank you man
@ryanqrz9814
@ryanqrz9814 2 күн бұрын
I was struggling to understand until realize something. In pygame 2.6.0 rectangles can work with floating numbers.
@yazeed739_game9
@yazeed739_game9 Жыл бұрын
How to move position from 0 to 100 in 1000ms??
@fakeinsten7839
@fakeinsten7839 2 жыл бұрын
hey why are we using the pygame vector?
@sakthisivanesh6880
@sakthisivanesh6880 2 жыл бұрын
Their is any possible way to make android games using pygame
@lowHP_
@lowHP_ 10 ай бұрын
Underrated
@MaxJ345
@MaxJ345 7 ай бұрын
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 7 ай бұрын
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
@TheCrewExpendable
@TheCrewExpendable 7 ай бұрын
You don't want to tie animation to a specific frame rate. In other words, you don't want to hard code an animation to run at 30 fps because it will run twice as fast as it should at 60fps and 4 times as fast at 120fps. This is why a lot of old PCs had a "turbo" button on the case to toggle the CPU between full clock rate and a slower clock rate. A lot of old games and software didn't limit frame rate in code and didn't really take frame rate into account, so e.g. an old PC game would run at an unplayable 900 fps on newer hardware and characters and enemies would move around at light speed and music would be on fast forward or would just break.
@Xplouding
@Xplouding 9 ай бұрын
Hi, pygame-ce solve the problem of movement with integers?
@ClearCode
@ClearCode 9 ай бұрын
yep, that's what FRects are for :)
@bbdd5609
@bbdd5609 2 жыл бұрын
Can I just use speed = base_speed*max_fps/fps or does that not work?
@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 2 жыл бұрын
@@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.
@Ilnur-v6z
@Ilnur-v6z 2 жыл бұрын
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 2 жыл бұрын
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.)
@jimbo3947
@jimbo3947 8 ай бұрын
What editor are you using in this video?
@chadman4478
@chadman4478 Жыл бұрын
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!
@sakthisivanesh6880
@sakthisivanesh6880 2 жыл бұрын
How to make screen that fits display of any pc
@kailasmanoj2121
@kailasmanoj2121 2 жыл бұрын
Hello can you plz do a series on kivymd
@punkseth1
@punkseth1 2 жыл бұрын
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
@0WierdAsHell
@0WierdAsHell 2 жыл бұрын
Thanks for this.
@drendelous
@drendelous 3 ай бұрын
you made it even more complicated now for me
@deadshot9640
@deadshot9640 4 ай бұрын
bro do some raylib c++ tutorials pls 😢
@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
@penteronto
@penteronto Жыл бұрын
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
@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.
@ZgavY
@ZgavY 2 жыл бұрын
Piece of advice: multiply dt by 60 so you don't have to work with high speeds
@nqnp24
@nqnp24 5 ай бұрын
beset tutorial about this
@almospal4480
@almospal4480 2 жыл бұрын
Instant like
@bexplosion
@bexplosion 2 жыл бұрын
If you don't limit the fps the game will empty the battery energy on laptops or smartphones/tablets.
@moritz3185
@moritz3185 2 жыл бұрын
The fps are still limited with pygame.clock.time(60) even when using deltatime.
@binkrassdufass
@binkrassdufass 2 жыл бұрын
Algo
@afailable
@afailable 8 ай бұрын
This isn't entirely correct. A more in depth look at how delta time works can be found here: kzbin.info/www/bejne/r3jLl4iZhc-Lq6csi=sE4QcgXeCbMBxhzb This is still a good video as an introduction to dt
@sbinti1152
@sbinti1152 2 жыл бұрын
i liked and copied link :)
@krishivmehandiratta798
@krishivmehandiratta798 2 жыл бұрын
first comment
@Bankoru
@Bankoru Жыл бұрын
lol pygame
@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
@FraudulentFame
@FraudulentFame 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
Jonas Tyroller
Рет қаралды 795 М.
TIMESTEPS and DELTA TIME | Game Engine series
28:06
The Cherno
Рет қаралды 48 М.
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 30 МЛН
Getting The Game Loop Right
8:27
Vittorio Romeo
Рет қаралды 36 М.
Why I Use C | Prime Reacts
13:00
ThePrimeTime
Рет қаралды 194 М.
Debugging in Pygame
12:28
Clear Code
Рет қаралды 14 М.
An introduction to Shader Art Coding
22:40
kishimisu
Рет қаралды 1 МЛН
The Problem with Time & Timezones - Computerphile
10:13
Computerphile
Рет қаралды 4,1 МЛН
Time travel in Unity | Useless Game Dev
10:34
Useless Game Dev
Рет қаралды 26 М.
Saving and loading in pygame with json
25:23
Clear Code
Рет қаралды 30 М.
How to Code (almost) Any Feature
9:48
DaFluffyPotato
Рет қаралды 714 М.
Quando A Diferença De Altura É Muito Grande 😲😂
00:12
Mari Maria
Рет қаралды 45 МЛН