mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 03:31:45 +08:00

* feat(platform-declarations): generate typings from iOS 13.0 SDK * fix(platform-declarations): typings generation script Delete Material Components typings from `tns-platform-declarations`, they are part of `tns-core-modules` package. * refactor(platform-declarations): workaround a TypeScript error Error: ``` tns-platform-declarations/ios/objc-x86_64/objc!OSLog.d.ts(178,15): error TS2417: Class static side 'typeof OSLogEnumerator' incorrectly extends base class static side 'typeof NSEnumerator'. Types of property 'alloc' are incompatible. Type '() => OSLogEnumerator' is not assignable to type '<ObjectType>() => NSEnumerator<ObjectType>'. Type 'OSLogEnumerator' is not assignable to type 'NSEnumerator<ObjectType>'. Types of property 'allObjects' are incompatible. Type 'NSArray<NSObject>' is not assignable to type 'NSArray<ObjectType>'. Type 'NSObject' is not assignable to type 'ObjectType'. 'NSObject' is assignable to the constraint of type 'ObjectType', but 'ObjectType' could be instantiated with a different subtype of constraint '{}'. ``` References: https://github.com/Microsoft/TypeScript/issues/17575 https://stackoverflow.com/questions/52518125/workaround-for-accessing-class-type-arguments-in-static-method-in-typescript * docs(platform-declarations): note a manual step on generating typings * chore(platform-declarations): exclude ios-typings-prj from transpilation * refactor(platform-declarations): delete references to MDC types ``` ios/objc-x86_64/objc!QuartzCore.d.ts:676:36 - error TS2304: Cannot find name 'MDCAnimationTimingFunction'. 676 static mdc_functionWithType(type: MDCAnimationTimingFunction): CAMediaTimingFunction; ios/objc-x86_64/objc!UIKit.d.ts:7717:54 - error TS2304: Cannot find name 'MDCFontTextStyle'. 7717 static mdc_preferredFontForMaterialTextStyle(style: MDCFontTextStyle): UIFont; ios/objc-x86_64/objc!UIKit.d.ts:7719:53 - error TS2304: Cannot find name 'MDCFontTextStyle'. 7719 static mdc_standardFontForMaterialTextStyle(style: MDCFontTextStyle): UIFont; ios/objc-x86_64/objc!UIKit.d.ts:7771:63 - error TS2304: Cannot find name 'MDCFontTextStyle'. 7771 mdc_fontSizedForMaterialTextStyleScaledForDynamicType(style: MDCFontTextStyle, scaled: boolean): UIFont; ios/objc-x86_64/objc!UIKit.d.ts:7794:64 - error TS2304: Cannot find name 'MDCFontTextStyle'. 7794 static mdc_preferredFontDescriptorForMaterialTextStyle(style: MDCFontTextStyle): UIFontDescriptor; ios/objc-x86_64/objc!UIKit.d.ts:7796:63 - error TS2304: Cannot find name 'MDCFontTextStyle'. 7796 static mdc_standardFontDescriptorForMaterialTextStyle(style: MDCFontTextStyle): UIFontDescriptor; ```
1600 lines
48 KiB
TypeScript
1600 lines
48 KiB
TypeScript
|
|
declare class GKARC4RandomSource extends GKRandomSource {
|
|
|
|
static alloc(): GKARC4RandomSource; // inherited from NSObject
|
|
|
|
static new(): GKARC4RandomSource; // inherited from NSObject
|
|
|
|
seed: NSData;
|
|
|
|
constructor(o: { seed: NSData; });
|
|
|
|
dropValuesWithCount(count: number): void;
|
|
|
|
initWithSeed(seed: NSData): this;
|
|
}
|
|
|
|
declare class GKAgent extends GKComponent implements NSSecureCoding {
|
|
|
|
static alloc(): GKAgent; // inherited from NSObject
|
|
|
|
static new(): GKAgent; // inherited from NSObject
|
|
|
|
behavior: GKBehavior;
|
|
|
|
delegate: GKAgentDelegate;
|
|
|
|
mass: number;
|
|
|
|
maxAcceleration: number;
|
|
|
|
maxSpeed: number;
|
|
|
|
radius: number;
|
|
|
|
speed: number;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
}
|
|
|
|
declare class GKAgent2D extends GKAgent implements NSSecureCoding {
|
|
|
|
static alloc(): GKAgent2D; // inherited from NSObject
|
|
|
|
static new(): GKAgent2D; // inherited from NSObject
|
|
|
|
position: interop.Reference<number>;
|
|
|
|
rotation: number;
|
|
|
|
readonly velocity: interop.Reference<number>;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
}
|
|
|
|
declare class GKAgent3D extends GKAgent {
|
|
|
|
static alloc(): GKAgent3D; // inherited from NSObject
|
|
|
|
static new(): GKAgent3D; // inherited from NSObject
|
|
|
|
position: interop.Reference<number>;
|
|
|
|
rightHanded: boolean;
|
|
|
|
rotation: simd_float3x3;
|
|
|
|
readonly velocity: interop.Reference<number>;
|
|
}
|
|
|
|
interface GKAgentDelegate extends NSObjectProtocol {
|
|
|
|
agentDidUpdate?(agent: GKAgent): void;
|
|
|
|
agentWillUpdate?(agent: GKAgent): void;
|
|
}
|
|
declare var GKAgentDelegate: {
|
|
|
|
prototype: GKAgentDelegate;
|
|
};
|
|
|
|
declare class GKBehavior extends NSObject implements NSCopying, NSFastEnumeration {
|
|
|
|
static alloc(): GKBehavior; // inherited from NSObject
|
|
|
|
static behaviorWithGoalWeight(goal: GKGoal, weight: number): GKBehavior;
|
|
|
|
static behaviorWithGoals(goals: NSArray<GKGoal> | GKGoal[]): GKBehavior;
|
|
|
|
static behaviorWithGoalsAndWeights(goals: NSArray<GKGoal> | GKGoal[], weights: NSArray<number> | number[]): GKBehavior;
|
|
|
|
static behaviorWithWeightedGoals(weightedGoals: NSDictionary<GKGoal, number>): GKBehavior;
|
|
|
|
static new(): GKBehavior; // inherited from NSObject
|
|
|
|
readonly goalCount: number;
|
|
[index: number]: GKGoal;
|
|
[Symbol.iterator](): Iterator<any>;
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
objectAtIndexedSubscript(idx: number): GKGoal;
|
|
|
|
objectForKeyedSubscript(goal: GKGoal): number;
|
|
|
|
removeAllGoals(): void;
|
|
|
|
removeGoal(goal: GKGoal): void;
|
|
|
|
setObjectForKeyedSubscript(weight: number, goal: GKGoal): void;
|
|
|
|
setWeightForGoal(weight: number, goal: GKGoal): void;
|
|
|
|
weightForGoal(goal: GKGoal): number;
|
|
}
|
|
|
|
declare class GKBillowNoiseSource extends GKCoherentNoiseSource {
|
|
|
|
static alloc(): GKBillowNoiseSource; // inherited from NSObject
|
|
|
|
static billowNoiseSourceWithFrequencyOctaveCountPersistenceLacunaritySeed(frequency: number, octaveCount: number, persistence: number, lacunarity: number, seed: number): GKBillowNoiseSource;
|
|
|
|
static new(): GKBillowNoiseSource; // inherited from NSObject
|
|
|
|
persistence: number;
|
|
|
|
constructor(o: { frequency: number; octaveCount: number; persistence: number; lacunarity: number; seed: number; });
|
|
|
|
initWithFrequencyOctaveCountPersistenceLacunaritySeed(frequency: number, octaveCount: number, persistence: number, lacunarity: number, seed: number): this;
|
|
}
|
|
|
|
interface GKBox {
|
|
boxMin: interop.Reference<number>;
|
|
boxMax: interop.Reference<number>;
|
|
}
|
|
declare var GKBox: interop.StructType<GKBox>;
|
|
|
|
declare class GKCheckerboardNoiseSource extends GKNoiseSource {
|
|
|
|
static alloc(): GKCheckerboardNoiseSource; // inherited from NSObject
|
|
|
|
static checkerboardNoiseWithSquareSize(squareSize: number): GKCheckerboardNoiseSource;
|
|
|
|
static new(): GKCheckerboardNoiseSource; // inherited from NSObject
|
|
|
|
squareSize: number;
|
|
|
|
constructor(o: { squareSize: number; });
|
|
|
|
initWithSquareSize(squareSize: number): this;
|
|
}
|
|
|
|
declare class GKCircleObstacle extends GKObstacle {
|
|
|
|
static alloc(): GKCircleObstacle; // inherited from NSObject
|
|
|
|
static new(): GKCircleObstacle; // inherited from NSObject
|
|
|
|
static obstacleWithRadius(radius: number): GKCircleObstacle;
|
|
|
|
position: interop.Reference<number>;
|
|
|
|
radius: number;
|
|
|
|
constructor(o: { radius: number; });
|
|
|
|
initWithRadius(radius: number): this;
|
|
}
|
|
|
|
declare class GKCoherentNoiseSource extends GKNoiseSource {
|
|
|
|
static alloc(): GKCoherentNoiseSource; // inherited from NSObject
|
|
|
|
static new(): GKCoherentNoiseSource; // inherited from NSObject
|
|
|
|
frequency: number;
|
|
|
|
lacunarity: number;
|
|
|
|
octaveCount: number;
|
|
|
|
seed: number;
|
|
}
|
|
|
|
declare class GKComponent extends NSObject implements NSCopying, NSSecureCoding {
|
|
|
|
static alloc(): GKComponent; // inherited from NSObject
|
|
|
|
static new(): GKComponent; // inherited from NSObject
|
|
|
|
readonly entity: GKEntity;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
didAddToEntity(): void;
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
|
|
updateWithDeltaTime(seconds: number): void;
|
|
|
|
willRemoveFromEntity(): void;
|
|
}
|
|
|
|
declare class GKComponentSystem<ComponentType> extends NSObject implements NSFastEnumeration {
|
|
|
|
static alloc<ComponentType>(): GKComponentSystem<ComponentType>; // inherited from NSObject
|
|
|
|
static new<ComponentType>(): GKComponentSystem<ComponentType>; // inherited from NSObject
|
|
|
|
readonly componentClass: typeof NSObject;
|
|
|
|
readonly components: NSArray<ComponentType>;
|
|
[index: number]: ComponentType;
|
|
[Symbol.iterator](): Iterator<any>;
|
|
|
|
constructor(o: { componentClass: typeof NSObject; });
|
|
|
|
addComponent(component: ComponentType): void;
|
|
|
|
addComponentWithEntity(entity: GKEntity): void;
|
|
|
|
classForGenericArgumentAtIndex(index: number): typeof NSObject;
|
|
|
|
initWithComponentClass(cls: typeof NSObject): this;
|
|
|
|
objectAtIndexedSubscript(idx: number): ComponentType;
|
|
|
|
removeComponent(component: ComponentType): void;
|
|
|
|
removeComponentWithEntity(entity: GKEntity): void;
|
|
|
|
updateWithDeltaTime(seconds: number): void;
|
|
}
|
|
|
|
declare class GKCompositeBehavior extends GKBehavior {
|
|
|
|
static alloc(): GKCompositeBehavior; // inherited from NSObject
|
|
|
|
static behaviorWithBehaviors(behaviors: NSArray<GKBehavior> | GKBehavior[]): GKCompositeBehavior;
|
|
|
|
static behaviorWithBehaviorsAndWeights(behaviors: NSArray<GKBehavior> | GKBehavior[], weights: NSArray<number> | number[]): GKCompositeBehavior;
|
|
|
|
static behaviorWithGoalWeight(goal: GKGoal, weight: number): GKCompositeBehavior; // inherited from GKBehavior
|
|
|
|
static behaviorWithGoals(goals: NSArray<GKGoal> | GKGoal[]): GKCompositeBehavior; // inherited from GKBehavior
|
|
|
|
static behaviorWithGoalsAndWeights(goals: NSArray<GKGoal> | GKGoal[], weights: NSArray<number> | number[]): GKCompositeBehavior; // inherited from GKBehavior
|
|
|
|
static behaviorWithWeightedGoals(weightedGoals: NSDictionary<GKGoal, number>): GKCompositeBehavior; // inherited from GKBehavior
|
|
|
|
static new(): GKCompositeBehavior; // inherited from NSObject
|
|
|
|
readonly behaviorCount: number;
|
|
[index: number]: GKBehavior;
|
|
|
|
objectAtIndexedSubscript(idx: number): GKBehavior;
|
|
|
|
objectForKeyedSubscript(behavior: GKBehavior): number;
|
|
|
|
removeAllBehaviors(): void;
|
|
|
|
removeBehavior(behavior: GKBehavior): void;
|
|
|
|
setObjectForKeyedSubscript(weight: number, behavior: GKBehavior): void;
|
|
|
|
setWeightForBehavior(weight: number, behavior: GKBehavior): void;
|
|
|
|
weightForBehavior(behavior: GKBehavior): number;
|
|
}
|
|
|
|
declare class GKConstantNoiseSource extends GKNoiseSource {
|
|
|
|
static alloc(): GKConstantNoiseSource; // inherited from NSObject
|
|
|
|
static constantNoiseWithValue(value: number): GKConstantNoiseSource;
|
|
|
|
static new(): GKConstantNoiseSource; // inherited from NSObject
|
|
|
|
value: number;
|
|
|
|
constructor(o: { value: number; });
|
|
|
|
initWithValue(value: number): this;
|
|
}
|
|
|
|
declare class GKCylindersNoiseSource extends GKNoiseSource {
|
|
|
|
static alloc(): GKCylindersNoiseSource; // inherited from NSObject
|
|
|
|
static cylindersNoiseWithFrequency(frequency: number): GKCylindersNoiseSource;
|
|
|
|
static new(): GKCylindersNoiseSource; // inherited from NSObject
|
|
|
|
frequency: number;
|
|
|
|
constructor(o: { frequency: number; });
|
|
|
|
initWithFrequency(frequency: number): this;
|
|
}
|
|
|
|
declare class GKDecisionNode extends NSObject {
|
|
|
|
static alloc(): GKDecisionNode; // inherited from NSObject
|
|
|
|
static new(): GKDecisionNode; // inherited from NSObject
|
|
|
|
createBranchWithPredicateAttribute(predicate: NSPredicate, attribute: NSObjectProtocol): this;
|
|
|
|
createBranchWithValueAttribute(value: number, attribute: NSObjectProtocol): this;
|
|
|
|
createBranchWithWeightAttribute(weight: number, attribute: NSObjectProtocol): this;
|
|
}
|
|
|
|
declare class GKDecisionTree extends NSObject implements NSSecureCoding {
|
|
|
|
static alloc(): GKDecisionTree; // inherited from NSObject
|
|
|
|
static new(): GKDecisionTree; // inherited from NSObject
|
|
|
|
randomSource: GKRandomSource;
|
|
|
|
readonly rootNode: GKDecisionNode;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { attribute: NSObjectProtocol; });
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
constructor(o: { examples: NSArray<NSArray<NSObjectProtocol>> | NSArray<NSObjectProtocol>[]; actions: NSArray<NSObjectProtocol> | NSObjectProtocol[]; attributes: NSArray<NSObjectProtocol> | NSObjectProtocol[]; });
|
|
|
|
constructor(o: { URL: NSURL; error: NSError; });
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
exportToURLError(url: NSURL, error: NSError): boolean;
|
|
|
|
findActionForAnswers(answers: NSDictionary<NSObjectProtocol, NSObjectProtocol>): NSObjectProtocol;
|
|
|
|
initWithAttribute(attribute: NSObjectProtocol): this;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
|
|
initWithExamplesActionsAttributes(examples: NSArray<NSArray<NSObjectProtocol>> | NSArray<NSObjectProtocol>[], actions: NSArray<NSObjectProtocol> | NSObjectProtocol[], attributes: NSArray<NSObjectProtocol> | NSObjectProtocol[]): this;
|
|
|
|
initWithURLError(url: NSURL, error: NSError): this;
|
|
}
|
|
|
|
declare class GKEntity extends NSObject implements NSCopying, NSSecureCoding {
|
|
|
|
static alloc(): GKEntity; // inherited from NSObject
|
|
|
|
static entity(): GKEntity;
|
|
|
|
static new(): GKEntity; // inherited from NSObject
|
|
|
|
readonly components: NSArray<GKComponent>;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
addComponent(component: GKComponent): void;
|
|
|
|
componentForClass(componentClass: typeof NSObject): GKComponent;
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
|
|
removeComponentForClass(componentClass: typeof NSObject): void;
|
|
|
|
updateWithDeltaTime(seconds: number): void;
|
|
}
|
|
|
|
interface GKGameModel extends NSCopying, NSObjectProtocol {
|
|
|
|
activePlayer: GKGameModelPlayer;
|
|
|
|
players: NSArray<GKGameModelPlayer>;
|
|
|
|
applyGameModelUpdate(gameModelUpdate: GKGameModelUpdate): void;
|
|
|
|
gameModelUpdatesForPlayer(player: GKGameModelPlayer): NSArray<GKGameModelUpdate>;
|
|
|
|
isLossForPlayer?(player: GKGameModelPlayer): boolean;
|
|
|
|
isWinForPlayer?(player: GKGameModelPlayer): boolean;
|
|
|
|
scoreForPlayer?(player: GKGameModelPlayer): number;
|
|
|
|
setGameModel(gameModel: GKGameModel): void;
|
|
|
|
unapplyGameModelUpdate?(gameModelUpdate: GKGameModelUpdate): void;
|
|
}
|
|
declare var GKGameModel: {
|
|
|
|
prototype: GKGameModel;
|
|
};
|
|
|
|
declare var GKGameModelMaxScore: number;
|
|
|
|
declare var GKGameModelMinScore: number;
|
|
|
|
interface GKGameModelPlayer extends NSObjectProtocol {
|
|
|
|
playerId: number;
|
|
}
|
|
declare var GKGameModelPlayer: {
|
|
|
|
prototype: GKGameModelPlayer;
|
|
};
|
|
|
|
interface GKGameModelUpdate extends NSObjectProtocol {
|
|
|
|
value: number;
|
|
}
|
|
declare var GKGameModelUpdate: {
|
|
|
|
prototype: GKGameModelUpdate;
|
|
};
|
|
|
|
declare class GKGaussianDistribution extends GKRandomDistribution {
|
|
|
|
static alloc(): GKGaussianDistribution; // inherited from NSObject
|
|
|
|
static d20(): GKGaussianDistribution; // inherited from GKRandomDistribution
|
|
|
|
static d6(): GKGaussianDistribution; // inherited from GKRandomDistribution
|
|
|
|
static distributionForDieWithSideCount(sideCount: number): GKGaussianDistribution; // inherited from GKRandomDistribution
|
|
|
|
static distributionWithLowestValueHighestValue(lowestInclusive: number, highestInclusive: number): GKGaussianDistribution; // inherited from GKRandomDistribution
|
|
|
|
static new(): GKGaussianDistribution; // inherited from NSObject
|
|
|
|
readonly deviation: number;
|
|
|
|
readonly mean: number;
|
|
|
|
constructor(o: { randomSource: GKRandom; mean: number; deviation: number; });
|
|
|
|
initWithRandomSourceMeanDeviation(source: GKRandom, mean: number, deviation: number): this;
|
|
}
|
|
|
|
declare class GKGoal extends NSObject implements NSCopying {
|
|
|
|
static alloc(): GKGoal; // inherited from NSObject
|
|
|
|
static goalToAlignWithAgentsMaxDistanceMaxAngle(agents: NSArray<GKAgent> | GKAgent[], maxDistance: number, maxAngle: number): GKGoal;
|
|
|
|
static goalToAvoidAgentsMaxPredictionTime(agents: NSArray<GKAgent> | GKAgent[], maxPredictionTime: number): GKGoal;
|
|
|
|
static goalToAvoidObstaclesMaxPredictionTime(obstacles: NSArray<GKObstacle> | GKObstacle[], maxPredictionTime: number): GKGoal;
|
|
|
|
static goalToCohereWithAgentsMaxDistanceMaxAngle(agents: NSArray<GKAgent> | GKAgent[], maxDistance: number, maxAngle: number): GKGoal;
|
|
|
|
static goalToFleeAgent(agent: GKAgent): GKGoal;
|
|
|
|
static goalToFollowPathMaxPredictionTimeForward(path: GKPath, maxPredictionTime: number, forward: boolean): GKGoal;
|
|
|
|
static goalToInterceptAgentMaxPredictionTime(target: GKAgent, maxPredictionTime: number): GKGoal;
|
|
|
|
static goalToReachTargetSpeed(targetSpeed: number): GKGoal;
|
|
|
|
static goalToSeekAgent(agent: GKAgent): GKGoal;
|
|
|
|
static goalToSeparateFromAgentsMaxDistanceMaxAngle(agents: NSArray<GKAgent> | GKAgent[], maxDistance: number, maxAngle: number): GKGoal;
|
|
|
|
static goalToStayOnPathMaxPredictionTime(path: GKPath, maxPredictionTime: number): GKGoal;
|
|
|
|
static goalToWander(speed: number): GKGoal;
|
|
|
|
static new(): GKGoal; // inherited from NSObject
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
}
|
|
|
|
declare class GKGraph extends NSObject implements NSCopying, NSSecureCoding {
|
|
|
|
static alloc(): GKGraph; // inherited from NSObject
|
|
|
|
static graphWithNodes(nodes: NSArray<GKGraphNode> | GKGraphNode[]): GKGraph;
|
|
|
|
static new(): GKGraph; // inherited from NSObject
|
|
|
|
readonly nodes: NSArray<GKGraphNode>;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
constructor(o: { nodes: NSArray<GKGraphNode> | GKGraphNode[]; });
|
|
|
|
addNodes(nodes: NSArray<GKGraphNode> | GKGraphNode[]): void;
|
|
|
|
connectNodeToLowestCostNodeBidirectional(node: GKGraphNode, bidirectional: boolean): void;
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
findPathFromNodeToNode(startNode: GKGraphNode, endNode: GKGraphNode): NSArray<GKGraphNode>;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
|
|
initWithNodes(nodes: NSArray<GKGraphNode> | GKGraphNode[]): this;
|
|
|
|
removeNodes(nodes: NSArray<GKGraphNode> | GKGraphNode[]): void;
|
|
}
|
|
|
|
declare class GKGraphNode extends NSObject implements NSSecureCoding {
|
|
|
|
static alloc(): GKGraphNode; // inherited from NSObject
|
|
|
|
static new(): GKGraphNode; // inherited from NSObject
|
|
|
|
readonly connectedNodes: NSArray<GKGraphNode>;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
addConnectionsToNodesBidirectional(nodes: NSArray<GKGraphNode> | GKGraphNode[], bidirectional: boolean): void;
|
|
|
|
costToNode(node: GKGraphNode): number;
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
estimatedCostToNode(node: GKGraphNode): number;
|
|
|
|
findPathFromNode(startNode: GKGraphNode): NSArray<GKGraphNode>;
|
|
|
|
findPathToNode(goalNode: GKGraphNode): NSArray<GKGraphNode>;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
|
|
removeConnectionsToNodesBidirectional(nodes: NSArray<GKGraphNode> | GKGraphNode[], bidirectional: boolean): void;
|
|
}
|
|
|
|
declare class GKGraphNode2D extends GKGraphNode {
|
|
|
|
static alloc(): GKGraphNode2D; // inherited from NSObject
|
|
|
|
static new(): GKGraphNode2D; // inherited from NSObject
|
|
|
|
static nodeWithPoint(point: interop.Reference<number>): GKGraphNode2D;
|
|
|
|
position: interop.Reference<number>;
|
|
|
|
constructor(o: { point: interop.Reference<number>; });
|
|
|
|
initWithPoint(point: interop.Reference<number>): this;
|
|
}
|
|
|
|
declare class GKGraphNode3D extends GKGraphNode {
|
|
|
|
static alloc(): GKGraphNode3D; // inherited from NSObject
|
|
|
|
static new(): GKGraphNode3D; // inherited from NSObject
|
|
|
|
static nodeWithPoint(point: interop.Reference<number>): GKGraphNode3D;
|
|
|
|
position: interop.Reference<number>;
|
|
|
|
constructor(o: { point: interop.Reference<number>; });
|
|
|
|
initWithPoint(point: interop.Reference<number>): this;
|
|
}
|
|
|
|
declare class GKGridGraph<NodeType> extends GKGraph {
|
|
|
|
static alloc<NodeType>(): GKGridGraph<NodeType>; // inherited from NSObject
|
|
|
|
static graphFromGridStartingAtWidthHeightDiagonalsAllowed<NodeType>(position: interop.Reference<number>, width: number, height: number, diagonalsAllowed: boolean): GKGridGraph<NodeType>;
|
|
|
|
static graphFromGridStartingAtWidthHeightDiagonalsAllowedNodeClass<NodeType>(position: interop.Reference<number>, width: number, height: number, diagonalsAllowed: boolean, nodeClass: typeof NSObject): GKGridGraph<NodeType>;
|
|
|
|
static graphWithNodes<NodeType>(nodes: NSArray<GKGraphNode> | GKGraphNode[]): GKGridGraph<NodeType>; // inherited from GKGraph
|
|
|
|
static new<NodeType>(): GKGridGraph<NodeType>; // inherited from NSObject
|
|
|
|
readonly diagonalsAllowed: boolean;
|
|
|
|
readonly gridHeight: number;
|
|
|
|
readonly gridOrigin: interop.Reference<number>;
|
|
|
|
readonly gridWidth: number;
|
|
|
|
constructor(o: { fromGridStartingAt: interop.Reference<number>; width: number; height: number; diagonalsAllowed: boolean; });
|
|
|
|
constructor(o: { fromGridStartingAt: interop.Reference<number>; width: number; height: number; diagonalsAllowed: boolean; nodeClass: typeof NSObject; });
|
|
|
|
classForGenericArgumentAtIndex(index: number): typeof NSObject;
|
|
|
|
connectNodeToAdjacentNodes(node: GKGridGraphNode): void;
|
|
|
|
initFromGridStartingAtWidthHeightDiagonalsAllowed(position: interop.Reference<number>, width: number, height: number, diagonalsAllowed: boolean): this;
|
|
|
|
initFromGridStartingAtWidthHeightDiagonalsAllowedNodeClass(position: interop.Reference<number>, width: number, height: number, diagonalsAllowed: boolean, nodeClass: typeof NSObject): this;
|
|
|
|
nodeAtGridPosition(position: interop.Reference<number>): NodeType;
|
|
}
|
|
|
|
declare class GKGridGraphNode extends GKGraphNode {
|
|
|
|
static alloc(): GKGridGraphNode; // inherited from NSObject
|
|
|
|
static new(): GKGridGraphNode; // inherited from NSObject
|
|
|
|
static nodeWithGridPosition(gridPosition: interop.Reference<number>): GKGridGraphNode;
|
|
|
|
readonly gridPosition: interop.Reference<number>;
|
|
|
|
constructor(o: { gridPosition: interop.Reference<number>; });
|
|
|
|
initWithGridPosition(gridPosition: interop.Reference<number>): this;
|
|
}
|
|
|
|
declare class GKLinearCongruentialRandomSource extends GKRandomSource {
|
|
|
|
static alloc(): GKLinearCongruentialRandomSource; // inherited from NSObject
|
|
|
|
static new(): GKLinearCongruentialRandomSource; // inherited from NSObject
|
|
|
|
seed: number;
|
|
|
|
constructor(o: { seed: number; });
|
|
|
|
initWithSeed(seed: number): this;
|
|
}
|
|
|
|
declare class GKMersenneTwisterRandomSource extends GKRandomSource {
|
|
|
|
static alloc(): GKMersenneTwisterRandomSource; // inherited from NSObject
|
|
|
|
static new(): GKMersenneTwisterRandomSource; // inherited from NSObject
|
|
|
|
seed: number;
|
|
|
|
constructor(o: { seed: number; });
|
|
|
|
initWithSeed(seed: number): this;
|
|
}
|
|
|
|
declare class GKMeshGraph<NodeType> extends GKGraph {
|
|
|
|
static alloc<NodeType>(): GKMeshGraph<NodeType>; // inherited from NSObject
|
|
|
|
static graphWithBufferRadiusMinCoordinateMaxCoordinate<NodeType>(bufferRadius: number, min: interop.Reference<number>, max: interop.Reference<number>): GKMeshGraph<NodeType>;
|
|
|
|
static graphWithBufferRadiusMinCoordinateMaxCoordinateNodeClass<NodeType>(bufferRadius: number, min: interop.Reference<number>, max: interop.Reference<number>, nodeClass: typeof NSObject): GKMeshGraph<NodeType>;
|
|
|
|
static graphWithNodes<NodeType>(nodes: NSArray<GKGraphNode> | GKGraphNode[]): GKMeshGraph<NodeType>; // inherited from GKGraph
|
|
|
|
static new<NodeType>(): GKMeshGraph<NodeType>; // inherited from NSObject
|
|
|
|
readonly bufferRadius: number;
|
|
|
|
readonly obstacles: NSArray<GKPolygonObstacle>;
|
|
|
|
readonly triangleCount: number;
|
|
|
|
triangulationMode: GKMeshGraphTriangulationMode;
|
|
|
|
constructor(o: { bufferRadius: number; minCoordinate: interop.Reference<number>; maxCoordinate: interop.Reference<number>; });
|
|
|
|
constructor(o: { bufferRadius: number; minCoordinate: interop.Reference<number>; maxCoordinate: interop.Reference<number>; nodeClass: typeof NSObject; });
|
|
|
|
addObstacles(obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[]): void;
|
|
|
|
classForGenericArgumentAtIndex(index: number): typeof NSObject;
|
|
|
|
connectNodeUsingObstacles(node: NodeType): void;
|
|
|
|
initWithBufferRadiusMinCoordinateMaxCoordinate(bufferRadius: number, min: interop.Reference<number>, max: interop.Reference<number>): this;
|
|
|
|
initWithBufferRadiusMinCoordinateMaxCoordinateNodeClass(bufferRadius: number, min: interop.Reference<number>, max: interop.Reference<number>, nodeClass: typeof NSObject): this;
|
|
|
|
removeObstacles(obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[]): void;
|
|
|
|
triangleAtIndex(index: number): GKTriangle;
|
|
|
|
triangulate(): void;
|
|
}
|
|
|
|
declare const enum GKMeshGraphTriangulationMode {
|
|
|
|
Vertices = 1,
|
|
|
|
Centers = 2,
|
|
|
|
EdgeMidpoints = 4
|
|
}
|
|
|
|
declare class GKMinmaxStrategist extends NSObject implements GKStrategist {
|
|
|
|
static alloc(): GKMinmaxStrategist; // inherited from NSObject
|
|
|
|
static new(): GKMinmaxStrategist; // inherited from NSObject
|
|
|
|
maxLookAheadDepth: number;
|
|
|
|
readonly debugDescription: string; // inherited from NSObjectProtocol
|
|
|
|
readonly description: string; // inherited from NSObjectProtocol
|
|
|
|
gameModel: GKGameModel; // inherited from GKStrategist
|
|
|
|
readonly hash: number; // inherited from NSObjectProtocol
|
|
|
|
readonly isProxy: boolean; // inherited from NSObjectProtocol
|
|
|
|
randomSource: GKRandom; // inherited from GKStrategist
|
|
|
|
readonly superclass: typeof NSObject; // inherited from NSObjectProtocol
|
|
|
|
readonly // inherited from NSObjectProtocol
|
|
|
|
bestMoveForActivePlayer(): GKGameModelUpdate;
|
|
|
|
bestMoveForPlayer(player: GKGameModelPlayer): GKGameModelUpdate;
|
|
|
|
class(): typeof NSObject;
|
|
|
|
conformsToProtocol(aProtocol: any /* Protocol */): boolean;
|
|
|
|
isEqual(object: any): boolean;
|
|
|
|
isKindOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
isMemberOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
performSelector(aSelector: string): any;
|
|
|
|
performSelectorWithObject(aSelector: string, object: any): any;
|
|
|
|
performSelectorWithObjectWithObject(aSelector: string, object1: any, object2: any): any;
|
|
|
|
randomMoveForPlayerFromNumberOfBestMoves(player: GKGameModelPlayer, numMovesToConsider: number): GKGameModelUpdate;
|
|
|
|
respondsToSelector(aSelector: string): boolean;
|
|
|
|
retainCount(): number;
|
|
|
|
self(): this;
|
|
}
|
|
|
|
declare class GKMonteCarloStrategist extends NSObject implements GKStrategist {
|
|
|
|
static alloc(): GKMonteCarloStrategist; // inherited from NSObject
|
|
|
|
static new(): GKMonteCarloStrategist; // inherited from NSObject
|
|
|
|
budget: number;
|
|
|
|
explorationParameter: number;
|
|
|
|
readonly debugDescription: string; // inherited from NSObjectProtocol
|
|
|
|
readonly description: string; // inherited from NSObjectProtocol
|
|
|
|
gameModel: GKGameModel; // inherited from GKStrategist
|
|
|
|
readonly hash: number; // inherited from NSObjectProtocol
|
|
|
|
readonly isProxy: boolean; // inherited from NSObjectProtocol
|
|
|
|
randomSource: GKRandom; // inherited from GKStrategist
|
|
|
|
readonly superclass: typeof NSObject; // inherited from NSObjectProtocol
|
|
|
|
readonly // inherited from NSObjectProtocol
|
|
|
|
bestMoveForActivePlayer(): GKGameModelUpdate;
|
|
|
|
class(): typeof NSObject;
|
|
|
|
conformsToProtocol(aProtocol: any /* Protocol */): boolean;
|
|
|
|
isEqual(object: any): boolean;
|
|
|
|
isKindOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
isMemberOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
performSelector(aSelector: string): any;
|
|
|
|
performSelectorWithObject(aSelector: string, object: any): any;
|
|
|
|
performSelectorWithObjectWithObject(aSelector: string, object1: any, object2: any): any;
|
|
|
|
respondsToSelector(aSelector: string): boolean;
|
|
|
|
retainCount(): number;
|
|
|
|
self(): this;
|
|
}
|
|
|
|
declare class GKNSPredicateRule extends GKRule {
|
|
|
|
static alloc(): GKNSPredicateRule; // inherited from NSObject
|
|
|
|
static new(): GKNSPredicateRule; // inherited from NSObject
|
|
|
|
static ruleWithBlockPredicateAction(predicate: (p1: GKRuleSystem) => boolean, action: (p1: GKRuleSystem) => void): GKNSPredicateRule; // inherited from GKRule
|
|
|
|
static ruleWithPredicateAssertingFactGrade(predicate: NSPredicate, fact: NSObjectProtocol, grade: number): GKNSPredicateRule; // inherited from GKRule
|
|
|
|
static ruleWithPredicateRetractingFactGrade(predicate: NSPredicate, fact: NSObjectProtocol, grade: number): GKNSPredicateRule; // inherited from GKRule
|
|
|
|
readonly predicate: NSPredicate;
|
|
|
|
constructor(o: { predicate: NSPredicate; });
|
|
|
|
initWithPredicate(predicate: NSPredicate): this;
|
|
}
|
|
|
|
declare class GKNoise extends NSObject {
|
|
|
|
static alloc(): GKNoise; // inherited from NSObject
|
|
|
|
static new(): GKNoise; // inherited from NSObject
|
|
|
|
static noiseWithComponentNoisesSelectionNoise(noises: NSArray<GKNoise> | GKNoise[], selectionNoise: GKNoise): GKNoise;
|
|
|
|
static noiseWithComponentNoisesSelectionNoiseComponentBoundariesBoundaryBlendDistances(noises: NSArray<GKNoise> | GKNoise[], selectionNoise: GKNoise, componentBoundaries: NSArray<number> | number[], blendDistances: NSArray<number> | number[]): GKNoise;
|
|
|
|
static noiseWithNoiseSource(noiseSource: GKNoiseSource): GKNoise;
|
|
|
|
static noiseWithNoiseSourceGradientColors(noiseSource: GKNoiseSource, gradientColors: NSDictionary<number, UIColor>): GKNoise;
|
|
|
|
gradientColors: NSDictionary<number, UIColor>;
|
|
|
|
constructor(o: { noiseSource: GKNoiseSource; });
|
|
|
|
constructor(o: { noiseSource: GKNoiseSource; gradientColors: NSDictionary<number, UIColor>; });
|
|
|
|
addWithNoise(noise: GKNoise): void;
|
|
|
|
applyAbsoluteValue(): void;
|
|
|
|
applyTurbulenceWithFrequencyPowerRoughnessSeed(frequency: number, power: number, roughness: number, seed: number): void;
|
|
|
|
clampWithLowerBoundUpperBound(lowerBound: number, upperBound: number): void;
|
|
|
|
displaceXWithNoiseYWithNoiseZWithNoise(xDisplacementNoise: GKNoise, yDisplacementNoise: GKNoise, zDisplacementNoise: GKNoise): void;
|
|
|
|
initWithNoiseSource(noiseSource: GKNoiseSource): this;
|
|
|
|
initWithNoiseSourceGradientColors(noiseSource: GKNoiseSource, gradientColors: NSDictionary<number, UIColor>): this;
|
|
|
|
invert(): void;
|
|
|
|
maximumWithNoise(noise: GKNoise): void;
|
|
|
|
minimumWithNoise(noise: GKNoise): void;
|
|
|
|
moveBy(delta: interop.Reference<number>): void;
|
|
|
|
multiplyWithNoise(noise: GKNoise): void;
|
|
|
|
raiseToPower(power: number): void;
|
|
|
|
raiseToPowerWithNoise(noise: GKNoise): void;
|
|
|
|
remapValuesToCurveWithControlPoints(controlPoints: NSDictionary<number, number>): void;
|
|
|
|
remapValuesToTerracesWithPeaksTerracesInverted(peakInputValues: NSArray<number> | number[], inverted: boolean): void;
|
|
|
|
rotateBy(radians: interop.Reference<number>): void;
|
|
|
|
scaleBy(factor: interop.Reference<number>): void;
|
|
|
|
valueAtPosition(position: interop.Reference<number>): number;
|
|
}
|
|
|
|
declare class GKNoiseMap extends NSObject {
|
|
|
|
static alloc(): GKNoiseMap; // inherited from NSObject
|
|
|
|
static new(): GKNoiseMap; // inherited from NSObject
|
|
|
|
static noiseMapWithNoise(noise: GKNoise): GKNoiseMap;
|
|
|
|
static noiseMapWithNoiseSizeOriginSampleCountSeamless(noise: GKNoise, size: interop.Reference<number>, origin: interop.Reference<number>, sampleCount: interop.Reference<number>, seamless: boolean): GKNoiseMap;
|
|
|
|
readonly origin: interop.Reference<number>;
|
|
|
|
readonly sampleCount: interop.Reference<number>;
|
|
|
|
readonly seamless: boolean;
|
|
|
|
readonly size: interop.Reference<number>;
|
|
|
|
constructor(o: { noise: GKNoise; });
|
|
|
|
constructor(o: { noise: GKNoise; size: interop.Reference<number>; origin: interop.Reference<number>; sampleCount: interop.Reference<number>; seamless: boolean; });
|
|
|
|
initWithNoise(noise: GKNoise): this;
|
|
|
|
initWithNoiseSizeOriginSampleCountSeamless(noise: GKNoise, size: interop.Reference<number>, origin: interop.Reference<number>, sampleCount: interop.Reference<number>, seamless: boolean): this;
|
|
|
|
interpolatedValueAtPosition(position: interop.Reference<number>): number;
|
|
|
|
setValueAtPosition(value: number, position: interop.Reference<number>): void;
|
|
|
|
valueAtPosition(position: interop.Reference<number>): number;
|
|
}
|
|
|
|
declare class GKNoiseSource extends NSObject {
|
|
|
|
static alloc(): GKNoiseSource; // inherited from NSObject
|
|
|
|
static new(): GKNoiseSource; // inherited from NSObject
|
|
}
|
|
|
|
declare class GKObstacle extends NSObject {
|
|
|
|
static alloc(): GKObstacle; // inherited from NSObject
|
|
|
|
static new(): GKObstacle; // inherited from NSObject
|
|
}
|
|
|
|
declare class GKObstacleGraph<NodeType> extends GKGraph {
|
|
|
|
static alloc<NodeType>(): GKObstacleGraph<NodeType>; // inherited from NSObject
|
|
|
|
static graphWithNodes<NodeType>(nodes: NSArray<GKGraphNode> | GKGraphNode[]): GKObstacleGraph<NodeType>; // inherited from GKGraph
|
|
|
|
static graphWithObstaclesBufferRadius<NodeType>(obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[], bufferRadius: number): GKObstacleGraph<NodeType>;
|
|
|
|
static graphWithObstaclesBufferRadiusNodeClass<NodeType>(obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[], bufferRadius: number, nodeClass: typeof NSObject): GKObstacleGraph<NodeType>;
|
|
|
|
static new<NodeType>(): GKObstacleGraph<NodeType>; // inherited from NSObject
|
|
|
|
readonly bufferRadius: number;
|
|
|
|
readonly obstacles: NSArray<GKPolygonObstacle>;
|
|
|
|
constructor(o: { obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[]; bufferRadius: number; });
|
|
|
|
constructor(o: { obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[]; bufferRadius: number; nodeClass: typeof NSObject; });
|
|
|
|
addObstacles(obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[]): void;
|
|
|
|
classForGenericArgumentAtIndex(index: number): typeof NSObject;
|
|
|
|
connectNodeUsingObstacles(node: NodeType): void;
|
|
|
|
connectNodeUsingObstaclesIgnoringBufferRadiusOfObstacles(node: NodeType, obstaclesBufferRadiusToIgnore: NSArray<GKPolygonObstacle> | GKPolygonObstacle[]): void;
|
|
|
|
connectNodeUsingObstaclesIgnoringObstacles(node: NodeType, obstaclesToIgnore: NSArray<GKPolygonObstacle> | GKPolygonObstacle[]): void;
|
|
|
|
initWithObstaclesBufferRadius(obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[], bufferRadius: number): this;
|
|
|
|
initWithObstaclesBufferRadiusNodeClass(obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[], bufferRadius: number, nodeClass: typeof NSObject): this;
|
|
|
|
isConnectionLockedFromNodeToNode(startNode: NodeType, endNode: NodeType): boolean;
|
|
|
|
lockConnectionFromNodeToNode(startNode: NodeType, endNode: NodeType): void;
|
|
|
|
nodesForObstacle(obstacle: GKPolygonObstacle): NSArray<NodeType>;
|
|
|
|
removeAllObstacles(): void;
|
|
|
|
removeObstacles(obstacles: NSArray<GKPolygonObstacle> | GKPolygonObstacle[]): void;
|
|
|
|
unlockConnectionFromNodeToNode(startNode: NodeType, endNode: NodeType): void;
|
|
}
|
|
|
|
declare class GKOctree<ElementType> extends NSObject {
|
|
|
|
static alloc<ElementType>(): GKOctree<ElementType>; // inherited from NSObject
|
|
|
|
static new<ElementType>(): GKOctree<ElementType>; // inherited from NSObject
|
|
|
|
static octreeWithBoundingBoxMinimumCellSize<ElementType>(box: GKBox, minCellSize: number): GKOctree<ElementType>;
|
|
|
|
constructor(o: { boundingBox: GKBox; minimumCellSize: number; });
|
|
|
|
addElementWithBox(element: ElementType, box: GKBox): GKOctreeNode;
|
|
|
|
addElementWithPoint(element: ElementType, point: interop.Reference<number>): GKOctreeNode;
|
|
|
|
elementsAtPoint(point: interop.Reference<number>): NSArray<ElementType>;
|
|
|
|
elementsInBox(box: GKBox): NSArray<ElementType>;
|
|
|
|
initWithBoundingBoxMinimumCellSize(box: GKBox, minCellSize: number): this;
|
|
|
|
removeElement(element: ElementType): boolean;
|
|
|
|
removeElementWithNode(element: ElementType, node: GKOctreeNode): boolean;
|
|
}
|
|
|
|
declare class GKOctreeNode extends NSObject {
|
|
|
|
static alloc(): GKOctreeNode; // inherited from NSObject
|
|
|
|
static new(): GKOctreeNode; // inherited from NSObject
|
|
|
|
readonly box: GKBox;
|
|
}
|
|
|
|
declare class GKPath extends NSObject {
|
|
|
|
static alloc(): GKPath; // inherited from NSObject
|
|
|
|
static new(): GKPath; // inherited from NSObject
|
|
|
|
static pathWithFloat3PointsCountRadiusCyclical(points: interop.Pointer | interop.Reference<interop.Reference<number>>, count: number, radius: number, cyclical: boolean): GKPath;
|
|
|
|
static pathWithGraphNodesRadius(graphNodes: NSArray<GKGraphNode> | GKGraphNode[], radius: number): GKPath;
|
|
|
|
static pathWithPointsCountRadiusCyclical(points: interop.Pointer | interop.Reference<interop.Reference<number>>, count: number, radius: number, cyclical: boolean): GKPath;
|
|
|
|
cyclical: boolean;
|
|
|
|
readonly numPoints: number;
|
|
|
|
radius: number;
|
|
|
|
constructor(o: { float3Points: interop.Pointer | interop.Reference<interop.Reference<number>>; count: number; radius: number; cyclical: boolean; });
|
|
|
|
constructor(o: { graphNodes: NSArray<GKGraphNode> | GKGraphNode[]; radius: number; });
|
|
|
|
constructor(o: { points: interop.Pointer | interop.Reference<interop.Reference<number>>; count: number; radius: number; cyclical: boolean; });
|
|
|
|
float2AtIndex(index: number): interop.Reference<number>;
|
|
|
|
float3AtIndex(index: number): interop.Reference<number>;
|
|
|
|
initWithFloat3PointsCountRadiusCyclical(points: interop.Pointer | interop.Reference<interop.Reference<number>>, count: number, radius: number, cyclical: boolean): this;
|
|
|
|
initWithGraphNodesRadius(graphNodes: NSArray<GKGraphNode> | GKGraphNode[], radius: number): this;
|
|
|
|
initWithPointsCountRadiusCyclical(points: interop.Pointer | interop.Reference<interop.Reference<number>>, count: number, radius: number, cyclical: boolean): this;
|
|
|
|
pointAtIndex(index: number): interop.Reference<number>;
|
|
}
|
|
|
|
declare class GKPerlinNoiseSource extends GKCoherentNoiseSource {
|
|
|
|
static alloc(): GKPerlinNoiseSource; // inherited from NSObject
|
|
|
|
static new(): GKPerlinNoiseSource; // inherited from NSObject
|
|
|
|
static perlinNoiseSourceWithFrequencyOctaveCountPersistenceLacunaritySeed(frequency: number, octaveCount: number, persistence: number, lacunarity: number, seed: number): GKPerlinNoiseSource;
|
|
|
|
persistence: number;
|
|
|
|
constructor(o: { frequency: number; octaveCount: number; persistence: number; lacunarity: number; seed: number; });
|
|
|
|
initWithFrequencyOctaveCountPersistenceLacunaritySeed(frequency: number, octaveCount: number, persistence: number, lacunarity: number, seed: number): this;
|
|
}
|
|
|
|
declare class GKPolygonObstacle extends GKObstacle implements NSSecureCoding {
|
|
|
|
static alloc(): GKPolygonObstacle; // inherited from NSObject
|
|
|
|
static new(): GKPolygonObstacle; // inherited from NSObject
|
|
|
|
static obstacleWithPointsCount(points: interop.Pointer | interop.Reference<interop.Reference<number>>, numPoints: number): GKPolygonObstacle;
|
|
|
|
readonly vertexCount: number;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
constructor(o: { points: interop.Pointer | interop.Reference<interop.Reference<number>>; count: number; });
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
|
|
initWithPointsCount(points: interop.Pointer | interop.Reference<interop.Reference<number>>, numPoints: number): this;
|
|
|
|
vertexAtIndex(index: number): interop.Reference<number>;
|
|
}
|
|
|
|
interface GKQuad {
|
|
quadMin: interop.Reference<number>;
|
|
quadMax: interop.Reference<number>;
|
|
}
|
|
declare var GKQuad: interop.StructType<GKQuad>;
|
|
|
|
declare class GKQuadtree<ElementType> extends NSObject {
|
|
|
|
static alloc<ElementType>(): GKQuadtree<ElementType>; // inherited from NSObject
|
|
|
|
static new<ElementType>(): GKQuadtree<ElementType>; // inherited from NSObject
|
|
|
|
static quadtreeWithBoundingQuadMinimumCellSize<ElementType>(quad: GKQuad, minCellSize: number): GKQuadtree<ElementType>;
|
|
|
|
constructor(o: { boundingQuad: GKQuad; minimumCellSize: number; });
|
|
|
|
addElementWithPoint(element: ElementType, point: interop.Reference<number>): GKQuadtreeNode;
|
|
|
|
addElementWithQuad(element: ElementType, quad: GKQuad): GKQuadtreeNode;
|
|
|
|
elementsAtPoint(point: interop.Reference<number>): NSArray<ElementType>;
|
|
|
|
elementsInQuad(quad: GKQuad): NSArray<ElementType>;
|
|
|
|
initWithBoundingQuadMinimumCellSize(quad: GKQuad, minCellSize: number): this;
|
|
|
|
removeElement(element: ElementType): boolean;
|
|
|
|
removeElementWithNode(data: ElementType, node: GKQuadtreeNode): boolean;
|
|
}
|
|
|
|
declare class GKQuadtreeNode extends NSObject {
|
|
|
|
static alloc(): GKQuadtreeNode; // inherited from NSObject
|
|
|
|
static new(): GKQuadtreeNode; // inherited from NSObject
|
|
|
|
readonly quad: GKQuad;
|
|
}
|
|
|
|
declare class GKRTree<ElementType> extends NSObject {
|
|
|
|
static alloc<ElementType>(): GKRTree<ElementType>; // inherited from NSObject
|
|
|
|
static new<ElementType>(): GKRTree<ElementType>; // inherited from NSObject
|
|
|
|
static treeWithMaxNumberOfChildren<ElementType>(maxNumberOfChildren: number): GKRTree<ElementType>;
|
|
|
|
queryReserve: number;
|
|
|
|
constructor(o: { maxNumberOfChildren: number; });
|
|
|
|
addElementBoundingRectMinBoundingRectMaxSplitStrategy(element: ElementType, boundingRectMin: interop.Reference<number>, boundingRectMax: interop.Reference<number>, splitStrategy: GKRTreeSplitStrategy): void;
|
|
|
|
elementsInBoundingRectMinRectMax(rectMin: interop.Reference<number>, rectMax: interop.Reference<number>): NSArray<ElementType>;
|
|
|
|
initWithMaxNumberOfChildren(maxNumberOfChildren: number): this;
|
|
|
|
removeElementBoundingRectMinBoundingRectMax(element: ElementType, boundingRectMin: interop.Reference<number>, boundingRectMax: interop.Reference<number>): void;
|
|
}
|
|
|
|
declare const enum GKRTreeSplitStrategy {
|
|
|
|
Halve = 0,
|
|
|
|
Linear = 1,
|
|
|
|
Quadratic = 2,
|
|
|
|
ReduceOverlap = 3
|
|
}
|
|
|
|
interface GKRandom {
|
|
|
|
nextBool(): boolean;
|
|
|
|
nextInt(): number;
|
|
|
|
nextIntWithUpperBound(upperBound: number): number;
|
|
|
|
nextUniform(): number;
|
|
}
|
|
declare var GKRandom: {
|
|
|
|
prototype: GKRandom;
|
|
};
|
|
|
|
declare class GKRandomDistribution extends NSObject implements GKRandom {
|
|
|
|
static alloc(): GKRandomDistribution; // inherited from NSObject
|
|
|
|
static d20(): GKRandomDistribution;
|
|
|
|
static d6(): GKRandomDistribution;
|
|
|
|
static distributionForDieWithSideCount(sideCount: number): GKRandomDistribution;
|
|
|
|
static distributionWithLowestValueHighestValue(lowestInclusive: number, highestInclusive: number): GKRandomDistribution;
|
|
|
|
static new(): GKRandomDistribution; // inherited from NSObject
|
|
|
|
readonly highestValue: number;
|
|
|
|
readonly lowestValue: number;
|
|
|
|
readonly numberOfPossibleOutcomes: number;
|
|
|
|
constructor(o: { randomSource: GKRandom; lowestValue: number; highestValue: number; });
|
|
|
|
initWithRandomSourceLowestValueHighestValue(source: GKRandom, lowestInclusive: number, highestInclusive: number): this;
|
|
|
|
nextBool(): boolean;
|
|
|
|
nextInt(): number;
|
|
|
|
nextIntWithUpperBound(upperBound: number): number;
|
|
|
|
nextUniform(): number;
|
|
}
|
|
|
|
declare class GKRandomSource extends NSObject implements GKRandom, NSCopying, NSSecureCoding {
|
|
|
|
static alloc(): GKRandomSource; // inherited from NSObject
|
|
|
|
static new(): GKRandomSource; // inherited from NSObject
|
|
|
|
static sharedRandom(): GKRandomSource;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
arrayByShufflingObjectsInArray(array: NSArray<any> | any[]): NSArray<any>;
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
|
|
nextBool(): boolean;
|
|
|
|
nextInt(): number;
|
|
|
|
nextIntWithUpperBound(upperBound: number): number;
|
|
|
|
nextUniform(): number;
|
|
}
|
|
|
|
declare class GKRidgedNoiseSource extends GKCoherentNoiseSource {
|
|
|
|
static alloc(): GKRidgedNoiseSource; // inherited from NSObject
|
|
|
|
static new(): GKRidgedNoiseSource; // inherited from NSObject
|
|
|
|
static ridgedNoiseSourceWithFrequencyOctaveCountLacunaritySeed(frequency: number, octaveCount: number, lacunarity: number, seed: number): GKRidgedNoiseSource;
|
|
|
|
constructor(o: { frequency: number; octaveCount: number; lacunarity: number; seed: number; });
|
|
|
|
initWithFrequencyOctaveCountLacunaritySeed(frequency: number, octaveCount: number, lacunarity: number, seed: number): this;
|
|
}
|
|
|
|
declare class GKRule extends NSObject {
|
|
|
|
static alloc(): GKRule; // inherited from NSObject
|
|
|
|
static new(): GKRule; // inherited from NSObject
|
|
|
|
static ruleWithBlockPredicateAction(predicate: (p1: GKRuleSystem) => boolean, action: (p1: GKRuleSystem) => void): GKRule;
|
|
|
|
static ruleWithPredicateAssertingFactGrade(predicate: NSPredicate, fact: NSObjectProtocol, grade: number): GKRule;
|
|
|
|
static ruleWithPredicateRetractingFactGrade(predicate: NSPredicate, fact: NSObjectProtocol, grade: number): GKRule;
|
|
|
|
salience: number;
|
|
|
|
evaluatePredicateWithSystem(system: GKRuleSystem): boolean;
|
|
|
|
performActionWithSystem(system: GKRuleSystem): void;
|
|
}
|
|
|
|
declare class GKRuleSystem extends NSObject {
|
|
|
|
static alloc(): GKRuleSystem; // inherited from NSObject
|
|
|
|
static new(): GKRuleSystem; // inherited from NSObject
|
|
|
|
readonly agenda: NSArray<GKRule>;
|
|
|
|
readonly executed: NSArray<GKRule>;
|
|
|
|
readonly facts: NSArray<any>;
|
|
|
|
readonly rules: NSArray<GKRule>;
|
|
|
|
readonly state: NSMutableDictionary<any, any>;
|
|
|
|
addRule(rule: GKRule): void;
|
|
|
|
addRulesFromArray(rules: NSArray<GKRule> | GKRule[]): void;
|
|
|
|
assertFact(fact: NSObjectProtocol): void;
|
|
|
|
assertFactGrade(fact: NSObjectProtocol, grade: number): void;
|
|
|
|
evaluate(): void;
|
|
|
|
gradeForFact(fact: NSObjectProtocol): number;
|
|
|
|
maximumGradeForFacts(facts: NSArray<any> | any[]): number;
|
|
|
|
minimumGradeForFacts(facts: NSArray<any> | any[]): number;
|
|
|
|
removeAllRules(): void;
|
|
|
|
reset(): void;
|
|
|
|
retractFact(fact: NSObjectProtocol): void;
|
|
|
|
retractFactGrade(fact: NSObjectProtocol, grade: number): void;
|
|
}
|
|
|
|
declare class GKSCNNodeComponent extends GKComponent implements GKAgentDelegate {
|
|
|
|
static alloc(): GKSCNNodeComponent; // inherited from NSObject
|
|
|
|
static componentWithNode(node: SCNNode): GKSCNNodeComponent;
|
|
|
|
static new(): GKSCNNodeComponent; // inherited from NSObject
|
|
|
|
readonly node: SCNNode;
|
|
|
|
readonly debugDescription: string; // inherited from NSObjectProtocol
|
|
|
|
readonly description: string; // inherited from NSObjectProtocol
|
|
|
|
readonly hash: number; // inherited from NSObjectProtocol
|
|
|
|
readonly isProxy: boolean; // inherited from NSObjectProtocol
|
|
|
|
readonly superclass: typeof NSObject; // inherited from NSObjectProtocol
|
|
|
|
readonly // inherited from NSObjectProtocol
|
|
|
|
constructor(o: { node: SCNNode; });
|
|
|
|
agentDidUpdate(agent: GKAgent): void;
|
|
|
|
agentWillUpdate(agent: GKAgent): void;
|
|
|
|
class(): typeof NSObject;
|
|
|
|
conformsToProtocol(aProtocol: any /* Protocol */): boolean;
|
|
|
|
initWithNode(node: SCNNode): this;
|
|
|
|
isEqual(object: any): boolean;
|
|
|
|
isKindOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
isMemberOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
performSelector(aSelector: string): any;
|
|
|
|
performSelectorWithObject(aSelector: string, object: any): any;
|
|
|
|
performSelectorWithObjectWithObject(aSelector: string, object1: any, object2: any): any;
|
|
|
|
respondsToSelector(aSelector: string): boolean;
|
|
|
|
retainCount(): number;
|
|
|
|
self(): this;
|
|
}
|
|
|
|
declare class GKSKNodeComponent extends GKComponent implements GKAgentDelegate {
|
|
|
|
static alloc(): GKSKNodeComponent; // inherited from NSObject
|
|
|
|
static componentWithNode(node: SKNode): GKSKNodeComponent;
|
|
|
|
static new(): GKSKNodeComponent; // inherited from NSObject
|
|
|
|
node: SKNode;
|
|
|
|
readonly debugDescription: string; // inherited from NSObjectProtocol
|
|
|
|
readonly description: string; // inherited from NSObjectProtocol
|
|
|
|
readonly hash: number; // inherited from NSObjectProtocol
|
|
|
|
readonly isProxy: boolean; // inherited from NSObjectProtocol
|
|
|
|
readonly superclass: typeof NSObject; // inherited from NSObjectProtocol
|
|
|
|
readonly // inherited from NSObjectProtocol
|
|
|
|
constructor(o: { node: SKNode; });
|
|
|
|
agentDidUpdate(agent: GKAgent): void;
|
|
|
|
agentWillUpdate(agent: GKAgent): void;
|
|
|
|
class(): typeof NSObject;
|
|
|
|
conformsToProtocol(aProtocol: any /* Protocol */): boolean;
|
|
|
|
initWithNode(node: SKNode): this;
|
|
|
|
isEqual(object: any): boolean;
|
|
|
|
isKindOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
isMemberOfClass(aClass: typeof NSObject): boolean;
|
|
|
|
performSelector(aSelector: string): any;
|
|
|
|
performSelectorWithObject(aSelector: string, object: any): any;
|
|
|
|
performSelectorWithObjectWithObject(aSelector: string, object1: any, object2: any): any;
|
|
|
|
respondsToSelector(aSelector: string): boolean;
|
|
|
|
retainCount(): number;
|
|
|
|
self(): this;
|
|
}
|
|
|
|
declare class GKScene extends NSObject implements NSCopying, NSSecureCoding {
|
|
|
|
static alloc(): GKScene; // inherited from NSObject
|
|
|
|
static new(): GKScene; // inherited from NSObject
|
|
|
|
static sceneWithFileNamed(filename: string): GKScene;
|
|
|
|
static sceneWithFileNamedRootNode(filename: string, rootNode: GKSceneRootNodeType): GKScene;
|
|
|
|
readonly entities: NSArray<GKEntity>;
|
|
|
|
readonly graphs: NSDictionary<string, GKGraph>;
|
|
|
|
rootNode: GKSceneRootNodeType;
|
|
|
|
static readonly supportsSecureCoding: boolean; // inherited from NSSecureCoding
|
|
|
|
constructor(o: { coder: NSCoder; }); // inherited from NSCoding
|
|
|
|
addEntity(entity: GKEntity): void;
|
|
|
|
addGraphName(graph: GKGraph, name: string): void;
|
|
|
|
copyWithZone(zone: interop.Pointer | interop.Reference<any>): any;
|
|
|
|
encodeWithCoder(coder: NSCoder): void;
|
|
|
|
initWithCoder(coder: NSCoder): this;
|
|
|
|
removeEntity(entity: GKEntity): void;
|
|
|
|
removeGraph(name: string): void;
|
|
}
|
|
|
|
interface GKSceneRootNodeType extends NSObjectProtocol {
|
|
}
|
|
declare var GKSceneRootNodeType: {
|
|
|
|
prototype: GKSceneRootNodeType;
|
|
};
|
|
|
|
declare class GKShuffledDistribution extends GKRandomDistribution {
|
|
|
|
static alloc(): GKShuffledDistribution; // inherited from NSObject
|
|
|
|
static d20(): GKShuffledDistribution; // inherited from GKRandomDistribution
|
|
|
|
static d6(): GKShuffledDistribution; // inherited from GKRandomDistribution
|
|
|
|
static distributionForDieWithSideCount(sideCount: number): GKShuffledDistribution; // inherited from GKRandomDistribution
|
|
|
|
static distributionWithLowestValueHighestValue(lowestInclusive: number, highestInclusive: number): GKShuffledDistribution; // inherited from GKRandomDistribution
|
|
|
|
static new(): GKShuffledDistribution; // inherited from NSObject
|
|
}
|
|
|
|
declare class GKSphereObstacle extends GKObstacle {
|
|
|
|
static alloc(): GKSphereObstacle; // inherited from NSObject
|
|
|
|
static new(): GKSphereObstacle; // inherited from NSObject
|
|
|
|
static obstacleWithRadius(radius: number): GKSphereObstacle;
|
|
|
|
position: interop.Reference<number>;
|
|
|
|
radius: number;
|
|
|
|
constructor(o: { radius: number; });
|
|
|
|
initWithRadius(radius: number): this;
|
|
}
|
|
|
|
declare class GKSpheresNoiseSource extends GKNoiseSource {
|
|
|
|
static alloc(): GKSpheresNoiseSource; // inherited from NSObject
|
|
|
|
static new(): GKSpheresNoiseSource; // inherited from NSObject
|
|
|
|
static spheresNoiseWithFrequency(frequency: number): GKSpheresNoiseSource;
|
|
|
|
frequency: number;
|
|
|
|
constructor(o: { frequency: number; });
|
|
|
|
initWithFrequency(frequency: number): this;
|
|
}
|
|
|
|
declare class GKState extends NSObject {
|
|
|
|
static alloc(): GKState; // inherited from NSObject
|
|
|
|
static new(): GKState; // inherited from NSObject
|
|
|
|
static state(): GKState;
|
|
|
|
readonly stateMachine: GKStateMachine;
|
|
|
|
didEnterWithPreviousState(previousState: GKState): void;
|
|
|
|
isValidNextState(stateClass: typeof NSObject): boolean;
|
|
|
|
updateWithDeltaTime(seconds: number): void;
|
|
|
|
willExitWithNextState(nextState: GKState): void;
|
|
}
|
|
|
|
declare class GKStateMachine extends NSObject {
|
|
|
|
static alloc(): GKStateMachine; // inherited from NSObject
|
|
|
|
static new(): GKStateMachine; // inherited from NSObject
|
|
|
|
static stateMachineWithStates(states: NSArray<GKState> | GKState[]): GKStateMachine;
|
|
|
|
readonly currentState: GKState;
|
|
|
|
constructor(o: { states: NSArray<GKState> | GKState[]; });
|
|
|
|
canEnterState(stateClass: typeof NSObject): boolean;
|
|
|
|
enterState(stateClass: typeof NSObject): boolean;
|
|
|
|
initWithStates(states: NSArray<GKState> | GKState[]): this;
|
|
|
|
stateForClass(stateClass: typeof NSObject): GKState;
|
|
|
|
updateWithDeltaTime(sec: number): void;
|
|
}
|
|
|
|
interface GKStrategist extends NSObjectProtocol {
|
|
|
|
gameModel: GKGameModel;
|
|
|
|
randomSource: GKRandom;
|
|
|
|
bestMoveForActivePlayer(): GKGameModelUpdate;
|
|
}
|
|
declare var GKStrategist: {
|
|
|
|
prototype: GKStrategist;
|
|
};
|
|
|
|
interface GKTriangle {
|
|
points: interop.Reference<interop.Reference<number>>;
|
|
}
|
|
declare var GKTriangle: interop.StructType<GKTriangle>;
|
|
|
|
declare class GKVoronoiNoiseSource extends GKNoiseSource {
|
|
|
|
static alloc(): GKVoronoiNoiseSource; // inherited from NSObject
|
|
|
|
static new(): GKVoronoiNoiseSource; // inherited from NSObject
|
|
|
|
static voronoiNoiseWithFrequencyDisplacementDistanceEnabledSeed(frequency: number, displacement: number, distanceEnabled: boolean, seed: number): GKVoronoiNoiseSource;
|
|
|
|
displacement: number;
|
|
|
|
distanceEnabled: boolean;
|
|
|
|
frequency: number;
|
|
|
|
seed: number;
|
|
|
|
constructor(o: { frequency: number; displacement: number; distanceEnabled: boolean; seed: number; });
|
|
|
|
initWithFrequencyDisplacementDistanceEnabledSeed(frequency: number, displacement: number, distanceEnabled: boolean, seed: number): this;
|
|
}
|