Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Block serialization compression #32

Merged

Conversation

kchadha
Copy link
Contributor

@kchadha kchadha commented Apr 6, 2018

Resolves #22
Resolves scratchfoundation/scratch-vm#194

Proposed Changes

This pull request is one of the last major changes for the save/load work and should solidify the 3.0 format. Specifically, the changes made here cover the pre-compression work for the Scratch 3.0 format (related to LLK/scratch-vm#).

Related Pull Requests

This pull request is tied to the following others in scratch-vm and scratch-gui and should only be merged when all are ready since there are dependencies in both directions.

Testing

Testing has been done manually on importing 2.0 projects into 3.0 with 2 rounds of saving and loading. Actual fixtures to be added in the near future for the 3.0 format. Tracking this as an issue in #31.

kchadha added 4 commits April 6, 2018 14:53
…itives.

Update validation of sb3 projects to account for new block serialization that includes
precompression of primitives like the math_number or text blocks.
thisandagain
thisandagain previously approved these changes Apr 6, 2018
@kchadha
Copy link
Contributor Author

kchadha commented Apr 9, 2018

@cwillisf I think it would be good to get your review on this PR too before it gets pulled in

},
"videoState": {
"type": "string",
"enum": ["on", "off", "on_flipped"]

This comment was marked as abuse.

cwillisf
cwillisf previously approved these changes Apr 10, 2018
Copy link
Contributor

@cwillisf cwillisf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good! I have a couple of comments/questions but I don't think they should block this merge.

@@ -29,7 +41,7 @@
},
"dataFormat": {
"type": "string",
"enum": ["png", "PNG", "svg", "SVG", "jpeg", "JPEG", "jpg", "JPG", "bmp", "BMP"]
"enum": ["png", "PNG", "svg", "SVG", "jpeg", "JPEG", "jpg", "JPG", "bmp", "BMP", "gif", "GIF"]

This comment was marked as abuse.

This comment was marked as abuse.

"items": [
{
"type":"number",
"enum":[1,2,3]

This comment was marked as abuse.

Only accept lowercase file extensions (serialization should ensure that these are saved lowercase),
add description for some constants.
kchadha added 2 commits April 10, 2018 16:41
…sue in scratch-blocks and scrat

Variables and lists are the only primitives that should exist at the top level.
@kchadha
Copy link
Contributor Author

kchadha commented Apr 10, 2018

@cwillisf, @rschamp, @thisandagain, made some changes addressing PR comments that were made and also undoing the validation workaround I had for the scratch-blocks/scratch-vm bug where orphan shadow blocks get created for custom procedure calls every time there is a pass through xml (scratchfoundation/scratch-vm#1011). This will be handled in VM instead (look out for a change coming soon to that PR.

cwillisf
cwillisf previously approved these changes Apr 10, 2018
Copy link
Contributor

@cwillisf cwillisf left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Even better -- except for a stray newline that snuck in.

},
"format": {
"type": "string",
"enum": ["", "adpcm"]
},
"md5ext": {
"type": "string",
"pattern": "^[a-fA-F0-9]{32}.[a-zA-Z]+$"
"pattern": "^[a-fA-F0-9]{32}.[a-zA-Z0-9]+$"

This comment was marked as abuse.

This comment was marked as abuse.

This comment was marked as abuse.

@@ -129,6 +129,7 @@
{
"type": "number",
"enum": [4,5,6,7,8]

This comment was marked as abuse.

This comment was marked as abuse.

This comment was marked as abuse.

@@ -232,7 +233,8 @@
"items": [
{
"type":"number",
"enum":[1,2,3]
"enum":[1,2,3],
"description": "1 = unobscured shadow, 2 = no shadow, 3 = obscured shadow"

This comment was marked as abuse.

@kchadha kchadha dismissed rschamp’s stale review April 11, 2018 18:48

Addressed the on_flipped vs. on-flipped issue.

@kchadha kchadha merged commit 79d5b8f into scratchfoundation:master Apr 11, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Serialize sb3 blocks section to a more compact format Design specification for "SB3"
5 participants