Komentarze

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

soulsource, do gaming w What games do you think are unfairly snubbed when talking about the best games of all time?
@soulsource@discuss.tchncs.de avatar

There are some amazing fan projects though:

  • While it isn’t a remake, OpenMW improves upon the original game’s graphics - it does not change textures or models though, just rendering features.
  • Skywind is a remake though - it uses the engine of Skyrim to recreate Morrowind.
  • Skyblivion is the same idea, but with Oblivion.
soulsource, do gaming w Looking for a rec: story oriented RPG with minimal focus on combat
@soulsource@discuss.tchncs.de avatar

On the topic of Visual Novels: I’d like to recommend basically everything from Winter Wolves Games that is tagged as RPG. The classic is of course Loren the Amazon Princess, but, to be honest, their writing has improved since then, so you might want to check out their newer Tales of Aravorn games, like Seasons of the Wolf. Also, Loren is really long, so if you don’t have a ton of time, the newer, shorter games might be a better choice.

A word of warning though, by Winter Wolves themselves: mastodon.social/

soulsource, do gaming w Looking for a rec: story oriented RPG with minimal focus on combat
@soulsource@discuss.tchncs.de avatar

It has gotten an update recently, to improve compatibility with modern systems: Patch Notes

soulsource, do gaming w Players who don't like survival games as a genre: Which survival games are your personal exceptions, which ones have you enjoyed nonetheless and why?
@soulsource@discuss.tchncs.de avatar

Apart from Subnautica, which only is tedious regarding food/drink in the very beginning, I enjoyed Unreal World a lot. It is turn based, so there isn’t any real-time time constraint imposed by in-game hunger/thirst. It also tries to feel realistic in a lot of aspects, including the amount of food/water your character needs. While at game start you of course need to focus on immediate survival (though, that depends a bit on the scenario you play), that focus shifts rather quickly to preparing for the winter, as in stocking up supplies (think: smoking/curing meat/fish, gathering fire wood,…), and building a shelter that you can heat, so you don’t freeze when it gets cold outside. Since the game is set in fantasy iron age Finland, you probably also want to build a sauna 😉.

soulsource, do gaming w Trying to play my old CDROM games on Windows10 and about to lose my marbles. Could you help me?
@soulsource@discuss.tchncs.de avatar

I’m positively surprised that this works.

That will make installing old games so much easier on my Steam Deck. Thanks!

soulsource, do gaming w Trying to play my old CDROM games on Windows10 and about to lose my marbles. Could you help me?
@soulsource@discuss.tchncs.de avatar

How does that work if you haven’t installed the game already? Also, what about copy protection?

soulsource, do gaming w Rant: Valve's new Steam Deck screws speak volumes about their ethos.
@soulsource@discuss.tchncs.de avatar

Even before Proton Valve was heavily invested in Linux gaming.

SteamOS has been around way longer than Proton, and the Steam Client had a native Linux version for such a long time, I don’t even remember when it was published. Also, the Steam Linux Runtime is something worth mentioning - it is a common base that game developers can target instead of the various different distributions.

soulsource, do gaming w Bought my first Steam Deck after seeing the deep discounts on refurbs...what should i know as a first time Steam Deck/PC gamer?
@soulsource@discuss.tchncs.de avatar

There are plenty on the web (for instance on handheld.quest), but I haven’t found a single one that contains all details…


So, I’ll just try to sum up the details here:

First things first: SSH stands for Secure Shell, and is basically an encrypted remote command line, but it offers much more features than just a command line, including, but not limited to, file transfer. The file transfer feature is also known as sftp, and generally considered to be the successor of the more well known ftp protocol.

The very first thing I would do on the Steam Deck would be to set a host name in the settings, such that you don’t need to use the IP address to address it over the network. Screenshot (I totally haven’t just found by googling).

The Steam Deck comes with an SSH server pre-installed, you need to enable it though. The following steps need to be done on a terminal, in desktop mode. The terminal that’s installed on the Steam Deck is called “Konsole” (if I remember correctly). Once you have a terminal running on Desktop Mode, you can enable the SSH server via the following steps (I’ll link the help for all commands I mention, so that you can verify that I’m not trying to trick you into doing something bad):

  • First you need to get administrator (“root”) access to the Steam Deck, what can be done by setting a password for the default user. Don’t worry, the Steam Deck won’t start asking for a password on startup, it’s just required in order to get admin access. The command to set/change the current user’s password is simply https://manpage.me/?q=passwd. While typing the password, there won’t be any feedback on the screen. This is normal.
  • Once the password has been set, you can use the https://www.man7.org/linux/man-pages/man8/sudo.8.html command to run other commands as administrator. sudo will ask you to confirm your identity by entering the password.
  • To start the SSH server, you can use sudo systemctl start sshd. Help files: https://www.man7.org/linux/man-pages/man1/systemctl.1.html, https://manpage.me/?q=sshd
  • To stop the SSH server again, you can use sudo systemctl stop sshd.
  • To enable autostart for the SSH server, sudo systemctl enable sshd (but I would not recommend this unless you disable password based logins - see below)
  • To disable autostart for the SSH server, sudo systemctl disable sshd

On the PC from which you want to connect to the Deck you will need some kind of sftp client. On Linux most file managers have sftp functionality built-in. On Windows and MacOS one needs a special program for this though (afaik). There are many, many alternatives here (just search “sftp client” in your search engine of choice), but the most well known one is FileZilla, which works on Windows, macOS, Linux and many other operating systems. I recommend FileZilla for two reasons. The first is that it’s open source (and free of charge), the second one is that I personally like it as a tool. At work I (have to) use Windows, and whenever I have to transfer files to a remote system like our webservers, our contractor’s cloud storage, or simply to copy a few music files from my phone to the office PC (yes, I am this old), FileZilla is the go-to solution for me.

If you have started the SSH server on the deck, you should now be able to access its contents via sftp. The default user on the Steam Deck is called deck, the password is the one you set earlier using the passwd command. If you are lost using FileZilla, there’s a user’s guide online.

Now, as promised, a few words on security and autostarting the SSH server. If you plan on auto-starting the SSH server on the Steam Deck, I would recommend to set up a means to connect to it without a password, and then to disable password-based SSH connections. The reason is that the Steam Deck, as a mobile device, will quite likely end up in insecure or otherwise untrusted wireless networks, and passwords are really not the most secure way of user authentication… Since SSH is a full remote access protocol, anyone who guesses your password and can reach the deck over the network could do anything on it. Given that the deck’s battery runtime is already short enough even if there is no bitcoin miner running in the background, you probably don’t want password based logins via SSH enabled permanently.

That’s where Public-key authentication comes in. You can configure the SSH server to allow users to connect without a password, if the users have access to a private key for which the corresponding public key is known to the server. To enable this, all you need to do is to create a public/private SSH key pair, and upload the public key to the SSH server on the Steam Deck. The exact process of creating those keys is again depending on the operating system. Here’s a guide about SSH key generation that includes instructions for macOS and Windows. On macOS or Linux the instructions are actually identical. You just need to open a terminal, and, if they don’t exist for your user yet, run https://manpage.me/?q=ssh%2Dkeygen to create the keys. Then you can use https://manpage.me/?q=ssh%2Dcopy%2Did to upload the public key to the Steam Deck. Once that is done, if your system uses https://manpage.me/?q=ssh%2Dagent, connecting via public key should “just work” - also in FileZilla. If you don’t use ssh-agent, you can try these steps in FileZilla.

Once you have confirmed that passwordless public-key logins are working, you can edit the file /etc/ssh/sshd.conf on the steam deck. You’ll need admin access, so the easiest way to do that is probably to run sudo nano /etc/ssh/sshd.conf on a terminal (nano help). The relevant change is to replace the line #PasswordAuthentication yes by PasswordAuthentication no (here’s the help file for sshd.conf). In order to apply these changes, you probably need to restart the SSH server: sudo systemctl restart sshd.

soulsource, do gaming w Bought my first Steam Deck after seeing the deep discounts on refurbs...what should i know as a first time Steam Deck/PC gamer?
@soulsource@discuss.tchncs.de avatar

Enable SSH access (but make sure it only accepts key-based logins - password based on a mobile device that might operate in untrusted networks is a bad idea).

If you enable SSH, you can transfer files from the PC over WLAN. (If you are on Windows: FileZilla is your friend.) Also, you can remote access the Steam Deck command line via SSH. (If you are on Windows: PuTTY is your friend.) That’s way less annoying than having to type longer texts (think: script files to launch emulators) with the on-screen keyboard.

