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
7a711eaa
Commit
7a711eaa
authored
19 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Add a function to generate a string from all lines. Will be used for
saving, regexp, etc.
parent
7679e3c2
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
exec/fseditor.js
+97
-1
97 additions, 1 deletion
exec/fseditor.js
with
97 additions
and
1 deletion
exec/fseditor.js
+
97
−
1
View file @
7a711eaa
...
...
@@ -685,6 +685,102 @@ function redraw_screen()
set_cursor
();
}
/*
* Converts the current lines to a single string and returns it...
* soft and colour are bools indicating that soft CRs should become hard, and
* colour codes should be added
*/
function
make_string
(
soft
,
colour
)
{
var
i
;
var
str
=
''
;
/* ToDo: Do we want to explicitly init the attr if it's normal? */
var
lastattr
=
7
;
var
thisattr
;
for
(
i
=
0
;
i
<
line
.
length
;
i
++
)
{
if
(
colour
)
{
for
(
j
=
0
;
j
<
line
[
i
].
length
;
j
++
)
{
if
((
thisattr
=
ascii
(
line
[
i
].
substr
(
j
,
1
)))
!=
lastattr
)
{
/* Disable HIGH and BLINK if required */
if
((
!
(
thisattr
&
0x80
)
&&
lastattr
&
0x80
)
||
(
!
(
thisattr
&
0x08
)
&&
lastattr
&
0x08
))
{
lastattr
=
7
;
str
+=
'
\
x01N
'
;
}
if
(
thisattr
&
0x80
&&
(
!
lastattr
&
0x80
))
/* Blink */
str
+=
'
\
x01I
'
;
if
(
thisattr
&
0x08
&&
(
!
lastattr
&
0x08
))
/* High Intensity */
str
+=
'
\
x01H
'
;
if
(
thisattr
&
0x07
!=
lastattr
&
0x07
)
{
switch
(
thisattr
&
0x07
)
{
case
0
:
str
+=
'
\
x01K
'
;
break
;
case
1
:
str
+=
'
\
x01R
'
;
break
;
case
2
:
str
+=
'
\
x01G
'
;
break
;
case
3
:
str
+=
'
\
x01Y
'
;
break
;
case
4
:
str
+=
'
\
x01B
'
;
break
;
case
5
:
str
+=
'
\
x01M
'
;
break
;
case
6
:
str
+=
'
\
x01C
'
;
break
;
case
7
:
str
+=
'
\
x01W
'
;
break
;
}
}
if
(
thisattr
&
0x70
!=
lastattr
&
0x70
)
{
switch
((
thisattr
&
0x70
)
>>
4
)
{
case
0
:
str
+=
'
\
x010
'
;
break
;
case
1
:
str
+=
'
\
x011
'
;
break
;
case
2
:
str
+=
'
\
x012
'
;
break
;
case
3
:
str
+=
'
\
x013
'
;
break
;
case
4
:
str
+=
'
\
x014
'
;
break
;
case
5
:
str
+=
'
\
x015
'
;
break
;
case
6
:
str
+=
'
\
x016
'
;
break
;
case
7
:
str
+=
'
\
x017
'
;
break
;
}
}
lastattr
=
thisattr
;
}
str
+=
line
[
i
].
substr
(
j
,
1
);
}
}
else
{
str
.
=
line
[
i
].
text
;
}
if
(
soft
||
line
[
i
].
hardcr
)
str
+=
'
\n
'
;
}
return
(
str
);
}
/* ToDo: Optimize movement... */
function
edit
()
{
...
...
@@ -1007,7 +1103,7 @@ function edit()
break
;
case
'
\
x1b
'
:
/* ESC (This should parse extra ANSI sequences) */
break
;
case
'
\
x1c
'
:
/* CTRL-\ */
case
'
\
x1c
'
:
/* CTRL-\
(RegExp)
*/
break
;
case
'
\
x1d
'
:
/* KEY_LEFT */
last_xpos
=-
1
;
...
...
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