> For the complete documentation index, see [llms.txt](https://cavonstavants-organization.gitbook.io/rtype/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cavonstavants-organization.gitbook.io/rtype/development-guidelines-and-how-tos/readme/systems.md).

# Systems

Systems are the things that directly interacts with components. They actually get all the associated components in order to actualize Entities' values. They are generated in lambda format and pushed in the private vector of the current world. They look like this :

```cpp
std::function<void(World &)> movement = [](World &world) {  

	// Get all the components related to the system
    auto &positions = world.registry.getComponents<component::Position>();  
    auto const &velocities = world.registry.getComponents<component::Velocity>();  
    auto &directions = world.registry.getComponents<component::Direction>();  
    using chrono = std::chrono::high_resolution_clock;
    static auto clock = chrono::now();
    
    // Loop on every components and apply the logic of the system
    for (size_t i = 0; i < positions.size() && i < velocities.size(); ++i) {  
        auto &pos = positions[i];  
        auto const &vel = velocities[i];  
        auto &dir = directions[i];  
        if (pos && vel) {
 
        // The goal of this is to update Entities values
            if (std::chrono::duration<double, std::milli>(chrono::now() - clock).count() > 10) {  
                pos.value().x += vel.value().x * (dir.value().x);  
                pos.value().y += vel.value().y * dir.value().y;  
                dir.value().x = 0;  
                dir.value().y = 0;  
                clock = chrono::now();  
            }  
        }  
    };  
};
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://cavonstavants-organization.gitbook.io/rtype/development-guidelines-and-how-tos/readme/systems.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
