Operating system tools for BlockProject 3D.
This crate provides various platform specific tools to use by most BlockProject 3D software.
Currently, the following platforms are supported: - macOS. - macOS (with App sandbox). - iOS. - Linux. - Windows. - Other BSD like systems.
Support for Android is currently not planned due to drastic restrictions on file sizes and largely increased complexity of interacting with the platform (No native C API, everything goes through JVM with some custom main function).
| Platform | Tested | Notes | |--------------------------|--------|--------------------------| | macOS | Yes | Uses NSBundle API. | | macOS (with app sandbox) | Yes | Uses NSBundle API. | | iOS | Yes | Uses NSBundle API. | | Linux | Yes | - | | Windows | No | Uses GetModuleFileNameW. | | Other BSD like systems | No | - |
| Platform | Tested | Notes | |--------------------------|--------|----------------------------| | macOS | Yes | Uses NSFileManager API. | | macOS (with app sandbox) | Yes | Uses NSFileManager API. | | iOS | Yes | Uses NSFileManager API. | | Linux | Yes | - | | Windows | No | Uses SHGetKnownFolderPath. | | Other BSD like systems | Yes | - |
| Platform | Tested | Notes | |--------------------------|--------|-------------------------| | macOS | Yes | Uses NSFileManager API. | | macOS (with app sandbox) | Yes | Uses NSFileManager API. | | iOS | Yes | Uses NSFileManager API. | | Linux | Yes | - | | Windows | No | - | | Other BSD like systems | Yes | - |
| Platform | Tested | Notes | |--------------------------|--------|------------------------------| | macOS | Yes | Uses NSWorkspace API. | | macOS (with app sandbox) | Yes | Uses NSWorkspace API. | | iOS | No | Not yet implemented. | | Linux | Yes | Uses dbus and xdg-open. | | Windows | Yes | Uses ShellExecuteW. | | Other BSD like systems | No | Uses the same code as Linux. |
No platform specific APIs are required for this feature except support for environment variables which is usually missing from mobile platforms.
| Platform | Tested | Notes | |--------------------------|--------|----------------| | macOS | Yes | - | | macOS (with app sandbox) | Yes | - | | iOS | No | Not applicable | | Linux | Yes | - | | Windows | Yes | - | | Other BSD like systems | No | - |
| Platform | Tested | Notes |
|--------------------------|--------|---------------------------------------------------------------|
| macOS | Yes | Uses machdep.cpu.core_count
and machdep.cpu.brand_string
. |
| macOS (with app sandbox) | Yes | Same as macOS. |
| iOS | Yes | Same as macOS. |
| Linux | Yes | Uses raw_cpuid
on x8664, None on other architectures. |
| Windows | Yes | Uses raw_cpuid
on x8664, None on other architectures. |
| Other BSD like systems | Yes | Uses hw.ncpu
and hw.model
. |
| Platform | Tested | Notes |
|--------------------------|--------|--------------------------------------------------------|
| macOS | Yes | Reads and interprets the contents of /etc/localtime
. |
| macOS (with app sandbox) | No | Same as macOS. |
| iOS | Yes | Same as macOS. |
| Linux | No | Same as macOS. |
| Windows | Yes | Uses GetTimeZoneInformation
. |
| Other BSD like systems | No | Same as macOS. |