Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rapidriter-cat
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
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
Stephen D
rapidriter-cat
Commits
2fb676f3
Commit
2fb676f3
authored
1 month ago
by
Stephen D
Browse files
Options
Downloads
Patches
Plain Diff
improvements to cat animation
parent
5b110a31
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
build.rs
+0
-1
0 additions, 1 deletion
build.rs
src/assets/cat.png
+0
-0
0 additions, 0 deletions
src/assets/cat.png
src/lib.rs
+36
-16
36 additions, 16 deletions
src/lib.rs
src/main.rs
+1
-0
1 addition, 0 deletions
src/main.rs
with
37 additions
and
17 deletions
build.rs
+
0
−
1
View file @
2fb676f3
...
@@ -3,7 +3,6 @@ use std::{env, fs::File, io::Write, path::Path};
...
@@ -3,7 +3,6 @@ use std::{env, fs::File, io::Write, path::Path};
use
bitvec
::{
order
::
Msb0
,
vec
::
BitVec
};
use
bitvec
::{
order
::
Msb0
,
vec
::
BitVec
};
use
image
::{
GenericImageView
,
ImageReader
};
use
image
::{
GenericImageView
,
ImageReader
};
// Example custom build script.
fn
main
()
{
fn
main
()
{
println!
(
"cargo::rerun-if-changed=build.rs"
);
println!
(
"cargo::rerun-if-changed=build.rs"
);
...
...
This diff is collapsed.
Click to expand it.
src/assets/cat.png
+
0
−
0
View replaced file @
5b110a31
View file @
2fb676f3
4.41 KiB
|
W:
|
H:
4.86 KiB
|
W:
|
H:
2-up
Swipe
Onion skin
This diff is collapsed.
Click to expand it.
src/lib.rs
+
36
−
16
View file @
2fb676f3
...
@@ -5,7 +5,11 @@ const HEIGHT: i32 = 38;
...
@@ -5,7 +5,11 @@ const HEIGHT: i32 = 38;
#[no_mangle]
#[no_mangle]
pub
extern
"C"
fn
next_frame
(
frame
:
u16
,
ptr
:
*
mut
u8
)
->
u8
{
pub
extern
"C"
fn
next_frame
(
frame
:
u16
,
ptr
:
*
mut
u8
)
->
u8
{
let
out
=
unsafe
{
std
::
slice
::
from_raw_parts_mut
(
ptr
,
456
)
}
.view_bits_mut
::
<
Msb0
>
();
let
out
=
unsafe
{
std
::
slice
::
from_raw_parts_mut
(
ptr
,
456
)
};
out
.fill
(
0
);
let
out
=
out
.view_bits_mut
::
<
Msb0
>
();
let
frame
:
i32
=
frame
.into
();
if
frame
>
100
{
if
frame
>
100
{
return
1
;
return
1
;
...
@@ -14,34 +18,50 @@ pub extern "C" fn next_frame(frame: u16, ptr: *mut u8) -> u8 {
...
@@ -14,34 +18,50 @@ pub extern "C" fn next_frame(frame: u16, ptr: *mut u8) -> u8 {
let
cat
=
include_bytes!
(
concat!
(
env!
(
"OUT_DIR"
),
"/cat.bin"
))
.view_bits
::
<
Msb0
>
();
let
cat
=
include_bytes!
(
concat!
(
env!
(
"OUT_DIR"
),
"/cat.bin"
))
.view_bits
::
<
Msb0
>
();
let
meow
=
include_bytes!
(
concat!
(
env!
(
"OUT_DIR"
),
"/meow.bin"
))
.view_bits
::
<
Msb0
>
();
let
meow
=
include_bytes!
(
concat!
(
env!
(
"OUT_DIR"
),
"/meow.bin"
))
.view_bits
::
<
Msb0
>
();
let
thres
=
WIDTH
/
4
;
let
thres
=
WIDTH
/
3
;
let
dx
=
(
frame
as
i32
*
4
-
thres
)
.min
(
thres
);
let
dx
=
if
frame
<=
10
{
frame
*
6
-
thres
}
else
if
frame
>
87
{
(
frame
-
77
)
*
6
-
thres
}
else
{
if
frame
/
7
%
2
==
0
{
// make meow flash on and off every 7 frames for the remaining time
for
x
in
0
..
96
{
for
x
in
0
..
96
{
for
y
in
0
..
38
{
for
y
in
0
..
38
{
let
out_idx
=
index
(
x
,
y
);
let
idx
=
index
(
x
,
y
);
let
in_idx
=
index
(
x
-
dx
,
y
);
out
.set
(
out_idx
,
cat
[
in_idx
]);
out
.set
(
idx
,
meow
[
idx
]);
}
}
}
}
}
if
dx
==
thres
&&
frame
/
7
%
2
==
0
{
60
-
thres
// make meow flash on and off every 4 frames for the remaining time
};
for
x
in
0
..
96
{
for
x
in
0
..
96
{
for
y
in
0
..
38
{
for
y
in
0
..
38
{
let
idx
=
index
(
x
,
y
);
let
out_idx
=
index
(
x
,
y
);
let
in_idx
=
index
(
x
-
dx
,
y
+
cat_height
(
frame
));
out
.set
(
idx
,
meow
[
idx
]
||
out
[
idx
]);
out
.set
(
out_idx
,
cat
[
in_idx
]
||
out
[
out_idx
]);
}
}
}
}
}
0
0
}
}
fn
cat_height
(
frame
:
i32
)
->
i32
{
match
frame
%
4
{
0
=>
0
,
1
=>
1
,
2
=>
2
,
3
=>
1
,
_
=>
unreachable!
(),
}
}
fn
index
(
x
:
i32
,
y
:
i32
)
->
usize
{
fn
index
(
x
:
i32
,
y
:
i32
)
->
usize
{
if
x
<
0
||
y
<
0
||
x
>=
WIDTH
||
y
>=
HEIGHT
{
if
x
<
0
||
y
<
0
||
x
>=
WIDTH
||
y
>=
HEIGHT
{
return
0
;
return
0
;
...
...
This diff is collapsed.
Click to expand it.
src/main.rs
+
1
−
0
View file @
2fb676f3
...
@@ -29,6 +29,7 @@ fn main() {
...
@@ -29,6 +29,7 @@ fn main() {
}
}
draw_frame
(
&
frame
);
draw_frame
(
&
frame
);
println!
(
"Frame: {}"
,
i
);
}
}
}
}
...
...
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