Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
ardublockly
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
ardublockly
Commits
3e12c1ea
Commit
3e12c1ea
authored
Mar 23, 2015
by
Neil Fraser
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Render sprites from vectors. Remove blurry shadow from trash.
parent
706080c7
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
97 additions
and
24 deletions
+97
-24
core/blockly.js
core/blockly.js
+1
-1
core/inject.js
core/inject.js
+0
-19
core/trashcan.js
core/trashcan.js
+3
-4
media/sprites.png
media/sprites.png
+0
-0
media/sprites.svg
media/sprites.svg
+93
-0
No files found.
core/blockly.js
View file @
3e12c1ea
...
@@ -86,7 +86,7 @@ Blockly.HSV_VALUE = 0.65;
...
@@ -86,7 +86,7 @@ Blockly.HSV_VALUE = 0.65;
* Sprited icons and images.
* Sprited icons and images.
*/
*/
Blockly
.
SPRITE
=
{
Blockly
.
SPRITE
=
{
width
:
6
4
,
width
:
8
4
,
height
:
92
,
height
:
92
,
url
:
'
sprites.png
'
url
:
'
sprites.png
'
};
};
...
...
core/inject.js
View file @
3e12c1ea
...
@@ -243,25 +243,6 @@ Blockly.createDom_ = function(container) {
...
@@ -243,25 +243,6 @@ Blockly.createDom_ = function(container) {
Blockly
.
createSvgElement
(
'
feComposite
'
,
Blockly
.
createSvgElement
(
'
feComposite
'
,
{
'
in
'
:
'
SourceGraphic
'
,
'
in2
'
:
'
specOut
'
,
'
operator
'
:
'
arithmetic
'
,
{
'
in
'
:
'
SourceGraphic
'
,
'
in2
'
:
'
specOut
'
,
'
operator
'
:
'
arithmetic
'
,
'
k1
'
:
0
,
'
k2
'
:
1
,
'
k3
'
:
1
,
'
k4
'
:
0
},
filter
);
'
k1
'
:
0
,
'
k2
'
:
1
,
'
k3
'
:
1
,
'
k4
'
:
0
},
filter
);
/*
<filter id="blocklyTrashcanShadowFilter">
<feGaussianBlur in="SourceAlpha" stdDeviation="2" result="blur"/>
<feOffset in="blur" dx="1" dy="1" result="offsetBlur"/>
<feMerge>
<feMergeNode in="offsetBlur"/>
<feMergeNode in="SourceGraphic"/>
</feMerge>
</filter>
*/
filter
=
Blockly
.
createSvgElement
(
'
filter
'
,
{
'
id
'
:
'
blocklyTrashcanShadowFilter
'
},
defs
);
Blockly
.
createSvgElement
(
'
feGaussianBlur
'
,
{
'
in
'
:
'
SourceAlpha
'
,
'
stdDeviation
'
:
2
,
'
result
'
:
'
blur
'
},
filter
);
Blockly
.
createSvgElement
(
'
feOffset
'
,
{
'
in
'
:
'
blur
'
,
'
dx
'
:
1
,
'
dy
'
:
1
,
'
result
'
:
'
offsetBlur
'
},
filter
);
feMerge
=
Blockly
.
createSvgElement
(
'
feMerge
'
,
{},
filter
);
Blockly
.
createSvgElement
(
'
feMergeNode
'
,
{
'
in
'
:
'
offsetBlur
'
},
feMerge
);
Blockly
.
createSvgElement
(
'
feMergeNode
'
,
{
'
in
'
:
'
SourceGraphic
'
},
feMerge
);
/*
/*
<filter id="blocklyShadowFilter">
<filter id="blocklyShadowFilter">
<feGaussianBlur stdDeviation="2"/>
<feGaussianBlur stdDeviation="2"/>
...
...
core/trashcan.js
View file @
3e12c1ea
...
@@ -151,7 +151,7 @@ Blockly.Trashcan.prototype.top_ = 0;
...
@@ -151,7 +151,7 @@ Blockly.Trashcan.prototype.top_ = 0;
*/
*/
Blockly
.
Trashcan
.
prototype
.
createDom
=
function
()
{
Blockly
.
Trashcan
.
prototype
.
createDom
=
function
()
{
/*
/*
<g
filter="url(#blocklyTrashcanShadowFilter)"
>
<g>
<clippath id="blocklyTrashBodyClipPath">
<clippath id="blocklyTrashBodyClipPath">
<rect width="47" height="45" y="15"></rect>
<rect width="47" height="45" y="15"></rect>
</clippath>
</clippath>
...
@@ -160,8 +160,7 @@ Blockly.Trashcan.prototype.createDom = function() {
...
@@ -160,8 +160,7 @@ Blockly.Trashcan.prototype.createDom = function() {
<image width="47" height="15" href="media/trashlid.png"></image>
<image width="47" height="15" href="media/trashlid.png"></image>
</g>
</g>
*/
*/
this
.
svgGroup_
=
Blockly
.
createSvgElement
(
'
g
'
,
this
.
svgGroup_
=
Blockly
.
createSvgElement
(
'
g
'
,
{},
null
);
{
'
filter
'
:
'
url(#blocklyTrashcanShadowFilter)
'
},
null
);
var
clip
=
Blockly
.
createSvgElement
(
'
clipPath
'
,
var
clip
=
Blockly
.
createSvgElement
(
'
clipPath
'
,
{
'
id
'
:
'
blocklyTrashBodyClipPath
'
},
{
'
id
'
:
'
blocklyTrashBodyClipPath
'
},
...
@@ -278,7 +277,7 @@ Blockly.Trashcan.prototype.animateLid_ = function() {
...
@@ -278,7 +277,7 @@ Blockly.Trashcan.prototype.animateLid_ = function() {
(
Blockly
.
RTL
?
-
lidAngle
:
lidAngle
)
+
'
,
'
+
(
Blockly
.
RTL
?
-
lidAngle
:
lidAngle
)
+
'
,
'
+
(
Blockly
.
RTL
?
4
:
this
.
WIDTH_
-
4
)
+
'
,
'
+
(
Blockly
.
RTL
?
4
:
this
.
WIDTH_
-
4
)
+
'
,
'
+
(
this
.
LID_HEIGHT_
-
2
)
+
'
)
'
);
(
this
.
LID_HEIGHT_
-
2
)
+
'
)
'
);
var
opacity
=
goog
.
math
.
lerp
(
0.
2
,
0.4
,
this
.
lidOpen_
);
var
opacity
=
goog
.
math
.
lerp
(
0.
4
,
0.8
,
this
.
lidOpen_
);
this
.
svgGroup_
.
style
.
opacity
=
opacity
;
this
.
svgGroup_
.
style
.
opacity
=
opacity
;
if
(
this
.
lidOpen_
>
0
&&
this
.
lidOpen_
<
1
)
{
if
(
this
.
lidOpen_
>
0
&&
this
.
lidOpen_
<
1
)
{
this
.
lidTask_
=
goog
.
Timer
.
callOnce
(
this
.
animateLid_
,
20
,
this
);
this
.
lidTask_
=
goog
.
Timer
.
callOnce
(
this
.
animateLid_
,
20
,
this
);
...
...
media/sprites.png
View replaced file @
706080c7
View file @
3e12c1ea
1.02 KB
|
W:
|
H:
4.39 KB
|
W:
|
H:
2-up
Swipe
Onion skin
media/sprites.svg
0 → 100644
View file @
3e12c1ea
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
xmlns=
"http://www.w3.org/2000/svg"
version=
"1.1"
width=
"84px"
height=
"92px"
>
<style
type=
"text/css"
>
#background {
fill: none;
}
.shield {
fill: #00c;
stroke: #ccc;
stroke-width: 1px;
}
.mark {
fill: #ccc;
font-family: sans-serif;
font-size: 9pt;
font-weight: bold;
text-anchor: middle;
}
.hovered .shield {
fill: #00f;
stroke: #fff;
}
.hovered .mark {
fill: #fff;
}
.mutator .mark {
font-size: 14pt;
}
.arrows {
fill: #000;
stroke: none;
}
.selected .arrows {
fill: #fff;
}
.checkmark {
fill: #000;
font-family: sans-serif;
font-size: 10pt;
text-anchor: middle;
}
.trash {
fill: #888;
}
</style>
<rect
id=
"background"
width=
"84"
height=
"92"
x=
"0"
y=
"0"
/>
<g
transform=
"translate(47.5, 35.5)"
>
<g
class=
"comment"
transform=
"translate(0, 0)"
>
<circle
class=
"shield"
r=
"8"
cx=
"8"
cy=
"8"
/>
<text
class=
"mark"
x=
"8"
y=
"12.75"
>
?
</text>
</g>
<g
class=
"comment hovered"
transform=
"translate(20, 0)"
>
<circle
class=
"shield"
r=
"8"
cx=
"8"
cy=
"8"
/>
<text
class=
"mark"
x=
"8"
y=
"12.75"
>
?
</text>
</g>
<g
class=
"warning"
transform=
"translate(0, 20)"
>
<path
class=
"shield"
d=
"M 2,15 Q -1,15 0.5,12 L 6.5,1.7 Q 8,-1 9.5,1.7 L 15.5,12 Q 17,15 14,15 z"
/>
<text
class=
"mark"
x=
"8"
y=
"13"
>
!
</text>
</g>
<g
class=
"warning hovered"
transform=
"translate(20, 20)"
>
<path
class=
"shield"
d=
"M 2,15 Q -1,15 0.5,12 L 6.5,1.7 Q 8,-1 9.5,1.7 L 15.5,12 Q 17,15 14,15 z"
/>
<text
class=
"mark"
x=
"8"
y=
"13"
>
!
</text>
</g>
<g
class=
"mutator"
transform=
"translate(0, 40)"
>
<rect
class=
"shield"
width=
"16"
height=
"16"
rx=
"4"
ry=
"4"
/>
<text
class=
"mark"
x=
"8"
y=
"13.5"
>
⚙
</text>
</g>
<g
class=
"mutator hovered"
transform=
"translate(20, 40)"
>
<rect
class=
"shield"
width=
"16"
height=
"16"
rx=
"4"
ry=
"4"
/>
<text
class=
"mark"
x=
"8"
y=
"13.5"
>
⚙
</text>
</g>
</g>
<g>
<path
class=
"arrows"
d=
"M 13,1.5 13,14.5 1.74,8 z"
/>
<path
class=
"arrows"
d=
"M 17.5,3 30.5,3 24,14.26 z"
/>
<path
class=
"arrows"
d=
"M 35,1.5 35,14.5 46.26,8 z"
/>
</g>
<g
class=
"selected"
transform=
"translate(0, 16)"
>
<path
class=
"arrows"
d=
"M 13,1.5 13,14.5 1.74,8 z"
/>
<path
class=
"arrows"
d=
"M 17.5,3 30.5,3 24,14.26 z"
/>
<path
class=
"arrows"
d=
"M 35,1.5 35,14.5 46.26,8 z"
/>
</g>
<text
class=
"checkmark"
x=
"55.5"
y=
"28"
>
✓
</text>
<g
class=
"trash"
>
<path
d=
"M 2,41 v 6 h 42 v -6 h -10.5 l -3,-3 h -15 l -3,3 z"
/>
<rect
width=
"36"
height=
"20"
x=
"5"
y=
"50"
/>
<rect
width=
"36"
height=
"42"
x=
"5"
y=
"50"
rx=
"4"
ry=
"4"
/>
</g>
</svg>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment