-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PNG Loader missing from basegame #102
Comments
The next logical step is to actually look at the code path for Linux and Windows and see how they differ. |
Ah, I just realized something - VoidUI (which works) uses .texture (dds) images, while the mod icons use PNGs. I'll see if using DDS makes the mod icons show up. |
Ah, that does seem to be the issue. The windows binary contains LibPNG, while the GNU+Linux binary does not. |
As a note, TGA images do load successfully - they are the only format (besides DDS) supported in the basegame. It appears one way to implement this is to create a subclass of Edit: VTable for easy reference:
|
I'm surprised the game doesn't have a PNG decoder somewhere. It would be idea if we didn't have to bring one with us, should we implement this. The other problem that this brings up is the inevitable |
Since it's only loading DDL encoded images from the asset bundles, there isn't really anything they need the PNG loader for. On Windows they use it for development reasons (and ship it for some reason), but not during normal use of the game.
Given that almost every mod with custom images uses PNG, it's probably a good idea.
IIRC |
I had considered reimplementing std::string but run in to something that turned me off of that - I'm not quite sure what it was (though if I had to guess, it was the need to reimplement many containers as well). That being said, if the license is compatible, we also have the option of 'transplanting' it. |
@ZNixian i've decided to start a project branch to investigate and implement a 'port' of libcxx (mainly re-namespacing), specifically the parts we want. If it becomes unweildy but useful, we can extract it to its own repository. Luckily, libcxx is quite small (deceiving, though, we are talking about C++ after all) compared to a monster like boost, so I would hope we can start to see success soon. |
IIRC all we really need is It'd certainly be very nice to get away from requiring PS Have you had a look at SuperBLT, and in particular it's GNU+Linux support? If so, do you have any thoughts about it? |
When did it get gnu/Linux support? |
Misread that. I'll have to look at it a bit more tomorrow. |
We can probably merge that @ZNixian if it is working. Is there s bullet list of roadblocks? |
Some things off the top of my head:
|
Since SuperBLT is as far as I can tell, tooled and designed for WIndows, addition of SBLT features to BLT4L would resemble the porting of BLT4W, where some portions of code may be copied directly, but ultimately a lot of novel code would be written. Just due to the way the platforms and game versions differ, I don't know that having a cross-platform code base is even reasonable. The compiler, standard library, and game engine versions are totally incompatible. I think that the only shared code between the two would ultimately just be some glue logic, with the platform specific code still being completely separate. |
Everything platform-specific is in Right now, SuperBLT can be compiled on either platform.
Isn't it? That's what SuperBLT is at the moment.
The game is mostly the same on both platforms. Obviously how I find the functions is completely different on both platforms, but the functions are mostly the same.
While this quite possibly would be the case with vanilla BLT, SuperBLT has a lot more platform-independent code. |
@ZNixian i suppose merging the two may be a possibility. Would you be open to moving the project? Having more development effort focused in one place could also move along the project to map out the engine and support libcxx facets, which would ultimately open the door for other community driven improvement potential, like working voice chat on linux... |
I do like quite a few of the things GitLab offers (such as built in CI), but if there's a major issue I'm certainly okay with moving it.
Oh yes, I've done quite a bit of research on the internals of PAYDAY 2, including with the asset system. I really need to make it available at some point, probably in the form of headers copied out of IDA. An IDAPython script to import/export the headers to allow collaboration would be great, along with generating structs for the vtables.
This does make me think about something - considering the amount of Linux-specific code involved, perhaps it would be a good idea to keep the SuperBLT GNU+Linux platform module in it's own repo? That would also neatly sidestep the GitLab/GitHub issue and would keep the commit log for the platform-independent part of SuperBLT clean. |
Having an independent module is not a bad idea. Depending on what needs to be implemented, this repo may be able to suit. After having looked at the SuperBLT repo, I am interested in the project, but my concern is that were I to submit code to it, or make modifications I would find myself re-indenting all the code in it. |
It'd probably be better to keep the 'classic' BLT4L as a separate repo, both for archival reasons and to avoid confusion.
Yeah, that's something I forgot to mention. So far three people have worked on it, and none of us have done a half-decent job in maintaining a consistent code style. This is something I do plan to change, ending with writing a GNU Indent rule and putting it in CI to prevent violations. Currently, however, it's unfortunately a mess. The main issue here is breaking |
Unfortunately there are things that will always break git, even when normal. Moving files is a good example. |
Yeah, good point. I'll start work on that tomorrow then, if I have time. |
If you desperately need blame, you can have a script save a blamefile for the whole repo every time indent is run. Or just step back one commit and use blame. |
Anyways. Can you describe what exactly constitutes the platform modules? |
Stepping back a commit is the method I usually use, it's just a little more inconvenient. |
Also (pressed 'comment' too fast), since most of the indentation is consistent, the main thing that needs to be changed is stuff like what line braces are on, which is relatively minor. |
The thing I saw was namespace name
{
namespace
{ This can get hard to deal with |
I generally don't indent the contents of namespaces, as each one of them pushes the code further to the right. C++17 allows the |
Yes, that has been widely regarded as an overdue solution. Having worked on some other C++ projects like Doomsday, I can say for certain that this can get out of hand. When I was trying to troubleshoot Doom64 support, I found myself having to reverse engineer the source code for then engine due to things like this (no followable indentation, things written entirely in combinations of nested templates and macros, etc...). |
I have no idea why that wasn't in the standard from day 1. Both macros and, in particular, templates can get out of hand very easily, with the latter in particular turning otherwise understandable code into a unintelligible sea of symbols (looking at you, Boost). |
I've just pushed |
Update on the above items
|
@ZNixian i (think i) have a gitlab account ([email protected]) if you want to add me as a collaborator |
@RomanHargrave Done. |
Cool |
When using custom textures, calling
DB:reload_textures
does not seem to do anything - this is very likely a caching issue.The text was updated successfully, but these errors were encountered: