Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
4bb26715
Commit
4bb26715
authored
4 years ago
by
echicken
Browse files
Options
Downloads
Patches
Plain Diff
Pass true for dataOnly param to from_bin if you want the PNG dataURL instead of an Image obj.
parent
ff4f0cd2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
webv4/root/js/graphics-converter.js
+41
-43
41 additions, 43 deletions
webv4/root/js/graphics-converter.js
with
41 additions
and
43 deletions
webv4/root/js/graphics-converter.js
+
41
−
43
View file @
4bb26715
...
...
@@ -22,7 +22,7 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
"
#FC5454
"
,
// Light Red
"
#FC54FC
"
,
// Light Magenta
"
#FCFC54
"
,
// Yellow (High Brown)
"
#FFFFFF
"
// White
"
#FFFFFF
"
,
// White
];
const
ANSI_COLORS
=
[
...
...
@@ -41,7 +41,7 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
"
#5454FC
"
,
// Light Blue
"
#FC54FC
"
,
// Light Magenta
"
#54FCFC
"
,
// Light Cyan
"
#FFFFFF
"
// White
"
#FFFFFF
"
,
// White
];
function
get_workspace
(
cols
,
rows
,
callback
)
{
...
...
@@ -65,20 +65,16 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
container
.
appendChild
(
spritesheet_canvas
);
const
img
=
new
Image
();
img
.
addEventListener
(
'
load
'
,
function
()
{
img
.
addEventListener
(
'
load
'
,
()
=>
{
spritesheet_ctx
.
drawImage
(
img
,
0
,
0
);
callback
({
container
:
container
,
ctx
:
ctx
,
spritesheet_ctx
:
spritesheet_ctx
})
callback
({
container
,
ctx
,
spritesheet_ctx
});
});
img
.
src
=
spritesheet_src
;
}
function
delete_workspace
(
workspace
)
{
$
(
workspace
.
container
).
remove
(
);
workspace
.
container
.
parentNode
.
removeChild
(
container
);
}
// Clip character # 'char' from the spritesheet and return it as ImageData
...
...
@@ -107,17 +103,15 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
function
get_png
(
workspace
,
callback
)
{
const
data
=
workspace
.
ctx
.
canvas
.
toDataURL
();
const
img
=
new
Image
();
img
.
addEventListener
(
'
load
'
,
function
()
{
callback
(
img
);
});
img
.
addEventListener
(
'
load
'
,
()
=>
callback
(
img
));
img
.
src
=
data
;
}
this
.
from_bin
=
function
(
bin
,
cols
,
rows
,
callback
)
{
get_workspace
(
cols
,
rows
,
function
(
workspace
)
{
var
x
=
0
;
var
y
=
0
;
for
(
var
n
=
0
;
n
<
cols
*
rows
*
2
;
n
=
n
+
2
)
{
this
.
from_bin
=
function
(
bin
,
cols
,
rows
,
callback
,
dataOnly
)
{
get_workspace
(
cols
,
rows
,
workspace
=>
{
let
x
=
0
;
let
y
=
0
;
for
(
let
n
=
0
;
n
<
cols
*
rows
*
2
;
n
=
n
+
2
)
{
const
char
=
bin
.
substr
(
n
,
1
).
charCodeAt
(
0
);
const
attr
=
bin
.
substr
(
n
+
1
,
1
).
charCodeAt
(
0
);
put_character
(
...
...
@@ -134,23 +128,27 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
y
++
;
}
}
get_png
(
workspace
,
function
(
img
)
{
delete_workspace
(
workspace
);
callback
(
img
);
});
if
(
dataOnly
)
{
callback
(
workspace
.
ctx
.
canvas
.
toDataURL
());
}
else
{
get_png
(
workspace
,
img
=>
{
delete_workspace
(
workspace
);
callback
(
img
);
});
}
});
}
this
.
from_ans
=
function
(
ans
,
target
,
rate
)
{
var
x
=
0
;
var
y
=
0
;
var
_x
=
0
;
var
_y
=
0
;
var
fg
=
7
;
var
bg
=
0
;
var
high
=
0
;
var
match
;
var
opts
;
let
x
=
0
;
let
y
=
0
;
let
_x
=
0
;
let
_y
=
0
;
let
fg
=
7
;
let
bg
=
0
;
let
high
=
0
;
let
match
;
let
opts
;
const
re
=
/^
\u
001b
\[((?:[
0-9
]{0,2}
;
?)
*
)([
a-zA-Z
])
/
;
const
data
=
[[]];
const
seq
=
[];
...
...
@@ -158,9 +156,7 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
match
=
re
.
exec
(
ans
);
if
(
match
!==
null
)
{
ans
=
ans
.
substr
(
match
[
0
].
length
);
opts
=
match
[
1
].
split
(
'
;
'
).
map
(
function
(
e
)
{
return
parseInt
(
e
);
});
opts
=
match
[
1
].
split
(
'
;
'
).
map
(
e
=>
parseInt
(
e
,
10
));
switch
(
match
[
2
])
{
case
'
A
'
:
y
=
Math
.
max
(
y
-
(
opts
[
0
]
||
1
),
0
);
...
...
@@ -182,8 +178,8 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
if
(
y
>=
data
.
length
)
data
[
y
]
=
[];
break
;
case
'
m
'
:
for
(
var
o
in
opts
)
{
var
i
=
parseInt
(
opts
[
o
]);
for
(
let
o
in
opts
)
{
let
i
=
parseInt
(
opts
[
o
]
,
10
);
if
(
i
==
0
)
{
fg
=
7
;
bg
=
0
;
...
...
@@ -209,16 +205,16 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
break
;
case
'
J
'
:
if
(
opts
.
length
==
1
&&
opts
[
0
]
==
2
)
{
for
(
var
yy
=
0
;
yy
<
data
.
length
;
yy
++
)
{
for
(
let
yy
=
0
;
yy
<
data
.
length
;
yy
++
)
{
if
(
!
Array
.
isArray
(
data
[
yy
]))
data
[
yy
]
=
[];
for
(
var
xx
=
0
;
xx
<
80
;
xx
++
)
{
for
(
let
xx
=
0
;
xx
<
80
;
xx
++
)
{
data
[
yy
][
xx
]
=
{
c
:
'
'
,
a
:
fg
|
(
bg
<<
3
)
|
(
high
<<
7
)
};
}
}
}
break
;
case
'
K
'
:
for
(
var
xx
=
0
;
xx
<
80
;
xx
++
)
{
for
(
let
xx
=
0
;
xx
<
80
;
xx
++
)
{
data
[
y
][
xx
]
=
{
c
:
'
'
,
a
:
fg
|
(
bg
<<
3
)
|
(
high
<<
7
)
};
}
break
;
...
...
@@ -227,7 +223,7 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
break
;
}
}
else
{
var
ch
=
ans
.
substr
(
0
,
1
);
let
ch
=
ans
.
substr
(
0
,
1
);
switch
(
ch
)
{
case
'
\
x1a
'
:
ans
=
''
;
...
...
@@ -241,7 +237,7 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
break
;
default
:
data
[
y
][
x
]
=
{
c
:
ch
,
a
:
fg
|
(
bg
<<
3
)
|
(
high
<<
7
)
};
seq
.
push
({
y
:
y
,
x
:
x
});
seq
.
push
({
y
,
x
});
x
++
;
if
(
x
>
79
)
{
x
=
0
;
...
...
@@ -253,11 +249,13 @@ function GraphicsConverter(spritesheet_src, font_width, font_height, spritesheet
ans
=
ans
.
substr
(
1
);
}
}
get_workspace
(
80
,
data
.
length
,
function
(
workspace
)
{
get_workspace
(
80
,
data
.
length
,
workspace
=>
{
if
(
typeof
target
==
'
string
'
)
{
$
(
target
).
prepend
(
workspace
.
container
);
let
tgt
=
document
.
getElementById
(
target
);
if
(
tgt
===
null
)
tgt
=
document
.
getElementById
(
target
.
replace
(
/^#/
,
''
));
tgt
.
prepend
(
workspace
.
container
);
}
seq
.
forEach
(
function
(
e
,
i
)
{
seq
.
forEach
((
e
,
i
)
=>
{
function
draw
()
{
put_character
(
workspace
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment