-
Notifications
You must be signed in to change notification settings - Fork 655
/
Copy pathmain.rs
375 lines (346 loc) · 12.7 KB
/
main.rs
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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
// Copyright © SixtyFPS GmbH <[email protected]>
// SPDX-License-Identifier: MIT
// Tiles are 256x256px wide.
// Url is https://tile.openstreetmap.org/{zoom}/{x}/{y}.png
// zoom starts at 1.
// x and y go from 0 to 2^zoom - 1.
use core::cell::RefCell;
use core::future::Future;
use core::pin::Pin;
use core::task::{Context, Poll};
use slint::{Rgba8Pixel, SharedPixelBuffer, VecModel};
use std::collections::BTreeMap;
use std::rc::Rc;
const TILE_SIZE: isize = 256;
slint::slint! {
import { Slider } from "std-widgets.slint";
export struct Tile { x: length, y: length, tile: image}
export component MainUI inherits Window {
callback flicked(length, length);
callback zoom-changed(float);
callback zoom-in(length, length);
callback zoom-out(length, length);
callback link-clicked();
min-height: 500px;
min-width: 500px;
out property <length> visible_width: fli.width;
out property <length> visible_height: fli.height;
in-out property <float> zoom <=> sli.value;
in property <[Tile]> tiles;
public function set_viewport(ox: length, oy: length, width: length, height: length) {
fli.viewport-x = ox;
fli.viewport-y = oy;
fli.viewport-width = width;
fli.viewport-height = height;
}
VerticalLayout {
fli := Flickable {
for t in tiles: Image {
x: t.x;
y: t.y;
source: t.tile;
}
flicked => {
root.flicked(fli.viewport-x, fli.viewport-y);
}
TouchArea {
scroll-event(e) => {
if e.delta-y > 0 {
root.zoom-in(self.mouse-x + fli.viewport-x, self.mouse-y + fli.viewport-y);
return accept;
} else if e.delta-y < 0 {
root.zoom-out(self.mouse-x + fli.viewport-x, self.mouse-y + fli.viewport-y);
return accept;
}
return reject;
}
}
}
HorizontalLayout {
sli := Slider {
minimum: 1;
maximum: 19;
released => {
zoom-changed(self.value);
}
}
}
}
Text {
text: "Map data from OpenStreetMap";
x: fli.x + (fli.width) - (self.width) - 3px;
y: fli.y + (fli.height) - (self.height) - 3px;
TouchArea {
clicked => {
root.link-clicked();
}
}
}
}
}
#[derive(PartialEq, Eq, PartialOrd, Ord, Clone, Copy)]
struct TileCoordinate {
z: u32,
x: isize,
y: isize,
}
struct World {
client: reqwest::Client,
loaded_tiles: BTreeMap<TileCoordinate, slint::Image>,
loading_tiles: BTreeMap<TileCoordinate, Pin<Box<dyn Future<Output = slint::Image>>>>,
osm_url: String,
zoom_level: u32,
visible_height: f64,
visible_width: f64,
offset_x: f64,
offset_y: f64,
}
impl World {
fn new() -> Self {
World {
client: reqwest::Client::new(),
osm_url: std::env::var("OSM_TILES_URL")
.unwrap_or("https://tile.openstreetmap.org".to_string()),
loaded_tiles: Default::default(),
loading_tiles: Default::default(),
zoom_level: 1,
visible_height: 0.,
visible_width: 0.,
offset_x: 0.,
offset_y: 0.,
}
}
fn set_zoom_level(&mut self, zoom_level: u32, ox: f64, oy: f64) {
if self.zoom_level != zoom_level {
self.loaded_tiles.clear();
self.loaded_tiles.clear();
let exp2 = f64::exp2(zoom_level as f64 - self.zoom_level as f64);
self.offset_x += ox;
self.offset_y += oy;
self.offset_x *= exp2;
self.offset_y *= exp2;
self.offset_x -= ox;
self.offset_y -= oy;
self.zoom_level = zoom_level;
self.reset_view();
}
}
fn reset_view(&mut self) {
let m = 1 << self.zoom_level;
let min_x = (self.offset_x / TILE_SIZE as f64).floor() as isize;
let min_y = (self.offset_y / TILE_SIZE as f64).floor() as isize;
let max_x =
(((self.offset_x + self.visible_width) / TILE_SIZE as f64).ceil() as isize + 1).min(m);
let max_y =
(((self.offset_y + self.visible_height) / TILE_SIZE as f64).ceil() as isize + 1).min(m);
// remove tiles that is too far away
const KEEP_CACHED_TILES: isize = 10;
let keep = |coord: &TileCoordinate| {
coord.z == self.zoom_level
&& (coord.x > min_x - KEEP_CACHED_TILES)
&& (coord.x < max_x + KEEP_CACHED_TILES)
&& (coord.y > min_y - KEEP_CACHED_TILES)
&& (coord.y < max_y + KEEP_CACHED_TILES)
};
self.loading_tiles.retain(|coord, _| keep(coord));
self.loaded_tiles.retain(|coord, _| keep(coord));
for x in min_x..max_x {
for y in min_y..max_y {
let coord = TileCoordinate { z: self.zoom_level, x, y };
if self.loaded_tiles.contains_key(&coord) {
continue;
}
self.loading_tiles.entry(coord).or_insert_with(|| {
let url = format!("{}/{}/{}/{}.png", self.osm_url, coord.z, coord.x, coord.y);
let client = self.client.clone();
Box::pin(async move {
let response = client
.get(&url)
.header("User-Agent", "Slint Maps example")
.send()
.await;
let response = match response {
Ok(response) => response,
Err(err) => {
eprintln!("Error loading {url}: {err}");
return slint::Image::default();
}
};
if !response.status().is_success() {
eprintln!("Error loading {url}: {:?}", response.status());
return slint::Image::default();
}
let bytes = response.bytes().await.unwrap();
// Use spawn_blocking to offload the image decoding to a thread as to not block the UI
let buffer = tokio::task::spawn_blocking(move || {
let image = match image::load_from_memory(&bytes) {
Ok(image) => image,
Err(err) => {
eprintln!("Error reading {url}: {err}");
return None;
}
};
println!("Loaded {url}");
let image = image
.resize(
TILE_SIZE as u32,
TILE_SIZE as u32,
image::imageops::FilterType::Nearest,
)
.into_rgba8();
let buffer = SharedPixelBuffer::<Rgba8Pixel>::clone_from_slice(
image.as_raw(),
image.width(),
image.height(),
);
Some(buffer)
})
.await
.unwrap();
buffer.map(|buffer| slint::Image::from_rgba8(buffer)).unwrap_or_default()
})
});
}
}
}
fn poll(&mut self, context: &mut Context, changed: &mut bool) {
self.loading_tiles.retain(|coord, future| {
let image = future.as_mut().poll(context);
match image {
Poll::Ready(image) => {
self.loaded_tiles.insert(*coord, image);
*changed = true;
false
}
Poll::Pending => true,
}
})
}
}
struct State {
world: RefCell<World>,
main_ui: MainUI,
poll_handle: RefCell<Option<slint::JoinHandle<()>>>,
}
impl State {
fn do_poll(self: Rc<Self>) {
if let Some(handle) = self.poll_handle.take() {
handle.abort();
}
self.refresh_model();
slint::spawn_local(async move {
std::future::poll_fn(|context| {
let mut changed = false;
self.world.borrow_mut().poll(context, &mut changed);
if changed {
self.refresh_model();
}
if self.world.borrow().loading_tiles.is_empty() {
Poll::Ready(())
} else {
Poll::Pending
}
})
.await;
})
.unwrap();
}
fn refresh_model(&self) {
let vec = VecModel::from(
self.world
.borrow()
.loaded_tiles
.iter()
.map(|(coord, image)| Tile {
tile: image.clone(),
x: (coord.x * TILE_SIZE) as f32,
y: (coord.y * TILE_SIZE) as f32,
})
.collect::<Vec<Tile>>(),
);
self.main_ui.set_tiles(slint::ModelRc::new(vec));
}
fn set_viewport_size(&self) {
let world = self.world.borrow();
let zoom = world.zoom_level;
self.main_ui.set_zoom(zoom as _);
let world_size = (TILE_SIZE * (1 << zoom)) as f32;
self.main_ui.invoke_set_viewport(
-world.offset_x as f32,
-world.offset_y as f32,
world_size,
world_size,
);
}
}
fn main() {
let rt = tokio::runtime::Runtime::new().unwrap();
let _tokio = rt.enter();
let state = Rc::new(State {
world: RefCell::new(World::new()),
main_ui: MainUI::new().unwrap(),
poll_handle: None.into(),
});
let state_weak = Rc::downgrade(&state);
state.main_ui.on_flicked(move |ox, oy| {
let state = state_weak.upgrade().unwrap();
let mut world = state.world.borrow_mut();
world.offset_x = -ox as f64;
world.offset_y = -oy as f64;
world.visible_width = state.main_ui.get_visible_width() as f64;
world.visible_height = state.main_ui.get_visible_height() as f64;
world.reset_view();
drop(world);
state.do_poll();
});
let state_weak = Rc::downgrade(&state);
state.main_ui.on_zoom_changed(move |zoom| {
let state = state_weak.upgrade().unwrap();
let mut world = state.world.borrow_mut();
world.visible_width = state.main_ui.get_visible_width() as f64;
world.visible_height = state.main_ui.get_visible_height() as f64;
let (vw, vh) = (world.visible_width, world.visible_height);
world.set_zoom_level(zoom as _, vw / 2., vh / 2.);
drop(world);
state.set_viewport_size();
state.do_poll();
});
let state_weak = Rc::downgrade(&state);
state.main_ui.on_zoom_in(move |ox, oy| {
let state = state_weak.upgrade().unwrap();
let mut world = state.world.borrow_mut();
let z = (world.zoom_level + 1).min(19);
world.visible_width = state.main_ui.get_visible_width() as f64;
world.visible_height = state.main_ui.get_visible_height() as f64;
world.set_zoom_level(z as _, ox as f64, oy as f64);
drop(world);
state.set_viewport_size();
state.do_poll();
});
let state_weak = Rc::downgrade(&state);
state.main_ui.on_zoom_out(move |ox, oy| {
let state = state_weak.upgrade().unwrap();
let mut world = state.world.borrow_mut();
let z = (world.zoom_level - 1).max(1);
world.visible_width = state.main_ui.get_visible_width() as f64;
world.visible_height = state.main_ui.get_visible_height() as f64;
world.set_zoom_level(z as _, ox as f64, oy as f64);
drop(world);
state.set_viewport_size();
state.do_poll();
});
{
let state = state.clone();
slint::spawn_local(async move {
let mut world = state.world.borrow_mut();
world.visible_width = state.main_ui.get_visible_width() as f64;
world.visible_height = state.main_ui.get_visible_height() as f64;
world.reset_view();
drop(world);
state.set_viewport_size();
state.clone().do_poll();
})
.unwrap();
}
state.main_ui.run().unwrap();
}