Properly link flecs library

This commit is contained in:
2023-11-09 11:38:29 +01:00
parent dc585396c3
commit 8edcf9305c
1392 changed files with 390081 additions and 164 deletions

View File

@@ -0,0 +1,5 @@
.bake_cache
.DS_Store
.vscode
gcov
bin

View File

@@ -0,0 +1,16 @@
#ifndef BASICS_H
#define BASICS_H
/* This generated file contains includes for project dependencies */
#include "basics/bake_config.h"
#ifdef __cplusplus
extern "C" {
#endif
#ifdef __cplusplus
}
#endif
#endif

View File

@@ -0,0 +1,24 @@
/*
)
(.)
.|.
| |
_.--| |--._
.-'; ;`-'& ; `&.
\ & ; & &_/
|"""---...---"""|
\ | | | | | | | /
`---.|.|.|.---'
* This file is generated by bake.lang.c for your convenience. Headers of
* dependencies will automatically show up in this file. Include bake_config.h
* in your main project file. Do not edit! */
#ifndef BASICS_BAKE_CONFIG_H
#define BASICS_BAKE_CONFIG_H
/* Headers of public dependencies */
#include <flecs.h>
#endif

View File

@@ -0,0 +1,12 @@
{
"id": "basics",
"type": "application",
"value": {
"author": "Jane Doe",
"description": "A simple hello world flecs application",
"use": [
"flecs"
],
"language": "c++"
}
}

View File

@@ -0,0 +1,51 @@
#include <basics.h>
#include <iostream>
// Type used for Eats relationship
struct Eats { };
int main(int, char*[]) {
flecs::world ecs;
// Entity used for Grows relationship
flecs::entity grows = ecs.entity("Grows");
// Relationship objects
flecs::entity apples = ecs.entity("Apples");
flecs::entity pears = ecs.entity("Pears");
// Create an entity with 3 relationships. Relationships are like regular components,
// but combine two types/identifiers into an (relationship, object) pair.
flecs::entity bob = ecs.entity("Bob")
// Pairs can be constructed from a type and entity
.add<Eats>(apples)
.add<Eats>(pears)
// Pairs can also be constructed from two entity ids
.add(grows, pears);
// Has can be used with relationships as well
std::cout << "Bob eats apples? " << bob.has<Eats>(apples) << "\n";
// Wildcards can be used to match relationships
std::cout << "Bob grows food? " << bob.has(grows, flecs::Wildcard) << "\n";
// Print the type of the entity. Should output:
// (Identifier,Name),(Eats,Apples),(Eats,Pears),(Grows,Pears)
std::cout << "Bob's type: [" << bob.type().str() << "]\n";
// Relationships can be iterated for an entity. This iterates (Eats, *):
bob.each<Eats>([](flecs::entity second) {
std::cout << "Bob eats " << second.name() << "\n";
});
// Iterate by explicitly providing the pair. This iterates (*, Pears):
bob.each(flecs::Wildcard, pears, [](flecs::id id) {
std::cout << "Bob " << id.first().name() << " pears\n";
});
// Get first target of relationship
std::cout << "Bob eats " << bob.target<Eats>().name() << "\n";
// Get second target of relationship
std::cout << "Bob also eats " << bob.target<Eats>(1).name() << "\n";
}