Latest Comments by Creak
D9VK is no more as it merges with DXVK, making DXVK a D3D 9/10/11 to Vulkan layer
16 Dec 2019 at 3:21 pm UTC
That said, in the end I agree with you (like I said, I was just making the devil's advocate here). Most of the game engine are several millions lines of code long and performance in in the top priority, and, today, they are mostly written in object oriented C++.
16 Dec 2019 at 3:21 pm UTC
Quoting: TheSHEEEPThe problems really only arise in large projects.I see your point, though in this kind of projects, performance is an important priority. And, while it is easier to maintain object oriented code base, it is easier to make data oriented code in C than in C++ (since you never mix data and logic together).
Code is about 10x more often read than written (or more, even).
Thus, making code clear and being able to follow it is more important than either raw speed (especially since C++ isn't really slower than C) or having to write less.
In large projects in pure C, you will have algorithms spanning dozens to hundreds of functions over possibly just as many files. You invariably end up with endless amounts of spaghetti code. It is the inherent flaw of procedural programming - awesome for smaller scales, nightmarish for larger scales.
While the OO-focus in C++ at least makes it a lot less likely to end up with code like that (though not impossible, obviously), as code that belongs together is way more likely to be grouped together and the concept of objects which "do things" is inherently more friendly to the human brain.
And for some reason I will never understand, long-time C coders tend to almost never write comments and almost never have variable names longer than "a, b, c, d, v, x, z"...
It is the devil's work, I have no doubts about it.
Either way, what makes no sense to me is not using C, but not allowing C++ at all.
Have the C++ code be exposed via C-style functions (the famous extern, indeed) so that the core devs can keep their precious. Compile apart, then link.
I just don't see the point in not doing it that way, other than some weird sense of purity.
That said, in the end I agree with you (like I said, I was just making the devil's advocate here). Most of the game engine are several millions lines of code long and performance in in the top priority, and, today, they are mostly written in object oriented C++.
D9VK is no more as it merges with DXVK, making DXVK a D3D 9/10/11 to Vulkan layer
16 Dec 2019 at 2:09 pm UTC Likes: 3
Also, for some reason, the C++ standard has very weird statement. For instance, there is no standard over name mangling. The consequence is that each compiler has their own name mangler, which makes the binaries incompatible.
There is a solution to that... which is to go back to C mangling using this syntax:
For each problem, there is always "a way" to work around, but this is one example of how messed up C++ can be sometime, whereas simple C code doesn't have these problems.
That being said, the more it goes, the less I want to code in C or C++. My main reason why is the pre-processor. How come a modern language like C++ still needs another language (i.e. the pre-processor language) to work? For instance: #include...
16 Dec 2019 at 2:09 pm UTC Likes: 3
Quoting: TheSHEEEPGuess that is one way to make sure a project never has too many people working on it.Just to be the devil's advocate for a few minutes: good written C code is not so bad. After programming in C++ for more than a decade, I can now see the appeal in C code (sometime). It boils down to being leaner than a C++ code.
What a waste of potential.
Pure C is fine for smaller projects or concise little libraries.
But big ones purely in C is just nightmare fuel. Go take a look at the FFmpeg sources if you don't believe me.
Alright, merge Wine into DXVK, then ;)
C++ isn't picky about having some pure C code within.
Also, for some reason, the C++ standard has very weird statement. For instance, there is no standard over name mangling. The consequence is that each compiler has their own name mangler, which makes the binaries incompatible.
There is a solution to that... which is to go back to C mangling using this syntax:
extern "C"
{
// Your C++ code.
}For each problem, there is always "a way" to work around, but this is one example of how messed up C++ can be sometime, whereas simple C code doesn't have these problems.
That being said, the more it goes, the less I want to code in C or C++. My main reason why is the pre-processor. How come a modern language like C++ still needs another language (i.e. the pre-processor language) to work? For instance: #include...
D9VK is no more as it merges with DXVK, making DXVK a D3D 9/10/11 to Vulkan layer
16 Dec 2019 at 1:53 pm UTC Likes: 4
16 Dec 2019 at 1:53 pm UTC Likes: 4
Quoting: Liam Dawe@Liam: Might be worth doing an article about it, I was like @Sir_Dialot, thinking DXVK was slowly dying in place of another project.. Although I have been reading mainly Linux news every day.Quoting: Sir_DiealotIsn't DXVK that project that just went into maintenance mode because it's not feasible to develop it further?No, that was other sites making a mountain out of a little GitHub comment rant. Don't read into it.
Fully supported Unity Editor for Linux delayed, Unity 2019.3 in the final testing stages
14 Dec 2019 at 1:08 pm UTC Likes: 3
14 Dec 2019 at 1:08 pm UTC Likes: 3
Let's debunk a few myths here..
Vulkan is great, but it doesn't have the knowledge database of the other graphics APIs. That's probably the main reason why it's not wildly used. But it will come in time. Successes like Doom is a good advertisement for Vulkan.
C++ is faster because you have more control over the memory, and in game engine development, memory is everything.
That is exactly why DOTS (formerly known as ECS) is being worked on at Unity: it is a Data Oriented Tech Stack. When the data is properly layed out in memory, it can do wonders in terms of optimization.
And I tell you that as a game developer myself, who works at Ubisoft right now, and actually worked on DOTS at Unity.
Vulkan is great, but it doesn't have the knowledge database of the other graphics APIs. That's probably the main reason why it's not wildly used. But it will come in time. Successes like Doom is a good advertisement for Vulkan.
C++ is faster because you have more control over the memory, and in game engine development, memory is everything.
That is exactly why DOTS (formerly known as ECS) is being worked on at Unity: it is a Data Oriented Tech Stack. When the data is properly layed out in memory, it can do wonders in terms of optimization.
And I tell you that as a game developer myself, who works at Ubisoft right now, and actually worked on DOTS at Unity.
Fully supported Unity Editor for Linux delayed, Unity 2019.3 in the final testing stages
13 Dec 2019 at 5:01 am UTC Likes: 5
Then the C++ code is compiled to the targeted platform.
The result is a binary that runs faster than if using the .net framework.
Doc: https://docs.unity3d.com/Manual/IL2CPP.html [External Link]
13 Dec 2019 at 5:01 am UTC Likes: 5
Quoting: GuestIt is a transpiler that takes the intermediate language (IL) from C# interpreter and convert it to C++ (CPP).Quoting: BrazilianGamerThe IL2CPP issue has been a big one. Nice to see we'll get rid of itWould someone mind explaining what that is and why it's an issue?
Then the C++ code is compiled to the targeted platform.
The result is a binary that runs faster than if using the .net framework.
Doc: https://docs.unity3d.com/Manual/IL2CPP.html [External Link]
It's already possible to play Halo: The Master Chief Collection on Linux with Steam Play
4 Dec 2019 at 1:55 pm UTC Likes: 1
4 Dec 2019 at 1:55 pm UTC Likes: 1
@Liam Dawe How do you enable all these details?
Check out some fresh gameplay from the upcoming Transport Fever 2
26 Nov 2019 at 1:27 am UTC
26 Nov 2019 at 1:27 am UTC
I didn't know about the loyalty discount. Where do you find that?
Check out some fresh gameplay from the upcoming Transport Fever 2
25 Nov 2019 at 1:25 pm UTC Likes: 4
On the ui/graphics side, the graphics are better than the previous opus (which.. you would expect in a new iteration), there's the "level of gray" view that allows to have a way better view of specific features, like bus lines, etc.. (which has been taken from Cities Skyline, but a good feature nonetheless), the UI is far better and clearer than in the previous iteration, with issues addressed, at last, like cloning a train with one button.
You could argue that they could have made all this as an update of Transport Fever 1, but that would have been a hell of an update! and I'm pretty sure they need to eat too ;)
25 Nov 2019 at 1:25 pm UTC Likes: 4
Quoting: woox2kDoesn't seem all that different from first game. Probably worth to wait until it goes on sale.I find there's quite a lot actually. More control over the train station constructions, possibility to have one train station with both cargo and passengers, ship cargo by plane, simulating noise problems with trains and trucks, ...
On the ui/graphics side, the graphics are better than the previous opus (which.. you would expect in a new iteration), there's the "level of gray" view that allows to have a way better view of specific features, like bus lines, etc.. (which has been taken from Cities Skyline, but a good feature nonetheless), the UI is far better and clearer than in the previous iteration, with issues addressed, at last, like cloning a train with one button.
You could argue that they could have made all this as an update of Transport Fever 1, but that would have been a hell of an update! and I'm pretty sure they need to eat too ;)
Steam for Linux can now run games in a special container
11 Nov 2019 at 4:13 am UTC
It certainly limits the Steam app, but is it true as well for the games launched from it?
11 Nov 2019 at 4:13 am UTC
Quoting: NeverthelessAnother solution is starting Steam with firejail --private=/another-directory steam, which then uses "another-directory" as home dir for Steam. Or you could use the Flatpak Steam install.Is using flatpak Steam producing the same behavior as setting the HOME env variable?It certainly limits the Steam app, but is it true as well for the games launched from it?
Transport Fever 2 confirmed for release on December 11, Linux support included
7 Nov 2019 at 11:34 pm UTC Likes: 1
The graphics are ok. Not great, but enough for this kind of game (I was playing Transport Tycoon before, so anything was quite a step up from there :D). The Linux compatibility is pretty good. Some artifacts (especially in the water reflection), maybe they also happen on Windows, I've never tested..
There are some caveats that seem to have been fixed with the second one: the possibility to have a rail station that does both passengers and fret, also now planes do fret as well (it was only passengers in TF1), traffic lights are a nice addition, and the different layout views are also a good improvement for an easier vision of some specific part of your network.
7 Nov 2019 at 11:34 pm UTC Likes: 1
Quoting: theghostDid someone played the first one recently and can you recommend it?I've had a lot of fun with the first one, with almost all the achievements ;)
The graphics are ok. Not great, but enough for this kind of game (I was playing Transport Tycoon before, so anything was quite a step up from there :D). The Linux compatibility is pretty good. Some artifacts (especially in the water reflection), maybe they also happen on Windows, I've never tested..
There are some caveats that seem to have been fixed with the second one: the possibility to have a rail station that does both passengers and fret, also now planes do fret as well (it was only passengers in TF1), traffic lights are a nice addition, and the different layout views are also a good improvement for an easier vision of some specific part of your network.
- Nexus Mods retire their in-development cross-platform app to focus back on Vortex
- Windows compatibility layer Wine 11 arrives bringing masses of improvements to Linux
- GOG plan to look a bit closer at Linux through 2026
- European Commission gathering feedback on the importance of open source
- Hytale has arrived in Early Access with Linux support
- > See more over 30 days here
- Away later this week...
- Liam Dawe - Venting about open source security.
- LoudTechie - Weekend Players' Club 2026-01-16
- Mustache Gamer - Welcome back to the GamingOnLinux Forum
- simplyseven - A New Game Screenshots Thread
- JohnLambrechts - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
Source: framapic.org
View cookie preferences.
Accept & Show Accept All & Don't show this again Direct Link