Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/phoboslab/Ejecta
A Fast, Open Source JavaScript, Canvas & Audio Implementation for iOS
https://github.com/phoboslab/Ejecta
Last synced: about 1 month ago
JSON representation
A Fast, Open Source JavaScript, Canvas & Audio Implementation for iOS
- Host: GitHub
- URL: https://github.com/phoboslab/Ejecta
- Owner: phoboslab
- Created: 2012-09-25T13:54:24.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2021-06-22T17:04:00.000Z (over 3 years ago)
- Last Synced: 2024-10-29T15:28:25.562Z (about 1 month ago)
- Language: Objective-C
- Size: 127 MB
- Stars: 2,807
- Watchers: 137
- Forks: 322
- Open Issues: 49
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-game-engine-dev - Ejecta - JavaScript / canvas / audio implementation for iOS. App store compatible. (Libraries / JavaScript)
README
# Ejecta
Ejecta is a fast, open source JavaScript, Canvas & Audio implementation for iOS (iPhone, iPod Touch, iPad) and tvOS (Apple TV). Think of it as a Browser that can only display a Canvas element.
More info & Documentation: http://impactjs.com/ejecta
Ejecta is published under the [MIT Open Source License](http://opensource.org/licenses/mit-license.php).
## Quick Start
1. Create a folder called `App` within this Xcode project
2. Copy your canvas application into the `App` folder
3. Ensure you have at least 1 file named `index.js`
4. Build the Xcode projectFor an example application, copy `./index.js` into the `App` folder.
## Recent Breaking Changes
### 2016-06-23 - Typed Arrays are fast again!
The JSC version that comes with iOS 10 provides a new API to read and write Typed Arrays in native code. The workaround from previous versions is not needed anymore
### 2016-06-23 - Removed iAds
Apple will discontinue its own iAd Network on June 30. The iAd-Banner API has been removed from Ejecta.
### 2015-12-12 - Use OS provided JavaScriptCore library
Since [08741b4](https://github.com/phoboslab/Ejecta/commit/08741b4489ff945b117ebee0333c7eb7a6177c2e) Ejecta uses the JSC lib provided by iOS and tvOS instead of bundling a custom fork of it. This mainly means two things: The resulting binary will be much smaller and reading/writing of Typed Arrays is much slower.
This only affects WebGL and the `get/setImageData()` functions for Canvas2D. Some tests indicate that the performance is still good enough for most WebGL games. On 64bit systems it's highly optimized to take about 7ms/Megabyte for reading and about 20ms/Megabyte for writing. It's much slower on 32bit systems, though.
More info about this change can be found [in my blog](http://phoboslab.org/log/2015/11/the-absolute-worst-way-to-read-typed-array-data-with-javascriptcore). Please comment on [this Webkit bug](https://bugs.webkit.org/show_bug.cgi?id=120112) if you want to have fast Typed Array support again.
### 2015-11-27 – Allowed orientation change
Allowed interface orientations should now be set using the "Device Orientation" checkboxes in the Project's General settings. Ejecta now rotates to all allowed orientations automatically. If the window size changes due to a rotation (i.e. when rotating from landscape to portrait or vice versa), the window's `resize` event is fired.
```javascript
window.addEventListener('resize', function() {
// Resize your screen canvas here if needed.
console.log('new window size:', window.innerWidth, window.innerHeight);
});
```### 2015-11-09 - Moved Antialias (MSAA) settings to getContext options
The `canvas.MSAAEnabled` and `canvas.MSAASamples` properties have been removed. Instead, you can now specify antialias settings in a separate options object when calling `getContext()`, similar to how it works in a browser. Antialias now works on 2D and WebGL contexts.
Note that for 2D contexts antialias will have no effect when drawing images, other than slowing down performance. It only makes sense to enable antialias if you draw shapes and paths.
```javascript
var gl = canvas.getContext('webgl', {antialias: true, antialiasSamples: 4});// Or for 2d contexts
var ctx = canvas.getContext('2d', {antialias: true, antialiasSamples: 4});
```### 2015-11-08 - Removed automatic pixel doubling for retina devices
The Canvas' backing store is now exactly the same size as the `canvas.width` and `canvas.height`. Ejecta *does not* automatically double the internal resolution on retina devices anymore. The `ctx.backingStorePixelRatio` and `canvas.retinaResolutionEnabled` properties as well as the `HD` variants for the `ctx.getImageData`, `ctx.putImageData` and `ctx.createImageData` functions have been removed.
You can of course still render in retina resolution, by setting the `width` and `height` to the retina resolution while forcing the `style` to scale the canvas to the logical display resolution. This is in line with current browsers.
```javascript
canvas.width = window.innerWidth * window.devicePixelRatio;
canvas.height = window.innerHeight * window.devicePixelRatio;
canvas.style.width = window.innerWidth + 'px';
canvas.style.height = window.innerHeight + 'px';// For 2D contexts you may want to zoom in afterwards
ctx.scale( window.devicePixelRatio, window.devicePixelRatio );
```## WebGL Support
Ejecta supports WebGL out of the box, alongside with Canvas2D. You can create WebGL textures from Canvas2D instances and also draw WebGL Canvases into 2D Contexts as images. Note that you can't change the "mode" (2D or WebGL) of a Context after it has been created.
## Three.js on iOS with Ejecta
Ejecta always creates the screen Canvas element for you. You have to hand this Canvas element over to Three.js instead of letting it create its own.
```javascript
renderer = new THREE.WebGLRenderer( {canvas: document.getElementById('canvas')} );
```An example App folder with the Three.js [Walt CubeMap demo](http://mrdoob.github.com/three.js/examples/webgl_materials_cubemap.html) can be found here:
http://phoboslab.org/files/Ejecta-ThreeJS-CubeMap.zip