Oh, and if you are into Retro Gaming, my small guide on how to add DOS games to the steam library and get MIDI working for them might be worth a look.

soulsource, do gaming w So, Microsoft now owns Activision Blizzard. How will this affect the rest of the industry?
@soulsource@discuss.tchncs.de avatar

Okay, Youtube was maybe a bad example. They aren’t that far with the enshittification yet, and just started increasing the amounts of ads…

Things I do expect:

  • Price increase
  • Tiered pricing (okay, that’s already a thing for GamePass with the “PC” and “Ultimate” plan)
  • Lower price tiers including advertisements (could for instance be placed in games streamed from the cloud)
  • Other things that aren’t beneficial for consumers.
soulsource, do gaming w So, Microsoft now owns Activision Blizzard. How will this affect the rest of the industry?
@soulsource@discuss.tchncs.de avatar

If you want to know how Games Streaming will look like in 10 years, compare today’s YouTube to how it was 10 years ago.

soulsource, do gaming w Not counting games that were unfun because of bugs, what’s the most unfun video game that you’ve played and what made it unfun?
@soulsource@discuss.tchncs.de avatar

I liked it a lot, before they added base-building and all that other stuff that doesn’t align with the game’s original vision.

soulsource, do gaming w Larian drops Series S split-screen as "solution" to bring Baldur's Gate 3 to Xbox this year
@soulsource@discuss.tchncs.de avatar

I’m not an artist - my 3D modelling experience can be summed up as “none”, so I can’t really answer your last point. I know for certain that we don’t use normal maps to the extent they could be used, and therefore have way more detail in the meshes than they would need to have. I’m also pretty certain that we don’t do any tesselation on player pawns, and I think (but am not certain) that this is due to some engine limitation (again, don’t quote me on that, but iirc Unreal doesn’t support tesselation on skeletal meshes on all our target platforms).

soulsource, do gaming w Larian drops Series S split-screen as "solution" to bring Baldur's Gate 3 to Xbox this year
@soulsource@discuss.tchncs.de avatar

Tell that to our artists 😉. As a coder I’m all for procedurally generated content. I did replace several heavy textures in our games by procedural materials, to squeeze out a couple of extra MB. However, that’s not the way artists traditionally work. They often don’t have the programming knowledge needed to develop procedural materials on their own, and would need to rely on technical artists or programmers to do so. Drawing a texture however, is very much part of their skillset…

But yeah, the mention of “squeezing out a couple of MB” brings me to another topic, namely that (at least in our games) the on-disk textures are only part of the RAM usage, and a relativley small one on comparison. In the games I worked on, meshes made up a significantly larger amount of RAM usage. We have several unique assets, which need to fulfill a certain quality standard due to licensing terms, such that in the end we had several dozens of meshes, each over 100 MB, that the player can freely place… Of course there would still be optimization potential on those assets, but as always, there’s a point where further optimization hits diminishing returns… In the end we had to resort to brute-force solutions, like unloading high quality LODs for meshes even if they are relatively close to the player… Not the most beautiful solution, but luckily not often needed during normal gameplay (that is: if the player doesn’t intentioally try to make the game go out-of-memory).

But I’m rambling. The tl;dr is: The memory constraints would not be a big deal if there was enough time/money for optimization. If there is one thing that’s never enough in game dev, it’s time/money.

soulsource, do gaming w Larian drops Series S split-screen as "solution" to bring Baldur's Gate 3 to Xbox this year
@soulsource@discuss.tchncs.de avatar

I was talking about the person(s) at Microsoft, who decided that it’s a good idea to have less RAM on the Series S than on the Series X…

(And for context: I work in gamedev, and in my experience making games stay within the memory budget is one of the toughest parts of porting games to consoles.)

  • Wszystkie
  • Subskrybowane
  • Moderowane
  • Ulubione
  • Blogi
  • slask
  • rowery
  • fediversum
  • niusy
  • Cyfryzacja
  • giereczkowo
  • Pozytywnie
  • lieratura
  • krakow
  • esport
  • muzyka
  • sport
  • Spoleczenstwo
  • tech
  • kino
  • LGBTQIAP
  • opowiadania
  • Psychologia
  • motoryzacja
  • turystyka
  • MiddleEast
  • zebynieucieklo
  • test1
  • Archiwum
  • FromSilesiaToPolesia
  • NomadOffgrid
  • m0biTech
  • Wszystkie magazyny