this post was submitted on 25 Sep 2023
114 points (96.0% liked)

Games

16212 readers
853 users here now

Video game news oriented community. No NanoUFO is not a bot :)

Posts.

  1. News oriented content (general reviews, previews or retrospectives allowed).
  2. Broad discussion posts (preferably not only about a specific game).
  3. No humor/memes etc..
  4. No affiliate links
  5. No advertising.
  6. No clickbait, editorialized, sensational titles. State the game in question in the title. No all caps.
  7. No self promotion.
  8. No duplicate posts, newer post will be deleted unless there is more discussion in one of the posts.
  9. No politics.

Comments.

  1. No personal attacks.
  2. Obey instance rules.
  3. No low effort comments(one or two words, emoji etc..)
  4. Please use spoiler tags for spoilers.

My goal is just to have a community where people can go and see what new game news is out for the day and comment on it.

Other communities:

Beehaw.org gaming

Lemmy.ml gaming

lemmy.ca pcgaming

founded 1 year ago
MODERATORS
top 37 comments
sorted by: hot top controversial new old
[–] [email protected] 27 points 11 months ago (1 children)

Holy shit. I just had this feeling early on to skip the early access. Seems like I made a good choice.

[–] [email protected] 6 points 11 months ago

I skip almost all early access games. Only one I made an exception for was Factorio.

[–] [email protected] 26 points 11 months ago* (last edited 11 months ago)

Did I read that correctly?? 1.6 GB of registry files??

[–] [email protected] 23 points 11 months ago (3 children)

Thats fucking amazing and completely unity's fault. What engine in their right mind saves user preferences in the registry?

[–] [email protected] 23 points 11 months ago (1 children)

Saving user preferences in the local user part of the registry is kind of what the registry is meant to be for (besides others).

[–] [email protected] 4 points 11 months ago (1 children)

It might be bad practice to dump 1.3GB of variable user data into the registry, though. Especially when there's SQL servers and Nuget packages that can deal with that kind of data in a platform-agnostic way.

[–] [email protected] 1 points 11 months ago* (last edited 11 months ago)

That for sure, those numbers are way beyond intended usage.

And there is a difference between saving user preferences/settings and user game data. The last should never be saved in the registry.

[–] [email protected] 13 points 11 months ago (1 children)

You'd be surprised to learn then that a lot of software does this shit.

[–] [email protected] 2 points 11 months ago (1 children)
[–] [email protected] 5 points 11 months ago

It can be very stupid. Depends on the software though as the registry is meant for saving user and system settings to a degree. Like Windows File Explorer makes perfect sense. As does settings for audio.

It's generally advised to not bloat the registry wherever possible. WinSCP is a great piece of software. Unfortunately it defaults to saving to the user registry. You can change it to save to an ini file instead. By using the registry to save settings it can be jarring for the user when they're trying to troubleshoot something. Only to find out after uninstalling and reinstalling it doesn't start over fresh. Or if they're trying to backup settings and data to restore with later. The registry isn't typically included for good reason.

[–] [email protected] 3 points 11 months ago

It doesn't look like what's filling the registry here is user preferences.

[–] [email protected] 17 points 11 months ago (2 children)

I remember Scott Manley asked someone important on the dev team of ksp2 how they approached the 2 body problem. They guy gave a vague answer that they had solved it. If that were true they would have a Nobel Prize but they don't. So then and there I decided that KSP2 will not get my money. Which sucks because I have put a little over 2000 hours into KSP1.

[–] [email protected] 30 points 11 months ago (1 children)

"Solved it" for a game just means "approximated it well enough that the average user won't notice".

[–] [email protected] 6 points 11 months ago* (last edited 11 months ago)

I don't think that was the way he portrayed it. He made it seem like they really solved the 2 body problem. Scott Manley even made a comment about how grand that was. I really wish I could find the video to better show what I mean.

edit: here is one of him recalling it. https://youtu.be/vu22bFtZgKg?feature=shared&t=2294

[–] [email protected] 18 points 11 months ago (2 children)

2 body orbits shouldn't be a problem. They are easily solvable. 3 body systems are the ones that are problematic.

[–] [email protected] 10 points 11 months ago (1 children)

Yeah, he says n-body problem in the video I linked above. I have no idea why I am saying 2 body problem.

