Results 13 comments of Frederik

sorry about the late reply, yes it's still active

The work on this PR has been paused for now as it's not been a priority lately, I'm not sure when the work would be resumed.

It is correct that only need to perform the syscall once to enable AMX for the entire process. I agree that it should be called by the user then. I'll...

I'm going to cancel most of this for now. I think it is useful to keep this as simple as possible. So for now I'll decide that only `read` and...

The job "queries" can be better specified as "constraints" and "actions". Constraints allow you to select your appropriate entities or groups based on specified constraints, typically yielding a list. And...

Now that access specifiers are being used we can have an archetype's members be value types rather than reference types. The above would change to: ```cpp struct player { using...

I'm not sure of a way to do this reliably, the attraction about the entity component type would be constant access and this cannot really be provided efficiently. I'm not...

a few possible classes: ```cpp // provides read-only access to a component template struct read { private: const C* val_; public: constexpr read(const C& val) noexcept : val_{std::addressof(val)} {} constexpr...

How to support optional. Optional works on a per group basis, so there must be support for generating metadata for a group. This metadata will then be passed together with...

Some further consideration. There are definitely 2 different types of access specifiers. We can simply assign these categories through `access_category`. An example would be `global_category` for create because it doesn't...