iacobson
ECSpanse

Ecspanse is an Entity Component System (ECS) framework for Elixir.
Ecspanse is not a game engine, but a flexible foundation for managing state and building logic, with features like:
- flexible queries with multiple filters
- dynamic bidirectional relationships
- versatile tagging capabilities
- component templates
- system event subscriptions
- asynchronous system execution
Docs: Ecspanse — ECSpanse v0.10.1
GitHub: GitHub - iacobson/ecspanse: Entity Component System (ECS) library for Elixir, offering a suite of features including: flexible queries with multiple filters, dynamic bidirectional relationships, versatile tagging capabilities, system event subscriptions, or asynchronous system execution. · GitHub
Article: https://iacobson.medium.com/elixir-for-fun-ecspanse-2852a7993ecd
Podcast: ECS / Game Development with Elixir vs. Python, JavaScript, React with Dorian Iacobescu & Daniel Luu | SmartLogic
Trending in Announcing
Flop is an Elixir library that applies filtering, ordering and pagination parameters to your Ecto queries.
offset-based pagination with...
New
I needed to reuse React components from my Chrome extension in my Phoenix/LiveView backend. I noticed that for Svelte/Vue, there are live...
New
I released Doggo, a collection of unstyled Phoenix components.
https://github.com/woylie/doggo
Features
Unstyled Phoenix components....
New
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Hello
Published a new library - ProcessHub!
ProcessHub is a library designed to manage process distribution within the Elixir cluster. ...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hi everyone!
The first release candidate for the Expert language server project is now available!
We’ve published a press release detai...
New
With AI doing more of the implementation work, I’ve been wondering how much coding I should deliberately keep doing myself.
My main conc...
New
It’s not that it’s vocabulary is too advanced. It’s something worse.
I get lost trying to follow even a paragraph written by Claude. It’...
New
This showed up on my feed.. anyone heard of it? Just hype?
Ox Alpha is a reasoning model designed for coding, sustained ag...
New
Hey folks,
I just published a post about Hologram’s funding and where the project goes next - the short version:
Curiosum as Main Spons...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #ai
- #blog-post
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #security










Showing Posts 1 to 10- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
iacobson
New release v0.2.0
Introduces Component and Event Templates for simplifying the creation of related components and events.
Adds a new query
Ecspanse.Query.fetch_tagged_component/2that returns an entity’s component by a list of tags. Attention, it is the logic implementation duty to ensure that no more than one component is returned, or it will raise an error.Introduces also some small breaking changes: the Timer Component and Event are now Templates.
use Ecspanse.Component.Timeranduse Ecspanse.Event.Timershould be replaced withuse Ecspanse.Template.Component.Timeranduse Ecspanse.Template.Event.Timer.D4no0
I don’t understand from reading the documentation and the article, what do you mean it’s not a game engine?
What kind of problems it actually solves, like realtime synchronization?
kokolegorille
You might find information about ECS here…
While it’s new in OOP video game, it’s kind of natural in FP
iacobson
Ecspanse is a state management library. It also runs the “game loop” and offers some built-in functionality like timers.
what I mean by “it’s not a game engine” is that has no functionality for rendering, controls/input, physics, assets, GUI, etc. So you will need to combine it with some other technology if you want to build anything user-facing.
kokolegorille
Thank You for your lib, I am going to try it for some games that I have in mind
iacobson
When you will have a working prototype, please paste it here. I’m extremely curious about what kind of games people think to build with Elixir.
kokolegorille
Will do… currently I am thinking of using React and Three, or Three fiber for the front end and controls, Phoenix for socket and clients communication, and ECS for managing game state.
But it might take some time
D4no0
Is it though? are we talking about the concepts used behind unity engine?
kokolegorille
Yes, exactly, that’s how they could achieve a demo called something like 1000 cities… I don’t remember the name, but the demo I do
D4no0
Isn’t that just a basically just a change from inheritance to composition? I mean that’s nice, however I don’t think erlang VM can fit in this theme by design,