games

Magazyn ze zdalnego serwera może być niekompletny. Zobacz więcej na oryginalnej instancji.

fuckwit_mcbumcrumble, w Intel releases a new open source gaming performance overlay and telemetry application

Hasn’t this existed for a while? Or is it just the overlay that’s new?

github.com/GameTechDev/PresentMon

radialmonster,

Intel® PresentMon works with Intel® Arc™ graphics cards and Intel® Core™ processors but with other hardware vendor options as well. And because PresentMon continues to be an open-source utility, it can be integrated into third party applications.

xrtxn,

If I understand it correctly the sdk was already “released” but there is a public user friendly release with gui. Also a brand new feature called gpu idle, and overlay.

lustyargonian,

They added GPU busy metric, which paired with frametime can help understand when the game is CPU limited and when it’s GPU limited/balanced with CPU’s request load. This can help figure out right settings and textures to use to optimally use your system resources, or understand what bottleneck is causing game to stutter.

nanoUFO,
@nanoUFO@sh.itjust.works avatar

Apparently new, probably privated and not updated with newest code like mentioned in a git issue.

TheRoarer, w Intel releases a new open source gaming performance overlay and telemetry application

Reminder that they don't mean telemetry as in spying on you for intel. Gamers Nexus confirmed with the intel gpu lead that the telemetry is JUST for capturing data to display much more in depth statistics that you can't get from something like rivatuner.

It software is open source, hopefully it can be confirmed.

Yewb,

Reminder any overlay can get you banned from competitive games

ryannathans,

Thanks dickcord for auto overlaying everything

warmaster,

Wait a minute… MangoHud can get me banned ?

nanoUFO,
@nanoUFO@sh.itjust.works avatar

It is but a GitHub issue mentions that the repo has stuff that was pushed 8 months ago and an intel representative said they should fix that within a week.

Fiivemacs, w No Man's Sky 7th Anniversary Video

I will forever want my money back for this game.

xcxcb,

I was originally in this camp from the very underwhelming launch it had. Now though, they’ve spent 7 years actually completing the game they started and beyond and its definitely worth the money. Incredibly, all of the content you see in the video is included in the base game, there’s no paid DLCs at all despite the years of work that’s gone into it now.

Lord_Logjam, w Warhammer 40K: Darktide is adding RPG-style skill trees full of new abilities to its 4 classes

That’s great to see. But also when is this coming to Xbox? 😭

jBlight, w What Twisted Metal's Success Means for Future Video Game Adaptations

I had really low expectations for this show, but after watching it, I was pleasantly surprised at how good it was. Yeah, sure they changed up everything and the “story”, but their adaptation was an entertaining and fun ride.

(Side note: I thought the plant lady was going to be Grasshopper haha)

hadek,

Yeah it suprised me too. Even the gf enjoyed it. Anthony mackie and stefanie bartez had good chemistry

Rynelan, w No Man's Sky 7th Anniversary Video

Never played the game. But heard all the launch stories and how they picked themselves up.

Probably will not play the game soon but I definitely interested in trying the VR version once

GuinnessChocolates, w ZeroSpace RTS - Official Kickstarter Trailer

Here is the actual Kickstarter link www.kickstarter.com/projects/…/zerospace

Sanctus, w Baldur's Gate 3 Act Three massively hits CPU performance - but why?
@Sanctus@lemmy.world avatar

Tldr: NPC and Environmental density.

sugar_in_your_tea,

Pathing should be low hanging fruit here. Most NPCs don’t need accurate pathing, and can use a much faster algorithm to calculate. Hopefully the devs do a round of optimizations for late game content since that seems to be where most of the issues are.

Sanctus,
@Sanctus@lemmy.world avatar

We don’t know how their NPCs are built though. The pathing seems to be the same for every NPC that moves, so I bet its baked in somewhere up the inheritance tree. They already use ocular occlusion to take down some of the clutter out of view. The fact is the city probably pushes the limits of the engine in its current state.

sugar_in_your_tea,

Oh it’s certainly pushing it to the limits, which is why they need to change things. If it’s pathing, they have a ton of options to make it smoother, since most NPCs don’t need fancy pathing logic.

Sanctus,
@Sanctus@lemmy.world avatar

They’re probably using A*. I don’t really see how you can get more efficient than that.

sugar_in_your_tea,

That’s optimal if you want to find the best path to a destination, but NPCs milling about a town don’t need the best path, they just need to move toward their goal more or less. And most go on a mostly fixed route, so you can just store the ideal path in memory and let the NPC evade up to some distance from that path.

This makes it a lot more friendly to do a multi-threaded implementation since you don’t need to figure out collision avoidance until it’s about to happen, just look a few steps ahead and course correct as needed.

Enemies should use proper pathing, but NPCs don’t need to be anywhere near that sophisticated.

But I have no idea what they’re actually doing under the hood, it’s just concerning that it gets slow when the player moves without interacting with any NPCs.

Sanctus, (edited )
@Sanctus@lemmy.world avatar

Yeah but with how optimal the game is are they really not using waypoints for jobber npcs already? This game runs extremely well. That seems like a hell of an oversight. Thats why i figured the pathfinding was baked in somewhere higher up or something.

