bin.pol.social

pixelscript, do games w What's the greatest joy you have gotten from a video game?

I think my purest moment of gaming bliss was experiencing completely blind the last handful of worlds in Super Mario Odyssey while buzzed with a few whiskeys. God, my soul was in orbit with that experience. Pure, unfettered joy and whimsy through and through and cinematically epic when it wanted to be. I wouldn’t call it the best game ever or even my favorite game ever, but god damn it, it struck me just right way at just the right time. It was something truly special.

More games I will cherish will certainly follow, and have followed. But for that specific set of vibes and circumstances, I don’t know if I’ll ever top that peak from playing a video game ever again.

Katana314, do games w What's the greatest joy you have gotten from a video game?

Hard to say what’s the absolute best one, but some highlights:

Finale of Ace Attorney Justice for All; when you finally have the change in circumstances needed to pin the real killer and send them into a genuine panic.

Pizza Tower, final boss third phase: When Peppino sees that Pizza Face is sending him a Boss Rush, and flips his shit, annihilating each boss at lightning speed.

Ghost Trick, Phantom Detective: The final “4 minutes before death”, and multiple last revelations

Most of these are memories of story-driven moments nailed in by very solid soundtracks, which has very much convinced me how important music is to these games.

pixelscript,

Ah, a gellow Ghost Trick enjoyer!

MrScottyTay, do gaming w Playing Sony games

Strange, don’t remember doing that with astro bot.

Kit, do games w What's the greatest joy you have gotten from a video game?

In 2005 I was playing Final Fantasy XI Online and met a group of 5 Japanese players in an expansion area. We wound up partying together for 8 hours straight. They all spoke English in chat for my sake, and we had an incredible rhythm together. We discussed new anime and a few English cartoons that had recently made it to Japan. We took a selfie together at the end of the 8 hours. It was the best gaming experience of my life. I’ll never forget it.

the_artic_one,

That entire game was just forever chasing the high you got from that one time you had a really good party. I’m already finding myself glossing over the fact that 99% of them were awful and you only settled for them because you didn’t want to wait around another 30 minutes for chance of a better one.

jarfil, do gaming w Why don't we have motion smoothing on current consoles?

Motion smoothing means that instead of showing:

  • Frame 1
  • 33ms rendering
  • Frame 2

…you would get:

  • Frame 1
  • 33ms rendering
  • interpolating Frames 1 and 2
  • Interpolated Frame 1.5
  • 16ms wait
  • Frame 2

It might be fine for non-interactive stuff where you can get all the frames in advance, like cutscenes. For anything interactive though, it just increases latency while adding imprecise partial frames.

It will never turn 30fps into true 60fps like:

  • Frame 1
  • 16ms rendering
  • Frame 2
  • 16ms rendering
  • Frame 3
Boomkop3,

It’s worse

  • render frame 1 - 33ms
  • render frame 2 -33ms
  • interpolate frame 1|2
  • show frame 1
  • start rendering frame 3…
  • wait 16ms
  • show frame 1|2
  • wait 16 ms
  • show frame 2
  • interpolate frame 2|3
  • start working on frame 4…
  • wait 16ms
  • show frame 2|3
  • wait 16 ms
  • show frame 3 -> this is a whole 33ms late!

And that’s while ignoring the extra processing time of the interpolation and asynchronous workload. That’s so slow, that if you wiggle your joystick 15 times per second the image on the screen will be moving in the opposite direction

jarfil, (edited )

Hm… good point… but… let’s see, assuming full parallel processing:

  • […]
  • Frame -2 ready
  • Frame -1 ready
    • Show frame -2
    • Start interpolating -2|-1 (should take less than 16ms)
    • Start rendering Frame 0 (will take 33ms)
    • User input 0 (will be received in 20ms if wired)
  • Wait 16ms
    • Frame -2|-1 ready
  • Show Frame -2|-1
  • Wait 4ms
    • Process User input 0 (max 12ms to get into next frame)
    • User input 1 (will be received in 20ms if wired)
  • Wait 12ms
  • Frame 0 ready
    • Show Frame -1
    • Start interpolating -1|0 (should take less than 16ms)
    • Start rendering Frame 1 {includes User input 0} (will take 33ms)
  • Wait 8ms
    • Process User input 1 (…won’t make it into a frame before User input 2 is received)
    • User input 2 (will be received in 20ms if wired)
  • Wait 8ms
    • Frame -1|0 ready
  • Show Frame -1|0
  • Wait 12ms
    • Process User Input 1+2 (…will it take less than 4ms?)
  • Wait 4ms
  • Frame 1 ready {includes user input 0}
    • Show Frame 0
    • Start interpolating 0|1 (should take less than 16ms)
    • Start rendering Frame 2 {includes user input 1+2… maybe} (will take 33ms)
  • Wait 16ms
    • Frame 0|1 ready {includes partial user input 0}
  • Show Frame 0|1 {includes partial user input 0}
  • Wait 16ms
  • Frame 2 ready {…hopefully includes user input 1+2}
    • Show Frame 1 {includes user input 0}
  • […]

So…

  • From user input to partial display: 66ms
  • From user input to full display: 83ms
  • Some user inputs will be bundled up
  • Some user inputs will take some extra 33ms to get displayed

Effectively, an input-to-render equivalent of between a blurry 15fps, and an abysmal 8.6fps.

Could be interesting to run a simulation and see how many user inputs get bundled or “lost”, and what the maximum latency would be.

Still, at a fixed 30fps, the latency would be:

  • 20ms best case
  • 53ms worst case (missed frame)
Boomkop3,

