Git Product home page Git Product logo

Comments (6)

SanderMertens avatar SanderMertens commented on June 4, 2024 1

I just checked in a fix. If you update to the latest Flecs commit and refresh the explorer it should work as expected!

from flecs.

SanderMertens avatar SanderMertens commented on June 4, 2024

This seems to work:
Screenshot 2024-02-25 at 10 07 35 AM

Can you share the code in which you create the three entities?

from flecs.

maximegmd avatar maximegmd commented on June 4, 2024

Sure:

auto player = world.entity(fmt::format("Player {:x}", aConnectionId).c_str())
    .child_of(world.entity("Level"))
    .emplace<PlayerComponent>(aConnectionId, flecs::entity{}, aUsername.c_str());
    
auto puppet = world.entity()
        .child_of(player)
        .set<MovementComponent>({pos, rot, {}});

image
image

from flecs.

SanderMertens avatar SanderMertens commented on June 4, 2024

Ah, this is because the entity name contains spaces, which causes problems with queries. What you can do instead is:

  • replace the spaces in your entities with underscores
  • call e.set_doc_name("Name with spaces");

from flecs.

copygirl avatar copygirl commented on June 4, 2024

To be fair, from what I know, the issue only occurs when using expressions to build queries, similar to SQL injection. When you build queries using the query builder you can avoid the problem. Same I believe if you used the entity ID itself in the query expression. (Unsure why the explorer is not doing this.)

I've run into the same problem because I wanted to use dots in my entity names (to mirror filenames with extensions), which caused issues both with the explorer and even entity creation, as dots are used as separators by default. Thankfully Sander introduced a way to avoid tokenization.

from flecs.

SanderMertens avatar SanderMertens commented on June 4, 2024

Yep, that's exactly it. Because the explorer is fully built on top of the (string based) query DSL, it is usually the first place where these problems show up.

I'm experimenting with some code that lets me use entity names with spaces since this comes up so often, may be able to check in a fix that adds support for it.

from flecs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.