Skip to content

Commit 9da3688

Browse files
authored
Merge pull request #69 from SpringRoll/release/2.0.2
Release/2.0.2
2 parents 2aa6177 + 79253af commit 9da3688

10 files changed

+277
-52
lines changed

README.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,13 @@ container.openPath('path/to/game.html');
7373
```
7474

7575
## Plugins
76+
This section provides instructions on how to use the built-in plugins for SpringRoll Container. For writing or updating older plugins, see the [Plugin Authoring Guide](https://github.com/SpringRoll/SpringRollContainer/tree/main/src/plugins).
7677

7778
The Container has several built-in plugins that allow the user to control various aspects of a game/application.
7879
These are initialized with either a query selector string (similar to what you would pass to [document.querySelector](https://developer.mozilla.org/en-US/docs/Web/API/Document/querySelector))
7980
or an `HTMLElement`.
8081

82+
8183
Plugins in the SpringRollContainer correspond to a matching [feature in SpringRoll Core](https://github.com/SpringRoll/SpringRoll/tree/develop/src#features).
8284
If the container has a plugin enabled corresponding to a feature that the game doesn't contain, the container will automatically _hide the corresponding UI element_.
8385
For example, if the container has the `CaptionsTogglePlugin` enabled with a corresponding button to toggle captions but the game doesn't actually _have_ captions, the container will hide the captions toggle button automatically.
@@ -86,7 +88,7 @@ For example, if the container has the `CaptionsTogglePlugin` enabled with a corr
8688
```javascript
8789
import { PausePlugin, HelpPlugin, Container } from 'springroll-container';
8890

89-
const container = new springroll.Container("#game", {
91+
const container = new Container("#game", {
9092
plugins: [
9193
new PausePlugin('button#pause-button'), // Pauses or unpauses the game
9294
new HelpPlugin('button#help'), // requests a hint or help from the game
@@ -105,7 +107,7 @@ There are two plugins that interact with captions: `CaptionsTogglePlugin`, and `
105107
```javascript
106108
import { CaptionsStylePlugin, CaptionsToggleplugin, Container } from 'springroll-container';
107109

108-
const container = new springroll.Container('#game', {
110+
const container = new Container('#game', {
109111
plugins: [
110112
new CaptionsTogglePlugin('#captions'),
111113
new CaptionsStylePlugin(
@@ -162,7 +164,7 @@ The sound plugin supports a total of eight controls:
162164
```javascript
163165
import { SoundPlugin, Container } from 'springroll-container';
164166

165-
const container = new springroll.Container('#game', {
167+
const container = new Container('#game', {
166168
plugins: [
167169
new SoundPlugin({
168170
soundButtons: '#soundButton', // mutes or unmutes all game audio
@@ -197,7 +199,7 @@ import {
197199
Container
198200
} from 'springroll-container';
199201

200-
const container = new springroll.Container('#game', {
202+
const container = new Container('#game', {
201203
plugins: [
202204
new HitAreaScalePlugin('#hitAreaScaleSlider', {defaultHitAreaScale = 0.5}),
203205
new DragThresholdScalePlugin('#dragThresholdScaleSlider', {defaultDragThresholdScale = 0.5}),
@@ -241,7 +243,7 @@ Note that these plugins accept HTML range inputs, rather than buttons.
241243
```javascript
242244
import { ButtonSizePlugin, PointerSizePlugin, LayersPlugin, Container } from 'springroll-container';
243245

244-
const container = new springroll.Container('#game', {
246+
const container = new Container('#game', {
245247
plugins: [
246248
new ButtonSizePlugin('#button-slider-selector', {
247249
defaultButtonSize: 0.5, // button size goes from 0.0 to 1.0. Default = 0.5
@@ -266,7 +268,7 @@ The HUD plugin allows users to position HUD elements within a game by docking to
266268
```javascript
267269
import { HUDPlugin, Container } from 'springroll-container';
268270

269-
const container = new springroll.Container('#game', {
271+
const container = new Container('#game', {
270272
plugins: [
271273
// expects exactly four(4) radio buttons with values "top", "bottom", "left", "right,
272274
new HUDPlugin('#hud-position-button-selector', {
@@ -293,7 +295,7 @@ The Keyboard Map Plugin allows users to re-map the keys/controls used in-game to
293295
```javascript
294296
import { ControlSensitivityPlugin, KeyboardMapPlugin, Container } from 'springroll-container';
295297

296-
const container = new springroll.Container('#game', {
298+
const container = new Container('#game', {
297299
plugins: [
298300
//ControlSensitivityPlugin expects an input of type=range for it's input.
299301
new ControlSensitivityPlugin('#sensitivity-slider-selector', {
@@ -330,7 +332,7 @@ Keybindings are tracked visually by setting the textContent of the buttons thems
330332
```javascript
331333
import { ColorVisionPlugin, Container } from 'springroll-container';
332334

333-
const container = new springroll.Container('#game', {
335+
const container = new Container('#game', {
334336
plugins: [
335337
// expects exactly five(5) radio buttons with values "none", "achromatopsia", "tritanopia", "deuteranopia",
336338
// and "protanopia" indicating the types of color visions supported.
@@ -365,7 +367,7 @@ The `openPath` method of the Container provides a mechanism for providing option
365367
`playOptions`:
366368

367369
```javascript
368-
var container = new springroll.Container('#game');
370+
var container = new Container('#game');
369371
container.openPath('game.html', {
370372
playOptions: {
371373
difficulty: 7,
@@ -433,7 +435,7 @@ It is included in the container constructor like any other plugin:
433435
```javascript
434436
import { UserDataPlugin, Container } from 'springroll-container';
435437

436-
const container = new springroll.Container('#game', {
438+
const container = new Container('#game', {
437439
plugins: [
438440
new UserDataPlugin(),
439441
]

dist/SpringRoll-Container-umd.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/SpringRoll-Container-umd.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

+31-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "springroll-container",
3-
"version": "2.0.1",
3+
"version": "2.0.2",
44
"description": "The iframe controller for interacting with SpringRoll applications",
55
"main": "./dist/index.js",
66
"license": "MIT",

src/plugins/README.md

+111
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,111 @@
1+
# Authoring Plugins
2+
3+
The process for writing a Container plugin differs based on whether it is going to be a built-in plugin, or external.
4+
5+
Plugins for Container should take the form of an ES6 module, preferably with a named export. E.g.:
6+
```javascript
7+
export class MyContainerPlugin() {...}
8+
```
9+
10+
When developing a plugin for Container v2.x there are 3 main lifecycle hooks to keep in mind: `preload`, `init`, and `start`.
11+
12+
`preload()`: Preload must return a `Promise`. It can be async. The method is passed the Container instance. In general, most plugins will only need to access the [Bellhop client](https://github.com/SpringRoll/Bellhop). However, the entire Container instance is available should you require it.
13+
*Note: if this method is missing or the returned promise is rejected, Container will automatically discard your plugin and it will not be loaded in properly.*
14+
15+
Example:
16+
```javascript
17+
export class ContainerPlugin() {
18+
constructor() {...}
19+
20+
async preload({ client }) {
21+
this.client = client;
22+
}
23+
}
24+
```
25+
26+
`init()`: The init method is called once all plugin `preload` promises have resolved. Most setup that involves interacting with the Springroll Application via Bellhop would happen here. Any event listeners (bellhop or otherwise) should go here. `init()` is also passed the Container instance if you need it.
27+
28+
`start()`: The `start()` method is called after all preloaded plugins have finished their `init()` calls. This method allows plugins to depend on others by allowing a second plugin to `start()` after a first plugin has ran `init()`. This can help ease race conditions between plugins, as they are not guarenteed to call `init()` in a consistent order. Similarly to `preload()`, `start()` is also passed the Container instance if required.
29+
30+
In general every plugin will follow a similar blueprint and will look something like this:
31+
```javascript
32+
export class ContainerPlugin() {
33+
constructor() {...}
34+
35+
async preload({ client }) {
36+
this.client = client;
37+
}
38+
39+
init() {...}
40+
41+
start() {...}
42+
43+
//Any other helper functions required
44+
}
45+
```
46+
47+
However, some more customized plugins plugins may have additional concerns. These are detailed below.```
48+
49+
## External Plugin
50+
External Plugins are generally specific to an application or organization and follow the above blueprint. They don't tend to follow a Springroll Application feature like `sound` or `captions`, and may just be additional custom functionality for your particular page. In this case, you can implement the methods you need for your plugin with no additional considerations.
51+
52+
## Porting Container v1.x plugins to v2.x
53+
Exactly how you go about porting your plugin from the SpringRollContainer 1 to 2 will depend on how the original plugin was written. The `init()` function for Container 2.0 plugins will loosely correspond to the older `setup()` from Container 1.0.
54+
55+
The older hook methods `open` and `opened` should now be implemented as event listeners in the main plugin.:
56+
```javascript
57+
export class MyPlugin {
58+
preload() {
59+
return Promise.resolve();
60+
}
61+
62+
init({ client }) {
63+
client.on('opened', () => {
64+
// do things
65+
});
66+
67+
client.on('open', () => {
68+
// do things
69+
});
70+
}
71+
}
72+
```
73+
74+
75+
## Internal a.k.a. Built-In Plugins
76+
If you're developing for SpringrollContainer directly the process is still the same but there are base plugin classes available to keep your plugins DRY and more consistent.
77+
78+
### [BasePlugin](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/base-plugins/BasePlugin.js)
79+
[Example Plugin](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/plugins/KeyboardMapPlugin.js)
80+
The most barebones plugin class avaialable. Should be used if none of the other plugins match your needs.
81+
Provides very basic implementations of `preload()`, `init()`, and `start()`.
82+
83+
| It also provides a few useful helper functions: | |
84+
| --- | --- |
85+
| `SendProperty(prop, value)` | Sends a single property and it's value through Bellhop to the application. `prop` should match the springroll feature name. Also [saves the property](https://github.com/SpringRoll/SpringRollContainer#saved-data-api) for re-use |
86+
| `warn(warningText)` | prints out an informative console warning |
87+
---
88+
89+
### [ButtonPlugin](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/base-plugins/ButtonPlugin.js)
90+
[Example Plugin](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/plugins/CaptionsTogglePlugin.js)
91+
The `ButtonPlugin` is useful for any plugin that requires a `mute` state (i.e. on or off). It extends the `BasePlugin` and has access to all of the methods above.
92+
| It also includes: | |
93+
| --- | --- |
94+
| `_setMuteProp(prop, button, muted)` | Sets the current state of the property, and sends it to the application. This also handles applying styles to the button or buttons to match. `button` can be a single instance of a button or an array of matching buttons.
95+
---
96+
97+
### [SliderPlugin](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/base-plugins/SliderPlugin.js)
98+
[Example Plugin](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/plugins/LayersPlugin.js)
99+
If your plugin requires a range input to control volume or a similar setting this plugin will handle most of it. It can only accept one setting to control however so if you require more than one setting (e.g. `MusicVolume` and `VoiceOverVolume`) consider breaking it out into multiple plugins or just using `BasePlugin`. If your plugin extends this base class all you have to do is pass the configuration options through the `super()` call and the `SliderPlugin` handles the rest.
100+
101+
### [RadioGroupPlugin](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/base-plugins/RadioGroupPlugin.js)
102+
[Example Plugin](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/plugins/ColorVisionPlugin.js)
103+
The RadioGroupPlugin is used for any plugin that uses groups of radio buttons to allow selection between pre-determined options. Similarly to the SliderPlugin above, the RadioGroupPlugin handles most of the set up behind the scenes and you won't have to interact directly with any of its methods.
104+
105+
### UI-Elements
106+
Container also provides a few base ui-element classes to help set up any HTML controls you have. These are:
107+
- [Slider](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/ui-elements/Slider.js)
108+
- [Button](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/ui-elements/Button.js)
109+
- [RadioGroup](https://github.com/SpringRoll/SpringRollContainer/blob/main/src/ui-elements/RadioGroup.js)
110+
111+
Note: these are used automatically by the `RadioGroupPlugin` and `SliderPlugin`. So these should only be required if you're not using one of those two as your base.

src/plugins/SoundPlugin.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -216,16 +216,16 @@ export class SoundPlugin extends ButtonPlugin {
216216
this.voSliders[i].enableSliderEvents(this.onVOVolumeChange.bind(this));
217217
}
218218

219-
if (this.soundSliders[0].slider) {
219+
if (this.soundSliders[0] && this.soundSliders[0].slider) {
220220
this.soundVolume = this.soundSliders[0].value;
221221
}
222-
if (this.musicSliders[0].slider) {
222+
if (this.musicSliders[0] && this.musicSliders[0].slider) {
223223
this.musicVolume = this.musicSliders[0].value;
224224
}
225-
if (this.sfxSliders[0].slider) {
225+
if (this.sfxSliders[0] && this.sfxSliders[0].slider) {
226226
this.sfxVolume = this.sfxSliders[0].value;
227227
}
228-
if (this.voSliders[0].slider) {
228+
if (this.voSliders[0] && this.voSliders[0].slider) {
229229
this.voVolume = this.voSliders[0].value;
230230
}
231231
}
@@ -391,16 +391,16 @@ export class SoundPlugin extends ButtonPlugin {
391391
start() {
392392

393393
for (let i = 0; i < this.soundButtonsLength; i++) {
394-
this.soundButtons[i].enableButtons();
394+
this.soundButtons[i].enableButton();
395395
}
396396
for (let i = 0; i < this.musicButtonsLength; i++) {
397-
this.musicButtons[i].enableButtons();
397+
this.musicButtons[i].enableButton();
398398
}
399399
for (let i = 0; i < this.sfxButtonsLength; i++) {
400-
this.sfxButtons[i].enableButtons();
400+
this.sfxButtons[i].enableButton();
401401
}
402402
for (let i = 0; i < this.voButtonsLength; i++) {
403-
this.voButtons[i].enableButtons();
403+
this.voButtons[i].enableButton();
404404
}
405405

406406
this.soundMuted = !!SavedData.read(SoundPlugin.soundMutedKey);

0 commit comments

Comments
 (0)