Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
orbutils
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
Container Registry
Model registry
Operate
Environments
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
Nick Thomas
orbutils
Commits
cd4544f8
Commit
cd4544f8
authored
8 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Invert on cursor
parent
c212d152
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/terminal/console.rs
+37
-4
37 additions, 4 deletions
src/terminal/console.rs
with
37 additions
and
4 deletions
src/terminal/console.rs
+
37
−
4
View file @
cd4544f8
extern
crate
ransid
;
use
std
::
cmp
;
use
std
::
collections
::{
BTreeSet
,
VecDeque
};
use
orbclient
::{
Color
,
Event
,
EventOption
,
Window
};
...
...
@@ -144,12 +145,45 @@ impl Console {
}
}
pub
fn
invert
(
&
mut
self
,
x
:
usize
,
y
:
usize
,
w
:
usize
,
h
:
usize
)
{
let
width
=
self
.window
.width
()
as
usize
;
let
height
=
self
.window
.height
()
as
usize
;
let
start_y
=
cmp
::
min
(
height
-
1
,
y
);
let
end_y
=
cmp
::
min
(
height
,
y
+
h
);
let
start_x
=
cmp
::
min
(
width
-
1
,
x
);
let
len
=
cmp
::
min
(
width
,
x
+
w
)
-
start_x
;
let
mut
offscreen_ptr
=
self
.window
.data_mut
()
.as_mut_ptr
()
as
usize
;
let
stride
=
width
*
4
;
let
offset
=
y
*
stride
+
start_x
*
4
;
offscreen_ptr
+=
offset
;
let
mut
rows
=
end_y
-
start_y
;
while
rows
>
0
{
let
mut
row_ptr
=
offscreen_ptr
;
let
mut
cols
=
len
;
while
cols
>
0
{
unsafe
{
let
color
=
*
(
row_ptr
as
*
mut
u32
);
*
(
row_ptr
as
*
mut
u32
)
=
!
color
;
}
row_ptr
+=
4
;
cols
-=
1
;
}
offscreen_ptr
+=
stride
;
rows
-=
1
;
}
}
pub
fn
write
(
&
mut
self
,
buf
:
&
[
u8
],
sync
:
bool
)
->
Result
<
usize
>
{
if
self
.console.cursor
&&
self
.console.x
<
self
.console.w
&&
self
.console.y
<
self
.console.h
{
let
x
=
self
.console.x
;
let
y
=
self
.console.y
;
let
color
=
self
.console.background
;
self
.window
.rect
(
x
as
i32
*
8
,
y
as
i32
*
16
,
8
,
16
,
Color
{
data
:
color
.data
});
self
.invert
(
x
*
8
,
y
*
16
,
8
,
16
);
self
.changed
.insert
(
y
);
}
...
...
@@ -195,8 +229,7 @@ impl Console {
if
self
.console.cursor
&&
self
.console.x
<
self
.console.w
&&
self
.console.y
<
self
.console.h
{
let
x
=
self
.console.x
;
let
y
=
self
.console.y
;
let
color
=
self
.console.foreground
;
self
.window
.rect
(
x
as
i32
*
8
,
y
as
i32
*
16
,
8
,
16
,
Color
{
data
:
color
.data
});
self
.invert
(
x
*
8
,
y
*
16
,
8
,
16
);
self
.changed
.insert
(
y
as
usize
);
}
...
...
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