amos

joined 2 years ago
[–] amos@lemmy.zip 4 points 1 week ago

Yeah, some weird accusations. Python has had classes since its inception (1.0).

Also the image in the post makes no sense. It shows multiple (Spidey) instances all pointing to each other which is not how self works. self is just a parameter that may contain different instances depending how it was called. This is also true for any other parameters in any function, each time a function is called it may have a different instance.

[–] amos@lemmy.zip 5 points 1 week ago

You don't reference self when calling a method, what on earth are you talking about? You start with the instance when calling the method, like most/all other OOP languages.

Also there are benefits with the explicit self/this to access instance properties. In C++ you need to make sure all class properties/members have a naming scheme that does not conflict with potential parameter names or other names of other variables.

[–] amos@lemmy.zip 2 points 2 months ago

Yes, the new bluray version is the one to get. It is based on the original analog film which is high definition (heard it was closer to 2k ish). This is the same as the version that was available on HBO a few years back. The old DVD version was a cropped (and stretched) version of the tv broadcast version which was cropped from the original source. Anything based on that will look pretty bad.

The only thing that is lower resolution in the bluray version are the scenes where actors and CGI are mixed. They lost the original 3d models so there were no cheap and easy way to fix those.

I can also recommend the Lurkers Guide viewing order. There are also some tips on episodes that can potentially be skipped.

https://babylon5.fandom.com/wiki/Viewing_Order#lurkers

[–] amos@lemmy.zip 2 points 4 months ago (1 children)

The SS1 remake was amazing. But you have to remember the amount of work it takes to remake a game, SS1 was in development for many years.

SS1 really needed a remake, SS1 had awful controls and cumbersome UI, combat was also a bit fiddly.

I would say SS2 is much closer to a modern game than SS1 was, so I'm not surprised they decided to remaster it. I would also be surprised if they earned back the money they spent on that remake.

Remaking a game basically means creating an entire new game, then ensuring that it acts the exact same way as the original. The remake is most likely not written in the same game engine as the original so that means A LOT of tweaking to get gameplay, combat, triggers, event handling etc. to work the exact same as it did earlier.

I just wish people would understand how hard it is to make a game. Changing the game engine could easily set the team back 1-2 years.

[–] amos@lemmy.zip 3 points 4 months ago (3 children)

Because it's a lot of work to remake a game. Besides SS2 doesn't really need a full remake.

[–] amos@lemmy.zip 1 points 4 months ago (3 children)

This is just wrong, the compiler (and linker) knows exactly what the program does as it has the ENTIRE source code available. Compilers have been so good the last 20 years that it is quite hard to write things faster in assembly/machine code.

One of the harder parts about assembly is keeping track of which registers a subroutine uses and which one is available, as the program grows larger you might be forced to push/pop to the stack all the time. Inlining code is also difficult in assembler, the compiler is quite adept at that.

It might have been true up until the 90s, but then compilers started getting so good (Watcom) there was rarely any point to write assembler code, unless there was some extremely hardware specific thing that needed to be done