Edit: I really don’t think it is pathing. These models have insane LoD. I’m thinking they tuned it since D:OS2 but its the same engine. I bet its just compounding factors of high polygons, environmental effects (the earthquakes) and NPCs just existing in high number on top of that. There is more than double the amount of NPCs inside the city than anywhere else in the game.

sugar_in_your_tea,

In the Digital Foundry review, they saw huge performance dips when just running in small circles, when standing still had no impact. As in, on a high end system, performance dropped from ~90FPS to mid-60s, just by moving in a tight circle (i.e. not enough to actually move the camera).

That sounds a lot like pathing to me, though other things could certainly be causing it.

It just seems like something there is poorly optimized and it shows when there are a lot of NPCs around.

And the game essentially uses last gen tech (DX11, no RTX, performance drop on Vulkan, etc), so it’s not pushing the boundaries all that much, so it’s probably not fully optimized. It should be feasible to optimize it to at least not get FPS dips when moving vs standing still in towns, if not get a bit better performance on older CPUs (e.g. Zen 2 CPUs like 3600 and whatever is in the Steam Deck). It runs pretty well, it they could probably get a bit more.

Sanctus,
@Sanctus@lemmy.world avatar

Pushing the boundaries of the engine is different than pushing the boundaries of the industry. Maybe it could be the pathfinding. But movement doesn’t necessarily mean its pathfinding. I’m sure transforming all those polygons costs more computationally than pathfinding.

sugar_in_your_tea, (edited )

But why only when the player is moving? Surely the NPCs are also moving all the time, so just moving the player and maybe nudging the party members (so like 4 new characters moving?) shouldn’t drop frames by ~30%. Something seems off there.

I hope they figure it out and patch it, because it would really impact the experience on lower end hardware, like the Steam Deck (i.e. stable 30 FPS vs stutters in the late game).

Sanctus,
@Sanctus@lemmy.world avatar

No idea, I’m wondering if they had their camera locked on them. I could see why camera movements would cause it. Either way I hope they fix it too.

GuinnessChocolates, w Skull and Bones - Official Closed Beta Trailer
TheQuietCroc, w What Twisted Metal's Success Means for Future Video Game Adaptations

I’m more excited about season 2 than I am happy with the first season. I liked Sweet Tooth’s story and the characters in general except for John Doe. Both his character and Anthony Mackie’s performance were really lackluster in my opinion, and it felt like Anthony was really forcing the humor the whole time.

Stephanie Beatriz killed it, as expected. I thought her backstory was really interesting and appropriately ridiculous for the setting.

I’m hoping season 2 leans into more of the car combat and the ridiculousness of the setting.

Mongostein,

I was thinking to myself, “John Doe really reminds me of Will Smith in Independence Day, but slightly less corny.”

Then his Anthony Mackie Jr showed up as young John Doe and I was like, “oh, he IS just as corny as Will Smith”

TheQuietCroc,

I was thinking “Anthony Mackie is really channeling his inner Will Smith” after the first episode!

GreenMario, w Delta Force: Hawk Ops | Official Teaser Trailer

Delta Force, that is a name I haven’t heard in a long time.

zaemz, w Warhammer 40K: Darktide is adding RPG-style skill trees full of new abilities to its 4 classes
@zaemz@lemmy.world avatar

Hell yeah! I really enjoyed the game, but the lack of variety just had it kinda fizzle out for me after a short time. This is awesome.

Pxtl, w What Twisted Metal's Success Means for Future Video Game Adaptations
@Pxtl@lemmy.ca avatar

Give us an HD remake of Twisted Metal 2.

kratoz29,
@kratoz29@lemm.ee avatar

Why only this title specifically?

Pxtl,
@Pxtl@lemmy.ca avatar

Twisted Metal 2 was the one where the series made its biggest hit on the PS1. 3 and 4 weren’t made by singletrac, and while they were good games they didn’t have the same style as the original two. The later games were after the industry had kind of moved on from that kind of game.

It’s like Megaman – there were a zillion Megaman games, but the ones that were biggest in the Zeitgeist were Megaman 2 and Megaman X.

tallwookie, w No Man's Sky 7th Anniversary Video
@tallwookie@lemmy.world avatar

game was absolute trash when it was released but after a few years it got a lot better - these days i hop into it once a month or so just to screw around. it’s a fun time sink

Son_of_dad,

The game was such a scam when it released that I refuse to ever play it, I really don’t care if it’s playable now, you can’t reward these scammers with your money and hope they fix it.

stappern,

And it barely better tofay

ArchmageAzor,
@ArchmageAzor@lemmy.world avatar

Lmao how’s that bandwagon feel?

Son_of_dad,

Feels fine, my life without no man’s sky has miraculously moved on.

skullone, w Sprawl: 14 Minutes of Fast-Action FPS Gameplay

Any relation to the TTRPG of the same name?

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • Blogi
  • muzyka
  • lieratura
  • Spoleczenstwo
  • sport
  • rowery
  • nauka
  • FromSilesiaToPolesia
  • test1
  • informasi
  • giereczkowo
  • slask
  • Psychologia
  • ERP
  • fediversum
  • motoryzacja
  • Technologia
  • esport
  • tech
  • krakow
  • antywykop
  • Cyfryzacja
  • Pozytywnie
  • zebynieucieklo
  • niusy
  • games@sh.itjust.works
  • kino
  • LGBTQIAP
  • warnersteve
  • Wszystkie magazyny