1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
#![allow(clippy::tabs_in_doc_comments)]
#![warn(rust_2018_idioms)]
#![deny(elided_lifetimes_in_paths, unreachable_pub)]
use rgb::alt::BGRA8;
use rlottie_sys::*;
use std::{
ffi::CString,
fmt::{self, Debug},
os::unix::ffi::OsStrExt,
path::Path,
ptr::NonNull
};
fn path_to_cstr<P>(path: P) -> CString
where
P: AsRef<Path>
{
let bytes = path.as_ref().as_os_str().as_bytes().to_vec();
CString::new(bytes).expect("path must not contain nul")
}
#[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub struct Size {
pub width: usize,
pub height: usize
}
impl Size {
pub const fn new(width: usize, height: usize) -> Self {
Self { width, height }
}
}
#[allow(dead_code)]
mod bgra8_size {
use rgb::alt::BGRA8;
use std::{marker::PhantomData, mem};
#[derive(Default)]
struct AssertSize<const N: usize>(PhantomData<[(); N]>);
impl<const N: usize> AssertSize<N> {
const fn new() -> Self {
Self(PhantomData)
}
}
impl AssertSize<4> {
const fn assert_size_u32(self) {}
}
const _: () = {
AssertSize::<{ mem::size_of::<BGRA8>() }>::new().assert_size_u32();
AssertSize::<{ mem::size_of::<u32>() }>::new().assert_size_u32();
};
}
pub struct Surface {
data: Vec<BGRA8>,
size: Size
}
impl Surface {
pub fn new(size: Size) -> Self {
Self {
data: Vec::with_capacity(size.width * size.height),
size
}
}
pub fn size(&self) -> Size {
self.size
}
pub fn width(&self) -> usize {
self.size.width
}
pub fn height(&self) -> usize {
self.size.height
}
pub fn data(&self) -> &[BGRA8] {
&self.data
}
pub fn pixels(&self) -> impl Iterator<Item = (usize, usize, BGRA8)> + '_ {
let width = self.width();
self.data().iter().enumerate().map(move |(i, color)| {
let x = i % width;
let y = i / width;
(x, y, *color)
})
}
fn as_mut_ptr(&mut self) -> *mut u32 {
self.data.as_mut_ptr() as *mut u32
}
unsafe fn set_len(&mut self) {
self.data.set_len(self.width() * self.height())
}
}
pub struct Animation(NonNull<Lottie_Animation_S>);
impl Debug for Animation {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("Animation").finish_non_exhaustive()
}
}
impl Drop for Animation {
fn drop(&mut self) {
unsafe {
lottie_animation_destroy(self.0.as_ptr());
}
}
}
impl Animation {
fn from_ptr(ptr: *mut Lottie_Animation_S) -> Option<Self> {
(!ptr.is_null()).then(|| {
Self(unsafe { NonNull::new_unchecked(ptr) })
})
}
pub fn from_file<P>(path: P) -> Option<Self>
where
P: AsRef<Path>
{
let path = path_to_cstr(path);
let ptr = unsafe { lottie_animation_from_file(path.as_ptr()) };
Self::from_ptr(ptr)
}
pub fn from_data<D, K, P>(
json_data: D,
cache_key: K,
resource_path: P
) -> Option<Self>
where
D: Into<Vec<u8>>,
K: Into<Vec<u8>>,
P: AsRef<Path>
{
let json_data =
CString::new(json_data).expect("json_data must not contain nul");
let cache_key = CString::new(cache_key).expect("key must not contain nul");
let resource_path = path_to_cstr(resource_path);
let ptr = unsafe {
lottie_animation_from_data(
json_data.as_ptr(),
cache_key.as_ptr(),
resource_path.as_ptr()
)
};
Self::from_ptr(ptr)
}
pub fn size(&self) -> Size {
let mut size = Size {
width: 0,
height: 0
};
unsafe {
lottie_animation_get_size(
self.0.as_ptr(),
&mut size.width,
&mut size.height
);
}
size
}
pub fn duration(&self) -> f64 {
unsafe { lottie_animation_get_duration(self.0.as_ptr()) }
}
pub fn totalframe(&self) -> usize {
unsafe { lottie_animation_get_totalframe(self.0.as_ptr()) }
}
pub fn framerate(&self) -> f64 {
unsafe { lottie_animation_get_framerate(self.0.as_ptr()) }
}
pub fn frame_at_pos(&self, pos: f32) -> usize {
unsafe { lottie_animation_get_frame_at_pos(self.0.as_ptr(), pos) }
}
pub fn render(&mut self, frame_num: usize, surface: &mut Surface) {
unsafe {
lottie_animation_render(
self.0.as_ptr(),
frame_num,
surface.as_mut_ptr(),
surface.width(),
surface.height(),
surface.width() * 4
);
surface.set_len();
}
}
}