[–] [email protected] 6 points 11 months ago (1 children)

Funnily enough, there is an n-body mod for ksp1, which makes interplanet interactions more realistic (in fact, the mod has to slightly change the default system to stop the moons of Jool from slingshotting each other out) and allows advanced maneuvers like ballistic capture and lagrange points

[–] [email protected] 0 points 11 months ago (1 children)

And as someone who couldn't even land on the Mun without crashing, I downloaded that mod and unsurprisingly found things even harder since it disables the standard maneuvers.

[–] [email protected] 1 points 11 months ago

It is not a beginner's mod, the fact that its most often used with packs like RP-1 should say how hard it is

[–] [email protected] 3 points 11 months ago (1 children)

Problematic in a computer model or...? How does real space travel account for the gravitational pull of 3+ celestial bodies?

[–] [email protected] 3 points 11 months ago

Roughly, that's why long distance missions need mid course correction burns.

[–] [email protected] 12 points 11 months ago

Seems like horrible dev practice to place save data of any kind in the Windows registry lmao. I get that it's designed for storing user data in some respects but the registry is an old and fickle solution to setting global variables important for communication between processes and applications.

If you're storing data that's only ever needed by your own application, especially if it isn't OS-related, you shouldn't mess with the registry. Not only does it not have the performance you'd expect for most circumstances, but the registry has a real performance and stability impact even when outside of your app.

What's worse, imo, is that this data is difficult to access for making backups, utilising cloud synchronization, and cross compatibility of your app.

Unity is a lot more borked than I thought, but KSP devs should probably be careful with what data serialisation APIs they mess with.

[–] RoundSparrow 11 points 11 months ago

All the Unity game engine self-destruction choices got to them ;)

[–] [email protected] 10 points 11 months ago

As a Unity dev of 6 years, playerPreffs (the unity system that stores data in the registry) are a good place to store small amounts of data in a dictionary style structure quickly without creating your own data system. But they are extremely limited in the types of data they can hold and the control a dev has over them. Whenever I see playerPreffs used I think the dev must-have needed something quick and easy. They may have also created their own registry save system in that case should be an easy fix. (De)Serializing json or even custom binary files in compartmented files in a defined folder like StreamingAssets gives much more flexibility in data types and control. You can see playerPreffs limitations in the documentation below: (https://docs.unity3d.com/ScriptReference/PlayerPrefs.html)

[–] [email protected] 7 points 11 months ago

That was some pretty entertaining reading lol yikes.

[–] [email protected] 6 points 11 months ago (2 children)

So, what's the advantage of using windows registry? I'm mainly using linux, so the concept of registry sounds really strange in my head.

[–] [email protected] 8 points 11 months ago (1 children)

When the developers don't abuse it, it's a central place where all the settings and configuration parameters should be.

There's no main advantage, it's just a different concept.

Linux sysadmin for the past 25 years here that also has to work with Windows servers.

[–] [email protected] 5 points 11 months ago

Basically a network/local/user specific configuration database. Playing with it can break apps that expect their config to be in it, or to be of the type expected, even though they shouldn’t.

This about:config on Firefox but system wide. It’s your ~/.config and /etc/ folders in one database format, also manageable with AD and proper permissions.

[–] mod 2 points 11 months ago (1 children)

If you're using a Linux distribution: are you familiar with gsettings or some equivalent?

[–] [email protected] 2 points 11 months ago (1 children)

Is It a frontend for dconf? I have to admit I never tinkered with any dconf stuff before as I live mostly in terminal and web browsers. Does dconf share similarities with windows registry?

[–] mod 4 points 11 months ago

Yes exactly, they're similar. I guess there's a universal desire for tree like data stores.

[–] [email protected] 6 points 11 months ago (1 children)

thefuck, btw how proton handle the registry on steam deck/desktop linux?, that can happen there?

[–] [email protected] 3 points 11 months ago

Wine registry, and yes, but only within your Wine sandbox

[–] [email protected] 5 points 11 months ago

These bugs keep getting more wild.

[–] InEnduringGrowStrong 4 points 11 months ago
[–] [email protected] 3 points 11 months ago (1 children)

I'm sure it'll be patched soon

[–] jayandp 3 points 11 months ago