Skip to content

Commit 330baf3

Browse files
author
Matt Karl
committed
Upgraded the Preview to support SpringRoll Connect controls
1 parent f18a7de commit 330baf3

20 files changed

+835
-43
lines changed

bower.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
{
22
"name": "SpringRollStudio",
3-
"version": "0.2.10",
3+
"version": "0.2.11",
44
"private": true,
55
"dependencies": {
66
"jqueryui": "*",
77
"bootstrap": "~3.2.0",
8-
"cloudkid-namespace": "*",
8+
"springroll": "*",
99
"requestAnimationFrame": "*",
1010
"bootstrap-confirmation2": "*",
1111
"wavesurfer.js": "*",
1212
"underscore": "~1.7.0",
1313
"node-webkit-app": "*",
14+
"pbskids-pt-client": "SpringRoll/ProgressTrackerClient",
1415
"sortable": "farhadi/html5sortable",
1516
"default": "https://github.com/SpringRoll/SpringRollTemplate.git",
1617
"sunlight": "https://github.com/CloudKidStudio/sunlight.git#master"

deploy/assets/fonts/glyphicons-halflings-regular.eot

100755100644
File mode changed.

deploy/assets/fonts/glyphicons-halflings-regular.svg

100755100644
File mode changed.

deploy/assets/fonts/glyphicons-halflings-regular.ttf

100755100644
File mode changed.

deploy/assets/fonts/glyphicons-halflings-regular.woff

100755100644
File mode changed.

deploy/assets/fonts/preview.eot

5.18 KB
Binary file not shown.

deploy/assets/fonts/preview.svg

+25
Loading

deploy/assets/fonts/preview.ttf

5.02 KB
Binary file not shown.

deploy/assets/fonts/preview.woff

5.1 KB
Binary file not shown.

deploy/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "SpringRollStudio",
33
"description": "Application for SpringRoll projects",
4-
"version": "0.2.10",
4+
"version": "0.2.11",
55
"repository": {
66
"type": "git",
77
"url": "https://github.com/SpringRoll/SpringRollStudio"

installer/win32.nsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# These three must be integers
55
!define VERSIONMAJOR 0
66
!define VERSIONMINOR 2
7-
!define VERSIONBUILD 10
7+
!define VERSIONBUILD 11
88
# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
99
# It is possible to use "mailto:" links in here to open the email client
1010
!define HELPURL "https://github.com/SpringRoll/SpringRollStudio/issues"

installer/win64.nsi

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# These three must be integers
55
!define VERSIONMAJOR 0
66
!define VERSIONMINOR 2
7-
!define VERSIONBUILD 10
7+
!define VERSIONBUILD 11
88
# These will be displayed by the "Click here for support information" link in "Add/Remove Programs"
99
# It is possible to use "mailto:" links in here to open the email client
1010
!define HELPURL "https://github.com/SpringRoll/SpringRollStudio/issues"

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "SpringRollStudio",
33
"private": true,
4-
"version": "0.2.10",
4+
"version": "0.2.11",
55
"dependencies": {
66
"grunt": "^0.4.5",
77
"grunt-appdmg": "^0.3.1",

project.json

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "SpringRollStudio",
3-
"version": "0.2.10",
3+
"version": "0.2.11",
44
"main": [
55
"components/node-webkit-app/src/utils/UpdateChecker.js",
66
"components/node-webkit-app/src/utils/Browser.js",
@@ -18,7 +18,9 @@
1818
"components/jqueryui/ui/draggable.js",
1919
"components/sortable/jquery.sortable.js",
2020
"components/bootstrap/dist/js/bootstrap.min.js",
21-
"components/cloudkid-namespace/dist/namespace.min.js",
21+
"components/bellhop/dist/bellhop.min.js",
22+
"components/pbskids-pt-client/dist/progress-tracker-client.min.js",
23+
"components/springroll/dist/modules/container.min.js",
2224
"components/bootstrap/less/bootstrap.less",
2325
"components/bootstrap-confirmation2/bootstrap-confirmation.js",
2426
"components/underscore/underscore.js",
@@ -35,7 +37,9 @@
3537
"components/jqueryui/ui/draggable.js",
3638
"components/sortable/jquery.sortable.js",
3739
"components/bootstrap/dist/js/bootstrap.js",
38-
"components/cloudkid-namespace/dist/namespace.js",
40+
"components/bellhop/dist/bellhop.js",
41+
"components/pbskids-pt-client/dist/progress-tracker-client.js",
42+
"components/springroll/dist/modules/container.js",
3943
"components/bootstrap/less/bootstrap.less",
4044
"components/bootstrap-confirmation2/bootstrap-confirmation.min.js",
4145
"components/underscore/underscore.js",
@@ -87,6 +91,7 @@
8791
"src/less/new/NewProject.less"
8892
],
8993
"preview": [
94+
"src/js/preview/PreviewContainer.js",
9095
"src/js/preview/Preview.js",
9196
"src/less/preview/Preview.less"
9297
]

src/jade/preview.jade

+137-8
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,140 @@ html
88
link(href='assets/css/preview.css', rel='stylesheet')
99
script(src='assets/js/preview.js')
1010
body
11-
header.fixed
12-
h1#title
13-
button#refreshButton.btn.btn-md
14-
span.glyphicon.glyphicon-refresh
15-
button#devToolsButton.btn.btn-md
16-
span.glyphicon.glyphicon-cog
17-
#previewContainer
18-
iframe#preview(scrolling='no', frameborder='0')
11+
#frame.loading.show-title.show-controls
12+
#pausedScreen
13+
.container
14+
h2 Game is Paused.
15+
button#resumeButton.btn.btn-lg.btn-primary
16+
span.icon.icon-play
17+
| Resume
18+
#appTitle Loading...
19+
.controls
20+
button#helpButton.btn.btn-primary.main.disabled(data-toggle='tooltip', title='Play Help')
21+
span.icon.icon-help
22+
button#soundButton.btn.btn-primary.main.muted.disabled(data-toggle='tooltip', title='Toggle All Sounds')
23+
span.icon.icon-sound.on
24+
span.icon.icon-sound-off.off
25+
button#soundToggle.btn.btn-primary.main.drop-handle.disabled(data-toggle-div='#soundContexts')
26+
span.arrow-down
27+
form#soundContexts.drop-down.form.form-horizontal
28+
.form-group.form-title
29+
button.close(data-toggle-div='#soundContexts')
30+
| ×
31+
| Audio Settings
32+
.form-group: .col-xs-12
33+
button#sfxButton.btn.btn-primary.btn-block.muted.disabled
34+
span.icon.icon-sfx.on
35+
span.icon.icon-sfx-off.off
36+
span.label.on Sound FX On
37+
span.label.off Sound FX Off
38+
button#musicButton.btn.btn-primary.btn-block.muted.disabled
39+
span.icon.icon-music.on
40+
span.icon.icon-music-off.off
41+
span.label.on Music On
42+
span.label.off Music Off
43+
button#voButton.btn.btn-primary.btn-block.muted.disabled
44+
span.icon.icon-vo.on
45+
span.icon.icon-vo-off.off
46+
span.label.on Voice-Over On
47+
span.label.off Voice-Over Off
48+
button#captionsButton.btn.btn-primary.main.muted.disabled(data-toggle='tooltip', title='Toggle Captions')
49+
span.icon.icon-captions.on
50+
span.icon.icon-captions-off.off
51+
button#captionsToggle.btn.btn-primary.main.drop-handle.disabled(data-toggle-div='#captionsStyles')
52+
span.arrow-down
53+
form#captionsStyles.drop-down.form.form-horizontal
54+
.form-group.form-title
55+
button.close(data-toggle-div='#captionsStyles')
56+
| ×
57+
| Captions Style
58+
.form-group
59+
label.col-xs-4.control-label Align
60+
.col-xs-8: select.form-control(name='align')
61+
option(value='top', selected='') Top
62+
option(value='bottom') Bottom
63+
.form-group
64+
label.col-xs-4.control-label Text Color
65+
.col-xs-8: select.form-control(name='color')
66+
option(value='white', selected='') White
67+
option(value='white-semi') White (50%)
68+
option(value='black') Black
69+
option(value='black-semi') Black (50%)
70+
option(value='yellow') Yellow
71+
option(value='yellow-semi') Yellow (50%)
72+
option(value='pink') Pink
73+
option(value='pink-semi') Pink (50%)
74+
option(value='blue') Blue
75+
option(value='blue-semi') Blue (50%)
76+
.form-group
77+
label.col-xs-4.control-label Background Color
78+
.col-xs-8: select.form-control(name='background')
79+
option(value='none') [None]
80+
option(value='white') White
81+
option(value='white-semi') White (50%)
82+
option(value='black') Black
83+
option(value='black-semi', selected='') Black (50%)
84+
option(value='yellow') Yellow
85+
option(value='yellow-semi') Yellow (50%)
86+
option(value='pink') Pink
87+
option(value='pink-semi') Pink (50%)
88+
option(value='blue') Blue
89+
option(value='blue-semi') Blue (50%)
90+
.form-group
91+
label.col-xs-4.control-label Edge Style
92+
.col-xs-8: select.form-control(name='edge')
93+
option(value='none', selected='') [None]
94+
option(value='raise') Beveled Up
95+
option(value='depress') Beveled Down
96+
option(value='uniform') Stroke
97+
option(value='drop') Drop Shadow
98+
.form-group
99+
label.col-xs-4.control-label Size
100+
.col-xs-8: select.form-control(name='size')
101+
option(value='xs') Extra Small
102+
option(value='sm') Small
103+
option(value='md', selected='') Medium
104+
option(value='lg') Large
105+
option(value='xl') Extra Large
106+
.form-group
107+
label.col-xs-4.control-label Font
108+
.col-xs-8: select.form-control(name='font')
109+
option(value='arial', selected='') Arial
110+
option(value='arial-black') Arial Black
111+
option(value='comic-sans') Comic Sans MS
112+
option(value='courier') Courier New
113+
option(value='georgia') Georgia
114+
option(value='impact') Impact
115+
option(value='console') Lucida Console
116+
option(value='lucida') Lucida Grande
117+
option(value='palatino') Palatino Linotype
118+
option(value='tahoma') Tahoma
119+
option(value='times') Times New Roman
120+
option(value='trebuchet') Trebuchet MS
121+
option(value='verdana') Verdana
122+
button#settingsButton.btn.btn-primary.main.disabled(data-toggle-div='#settings', data-toggle='tooltip', title='Logging Service')
123+
span.icon.icon-gear
124+
form#settings.drop-down.form.form-horizontal
125+
.form-group.form-title
126+
button#cancelSettings.close(data-toggle-div='#settings')
127+
| ×
128+
| Logging Service
129+
.form-group
130+
label.col-xs-4.control-label Host or IP
131+
.col-xs-8: input.form-control#remoteHost(type='text', name='remoteHost')
132+
.form-group
133+
label.col-xs-4.control-label Channel Name
134+
.col-xs-8: input.form-control#remoteChannel(type='text', name='remoteChannel')
135+
.form-group.text-center
136+
.col-xs-8.col-xs-offset-4
137+
button#remoteConnect.btn.btn-primary.btn-block.disabled(data-toggle-div='#settings')
138+
| Connect
139+
button#pauseButton.btn.btn-primary.main.unpaused.disabled(data-toggle='tooltip', title='Play/Pause')
140+
span.icon.icon-pause.on
141+
span.icon.icon-play.off
142+
button#refreshButton.btn.btn-primary.main(data-toggle='tooltip', title='Reload')
143+
span.glyphicon.glyphicon-refresh
144+
button#devToolsButton.btn.btn-primary.main(data-toggle='tooltip', title='Toggle Console')
145+
span.glyphicon.glyphicon-list
146+
.appWrapper
147+
iframe#appContainer(frameborder='0', scrolling='no')

src/js/preview/Preview.js

+41-14
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@
88
}
99

1010
// Import classes
11-
var Module = springroll.Module;
11+
var Module = springroll.Module,
12+
PreviewContainer = springroll.PreviewContainer;
13+
14+
// The local port to use for the preview server
15+
var SERVER_PORT = 3030;
1216

1317
/**
1418
* Preview the current project
@@ -29,36 +33,41 @@
2933
* The local location for the iframe
3034
* @property {string} location
3135
*/
32-
this.location = "http://localhost:3000";
36+
this.location = "http://localhost:" + SERVER_PORT;
3337

3438
/**
3539
* The current iframe
3640
* @property {jquery} iframe
3741
*/
38-
this.iframe = $("#preview");
42+
this.container = new PreviewContainer();
3943

40-
var project = localStorage.getItem('project');
44+
// Grab the opened project
45+
this.project = localStorage.getItem('project');
4146

4247
$("#refreshButton").click(this.refresh.bind(this));
4348
$("#devToolsButton").click(this.toggleDevTools.bind(this));
44-
45-
// Set the project title
46-
$("#title").text(path.basename(project));
49+
50+
// Disable the form submitting
51+
$('form').submit(function(e)
52+
{
53+
return false;
54+
});
4755

4856
if (APP)
4957
{
5058
var app = connect();
51-
this.server = app.listen(3000);
59+
this.server = app.listen(SERVER_PORT);
5260
app.use(serveStatic(
53-
path.join(project, 'deploy'),
61+
path.join(this.project, 'deploy'),
5462
{'index': ['index.html']}
5563
));
5664

5765
// Initialize the menu
5866
this.initMenubar(false, true);
5967
}
6068

61-
this.refresh();
69+
// When the app closes re-open it
70+
this.open();
6271
};
6372

6473
// Reference to the prototype
@@ -70,8 +79,25 @@
7079
*/
7180
p.refresh = function()
7281
{
73-
// Goto the webserver
74-
this.iframe.prop('src', this.location);
82+
this.container.close();
83+
};
84+
85+
/**
86+
* Open the project's deploy folder
87+
* @method open
88+
*/
89+
p.open = function()
90+
{
91+
if (APP)
92+
{
93+
// Set the project title and
94+
this.container.appTitle.text(path.basename(this.project));
95+
this.container.remoteChannel.val(path.basename(this.project));
96+
this.container.connectLoggingService();
97+
}
98+
99+
this.container.open(this.location);
100+
this.container.once('closed', this.open.bind(this));
75101
};
76102

77103
/**
@@ -88,7 +114,7 @@
88114
{
89115
// Run the dev tools in jailed mode
90116
// edit the iframe contents only
91-
this.main.showDevTools(this.iframe[0]);
117+
this.main.showDevTools(this.container.dom);
92118
}
93119
};
94120

@@ -98,7 +124,8 @@
98124
*/
99125
p.shutdown = function()
100126
{
101-
this.iframe = null;
127+
this.container = null;
128+
this.project = null;
102129

103130
if (this.server)
104131
{

0 commit comments

Comments
 (0)