Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/frameworks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ add_subdirectory(ScriptingBridge)
add_subdirectory(SecurityFoundation)
add_subdirectory(SecurityInterface)
add_subdirectory(ServiceManagement)
add_subdirectory(SpriteKit)
add_subdirectory(StoreKit)
add_subdirectory(SyncServices)
add_subdirectory(SystemConfiguration)
Expand Down
139 changes: 139 additions & 0 deletions src/frameworks/SpriteKit/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
project(SpriteKit)

set(DYLIB_COMPAT_VERSION "1.0.0")
set(DYLIB_CURRENT_VERSION "25.37.0")

add_framework(SpriteKit
FAT
CURRENT_VERSION
VERSION "A"

SOURCES
src/SpriteKit.m
src/SKReferencedAction.m
src/SKTransition.m
src/SKBitmapFont.m
src/SKLabelNode.m
src/SKTileMapNode.m
src/SKAudioNode.m
src/SKSCNRenderer.m
src/SKThreadSafeMapTable.m
src/SKThreadSafeMutableArray.m
src/SKThreadSafeMutableDictionary.m
src/SKView.m
src/SKPlaySound.m
src/SKCustomAction.m
src/SKRunBlock.m
src/SKParticleSystemNode.m
src/SKAction.m
src/SKActionTable.m
src/SKAnimate.m
src/SKAnimateWarp.m
src/SKReferenceNode.m
src/SKColorize.m
src/SKFade.m
src/SKGroup.m
src/SK3DNode.m
src/SKFieldNode.m
src/SKDragFieldNode.m
src/SKVortexFieldNode.m
src/SKLinearGravityFieldNode.m
src/SKRadialGravityFieldNode.m
src/SKCustomFieldNode.m
src/SKVelocityFieldNode.m
src/SKNoiseFieldNode.m
src/SKTurbulenceFieldNode.m
src/SKSpringFieldNode.m
src/SKMagneticFieldNode.m
src/SKElectricFieldNode.m
src/SKMove.m
src/SKCameraNode.m
src/SKRemove.m
src/SKRepeat.m
src/SKSpeed.m
src/SKFrameCaptureDelegate.m
src/SKRotate.m
src/SKRunAction.m
src/SKScale.m
src/SKSequence.m
src/SKWarpGeometry.m
src/SKWarpGeometryGrid.m
src/SKWait.m
src/SKFollowPath.m
src/SKGlobalSharedContextRegistry.m
src/SKTransformNode.m
src/SKScene.m
src/SKShapeNode.m
src/SKSpriteNode.m
src/SKEffectNode.m
src/SKDisplayLink.m
src/SKRange.m
src/SKConstraint.m
src/SKSizeConstraint.m
src/SKScaleConstraint.m
src/SKRotationConstraint.m
src/SKOrientationConstraint.m
src/SKDistanceConstraint.m
src/SKPositionConstraint.m
src/SKCaptureUnarchiverDelegate.m
src/SKNodeVisualRepresentationUnarchiver.m
src/SKNode.m
src/SKNodeCustomClassUnarchiver.m
src/SKNodeVisualRepresentationArchiver.m
src/SKUniformShaderReference.m
src/SKUniform.m
src/SKTileDefinition.m
src/SKButtonNode.m
src/SKButtonNodeSprite.m
src/SKEmitterNode.m
src/SKKeyframeSequence.m
src/SKVideoNode.m
src/SKTextureCache.m
src/SKTexture.m
src/SKTextureAtlas.m
src/SKRegion.m
src/SKOpenGLLayer.m
src/SKKeyedUnarchiver.m
src/SKCropNode.m
src/SKHide.m
src/SKPerformSelector.m
src/SKJavaScriptAction.m
src/SKSoundBuffer.m
src/SKTextureAtlasPacker.m
src/SKSoundContext.m
src/SKSoundSource.m
src/SKSceneUnarchiveDummy.m
src/SKMutableTexture.m
src/IKLink.m
src/SKReach.m
src/SKTileGroupRule.m
src/SKTileGroup.m
src/SKTileSet.m
src/SKTileStamp.m
src/SKRenderer.m
src/SKStrength.m
src/SKResize.m
src/SKPhysicsBody.m
src/SKPhysicsContact.m
src/SKPhysicsJoint.m
src/SKPhysicsJointPin.m
src/SKPhysicsJointSpring.m
src/SKPhysicsJointFixed.m
src/SKPhysicsJointSliding.m
src/SKPhysicsJointLimit.m
src/SKPhysicsWorld.m
src/SKLightNode.m
src/SKUniformInfo.m
src/SKShader.m
src/SKReachConstraints.m
src/SKOpenGLNode.m
src/SKPhysicsGrid.m
src/SKFalloff.m
src/SKAttribute.m
src/SKAttributeValue.m

DEPENDENCIES
system
objc
Foundation
)
24 changes: 24 additions & 0 deletions src/frameworks/SpriteKit/include/SpriteKit/IKLink.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface IKLink : NSObject

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@protocol NSKeyedArchiverDelegate

@end
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@protocol NSKeyedUnarchiverDelegate

@end
24 changes: 24 additions & 0 deletions src/frameworks/SpriteKit/include/SpriteKit/SK3DNode.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface SK3DNode : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/SpriteKit/include/SpriteKit/SKAction.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface SKAction : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/SpriteKit/include/SpriteKit/SKActionTable.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface SKActionTable : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/SpriteKit/include/SpriteKit/SKAnimate.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface SKAnimate : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/SpriteKit/include/SpriteKit/SKAnimateWarp.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface SKAnimateWarp : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/SpriteKit/include/SpriteKit/SKAttribute.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface SKAttribute : NSObject

@end
24 changes: 24 additions & 0 deletions src/frameworks/SpriteKit/include/SpriteKit/SKAttributeValue.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
/*
This file is part of Darling.

Copyright (C) 2019 Lubos Dolezel

Darling is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

Darling is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Darling. If not, see <http://www.gnu.org/licenses/>.
*/

#include <Foundation/Foundation.h>

@interface SKAttributeValue : NSObject

@end
Loading