All Projects → Ubpa → Uecs

Ubpa / Uecs

Licence: mit
Ubpa Entity-Component-System (U ECS) in Unity3D-style

Programming Languages

cpp
1120 projects
cpp17
186 projects

Projects that are alternatives of or similar to Uecs

Entt
Gaming meets modern C++ - a fast and reliable entity component system (ECS) and much more
Stars: ✭ 6,017 (+3358.05%)
Mutual labels:  ecs, game-development, game-engine, gamedev, game-dev, entity-component-system, architectural-patterns
Entitas Cpp
Entitas++ is a fast Entity Component System (ECS) C++11 port of Entitas C#
Stars: ✭ 229 (+31.61%)
Mutual labels:  ecs, game-development, game-engine, gamedev, entity-component-system
Entitas Csharp
Entitas is a super fast Entity Component System (ECS) Framework specifically made for C# and Unity
Stars: ✭ 5,393 (+2999.43%)
Mutual labels:  ecs, game-development, game-engine, gamedev, entity-component-system
Shipyard
Entity Component System focused on usability and speed.
Stars: ✭ 247 (+41.95%)
Mutual labels:  ecs, game-development, gamedev, entity-component-system, architectural-patterns
Godex
Godex is a Godot Engine ECS library.
Stars: ✭ 307 (+76.44%)
Mutual labels:  ecs, game-development, game-engine, gamedev, entity-component-system
Defaultecs
Entity Component System framework aiming for syntax and usage simplicity with maximum performance for game development.
Stars: ✭ 286 (+64.37%)
Mutual labels:  ecs, game-development, game-engine, gamedev, entity-component-system
Kengine
Entity-Component-System (ECS) with a focus on ease-of-use, runtime extensibility and compile-time type safety and clarity.
Stars: ✭ 417 (+139.66%)
Mutual labels:  ecs, game-development, game-engine, entity-component-system
Anything about game
A wonderful list of Game Development resources.
Stars: ✭ 541 (+210.92%)
Mutual labels:  ecs, game-development, game-engine, gamedev
Flecs
A fast entity component system (ECS) for C & C++
Stars: ✭ 2,201 (+1164.94%)
Mutual labels:  ecs, game-development, gamedev, entity-component-system
Spheredissolve
Customizable procedural spherical dissolve shader for Unity3D, for all your customizable procedural spherical dissolve needs!
Stars: ✭ 311 (+78.74%)
Mutual labels:  unity3d, game-development, gamedev, game-dev
Luxe Alpha
luxe alpha - deprecated, unrelated to the new engine! see the readme or website for details - https://luxeengine.com/
Stars: ✭ 559 (+221.26%)
Mutual labels:  game-development, game-engine, gamedev, game-dev
Ecs
LeoECS is a fast Entity Component System (ECS) Framework powered by C# with optional integration to Unity
Stars: ✭ 578 (+232.18%)
Mutual labels:  ecs, unity3d, game-development, entity-component-system
Etengine
Realtime 3D Game-Engine with a focus on space sim. Written in C++ 14
Stars: ✭ 408 (+134.48%)
Mutual labels:  ecs, game-development, game-engine, entity-component-system
Unity2d Components
A constantly evolving array of Unity C# components for 2D games, including classes for pixel art cameras, events & messaging, saving & loading game data, collision handlers, object pools, and more.
Stars: ✭ 375 (+115.52%)
Mutual labels:  unity3d, game-development, game-engine, gamedev
Gamedev4noobs
Olá, sejam bem-vindos ao repositório _gamedev4noobs_ do Estúdio Vaca Roxa. O propósito desse repositório, além de contribuir para o projeto 4noobs, é ensinar o básico do desenvolvimento de jogos para iniciantes. Apresentando boas práticas e insumos para criar games incríveis.
Stars: ✭ 122 (-29.89%)
Mutual labels:  unity3d, game-development, game-engine, gamedev
Entitas Sync Framework
Networking framework for Entitas ECS. Targeted at turnbased games or other slow-paced genres.
Stars: ✭ 98 (-43.68%)
Mutual labels:  ecs, game-development, gamedev, entity-component-system
Donerserializer
A C++14 JSON Serialization Library
Stars: ✭ 31 (-82.18%)
Mutual labels:  game-development, game-engine, game-dev, architectural-patterns
Gdk For Unity Fps Starter Project
SpatialOS GDK for Unity FPS Starter Project
Stars: ✭ 119 (-31.61%)
Mutual labels:  ecs, unity3d, game-development, entity-component-system
Glas
WebGL in WebAssembly with AssemblyScript
Stars: ✭ 278 (+59.77%)
Mutual labels:  game-development, game-engine, gamedev, game-dev
O2
2D Game Engine with visual WYSIWYG editor
Stars: ✭ 121 (-30.46%)
Mutual labels:  unity3d, game-development, game-engine, game-dev

 __    __   _______   ______     _______.
|  |  |  | |   ____| /      |   /       |
|  |  |  | |  |__   |  ,----'  |   (----`
|  |  |  | |   __|  |  |        \   \    
|  `--'  | |  |____ |  `----.----)   |   
 \______/  |_______| \______|_______/    
                                         

⭐ Star us on GitHub — it helps!

repo-size tag license

UECS

Ubpa Entity-Component-System in Unity3D-style

Compiler compatibility

  • Clang/LLVM >= 10.0
  • GCC >= 10.0
  • MSVC >= 1926

Tested platforms:

  • Windows 10: VS2019 16.8.5

  • Ubuntu 20: GCC 10.2, Clang 11.0

  • MacOS 11.0 : GCC 10.2

    AppleClang 12 and Clang 11 is not supported

Documentation

Example

#include <UECS/World.h>

using namespace Ubpa::UECS;

struct Position { float val; };
struct Velocity { float val; };

struct MoverSystem {
  static void OnUpdate(Schedule& schedule) {
    schedule.RegisterEntityJob(
      [](const Velocity* v, Position* p) {
        p->val += v->val;
      },
      "Mover"
    );
  }
};

int main() {
  World w;
  w.systemMngr.RegisterAndActivate<MoverSystem>();
  w.entityMngr.Create<Position, Velocity>();
  w.Update();
}

other examples

Licensing

You can copy and paste the license summary from below.

MIT License

Copyright (c) 2020 Ubpa

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].