You’ve just invented time travel.

The basic flow is
[user input -> render 33ms -> frame available]
It is impossible to have a latency lower than this, a newer frame simply does not exist yet.

But with interpolation you also need consistent time between frames. You can’t just present a new frame and the interpolated frame instantly after each other. First you present the interpolated frame, then you want half a frame and present the new frame it was interpolated to.

So your minimum possible latency is 1.5 frames, or 33+16=59ms (which is horrible)

One thing I wonder tho… could you use the motion vectors from the game engine that are available before a frame even exists?

jarfil,

You’ve just invented time travel.

Oops, you’re right. Got carried away 😅

could you use the motion vectors from the game engine that are available before a frame even exists?

Hm… you mean like what video compression algorithms do? I don’t know of any game doing that, but it could be interesting to explore.

Boomkop3,

No, modern game engines produce a whole lot more than the necessary information to generate a frame. Like a depth map and such. One of those is a map of where everything is going and how fast.

It wouldn’t include movement produced by shaders, but it should include all polygons on screen. which would allow you to just warp the previous frame, no next frame required

Duke_Nukem_1990, do games w What's the greatest joy you have gotten from a video game?

Most recent one I can rememver was beating Tears of The Kingdom. I was SO invested in the final boss battle and I got really emotional. I was so immersed I was basically vocally taunting the boss for everything they had done. Only other time that happened was with Cyberpunk 2077 and only because of Edgerunners.

Then in the past (jesus has it really been more than 17 years??) the first time my buddy and I beat Halo 1 on Legendary after an all-nighter of gaming. That was awesome. Horrible smell in that room tho lmao.

Shotgun_Alice, do games w What's the greatest joy you have gotten from a video game?

Beating Link’s Awakening as a kid. No internet no hints or help just hours of exploring when I was stuck on a puzzle. It’s so hard for me to get lost in a video game like that now and not just reach for an answer or check the internet to see what I’m doing wrong. It’s a shame now, I know links awakening now like the back of my hand and I’ll never get to explore a first play through of that game ever again.

jacksilver,

Same, me and a friend struggled with that game for a while, but still remains an extremely satisfying game to have beaten when you couldn’t just look things up.

Mezmer1zed, do games w What's the greatest joy you have gotten from a video game?

Top 3, no order (can’t pick):

Anytime a SoulsBorne game clicks, especially Sekiro

Winning a really tight match of Rocket League against people at a similar or higher skill level

Playing split screen Freedom Fighters with my buddy back in the day. It got so competitive we started taping cardboard on the screen to prevent screen-peeking

lnxtx, do wolnyinternet w Nowe obowiązki platform e-commerce w celu ochrony konsumentów przed niebezpiecznymi produktami
@lnxtx@feddit.nl avatar

Hmm, nie wkleił się link albo go nie widzę?

harcesz,
!deleted269 avatar
JusticeForPorygon, do games w What's the greatest joy you have gotten from a video game?
@JusticeForPorygon@lemmy.world avatar

The Second Dream quest from Warframe

JusticeForPorygon,
@JusticeForPorygon@lemmy.world avatar

Staying up till 3am playing Terraria w/ friends

Milksteaks,
@Milksteaks@midwest.social avatar

Played 200 hours just to get to the character creation screen

JusticeForPorygon,
@JusticeForPorygon@lemmy.world avatar

“Congratulations, you’ve made it past the tutorial!”

Blackmist, do gaming w Why don't we have motion smoothing on current consoles?

Because it’s not a good way to get from 30fps to 60. It’s a way to go from 60 to 120 (and 240 on the new 50x0 series) where you won’t notice the extra latency.

Most 30fps games on consoles have a 60 fps setting anyway, that turns off the extra graphical wankery and tones the resolution down a touch.

jjjalljs, do games w What's the greatest joy you have gotten from a video game?

Flawlessly clearing Genichiro in Sekiro was deeply satisfying. Parry parry parry, dodge, mikiri counter. Don’t think I got hit once.

Omgboom, do games w What's the greatest joy you have gotten from a video game?

I once stole 20 billion Isk from a guy in Eve Online. I was hard for days.

damnedfurry,

It’s unfortunate the Viagra and Cialis didn’t do the trick, but we do have an alternate treatment we can try.

youngskywalker, do games w What's the greatest joy you have gotten from a video game?

Finishing the Easter egg at the end of origins in black ops 2 zombies after trying all night and seeing the special cut scene with my friends on Xbox 360 has to be up there as core gaming achievement.

TheDarkestShark,

Same, but the Easter egg from the moon map on Black Ops 1. Me and my friend played everyday after school for months. It was one of the first that didn’t require a full squad and it was heavily chance based because of the stupid excavators. Finally got all the dominoes to fall in the right order and we got it done, which resulted in us blowing up the Earth. Mission accomplished I guess.

burgersc12, do games w What's the greatest joy you have gotten from a video game?
@burgersc12@mander.xyz avatar

Probably local multiplayer with friends at school, like the DS and PSP, used to love playing Mario Kart and Monster Hunter Freedom Unite with others

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • esport
  • test1
  • rowery
  • krakow
  • muzyka
  • Technologia
  • NomadOffgrid
  • fediversum
  • retro
  • ERP
  • Travel
  • FromSilesiaToPolesia
  • informasi
  • Spoleczenstwo
  • gurgaonproperty
  • shophiajons
  • Psychologia
  • Gaming
  • slask
  • nauka
  • sport
  • niusy
  • antywykop
  • Blogi
  • lieratura
  • motoryzacja
  • giereczkowo
  • warnersteve
  • Wszystkie magazyny