- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试编写一个 EntityType
类,它可以接收和存储可变数量的 Component
类型。
struct Health { int amount; }
struct Position { float x, y; }
EntityType entityType = new EntityType<Health, Position>();
稍后我将使用此 EntityType
类作为为组件分配紧凑内存的蓝图。
EntityManager.BatchCreate(3, entityType);
// Result: Health | Health | Health | Position | Position | Position
创建具有多个参数的类模板很容易,但是:
我对存储的第一个想法是元组,但我不确定。这些采用传入类型的实际值,而不是类型本身。我能以某种方式使用 typeid
吗?
我基本上是在尝试用 C++ 复制 Unity 在 C# 中用 EntityArchetype 做的事情,我相信这是在使用反射。
最佳答案
- How do I store the types to be used as a allocation blueprint later?
由于您在编译时知道组件的类型,因此可以使用这样的类型别名:
template<class... Components>
struct Entities {
/* ... to be implemented ... */
};
using HealthsPositions = Entities<Health, Position>;
- Can I query what types are in the EntityType?
是的,这在编译时也是已知的。似乎 std
命名空间中没有帮助器来测试类型列表中是否包含类型(请参阅 this question 的答案多样性)。所以这里是解决 C++14 中的模板元编程任务的另一种方法:
template<class Component, class EntitiesCs>
struct IsComponentOf;
template<class Component, class... Cs>
struct IsComponentOf<Component, Entities<Cs...>> {// partial specialization
static constexpr bool value_() {
bool ret = false;
for(bool is_same : {std::is_same<Component, Cs>{}()...}) {
ret |= is_same;
}
return ret;
// C++17 version with fold expression:
// return (... || std::is_same<Component, Cs>{});
}
static constexpr bool value = value_();
constexpr operator bool() const { return value; }
};
static_assert(IsComponentOf<Health, HealthsPositions>{}, "");
static_assert(IsComponentOf<Position, HealthsPositions>{}, "");
static_assert(not IsComponentOf<int, HealthsPositions>{}, "");
Can I work with typeid's somehow?
是的,但这是我上面描述的另一种方法:上面的方法在编译时工作。 typeid
operator来自运行时类型信息 (RTTI) 的世界。不幸的是,std::type_info
不能在编译时使用。
I will then use this EntityType class later as a blueprint for allocating tightly packed memory for the components.
EntityManager.BatchCreate(3, entityType);
// Result: Health | Health | Health | Position | Position | Position
如果您真的希望组件紧密排列,并且希望能够调整“容器”的大小,那么我看不到一个简单的解决方案。在理想情况下,HealthsPositions
商店,例如,
Health
组件开始的内存的类似指针的成员,std::size_t
(或其他)成员,用于存储每种类型的组件数量,以及std::size_t
(或其他)成员,用于存储每种类型的组件的容量。理想情况需要一些自定义内存管理(包括对齐注意事项)。
但是,这个另一种简单设计可能是一个很好的起点:
#include <cstddef>
#include <iostream>
#include <tuple>
#include <type_traits>
#include <vector>
struct Health { int amount; };
struct Position { float x; float y; };
template<class C0, class... Cs>
struct Entities {
std::tuple<
std::vector<C0>, std::vector<Cs>...
> components;
Entities(std::size_t size)
: components{size, (0*sizeof(Cs) + size)...}
{}
};
template<class Component, class... Cs>
constexpr std::vector<Component>& get(Entities<Cs...>& e) {
using ComponentVector = std::vector<Component>;
return std::get<ComponentVector>(e.components);
}
template<class Component, class... Cs>
constexpr const std::vector<Component>& get(const Entities<Cs...>& e) {
using ComponentVector = std::vector<Component>;
return std::get<ComponentVector>(e.components);
}
////////////////////////////////////////////////////////////////////////////////
using HealthsPositions = Entities<Health, Position>;
constexpr std::size_t expected_size =
sizeof(std::vector<Health>) + sizeof(std::vector<Position>);
static_assert(sizeof(HealthsPositions) == expected_size, "");
int main() {
std::size_t entity_count = 7;
HealthsPositions hps(entity_count);
get<Health>(hps).at(2).amount = 40;
get<Position>(hps).at(5) = Position{3.5f, 8.4f};
std::cout << "health address and value:\n";
for(auto&& h : get<Health>(hps)) {
std::cout << &h << "\t" << h.amount << "\n";
}
std::cout << "position address and value:\n";
for(auto&& p : get<Position>(hps)) {
std::cout << &p << "\t" << p.x << "\t" << p.y << "\n";
}
}
示例输出:
health address and value:
0x55adba092eb0 0
0x55adba092eb4 0
0x55adba092eb8 40
0x55adba092ebc 0
0x55adba092ec0 0
0x55adba092ec4 0
0x55adba092ec8 0
position address and value:
0x55adba092e70 0 0
0x55adba092e78 0 0
0x55adba092e80 0 0
0x55adba092e88 0 0
0x55adba092e90 0 0
0x55adba092e98 3.5 8.4
0x55adba092ea0 0 0
关于c++ - 如何存储模板类型以供以后分配使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53685679/
我正在尝试编写一个相当多态的库。我遇到了一种更容易表现出来却很难说出来的情况。它看起来有点像这样: {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE
谁能解释一下这个表达式是如何工作的? type = type || 'any'; 这是否意味着如果类型未定义则使用“任意”? 最佳答案 如果 type 为“falsy”(即 false,或 undef
我有一个界面,在IAnimal.fs中, namespace Kingdom type IAnimal = abstract member Eat : Food -> unit 以及另一个成功
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
在 C# 中,default(Nullable) 之间有区别吗? (或 default(long?) )和 default(long) ? Long只是一个例子,它可以是任何其他struct类型。 最
假设我有一个案例类: case class Foo(num: Int, str: String, bool: Boolean) 现在我还有一个简单的包装器: sealed trait Wrapper[
这个问题在这里已经有了答案: Create C# delegate type with ref parameter at runtime (1 个回答) 关闭 2 年前。 为了即时创建委托(dele
我正在尝试获取图像的 dct。一开始我遇到了错误 The function/feature is not implemented (Odd-size DCT's are not implemented
我正在尝试使用 AFNetworking 的 AFPropertyListRequestOperation,但是当我尝试下载它时,出现错误 预期的内容类型{( “应用程序/x-plist” )}, 得
我在下面收到错误。我知道这段代码的意思,但我不知道界面应该是什么样子: Element implicitly has an 'any' type because index expression is
我尝试将 SignalType 从 ReactiveCocoa 扩展为自定义 ErrorType,代码如下所示 enum MyError: ErrorType { // .. cases }
我无法在任何其他问题中找到答案。假设我有一个抽象父类(super class) Abstract0,它有两个子类 Concrete1 和 Concrete1。我希望能够在 Abstract0 中定义类
我想知道为什么这个索引没有用在 RANGE 类型中,而是用在 INDEX 中: 索引: CREATE INDEX myindex ON orders(order_date); 查询: EXPLAIN
我正在使用 RxJava,现在我尝试通过提供 lambda 来订阅可观察对象: observableProvider.stringForKey(CURRENT_DELETED_ID) .sub
我已经尝试了几乎所有解决问题的方法,其中包括。为 提供类型使用app.use(express.static('public'))还有更多,但我似乎无法为此找到解决方案。 index.js : imp
以下哪个 CSS 选择器更快? input[type="submit"] { /* styles */ } 或 [type="submit"] { /* styles */ } 只是好
我不知道这个设置有什么问题,我在 IDEA 中获得了所有注释(@Controller、@Repository、@Service),它在行号左侧显示 bean,然后转到该 bean。 这是错误: 14-
我听从了建议 registering java function as a callback in C function并且可以使用“简单”类型(例如整数和字符串)进行回调,例如: jstring j
有一些 java 类,加载到 Oracle 数据库(版本 11g)和 pl/sql 函数包装器: create or replace function getDataFromJava( in_uLis
我已经从 David Walsh 的 css 动画回调中获取代码并将其修改为 TypeScript。但是,我收到一个错误,我不知道为什么: interface IBrowserPrefix { [
我是一名优秀的程序员,十分优秀!