-
-
Notifications
You must be signed in to change notification settings - Fork 968
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
Codechange: C++-ify lists for SaveLoad #9323
Conversation
5c5771d
to
3a3f86d
Compare
Converting std::initializer_list to const std::vector& on every call to the various SlObject methods doesn't really seem better than converting constant data to std::vector once at static init. |
I was really hoping compilers would do the right thing, but clearly it does not. Which is a bit sad :P I now solved it in a slightly different way by just templating both variants. Godbolt at least tells me that it is doing the right thing now.
Sadly, as C-programmer, these kind of statements don't really help me. I do need some container that is dynamic, and people tell me to use |
20b7295
to
d518354
Compare
The contents of a container is not the same things as the container itself. Both std::initializer_list and std::vector are abstractions which return a contiguous array, so you can just pass the contiguous array directly without needing any allocations, copies or templates. Underneath all the C++ syntactic sugar, what you really want is either: For the sake of convenience/prettiness, you can combine the begin and end, or begin and length, into a single type. |
You are awesome, tnx for this; I seriously appreciate it :) Now I get what you mean ;) And yes, it makes sense. I just want something over which I can iterate :P And I really do not care what that "something" is :D |
d518354
to
2763897
Compare
Right, I spend some time reading up on It is a lite variant, as I did not implement all the functions. Mostly as I don't think we need them, but it is easy enough to add them all if we really want to. Alternatively, we could add gsl-lite to our 3rdparty folder, or .. switch to C++20. Sky it the limit :D Tnx again for the explanation @JGRennison , it helped a lot in figuring out what this all is doing .. and I learnt a lot today :D |
e1acdda
to
3bfcaa0
Compare
After some talk on IRC, decided to remove |
4e52926
to
eb3baf4
Compare
Basically, this changes "SaveLoad *" to either: 1) "SaveLoadTable" if a list of SaveLoads was meant 2) "SaveLoad &" if a single entry was meant As added bonus, this removes SL_END / SLE_END / SLEG_END. This also adds core/span.hpp, a "std::span"-lite.
eb3baf4
to
6db077e
Compare
Motivation / Problem
I kept getting annoyed about two things:
Saveload *
was indicating a single item or a list of items.So why not fix both in 1 go?
Description
As we have parts that need dynamic SaveLoad lists,
SaveLoad []
is not always possible to use. In those casesstd::vector<SaveLoad>
is used, but converting that to aSaveLoad []
is not possible ofc.What I turned up doing, is copying parts of gsl-lite into
core/span_type.hpp
to give us astd::span
-lite variant (std::span
is C++20). This allows both types to be used by SaveLoad functions, without them knowing the details of the container.For
SaveLoad []
thespan<>
stores thefirst
andlast
element, and after that you can safely move the span around. Forstd::vector
it does the same. So we have one type which captures both in a safe manner.Mind you,
span<>
doesn't own the memory, so no using stack variables now :)Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.