diff --git a/.github/workflows/iOS_Build.yml b/.github/workflows/iOS_Build.yml new file mode 100644 index 00000000..f930ef3e --- /dev/null +++ b/.github/workflows/iOS_Build.yml @@ -0,0 +1,39 @@ +name: iOS Simulator Build + +on: + push: + branches: + - master + pull_request: + +env: + # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) + BUILD_TYPE: Release + +jobs: + build: + # The CMake configure and build commands are platform agnostic and should work equally + # well on Windows or Mac. You can convert this to a matrix build if you need + # cross-platform coverage. + # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix + runs-on: macos-latest + + steps: + - uses: actions/checkout@v4 + - name: Fetch submodules + run: git submodule update --init --recursive + + - name: Update Xcode + uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: latest + + - name: Setup Vulkan SDK + uses: humbletim/setup-vulkan-sdk@main + with: + vulkan-query-version: 1.3.296.0 + vulkan-use-cache: true + vulkan-components: Vulkan-Headers, Vulkan-Loader, SPIRV-Tools, Glslang + + - name: Build core and frontend + run: cd src/pandios && ./build.sh diff --git a/.gitmodules b/.gitmodules index 9fcd8d60..d01256c2 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,9 +1,6 @@ [submodule "third_party/elfio"] path = third_party/elfio url = https://github.com/serge1/ELFIO -[submodule "third_party/SDL2"] - path = third_party/SDL2 - url = https://github.com/libsdl-org/SDL [submodule "third_party/cryptopp/cryptopp"] path = third_party/cryptopp/cryptopp url = https://github.com/weidai11/cryptopp @@ -85,3 +82,7 @@ [submodule "third_party/oaknut"] path = third_party/oaknut url = https://github.com/panda3ds-emu/oaknut +[submodule "third_party/SDL2"] + path = third_party/SDL2 + url = https://github.com/libsdl-org/SDL + branch = SDL2 diff --git a/src/pandios/.gitignore b/src/pandios/.gitignore new file mode 100644 index 00000000..1bad9862 --- /dev/null +++ b/src/pandios/.gitignore @@ -0,0 +1,2 @@ +libAlber.dylib +Alber/Headers/ios_driver.h \ No newline at end of file diff --git a/src/pandios/Alber/Headers/ios_driver.h b/src/pandios/Alber/Headers/ios_driver.h new file mode 100644 index 00000000..5be62943 --- /dev/null +++ b/src/pandios/Alber/Headers/ios_driver.h @@ -0,0 +1,6 @@ +#pragma once +#include +#include + +void iosCreateEmulator(); +void iosRunFrame(CAMetalLayer* layer); \ No newline at end of file diff --git a/src/pandios/Alber/module.map b/src/pandios/Alber/module.map new file mode 100644 index 00000000..54ca3f2a --- /dev/null +++ b/src/pandios/Alber/module.map @@ -0,0 +1,5 @@ +module AlberDriver { + umbrella "Headers" // for multiple files + link "libAlber" + export * +} \ No newline at end of file diff --git a/src/pandios/Pandios.xcodeproj/project.pbxproj b/src/pandios/Pandios.xcodeproj/project.pbxproj new file mode 100644 index 00000000..06ec92e2 --- /dev/null +++ b/src/pandios/Pandios.xcodeproj/project.pbxproj @@ -0,0 +1,591 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 70; + objects = { + +/* Begin PBXBuildFile section */ + 4F798C782D8747B000F5D23F /* libAlber.dylib in Copy Files */ = {isa = PBXBuildFile; fileRef = 4F798C772D8747B000F5D23F /* libAlber.dylib */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4F798C7A2D8747F400F5D23F /* libAlber.dylib in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F798C792D8747B800F5D23F /* libAlber.dylib */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 4F6E8FD32D77C0140025DD0D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 4F6E8FBA2D77C0120025DD0D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F6E8FC12D77C0120025DD0D; + remoteInfo = Pandios; + }; + 4F6E8FDD2D77C0140025DD0D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 4F6E8FBA2D77C0120025DD0D /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4F6E8FC12D77C0120025DD0D; + remoteInfo = Pandios; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 4F9EEBE82D78898B00E0B72D /* Copy Files */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + 4F798C782D8747B000F5D23F /* libAlber.dylib in Copy Files */, + ); + name = "Copy Files"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 4F6E8FC22D77C0120025DD0D /* Pandios.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Pandios.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 4F6E8FD22D77C0140025DD0D /* PandiosTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PandiosTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 4F6E8FDC2D77C0140025DD0D /* PandiosUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = PandiosUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + 4F798C772D8747B000F5D23F /* libAlber.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; name = libAlber.dylib; path = ../../build/libAlber.dylib; sourceTree = ""; }; + 4F798C792D8747B800F5D23F /* libAlber.dylib */ = {isa = PBXFileReference; lastKnownFileType = "compiled.mach-o.dylib"; path = libAlber.dylib; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFileSystemSynchronizedRootGroup section */ + 4F6E8FC42D77C0120025DD0D /* Pandios */ = { + isa = PBXFileSystemSynchronizedRootGroup; + path = Pandios; + sourceTree = ""; + }; +/* End PBXFileSystemSynchronizedRootGroup section */ + +/* Begin PBXFrameworksBuildPhase section */ + 4F6E8FCF2D77C0140025DD0D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4F6E8FD92D77C0140025DD0D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4F9EEBF82D78963D00E0B72D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 4F798C7A2D8747F400F5D23F /* libAlber.dylib in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 4F6E8FB92D77C0120025DD0D = { + isa = PBXGroup; + children = ( + 4F798C772D8747B000F5D23F /* libAlber.dylib */, + 4F6E8FC42D77C0120025DD0D /* Pandios */, + 4F9EEBF62D7895D700E0B72D /* Frameworks */, + 4F6E8FC32D77C0120025DD0D /* Products */, + ); + sourceTree = ""; + }; + 4F6E8FC32D77C0120025DD0D /* Products */ = { + isa = PBXGroup; + children = ( + 4F6E8FC22D77C0120025DD0D /* Pandios.app */, + 4F6E8FD22D77C0140025DD0D /* PandiosTests.xctest */, + 4F6E8FDC2D77C0140025DD0D /* PandiosUITests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + 4F9EEBF62D7895D700E0B72D /* Frameworks */ = { + isa = PBXGroup; + children = ( + 4F798C792D8747B800F5D23F /* libAlber.dylib */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 4F6E8FC12D77C0120025DD0D /* Pandios */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4F6E8FE62D77C0140025DD0D /* Build configuration list for PBXNativeTarget "Pandios" */; + buildPhases = ( + 4F6E8FBE2D77C0120025DD0D /* Sources */, + 4F6E8FC02D77C0120025DD0D /* Resources */, + 4F9EEBE82D78898B00E0B72D /* Copy Files */, + 4F9EEBF82D78963D00E0B72D /* Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + ); + fileSystemSynchronizedGroups = ( + 4F6E8FC42D77C0120025DD0D /* Pandios */, + ); + name = Pandios; + packageProductDependencies = ( + ); + productName = Pandios; + productReference = 4F6E8FC22D77C0120025DD0D /* Pandios.app */; + productType = "com.apple.product-type.application"; + }; + 4F6E8FD12D77C0140025DD0D /* PandiosTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4F6E8FE92D77C0140025DD0D /* Build configuration list for PBXNativeTarget "PandiosTests" */; + buildPhases = ( + 4F6E8FCE2D77C0140025DD0D /* Sources */, + 4F6E8FCF2D77C0140025DD0D /* Frameworks */, + 4F6E8FD02D77C0140025DD0D /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 4F6E8FD42D77C0140025DD0D /* PBXTargetDependency */, + ); + name = PandiosTests; + packageProductDependencies = ( + ); + productName = PandiosTests; + productReference = 4F6E8FD22D77C0140025DD0D /* PandiosTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; + 4F6E8FDB2D77C0140025DD0D /* PandiosUITests */ = { + isa = PBXNativeTarget; + buildConfigurationList = 4F6E8FEC2D77C0140025DD0D /* Build configuration list for PBXNativeTarget "PandiosUITests" */; + buildPhases = ( + 4F6E8FD82D77C0140025DD0D /* Sources */, + 4F6E8FD92D77C0140025DD0D /* Frameworks */, + 4F6E8FDA2D77C0140025DD0D /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + 4F6E8FDE2D77C0140025DD0D /* PBXTargetDependency */, + ); + name = PandiosUITests; + packageProductDependencies = ( + ); + productName = PandiosUITests; + productReference = 4F6E8FDC2D77C0140025DD0D /* PandiosUITests.xctest */; + productType = "com.apple.product-type.bundle.ui-testing"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 4F6E8FBA2D77C0120025DD0D /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1620; + LastUpgradeCheck = 1620; + TargetAttributes = { + 4F6E8FC12D77C0120025DD0D = { + CreatedOnToolsVersion = 16.2; + }; + 4F6E8FD12D77C0140025DD0D = { + CreatedOnToolsVersion = 16.2; + TestTargetID = 4F6E8FC12D77C0120025DD0D; + }; + 4F6E8FDB2D77C0140025DD0D = { + CreatedOnToolsVersion = 16.2; + TestTargetID = 4F6E8FC12D77C0120025DD0D; + }; + }; + }; + buildConfigurationList = 4F6E8FBD2D77C0120025DD0D /* Build configuration list for PBXProject "Pandios" */; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 4F6E8FB92D77C0120025DD0D; + minimizedProjectReferenceProxies = 1; + preferredProjectObjectVersion = 70; + productRefGroup = 4F6E8FC32D77C0120025DD0D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 4F6E8FC12D77C0120025DD0D /* Pandios */, + 4F6E8FD12D77C0140025DD0D /* PandiosTests */, + 4F6E8FDB2D77C0140025DD0D /* PandiosUITests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 4F6E8FC02D77C0120025DD0D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4F6E8FD02D77C0140025DD0D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4F6E8FDA2D77C0140025DD0D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 4F6E8FBE2D77C0120025DD0D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4F6E8FCE2D77C0140025DD0D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 4F6E8FD82D77C0140025DD0D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 4F6E8FD42D77C0140025DD0D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 4F6E8FC12D77C0120025DD0D /* Pandios */; + targetProxy = 4F6E8FD32D77C0140025DD0D /* PBXContainerItemProxy */; + }; + 4F6E8FDE2D77C0140025DD0D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = 4F6E8FC12D77C0120025DD0D /* Pandios */; + targetProxy = 4F6E8FDD2D77C0140025DD0D /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 4F6E8FE42D77C0140025DD0D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.2; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + }; + name = Debug; + }; + 4F6E8FE52D77C0140025DD0D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++20"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_USER_SCRIPT_SANDBOXING = YES; + GCC_C_LANGUAGE_STANDARD = gnu17; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.2; + LOCALIZATION_PREFERS_STRING_CATALOGS = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 4F6E8FE72D77C0140025DD0D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_ARC = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"Pandios/Preview Content\""; + DEVELOPMENT_TEAM = 877A43U8RR; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = Alber.Pandios; + PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_INCLUDE_PATHS = "$(PROJECT_DIR)/Alber"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 4F6E8FE82D77C0140025DD0D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + CLANG_ENABLE_OBJC_ARC = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_ASSET_PATHS = "\"Pandios/Preview Content\""; + DEVELOPMENT_TEAM = 877A43U8RR; + ENABLE_PREVIEWS = YES; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_UIApplicationSceneManifest_Generation = YES; + INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES; + INFOPLIST_KEY_UILaunchScreen_Generation = YES; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + LIBRARY_SEARCH_PATHS = ( + "$(inherited)", + "$(PROJECT_DIR)", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = Alber.Pandios; + PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_INCLUDE_PATHS = "$(PROJECT_DIR)/Alber"; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Release; + }; + 4F6E8FEA2D77C0140025DD0D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.2; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = Alber.PandiosTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Pandios.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Pandios"; + }; + name = Debug; + }; + 4F6E8FEB2D77C0140025DD0D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + BUNDLE_LOADER = "$(TEST_HOST)"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 18.2; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = Alber.PandiosTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Pandios.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Pandios"; + }; + name = Release; + }; + 4F6E8FED2D77C0140025DD0D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = Alber.PandiosUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = Pandios; + }; + name = Debug; + }; + 4F6E8FEE2D77C0140025DD0D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = Alber.PandiosUITests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + TARGETED_DEVICE_FAMILY = "1,2"; + TEST_TARGET_NAME = Pandios; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 4F6E8FBD2D77C0120025DD0D /* Build configuration list for PBXProject "Pandios" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4F6E8FE42D77C0140025DD0D /* Debug */, + 4F6E8FE52D77C0140025DD0D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4F6E8FE62D77C0140025DD0D /* Build configuration list for PBXNativeTarget "Pandios" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4F6E8FE72D77C0140025DD0D /* Debug */, + 4F6E8FE82D77C0140025DD0D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4F6E8FE92D77C0140025DD0D /* Build configuration list for PBXNativeTarget "PandiosTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4F6E8FEA2D77C0140025DD0D /* Debug */, + 4F6E8FEB2D77C0140025DD0D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 4F6E8FEC2D77C0140025DD0D /* Build configuration list for PBXNativeTarget "PandiosUITests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 4F6E8FED2D77C0140025DD0D /* Debug */, + 4F6E8FEE2D77C0140025DD0D /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 4F6E8FBA2D77C0120025DD0D /* Project object */; +} diff --git a/src/pandios/Pandios.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/src/pandios/Pandios.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..919434a6 --- /dev/null +++ b/src/pandios/Pandios.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/src/pandios/Pandios.xcodeproj/project.xcworkspace/xcuserdata/giorgos.xcuserdatad/UserInterfaceState.xcuserstate b/src/pandios/Pandios.xcodeproj/project.xcworkspace/xcuserdata/giorgos.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 00000000..8416d830 Binary files /dev/null and b/src/pandios/Pandios.xcodeproj/project.xcworkspace/xcuserdata/giorgos.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/src/pandios/Pandios.xcodeproj/xcuserdata/giorgos.xcuserdatad/xcschemes/xcschememanagement.plist b/src/pandios/Pandios.xcodeproj/xcuserdata/giorgos.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 00000000..410128b7 --- /dev/null +++ b/src/pandios/Pandios.xcodeproj/xcuserdata/giorgos.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + Pandios.xcscheme_^#shared#^_ + + orderHint + 0 + + + + diff --git a/src/pandios/Pandios/Assets.xcassets/AccentColor.colorset/Contents.json b/src/pandios/Pandios/Assets.xcassets/AccentColor.colorset/Contents.json new file mode 100644 index 00000000..eb878970 --- /dev/null +++ b/src/pandios/Pandios/Assets.xcassets/AccentColor.colorset/Contents.json @@ -0,0 +1,11 @@ +{ + "colors" : [ + { + "idiom" : "universal" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/src/pandios/Pandios/Assets.xcassets/AppIcon.appiconset/Contents.json b/src/pandios/Pandios/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 00000000..23058801 --- /dev/null +++ b/src/pandios/Pandios/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,35 @@ +{ + "images" : [ + { + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "dark" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + }, + { + "appearances" : [ + { + "appearance" : "luminosity", + "value" : "tinted" + } + ], + "idiom" : "universal", + "platform" : "ios", + "size" : "1024x1024" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/src/pandios/Pandios/Assets.xcassets/Contents.json b/src/pandios/Pandios/Assets.xcassets/Contents.json new file mode 100644 index 00000000..73c00596 --- /dev/null +++ b/src/pandios/Pandios/Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/src/pandios/Pandios/ContentView.swift b/src/pandios/Pandios/ContentView.swift new file mode 100644 index 00000000..fba06c57 --- /dev/null +++ b/src/pandios/Pandios/ContentView.swift @@ -0,0 +1,51 @@ +import AlberDriver +import SwiftUI +import MetalKit +import Darwin + +struct ContentView: UIViewRepresentable { + @State var showFileImporter = true + + /* + func makeCoordinator() -> Renderer { + Renderer(self) + } + */ + + func makeUIView(context: UIViewRepresentableContext) -> MTKView { + let mtkView = MTKView() + mtkView.preferredFramesPerSecond = 60 + mtkView.enableSetNeedsDisplay = true + mtkView.isPaused = true + + if let metalDevice = MTLCreateSystemDefaultDevice() { + mtkView.device = metalDevice + } + + mtkView.framebufferOnly = false + mtkView.drawableSize = mtkView.frame.size + + let dispatchQueue = DispatchQueue(label: "QueueIdentification", qos: .background) + let metalLayer = mtkView.layer as! CAMetalLayer; + + dispatchQueue.async{ + iosCreateEmulator() + + while (true) { + iosRunFrame(metalLayer); + } + } + + return mtkView + } + + func updateUIView(_ uiView: MTKView, context: UIViewRepresentableContext) { + print("Updating MTKView"); + } +} + +struct ContentView_Previews: PreviewProvider { + static var previews: some View { + ContentView() + } +} diff --git a/src/pandios/Pandios/PandiosApp.swift b/src/pandios/Pandios/PandiosApp.swift new file mode 100644 index 00000000..f9cfb284 --- /dev/null +++ b/src/pandios/Pandios/PandiosApp.swift @@ -0,0 +1,10 @@ +import SwiftUI + +@main +struct PandiosApp: App { + var body: some Scene { + WindowGroup { + ContentView() + } + } +} diff --git a/src/pandios/Pandios/Preview Content/Preview Assets.xcassets/Contents.json b/src/pandios/Pandios/Preview Content/Preview Assets.xcassets/Contents.json new file mode 100644 index 00000000..73c00596 --- /dev/null +++ b/src/pandios/Pandios/Preview Content/Preview Assets.xcassets/Contents.json @@ -0,0 +1,6 @@ +{ + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/src/pandios/build.sh b/src/pandios/build.sh new file mode 100755 index 00000000..63d5b9f5 --- /dev/null +++ b/src/pandios/build.sh @@ -0,0 +1,34 @@ +#!/bin/bash + +# Settings for the SwiftUI frontend +ARCH=arm64 +CONFIGURATION=Release +SDK=iphonesimulator + +# Settings for the emulator core +EMULATOR_BUILD_TYPE=Release + +# Simulator settings +RUN_SIMULATOR=false + +# Go to the parent directory and build the emulator core +cd ../.. +cmake -B build -DENABLE_VULKAN=OFF -DBUILD_HYDRA_CORE=ON -DENABLE_USER_BUILD=ON -DCMAKE_TOOLCHAIN_FILE=third_party/ios_toolchain/ios.toolchain.cmake -DPLATFORM=SIMULATORARM64 -DDEPLOYMENT_TARGET="13.0" +cmake --build build --config ${EMULATOR_BUILD_TYPE} + +# Copy the bridging header and emulator dylib to the iOS folder +cp ./include/ios_driver.h ./src/pandios/Alber/Headers/ios_driver.h +cp ./build/libAlber.dylib ./src/pandios/ + +# Come back to the iOS directory, build the SwiftUI xcode project and link them together +cd src/pandios +xcodebuild build -configuration ${CONFIGURATION} -sdk ${SDK} -arch ${ARCH} + +# To run the app in the simulator: +# Boot the iPhone, install the app on the iphone, then open the sim & launch the app +if [ "$RUN_SIMULATOR" = true ] ; then + xcrun simctl boot "iPhone 16 Pro" + xcrun simctl install "iPhone 16 Pro" "build/Release-iphonesimulator/Pandios.app" + open /Applications/Xcode.app/Contents/Developer/Applications/Simulator.app + xcrun simctl launch --console booted "Alber.Pandios" +fi diff --git a/third_party/SDL2 b/third_party/SDL2 index 379d4780..f48a96a9 160000 --- a/third_party/SDL2 +++ b/third_party/SDL2 @@ -1 +1 @@ -Subproject commit 379d4780559690a9836444aeb5637f60953947be +Subproject commit f48a96a976b50d1faae70598e71bfaf8f4526347