36 lines
1.0 KiB
Swift
36 lines
1.0 KiB
Swift
//
|
|
// Components2.swift
|
|
//
|
|
//
|
|
// Created by Christian Treffs on 21.08.19.
|
|
//
|
|
|
|
public typealias Family2<A: Component, B: Component> = Family<Components2<A, B>>
|
|
|
|
public struct Components2<A, B>: ComponentsProviding where A: Component, B: Component {
|
|
public let componentTypes: [Component.Type]
|
|
|
|
public init(_ components: (A.Type, B.Type)) {
|
|
componentTypes = [ A.self, B.self]
|
|
}
|
|
public static func getComponents(nexus: Nexus, entityId: EntityIdentifier) -> (A, B) {
|
|
let compA: A = nexus.get(unsafeComponentFor: entityId)
|
|
let compB: B = nexus.get(unsafeComponentFor: entityId)
|
|
return (compA, compB)
|
|
}
|
|
}
|
|
|
|
extension Nexus {
|
|
public func family<A, B>(
|
|
requiresAll componentA: A.Type,
|
|
_ componentB: B.Type,
|
|
excludesAll excludedComponents: Component.Type...
|
|
) -> Family2<A, B> where A: Component, B: Component {
|
|
return Family2<A, B>(
|
|
nexus: self,
|
|
requiresAll: (componentA, componentB),
|
|
excludesAll: excludedComponents
|
|
)
|
|
}
|
|
}
|