Skip to content

Commit d01f04b

Browse files
authored
Merge pull request #2954 from fsih/removev2SvgAdapter
Remove v2SvgAdapter
2 parents 4337b09 + 5559c72 commit d01f04b

File tree

6 files changed

+66
-54
lines changed

6 files changed

+66
-54
lines changed

package-lock.json

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

package.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@
4747
"text-encoding": "0.7.0",
4848
"worker-loader": "^1.1.1"
4949
},
50+
"peerDependencies": {
51+
"scratch-svg-renderer": "^0.2.0-prerelease"
52+
},
5053
"devDependencies": {
5154
"@babel/core": "^7.1.2",
5255
"@babel/preset-env": "^7.1.0",
@@ -71,8 +74,9 @@
7174
"scratch-blocks": "latest",
7275
"scratch-l10n": "^3.1.20181129221712",
7376
"scratch-render": "latest",
77+
"scratch-render-fonts": "^1.0.0-prerelease.20210401210003",
7478
"scratch-storage": "^1.1.0",
75-
"scratch-svg-renderer": "latest",
79+
"scratch-svg-renderer": "^0.2.0-prerelease.20210325225314",
7680
"script-loader": "0.7.2",
7781
"stats.js": "^0.17.0",
7882
"tap": "^12.0.1",

src/engine/runtime.js

-8
Original file line numberDiff line numberDiff line change
@@ -1566,14 +1566,6 @@ class Runtime extends EventEmitter {
15661566
this.renderer.setLayerGroupOrdering(StageLayering.LAYER_GROUPS);
15671567
}
15681568

1569-
/**
1570-
* Set the svg adapter, which converts scratch 2 svgs to scratch 3 svgs
1571-
* @param {!SvgRenderer} svgAdapter The adapter to attach
1572-
*/
1573-
attachV2SVGAdapter (svgAdapter) {
1574-
this.v2SvgAdapter = svgAdapter;
1575-
}
1576-
15771569
/**
15781570
* Set the bitmap adapter for the VM/runtime, which converts scratch 2
15791571
* bitmaps to scratch 3 bitmaps. (Scratch 3 bitmaps are all bitmap resolution 2)

src/import/load-costume.js

+11-10
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,25 @@
11
const StringUtil = require('../util/string-util');
22
const log = require('../util/log');
3+
const {loadSvgString, serializeSvgToString} = require('scratch-svg-renderer');
34

45
const loadVector_ = function (costume, runtime, rotationCenter, optVersion) {
56
return new Promise(resolve => {
6-
let svgString = costume.asset.decodeText();
7-
// SVG Renderer load fixes "quirks" associated with Scratch 2 projects
8-
if (optVersion && optVersion === 2 && !runtime.v2SvgAdapter) {
9-
log.error('No V2 SVG adapter present; SVGs may not render correctly.');
10-
} else if (optVersion && optVersion === 2 && runtime.v2SvgAdapter) {
11-
runtime.v2SvgAdapter.loadString(svgString, true /* fromVersion2 */);
12-
svgString = runtime.v2SvgAdapter.toString();
13-
// Put back into storage
7+
const svgString = costume.asset.decodeText();
8+
// scratch-svg-renderer fixes syntax that causes loading issues,
9+
// and if optVersion is 2, fixes "quirks" associated with Scratch 2 SVGs,
10+
const fixedSvgString = serializeSvgToString(loadSvgString(svgString, optVersion === 2/* fromVersion2 */));
11+
12+
// If the string changed, put back into storage
13+
if (svgString !== fixedSvgString) {
1414
const storage = runtime.storage;
15-
costume.asset.encodeTextData(svgString, storage.DataFormat.SVG, true);
15+
costume.asset.encodeTextData(fixedSvgString, storage.DataFormat.SVG, true);
1616
costume.assetId = costume.asset.assetId;
1717
costume.md5 = `${costume.assetId}.${costume.dataFormat}`;
1818
}
19+
1920
// createSVGSkin does the right thing if rotationCenter isn't provided, so it's okay if it's
2021
// undefined here
21-
costume.skinId = runtime.renderer.createSVGSkin(svgString, rotationCenter);
22+
costume.skinId = runtime.renderer.createSVGSkin(fixedSvgString, rotationCenter);
2223
costume.size = runtime.renderer.getSkinSize(costume.skinId);
2324
// Now we should have a rotationCenter even if we didn't before
2425
if (!rotationCenter) {

src/playground/benchmark.js

-1
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,6 @@ const runBenchmark = function () {
650650
vm.attachRenderer(renderer);
651651
const audioEngine = new AudioEngine();
652652
vm.attachAudioEngine(audioEngine);
653-
vm.attachV2SVGAdapter(new ScratchSVGRenderer.SVGRenderer());
654653
vm.attachV2BitmapAdapter(new ScratchSVGRenderer.BitmapAdapter());
655654

656655
// Feed mouse events as VM I/O events.

src/virtual-machine.js

+2-6
Original file line numberDiff line numberDiff line change
@@ -1090,12 +1090,8 @@ class VirtualMachine extends EventEmitter {
10901090
return this.runtime && this.runtime.renderer;
10911091
}
10921092

1093-
/**
1094-
* Set the svg adapter for the VM/runtime, which converts scratch 2 svgs to scratch 3 svgs
1095-
* @param {!SvgRenderer} svgAdapter The adapter to attach
1096-
*/
1097-
attachV2SVGAdapter (svgAdapter) {
1098-
this.runtime.attachV2SVGAdapter(svgAdapter);
1093+
// @deprecated
1094+
attachV2SVGAdapter () {
10991095
}
11001096

11011097
/**

0 commit comments

Comments
 (0)