Тёмный

Serious Sam's Most Notorious Bug Analysed 

decino
Подписаться 199 тыс.
Просмотров 351 тыс.
50% 1

Explaining the cause of the infamous weapon slowdown bug from the classic Serious Sam games and how to fix it.
Patreon:
/ decino

Игры

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

 

13 май 2022

Поделиться:

Ссылка:

Скачать:

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

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 1,1 тыс.   
@TheRealGooberMan
@TheRealGooberMan 2 года назад
19+ year gamedev here. The way we did this in the PS2 era was to treat every timer as a countdown. Our games also used variable tick rates, so the epsilon method would not have worked for us.
@danpc8685
@danpc8685 2 года назад
Is there even a reason to use floating point values for time instead of integers? This bug wouldn't have happened if timer was just an unsigned 32-bit integer that counted milliseconds. And the threat of overflow isn't something you should worry about, as it would take 50 days for overflow to occur.
@hi-i-am-atan
@hi-i-am-atan 2 года назад
@@danpc8685 variable tick rates are a pretty major one
@TheRealGooberMan
@TheRealGooberMan 2 года назад
@@danpc8685 30Hz and 60Hz tick rates cannot be accurately represented by using a 32-bit integer as milliseconds. Neither can Doom's 35Hz tick rate. Floating point can be tricky, but not unknowable. A 32-bit float with an exponent equal to 0 is essentially equivalent to a 23-bit integer. The step between representable values at that point is 1. Higher/lower exponents change the step between values, and being based in binary (ie powers of 2) means that representing 0.1 exactly is not possible. Also critical for understanding floating point is that it's just an encoding of a value. On the x87 coprocessors in use at the time Serious Sam was released internal calculations were performed at 80 bits of precision, not the 32 that the values are stored in. Using the SSE pipeline that x64 processors default to will result in different values for the same calculation. Controlling CPU flags is also critical to make floating point behave. The number of middlewares that mess with CPU flags and don't reset them when exiting their functions is annoyingly high. Denormals are the bane of my existence. Just about everyone has moved to double-precision for timers these days. Larger exponent support means you can get way way closer to that 0.1 value, so you need to be running for years to hit these problems (which isn't necessarily out of the room of possibility for a server-based multiplayer game with a strong community).
@danpc8685
@danpc8685 2 года назад
​@@TheRealGooberMan this is Serious Sam though, and the tick rate is 20Hz, which is quite easy to represent with integers. But yeah pretty much anything else would be quite tricky to do with ints. I wonder if you could do something dumb like storing time in a fixed point format, that would both let you represent fractions while also not suffering from precision loss since it's fixed.
@TheRealGooberMan
@TheRealGooberMan 2 года назад
@@danpc8685 That's one of the common misconceptions for fixed point. It's still a binary representation, based in powers of two. The 16.16 fixed format that Doom uses means that the step between representable values is 1/(2^16), or 0.0000152587890625. Divide 0.1 by that for example, you still don't get a whole number and thus 0.1 is not representable in fixed point. The major reason fixed point is seen as more accurate is because floating point standards do not define implementation for most operations (hence hardware differences I mentioned earlier). Integer operations are very well defined by standards, and fixed point operations are done in software allowing complete control.
@fleckens
@fleckens 2 года назад
I never knew about this bug but just hearing the laser gun firing at the start I could clearly tell I had experienced it as I recall the sounds of the two different rates of fires.
@AssassinDXZ
@AssassinDXZ 2 года назад
THIS, hearing that again opened a lot of old vaulted memories I had of that time, jesus!
@Mantafirefly
@Mantafirefly 2 года назад
Yeah I always thought it was my oldass computer slowing down to deal with the higher enemy count that happens an hour in
@hmr1122
@hmr1122 2 года назад
Blast from the past, I remember me and my little brother playing the campaign in split screen and noticing this, but we were rocket and cannonball nerds so it never really annoyed us much.
@Goon-124
@Goon-124 2 года назад
Same here. I remember noticing it, but always assumed it was related to the audio system somehow
@kingechatronii7379
@kingechatronii7379 2 года назад
same here!
@mallardtheduck1
@mallardtheduck1 2 года назад
It seems to be a really bad decision to use a floating point value to store the game tic like that. An integer completely avoids this issue; even a 32-bit integer has enough range for over 6 years of playtime at 20 tics per second. About the only advantage a float might have is that time values are written by developers in terms of seconds rather than tics, making it easier to change the tic rate during development, but even then, converting those values to integer tics at the first opportunity in the code is probably a better solution.
@jinyuliu2871
@jinyuliu2871 2 года назад
or just count the number of milliseconds since the start of the game. This gives 43 days before it overflows, and I think is a good compromise between the ease of specifying times in seconds and being "fixed point" and eliminating accumulated floating point error.
@0x8badf00d
@0x8badf00d 2 года назад
@@jinyuliu2871 **49** days using uint32_t or 24 days using int32_t And after 49 days there will be a single hickup and everything will probably work fine afterwards. With signed integers however, the compiler may legally make your program play Never Gonna Give You Up by Rick Astley.
@jonwallace6204
@jonwallace6204 2 года назад
One of the times where fixed point work better.
@vulduv
@vulduv 2 года назад
Honestly, 6 years is probably longer than what floating point would realistically handle. The gap between each value floating point can represent grows as you move away from 0. And assuming that the float used in game rounds to the nearest value when adding. Once the gap between each value grows to more than twice the size of the value the game adds to the timer to progress it, the timer will just stop. As it will try to add 50 milliseconds, and then it will round to the closest value, which would be down to the value it started on. And then that will just repeat, never progressing the timer. I would love to see what it looks like in game when the timer reaches that point! :D My guess? Ai will probably stop working, every gun except the minigun will only fire one shot, (The minigun doesn't use the timer.) and the player might not even be able to move anymore.
@Corrodias
@Corrodias 2 года назад
Amusingly, IEEE-754 floating point numbers have always been a pain in the butt for computers and have best been avoided where possible. In the 80386 era, you needed a whole, separate co-processor to handle floating point operations. People grew too complacent. They're only really useful for quick approximations, and one must always remember that they *are* merely approximations when working with them. Using them for calculating anything involving money is a common, rookie mistake.
@OldMovieRob
@OldMovieRob 2 года назад
Weird how I remember playing this game years ago, and being vaguely aware of this happening, but just dismissing it in the back of my head as the weapons overheating or something, haha
@Folisaa
@Folisaa 2 года назад
Hey, it's not a bug, it's a feature!
@seronymus
@seronymus Год назад
​@@Folisaa many such cases! So many inventions innovated by "accident"...
@tydeuskero7295
@tydeuskero7295 Год назад
Same. I loved Lasergun, but this bug was a buzz-kill. I thought that slow rate of fire was some kind of game balance that activates during gameplay to make this weapon not OP.
@PeterLawrenceYT
@PeterLawrenceYT 2 года назад
Surprised how interesting I found this one! Looks like finding the issue was more difficult than fixing it.
@CabalCorporation
@CabalCorporation 2 года назад
That's the whole job of a troubleshooter. The fix is easy, but getting to it is way worse. And trust me, I've worked quite few years in code maintenance.
@VideoAndGameMan
@VideoAndGameMan 2 года назад
That is so true. Whenever I try to fix the code, I can't find the error, but fixing found error takes a really short time.
@ivailok3376
@ivailok3376 2 года назад
Welcome to software development
@BSzili
@BSzili 2 года назад
@@ivailok3376 TFW you spend the whole day debugging and the fix is a single line of code.
@GeneralPotatoSalad
@GeneralPotatoSalad 2 года назад
One time when I was testing something (Doom-related, actually) the entire game collapsed into a hot mess for everyone after a new feature was added, though it worked fine from default settings. I spent over two hours looking for patterns in the mess, developing a hunch, and then making minor changes until I found how to replicate it. I refined that down to being able to turn on and off the bug in seconds. I turned in my report to the coders, who wrote back an hour later: It was a fencepost error. The system started counting from zero, the human interface started counting from one. All it took was a -1 in the right place to fix it.
@Keldor314
@Keldor314 2 года назад
There's more to the bug than this - if it was just a matter of floating point error in the time tick, you would have one shot fire one tick late, and then all subsequent shots would be at the regular rate, but one tick late relative to the beginning of the game. The other part of the bug is that the target times are not calculated correctly. Instead of adding the time delay to the previous time target to get the next shot, it adds it to the time at which the weapon was actually fired, resulting in each subsequent target time being almost a full tick late relative to the last one (because the actual time of firing was late). This is why the bug doesn't appear to "fix itself" after one shot being delayed by a single tick, but rather has a additional delay for every single shot.
@HappyBeezerStudios
@HappyBeezerStudios 2 года назад
the exact values where it bugged were interesting. 4096, 65536, 1048576 That is directly after surpassing 2^12, 2^16 and 2^20, or 4 binary digits apart, lasting until the most significant bit flips again. I assume there will be another instance at 16 777 216 or 2^24 and another one on 168 435 456 or 2^28 and on 4 294 967 296 or 2^32 (but the latter might already hit worse issues when hitting the signed 32 bit limit)
@ABaumstumpf
@ABaumstumpf 2 года назад
@@HappyBeezerStudios i'm pretty sure that no, you will not get that error anymore at 2^20: The error happens cause floating-point arithmetic has certain rounding-rules and while it can store from very tiny to very large numbers the precision is limited to 23 bits - that gives you about 7 digits in precision. But we are dealing with adding fractions to that number. At 2^20 trying to add 0.05 seconds will NOT add anything so at that point those weapons fully break down.
@daimonmau5097
@daimonmau5097 2 года назад
@@ABaumstumpf break down how? They would stop working or freeze the game?
@ABaumstumpf
@ABaumstumpf 2 года назад
@@daimonmau5097 As i said - at the point where the time is that large already trying to add a small fraction of a second does literally nothing - the value no longer changes, so the weapons would not fire at all.
@daimonmau5097
@daimonmau5097 2 года назад
@@ABaumstumpf Aaahh, understood now. You said the value would not change anymore, so the weapon would just be waiting for a validation to fire, that would not come. Thanks.
@jeremyabbott4537
@jeremyabbott4537 2 года назад
this explains why so many rooms of Serious Sam felt completely unfair. I tend to take my time and I would probably have ended up just reaching the 3rd stage or so around when this bug shows up. I definitely noticed the sound of the laser gun changing, but I had/have so little experience with Serious Sam that I never noticed the weapon was actually firing slower! It's crazy how nobody on their team noticed it before releasing!
@Orzorn
@Orzorn 2 года назад
This is why its absolutely crucial that when you're doing floating point comparisons to pick an epsilon that makes sense with regards to the units of change you expect to happen between each check. The 0.04 epsilon makes sense because of the tick rate they chose, whereas 0.01 is kind of a nonsense epsilon. Its a very easy mistake to make with regards to floating point comparisons, however, and I've seen even very experienced programmers make it. That's why I try my best to avoid floating point altogether.
@CrustaceanSlime
@CrustaceanSlime 2 года назад
Unlike the floating points, we were precise in finding the reason for the bug.
@wxndxx
@wxndxx 2 года назад
thats cool, I never thought that floating point numbers can affect the game THIS way
@blai5e730
@blai5e730 2 года назад
Good find and explanation decino. I used to be a software developer and in the late 80's, I used a Pascal library for a b-tree database. It included a database browser that would every so often not step correctly and/or not fill the screen with populated records. It turned out to be a _magic number_ in a routine used to populate the browser with updated records that was set too low (1 instead of 4). I was able to find this because I had the source code and after much testing I determined that my change fixed the issue. I emailed the company that developed the library and they silently updated the code a month or two later without any credit given or at the very least; acknowledgement. _Come on, I was young and wanted my 2 seconds of fame!_ Another time (during the early times of Windows 7), I developed a custom control for Borland's Delphi 7 to support Windows Task Dialogs which would use native calls for systems that supported Task Dialogs (Vista and newer) and emulate it on earlier systems (Windows XP and earlier). As I had to dissect the functionality and behaviour of this dialog, I kept coming across a bug that would clip the dialog under certain conditions (which I made sure didn't happen with my emulation). I wrote up a paper detailing when I had discovered and what conditions triggered the clipping bug and submitted it to Microsoft. After 3 months I got a reply which consisted of a single sentence... "Thanks for bringing this to our attention". This was the only correspondence I ever received and I could still reproduce the bug in Windows 8 (never checked for the bug under Windows 10).
@XCenturionX
@XCenturionX 7 месяцев назад
Amazing knowledge
@NeilForshaw
@NeilForshaw 2 года назад
I've always been a bit sus of floating point. Feels like should avoid it if you're not really using it to show floating point numbers to users.
@Xeotroid
@Xeotroid 2 года назад
Or you can use double precision floating point numbers. No clue how they affect performance when there's a lot of them, though.
@competingyevhen
@competingyevhen 2 года назад
That is why in banking systems it is usually recommended to not use it and to use workarounds if you need to display it. Ever noticed that in banking terminals where cashier manually inputs sum they don't input point between dollars and cents (or insert your local currency with it's part-showing currency)? That is inserting smaller currency and displaying it with workarounds/ When I was in school, that actually was part of our programming course to make such program, and part of testing was with big numbers to see who used floating point and who used only integers and to teach about this problem.
@chonchjohnch
@chonchjohnch 2 года назад
Yeah fixed point is a lot better
@Krecikdwamiljony
@Krecikdwamiljony 2 года назад
@@Xeotroid double precision floating points are just that, double precision. The errors are smaller and you might get away with it in more situations, but it still isn't safe with repeated multiplications and perhaps extremely repeated additions too. I'd expect performance to be exactly the same nowadays in most cases, with 64-bit processors everywhere. And if you really, really want performance, in a lot of cases you can use integers as if they were fixed point decimals, getting better performance AND perfect precision.
@rm_steele
@rm_steele 2 года назад
@@Xeotroid i think that serious sam would be 32 bit, so it wouldn't work. unless doubles are 32 bits
@Tuxlion
@Tuxlion 2 года назад
This also happens when you go too far in some games, polygons start distorting wildy because of the floating point error. I also remember my first encounter with this bug when I was making an inventory for a game.
@HappyBeezerStudios
@HappyBeezerStudios 2 года назад
That basically describes why graphics on the PS1 are warping around. lack of floating point precision.
@ABaumstumpf
@ABaumstumpf 2 года назад
@@HappyBeezerStudios No, not at all, not even close. Seriously - why are you spouting such pullshit? The PS1 famouse texture-warping comes from the lack of a z-buffer. There is no perspective for texture coordinates and as such triangles are treated as 2D and hence have wrong texture coordinates along the depth-axis.
@roymuerlunos2426
@roymuerlunos2426 2 года назад
Decino could figure out all of life's problems if he could just get access to the Open Source for life.
@pavelpotehin4024
@pavelpotehin4024 2 года назад
It's a good reminder - never use floating point variables if you need precision or may workaround without them. They could just count milliseconds in Int64 and this bug would have never occured.
@DarkMoe
@DarkMoe 2 года назад
I know you hate SS2 and SS3, but I would hope one day you still analyze and play through them. Your videos on broken spawners are among my favorite, that kind of analysis is superb
@milanfrags
@milanfrags 2 года назад
Agree. Seeing a 100% walkthrough and analyzis of bfe (fusion and vanilla) would be rly rly nice.
@YellowDice
@YellowDice 2 года назад
That's a shame cause I really liked SS2, yeah the artstyle they took sam wasn't good but the gameplay is the same. I haven't played SS4 but I really didn't like 3.
@milanfrags
@milanfrags 2 года назад
@@YellowDice the gameplay in ss2 is not the same at all. Completely braindead.
@thebesto7787
@thebesto7787 2 года назад
@@YellowDice I feel the same way. The artstyle understandibly throws people off and I agree, it's really odd, but it doesn't ruin things for me because the gameplay isn't bad. SS3 on the other hand... oh my. Great graphics but man, it's just not fun for me. At all.
@pura8898
@pura8898 2 года назад
Idk if we can even check all of the spawners for SS2, as for SS3 there is only one broken spawner in the entire game, a kleer in the dark bride level
@OmegaPaladin144
@OmegaPaladin144 2 года назад
Really interesting video - it's interesting to see under the hood. It would be cool if CroTeam actually used this fix. I am kind of surprised that they did not use a tick-based integer counter for this.
@arciks11
@arciks11 2 года назад
There is a chance it might be. Decino's video on broken kill counts had them fixed in Revolution.
@antzpantz
@antzpantz 2 года назад
This is AMAZING. I can only vaguely recall this bug back when I played it more often. It's a weird oddity!
@seriousnorbo3838
@seriousnorbo3838 2 года назад
I'd definitely love to see more Serious Sam analysis and mechanics explained in the future!
@bdubhimself8186
@bdubhimself8186 2 года назад
Very cool analysis video. Watching your whole process for tracking down whats causing a bug to occur and then trying out a fix was awesome. Keep up the great work!!
@robertbeckman2054
@robertbeckman2054 2 года назад
I remember when the hype for Serious Sam 2 was hot. The polygon count was to be 1000x higher per monster, plus this and that. It was buggy, load times were atrocious, and it didn't work with some video cards at the time (mine included). By far, Serious Sam (the original) is the best in the series and gives me many good memories during a time when FPS were going through the "Anything like the Id Software formula sucks" phase.
@MrCh0o
@MrCh0o 2 года назад
I remember playing Serious Sam 2 and thinking how goofy and cartoonish it became. Still, I decided to play through the entire thing, and funnily enough feel nostalgic about it nowadays
@flariz4824
@flariz4824 2 года назад
Serious Sam 2 is my favorite in the series
@GraveUypo
@GraveUypo 2 года назад
@@MrCh0o first time i saw it i was just blown away by the graphics. it was the first game with xbox360-level graphics (even if on the low end of that)
@ValdVincent
@ValdVincent 2 года назад
Do you mean Serious Sam 2, or 2nd encounter,
@MarkMeadows90
@MarkMeadows90 2 года назад
Not sure if I have ever "encountered" that bug playing The Second Encounter. I played so much multiplayer back in the mid 2000s that the lag would slow down the weapon speed at times. Now, that I am not sure if the bug has a part of.
@FredericEllsworth104
@FredericEllsworth104 2 года назад
Ah yes, the weapon slow down bug which got me on my first playthrough of classic TFE and TSE. Glad to know there IS a way to fix it. Also, I wonder if you're going to do an analysis on the Cannon and how much damage its cannonballs lose while they're on the ground.
@DustyEchozy
@DustyEchozy 2 года назад
And how much time it's required to destroy a ground cannon via Rocket Launcher or Grenade Launcher.
@DinnerForkTongue
@DinnerForkTongue 2 года назад
You could create an entire mathematical graph of damage-per-time about the Cannon. I'm into it.
@lovecraftcat
@lovecraftcat 2 года назад
If you're playing HD, then 0?
@user-xu2pi6vx7o
@user-xu2pi6vx7o 2 года назад
Doooo....eeeeeettttt...Decinnnooo...
@rockleesmile
@rockleesmile 2 года назад
I didn't expect such a deep look into this. Very good video and I appreciate the extra steps of explaining how to fix it. Great work Decino!
@D0Samp
@D0Samp 2 года назад
The same thing happens with the global timer (also counting seconds as a single-precision float) on Source games as well, but they probably got the floating-point comparison right so things only start to break down after months when firing intervals themselves get rounded due to lack of precision: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-RdTJHVG_IdU.html
@decino
@decino 2 года назад
Oh yeah, I've seen this happen in Quake II back in the day as well.
@nooneinparticular3370
@nooneinparticular3370 2 года назад
​@@decino How long were your Quake II sessions my man, holy moly.
@asj3419
@asj3419 2 года назад
@@nooneinparticular3370 In tf2 people sometimes host servers 24/7 without restarts (or even the round ending), which is how I encountered it.
@colonelsouffle3042
@colonelsouffle3042 2 года назад
Ah yes shounic, the decino of TF2.
@HappyBeezerStudios
@HappyBeezerStudios 2 года назад
The step isn't that hard from Quake to GldSrc to Source. I wonder if the bug is still there in CS:GO, Apex and whatever the current CoD is.
@Davtwan
@Davtwan 2 года назад
I am interested. Your Serious Sam “Broken Kill Counts” videos are some of my favorites from you. I think there’s some potential covering more of Serious Sam and Quake in the future whenever you get burned out by DOOM but want to keep the content rolling.
@vulduv
@vulduv 2 года назад
A bug caused by the programmers at Croteam doing what tons of other programers have done for years. Overusing floating point. :> Though honestly, a lot of situations where floating point is used, could be better handled by integers or fixed point. (Which is just an integer with a portion of the bits representing the decimal. Much more efficient than the crazyness that is floating point. Not exponential though, but you don't need that the majority of the time.)
@HappyBeezerStudios
@HappyBeezerStudios 2 года назад
Floating point, so that Intel may thrive :D The competition was weaker at float for the longest time, which is why all the 5x86, K5, K6, 6x86, C3, etc did so much worse in games than they did in office workloads.
@ABaumstumpf
@ABaumstumpf 2 года назад
Both have their use and for many things floating-points are just way easier to use and more than precise enough. Take for example character movement. With floats you can store the position of a character quit nicely without having to constantly shift around the scale. You can have 1 being 1 meter and still go down to the 1 cm - only with very large open areas would the precision ever be a problem (like 8x8 km ). Things like vertex-positions, texture-colors etc can nicely are prime examples for were floating-point arithmetic is nice and simple. Of course you need to be aware on were to use them otherwise it can lead to such problems. But same goes for integers. I have seen problems were people used integers and it lead to some rather bizzar bugs - like when calculating the volume of objects. They stored the size in Millimeter and wanted to know how many of that object they could fit in X containers. Sure - IF the measurements are accurate and of a decent size everything is fine. But once you got small objects and many large containers - yeah, suddenly you need small and large numbers at once and the integer-number just is just silently overflowing. The hotfix was to calculate the same number with floats and compare if they at least agree on the order of magnitude as floats have no problem with those larger numbers. Now if those 2 results disagree it goes to a save integer-limit and displays the float-result with some warnings. @@HappyBeezerStudios Ah yes - the conspiretards with no clue.
@AlexeiVoronin
@AlexeiVoronin 2 года назад
Some of us are actually happy to see you do Sam-related stuff again. We miss those days :)
@d-_-b-Phil
@d-_-b-Phil Год назад
Here's a fun fact. Your video was mentioned on a polish YT channel arhneu. It's in their latest "System error" thing. They basically simplified your explanation as a setup for the 1991 Patriot missile failure that happened due to the same floating point inaccuracy accumulating over time. Cheers from Poland!
@Roy-hn4ek
@Roy-hn4ek 2 года назад
This certainly is a surprise to see a serious sam analysis video, but a very welcome one. Pretty interesting too, im always fascinated how you dig into the game code to find all these mechanics and issues. Never before have i been interested in game coding, but your analysis videos kinda changed that☺
@RNorthex
@RNorthex 2 года назад
I remember your SS playthroughs being really fun and relaxing to watch. More SS content is always appreciated!
@KilgoreTroutAsf
@KilgoreTroutAsf 2 года назад
Lesson: never use constant values in your code that are not exactly representable.
@ABaumstumpf
@ABaumstumpf 2 года назад
Just make sure that your assumptions and data-types are correct. With float even 1 might not be representable if it is part of a calculation: If the number is large enough (which really is not all that large) than adding 1 can either add more or less to the result. So - if you know that you have fixed timesteps then use a fixed format to represent that - like integers.
@BigMacDavis
@BigMacDavis 2 года назад
I guess this is Serious Sam's "You Suck" taunt after 1 hour, except now it comes with a physical penalty. Cool video. :)
@ademkapovskic8106
@ademkapovskic8106 2 года назад
what can we say, sometimes you just gotta be a gamer for more than 1.5 hours
@realkekz
@realkekz 2 года назад
Fancy seeing you here
@thomasvleminckx
@thomasvleminckx 2 года назад
I laugh every time decino is forced to say "AGONIZING RECTAL PAIN"
@IDGCaptainRussia
@IDGCaptainRussia 2 года назад
it may have taken 20 years, but someone FINALLY explained this very annoying bug, thank you very much for this! What's funny about floating point precision errors is this continues into the later games too, hell, in the 1st France level in Serious Sam 4 you can SEE it yourself as your gun appears to jitter by you looking around. This gets far worse if you head out to the secret radio at the end of the road.
@thomashjg2689
@thomashjg2689 2 года назад
Interesting! I do a lot of programming with real time simulations and I find these kind of floating point issues quite annoying. If there are no performance differences, I just use milliseconds or microseconds as unsigned integers instead of seconds as floating point. I think there is a bit of art to know when and what format to use and how to correctly convert between them when needed. :)
@HappyBeezerStudios
@HappyBeezerStudios 2 года назад
Where does it get the timer from?
@Tyrian3k
@Tyrian3k 2 года назад
5:35 It's actually a 33% decrease. You have 67% speed left. ;)
@decino
@decino 2 года назад
Yeah, I noticed that too late. Whoops.
@zeeeee86
@zeeeee86 2 года назад
If all the automatic weapons fire at rates of multiples of 0.05s they could have just defined the wait time in tics, they could have avoided the floating point shenanigans like that. Or maybe I'm too used to tics being the shortest possible time in my doom mods. Most modern games use 0.1s for automatic fire rate, so I use a lot of 3-4-3-4 tic gallopps in gzdoom, that runs at 35 tics/sec.
@davidmcgill1000
@davidmcgill1000 2 года назад
If they used 0.125f, a power of 2, then it wouldn't be a problem at all.
@jinxed7915
@jinxed7915 2 года назад
I haven't watched any of your Serious Sam videos before, but decided I'd give this one a try, and you were right! It was a pretty interesting video... thanks again for another analysis vid Decino
@r.9158
@r.9158 2 года назад
I love the deep dive videos you do like this on weird niche bugs and oddities in games. I think it would be really neat if you expanded this type of video into other games. You definitely captured lightning in a bottle with this content.
@The_Forge_Master
@The_Forge_Master 2 года назад
It baffles me that Croteam decided to use floating point for a value that clearly could have done without a decimal to begin with, or could have used fixed point if they really wanted it. Since the timer should never go outside of multiples of 1/20, they could have had a fixed point and the decimal be represented as 5 bits, and increment the timing integer every time the decimal hit 20.
@Schnorzel1337
@Schnorzel1337 Год назад
Same bug occured in the guiding system of a missile. Over years the actual time got so screwed the missile missed the target by 70 meters.
@leenob
@leenob 2 года назад
Makes perfect sense. Very good find and really nicely explained. Once again, another brilliant video by the legend.
@dickheadrecs
@dickheadrecs 2 года назад
trojan horsing in some light compsci in these videos and keeping it entertaining is masterful mate - top work
@diariodeumdesenvolvedor
@diariodeumdesenvolvedor 2 года назад
I've spotted floating point imprecision in one of my last projects in UPBGE, where a created a function to truncate flotaing point variables that have more then a specific number of digits. Depending on how I call this function, I can spot the imprecision, and it even causes some funny glitches.
@zarnox3071
@zarnox3071 2 года назад
Hol up, 3 days ago? 78k views? That's what it has right now!
@DustyEchozy
@DustyEchozy 2 года назад
decino: Verify the integrity of your game files through Steam. Me, a pirated gamer: *Sweats nervously*. Okay fr tho decino, i am glad to see u still treat Serious Sam and not just let it die.
@lunchbox997
@lunchbox997 2 года назад
Hey Decino, been watching you from the very early beginnings, your editing style and narration have gotten better and better and its Seriously impressive ( pun maybe intended). You make hard concepts like game engine breakdowns like this actually interesting. Congrats on 150k subs!
@merula1
@merula1 2 года назад
I can't wait for more analysis videos of different games, they are so goooooood!!
@cwp24
@cwp24 2 года назад
The analysis videos are my favorite videos to watch from you, no matter the game.
@lastwymsi
@lastwymsi 2 года назад
Cee cool too see a classic Sam video! I remember this bug very well, happened to me a lot growing up. Those games were my childhood. I still enjoy the modern games too despite the issues.
@milanfrags
@milanfrags 2 года назад
Looking forward for more serious sam content. Great video and great choice of music in the background
@Par-yf6oe
@Par-yf6oe 2 года назад
Many users that remember meeting this channel with Serious Sam video uploads are dropping a nostalgic tear
@cmb9173
@cmb9173 2 года назад
another way of fixing this could be by numbering every game tick and using that for the timer checks instead of the clock that uses floating point numbers. simply increment a global game tick timer every time the main loop...loops and schedule the next laser beam for the current tick + 2
@xXNickPXx
@xXNickPXx 2 года назад
Nice, much cleaner solution! And use it modulo of the max value of the (unsigned) integer type for overflows resetting back to 0
@Krecikdwamiljony
@Krecikdwamiljony 2 года назад
Much cleaner but also requiring much more work, to adapt all the code using the counter. This dirty fix here is literally just changing one constant and in a pinch can even be done with a hex editor.
@Voice121
@Voice121 2 года назад
So glad to see some Serious Sam content. And also really interesting one.
@dimanxyou93
@dimanxyou93 2 года назад
DUDE that was an amazing analysis!!! I loved it, especially because I just took the floating point representation class recently. That's the mark of a real programmer; finding bugs and fixing them. The way you approached it was very fun to watch and learn. Keep making great content like that.
@nootnoot______
@nootnoot______ 2 года назад
always love your analysis videos
@MrMate12345
@MrMate12345 2 года назад
So this is how PTSD works. I didn't remember this bug, but when I heard the sound of the lower fire rate, I started to feel myself very uncomfortable... Also, this video is very interesting. I had so much problems with float during my career, but this is still now to me.
@lhfirex
@lhfirex 2 года назад
That's one Doomed Serious Sam bug.
@JustSomeGuy489
@JustSomeGuy489 2 года назад
I still don't know why but there's an immense satisfaction to these analysis videos even when i know about the topic they're analyzing already. They're really well made, you should feel proud.
@LarpingGecko3851
@LarpingGecko3851 2 года назад
Love the video format and graphics used in this one to explain things. Keep surpassing yourself sir.
@jyotikaranjkar5367
@jyotikaranjkar5367 2 года назад
Hey , a serious sam analysis after quite a while , really cool game tbh. Anyways , i once had a glitch that made me play in player 1 instead of player 0 which is default , I checked the settings everytime and it was always showing that I selected player 0 , this glitch was very very very infuriating , this not only means i had less ammo but i also had no Armor. This made me kill many of them save files and never got past elephant atrium . Sad 🙂
@jyotikaranjkar5367
@jyotikaranjkar5367 2 года назад
Did anyone else experience this or am I the only one? Also if anyone knows , can they try to explain this glitch
@decino
@decino 2 года назад
Never heard of that glitch before. Curious if anyone else has.
@radicalone2458
@radicalone2458 2 года назад
Hey, when I played a level from a save file, it spawned two Sams. One was controlled by me and other was stuck in mid air. As if the avatar that load the player was visible. Strangely though, he was the main target, not me. I didnt play long enough to see what happens next.
@lovecraftcat
@lovecraftcat 2 года назад
The game has splitscreen and network play splitscreen so some arcane combination of either can probably lead to what you're describing
@jyotikaranjkar5367
@jyotikaranjkar5367 2 года назад
@@radicalone2458 ya exactly
@hypercynic
@hypercynic 2 года назад
Very cool. I had no idea about this bug but it was obvious I was dealing with it in my current game that I had just reloaded for the first time in about a year. I thought the blue robot dudes were shooting really slowly, but I just figured I was misremembering. Time to work my way through more of this game though I guess!
@DavidXNewton
@DavidXNewton 2 года назад
I've hardly ever played Serious Sam but your explanation of game code is always wonderfully interesting :) Thanks also for providing some alternative options for fixing it!
@naratakaramizawa3687
@naratakaramizawa3687 2 года назад
Thank you for the analysis Decino, this bug is been bothering me since I was a kid, I can finally leave that ghost behind and enjoy the classic laser gun's star wars(c) firing sound without a slowdown
@TheLetterJ0
@TheLetterJ0 2 года назад
It's not a Doom video, but it is a floating point precision video, so I'll allow it.
@miaouew
@miaouew Год назад
I really hope Agonizing Rectal Pain never unsubscribes so you have to keep reading his name at the end of each video
@americo9999
@americo9999 2 года назад
very insightful code reviews , thanks Decino!
@franonimusman4520
@franonimusman4520 2 года назад
This video just surprised me, and I'm happy to see someone analyze one of my favorite games ever
@TheBrutalDoomer
@TheBrutalDoomer 2 года назад
Using floating values for game tics, which are in their essence integer... cursed.
@decino
@decino 2 года назад
I don't understand either. Probably so they can interpolate stuff between ticks? I don't know.
@christianvandegraaf9844
@christianvandegraaf9844 2 года назад
IIRC this is a pretty common bug in ports of games. I know for a fact that Super Mario 64 on the Wii had some strange issues with floating point calculations diverging, leading to platforms going out of patters and slowly raising into the sky. Leading to some pretty fun challenge run shenanigans.
@sagacious03
@sagacious03 2 года назад
Neat analysis video! Thanks for uploading!
@mirtexxan
@mirtexxan 2 года назад
Noticed this 15-20 years ago, and I thought I was crazy! Thanks for putting my mind at ease after so much time! :)
@DrTheoreticalDonuts
@DrTheoreticalDonuts 2 года назад
Great video! Would changing the timer from a float to a double or long double be another way to solve this?
@decino
@decino 2 года назад
That would also work, but I believe plenty of timing variables are dependent on 32-bit calculations (x.0f versus x.0) so you'd have to change several things in the code. For example, a simple TIME typedef change from float to double didn't work either without getting compilation errors.
@DrTheoreticalDonuts
@DrTheoreticalDonuts 2 года назад
Oh good point. I remember being told by a croteam dev that changing the sizes of types would introduce lots of bugs.
@nordblum
@nordblum 2 года назад
I'm not that involved in the Serious Sam community, but I remember playing Revolution and it seemed like a pretty good technical/QoL update. What's wrong with it? What made decino make a joke with hiding it from his library?
@decino
@decino 2 года назад
The performance and netcode is worse than the classics.
@Meidi
@Meidi 2 года назад
@@decino this calls for an in-depth analysis! ;)
@idogaming3532
@idogaming3532 Год назад
@@decino as a non serious Sam player, please explain. Performance is very broad. Performance as in FPS?
@jimmyfrost5065
@jimmyfrost5065 2 года назад
Beautiful work again, thanks!
@lunz765
@lunz765 2 года назад
Man I love it when you use the source code of games in your videos to explain something!!! Marvellous video!!!
@-Raylight
@-Raylight 2 года назад
Finally another Serious Sam! I love Serious Sam's analysis videos. It's not a bug, it's a feature. Guess you'll be punished if you're taking tok long xD 6:26 Lol. Wait what about the HD version? Also same bug? Does this mean we can become a hacker after modifying the game? Yeah, we're hackermen 😂
@decino
@decino 2 года назад
HD versions don't have the weapon slowdown bug.
@jennasloan396
@jennasloan396 2 года назад
Personally, I would use an integer instead of a floating point just because of floating point imprecision. Also at a certain point adding such a small number to a floating point won't have an effect on the value of the floating point number itself. There's a reason databases usually store timestamps as integers.
@HappyBeezerStudios
@HappyBeezerStudios 2 года назад
Which databases are running timestamps as 64-bit integers by now? Will be necessary soon, no matter which format is used, so batter start the transition earlier than later. I know excel is not a database, but the 16-bit float precision of data in it is pretty obvious. (it uses days since 1.1.1900 for dates btw. With hours, minutes and seconds as decimals of the day)
@namsansan
@namsansan 10 месяцев назад
Such informative and entertaining video, I love this channel
@SammOBracketBracketBracket
@SammOBracketBracketBracket 2 года назад
great video! always wondered what caused this. would love to see more serious sam content from you!
@BSzili
@BSzili 2 года назад
I guess this is why Quake kept the time in double precision... except when it came to QuakeC. There everything is a float, so interesting things can happen with the order the entities get to think. This wouldn't really matter, but many of them sets up a "constructor" think function with a 0.1 timer that's supposed to run after everything spawned. Anyway, nice analysis video, long live fixed point!
@competingyevhen
@competingyevhen 2 года назад
While I liked the video and explanation, i have one question: what's the deal with not talking about SS:R? I thought it gave online multiplayer when SS resurgence came and when it was asked for.
@decino
@decino 2 года назад
The performance and netcode is not as good as the classic Steam version, that's all. Also Bright Island is a joke.
@NerfPlayeR135
@NerfPlayeR135 2 года назад
Can confirm that the load times are atrocious. I should not have to wait multiple seconds during a “quickload.”
@noobrat
@noobrat 2 года назад
Nice work fixing the bug!
@Vixeneye1
@Vixeneye1 2 года назад
I don't know if I mentioned it, but I enjoy you analyzing stuff and so have watched many of your videos just to hear you talk about niche things that otherwise haven't end up in your analysis videos. I'm still going through your serious Sam runs but enjoying them very much. I play them when I cook sometimes lol
@luizzeroxis
@luizzeroxis 2 года назад
Isn't making the episilon bigger just delaying the bug? Isn't it going to still happen if you play for a billion years? Also, what about a situation where the timing between ticks is unpredictable (like most modern games)?
@decino
@decino 2 года назад
The bug won't happen as the game simply stops working after ~292 hours of playtime. The better solution is to either use double precision or use a separate integer to track down ticks.
@user-xu2pi6vx7o
@user-xu2pi6vx7o 2 года назад
@@decino Would there be enough content to make a video on that? That sounds interesting.
@ThouShaltSuffer1
@ThouShaltSuffer1 2 года назад
@@decino I remember playing on a server and it was acting like this, you should do a video it looks cool
@Xaitni92
@Xaitni92 2 года назад
Can you do a analysis of why my marriage is not working?
@Chunes3
@Chunes3 2 года назад
I know this is a joke, but damn if I wouldn't love to see decino do that video.
@thedoominator
@thedoominator 2 года назад
Yes! Sam analysis! I needed this!
@Dr_Rwede
@Dr_Rwede 2 года назад
And I thought I was imagining things when I fired the laser gun... I didn't know it was a bug, I just thought it was because I used it too much ! Thank you for the explanation and thanks even more for the bug fixing method ! You rock
@WorldsWorstBoy
@WorldsWorstBoy 2 года назад
I swear the Devs of this series are on crack
@5spec
@5spec 2 года назад
I'd like you to branch out to a few more games, DOOM is great and all, but there are other stuff from other games just as interesting
@almipopp5152
@almipopp5152 2 года назад
great video always happy to see Sam content from you
@Flameking218
@Flameking218 2 года назад
Very cool analysis video
@januszkomin3490
@januszkomin3490 2 года назад
Not Doom? Unsubbed.
@theotv5522
@theotv5522 3 месяца назад
Omg so true!
@slightlyserioussam5136
@slightlyserioussam5136 2 года назад
Wow, a Serious Sam analysis video!?! Wasn't expecting that.
@WikiPeoples
@WikiPeoples 2 года назад
Found this one very interesting! Learned a lot about floating point numbers. Would love to see more of these types of videos even if they're not DOOM!
@juand.g.2602
@juand.g.2602 2 года назад
A new Serious Sam analysis video. This must have been really hard to find. It would be very interesting to see how does the immortal scorpion bug or glitch works in Serious Sam 3. I know it is there when the game is pirated and not bought legally. Croteam nailed it with that. It is also creepy to see the scorpion moving to you but the sprites aren't really moving
@PardusRain
@PardusRain 2 года назад
Neat a bug fix and an insight into floating point errors.
@PiotrWieczorek
@PiotrWieczorek 2 года назад
Awesome video! Also awesome gift to the community! :) Somehow fit very nicely after the most recent (also awesome) Mathologer video.
@pinnipes
@pinnipes 2 года назад
great video and great detective work!
@DysprosiumMr
@DysprosiumMr 2 года назад
Very cool, decino! Makes me wonder what your day job is!
Далее
Broken Kill Counts in Classic Serious Sam (Part 1)
21:12
Doom's Cheat Codes Explained
10:13
Просмотров 835 тыс.
치토스로 체감되는 요즘 물가
00:16
Просмотров 1,7 млн
The Origins of Doom's Sound Effects
23:15
Просмотров 1,9 млн
first person shooter
2:57
Просмотров 12 млн
Quake 1 | Found an Interesting new level
9:38
Просмотров 26 тыс.
Doom 64's Weapon Differences
11:06
Просмотров 354 тыс.
All Cut Weapons of Half-Life 2
22:03
Просмотров 126 тыс.
More Interesting Findings About Doom's Graphics
10:02
Serious Sam 2 - An FPS For Chads
27:21
Просмотров 565
Weapon Stats and Mechanics
17:57
Просмотров 902 тыс.
маленькие кошмары #вайб
3:7:04
Просмотров 333 тыс.
Animation vs. Geometry
9:17
Просмотров 3,7 млн