-
Notifications
You must be signed in to change notification settings - Fork 180
/
idle.cpp
428 lines (359 loc) · 11.1 KB
/
idle.cpp
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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
#include "wayfire/per-output-plugin.hpp"
#include "wayfire/plugins/common/shared-core-data.hpp"
#include "wayfire/render-manager.hpp"
#include "wayfire/output.hpp"
#include "wayfire/core.hpp"
#include "wayfire/output-layout.hpp"
#include "wayfire/workspace-set.hpp"
#include "wayfire/signal-definitions.hpp"
#include "wayfire/seat.hpp"
#include "../cube/cube-control-signal.hpp"
#include <cmath>
#include <optional>
#include <wayfire/util/duration.hpp>
#include <wayfire/util/log.hpp>
#include <wayfire/nonstd/wlroots-full.hpp>
#define CUBE_ZOOM_BASE 1.0
enum cube_screensaver_state
{
CUBE_SCREENSAVER_DISABLED,
CUBE_SCREENSAVER_RUNNING,
CUBE_SCREENSAVER_STOPPING,
};
using namespace wf::animation;
class screensaver_animation_t : public duration_t
{
public:
using duration_t::duration_t;
timed_transition_t rot{*this};
timed_transition_t zoom{*this};
timed_transition_t ease{*this};
};
class wayfire_idle
{
wf::option_wrapper_t<int> dpms_timeout{"idle/dpms_timeout"};
bool is_idle = false;
public:
wf::signal::connection_t<wf::seat_activity_signal> on_seat_activity;
std::optional<wf::idle_inhibitor_t> hotkey_inhibitor;
wf::wl_timer<false> timeout_dpms;
wayfire_idle()
{
dpms_timeout.set_callback([=] ()
{
create_dpms_timeout();
});
on_seat_activity = [=] (void*)
{
create_dpms_timeout();
};
create_dpms_timeout();
wf::get_core().connect(&on_seat_activity);
}
void create_dpms_timeout()
{
if (dpms_timeout <= 0)
{
timeout_dpms.disconnect();
return;
}
if (!timeout_dpms.is_connected() && is_idle)
{
is_idle = false;
set_state(wf::OUTPUT_IMAGE_SOURCE_DPMS, wf::OUTPUT_IMAGE_SOURCE_SELF);
return;
}
timeout_dpms.disconnect();
timeout_dpms.set_timeout(1000 * dpms_timeout, [=] ()
{
is_idle = true;
set_state(wf::OUTPUT_IMAGE_SOURCE_SELF, wf::OUTPUT_IMAGE_SOURCE_DPMS);
});
}
~wayfire_idle()
{
timeout_dpms.disconnect();
wf::get_core().disconnect(&on_seat_activity);
}
/* Change all outputs with state from to state to */
void set_state(wf::output_image_source_t from, wf::output_image_source_t to)
{
auto config = wf::get_core().output_layout->get_current_configuration();
for (auto& entry : config)
{
if (entry.second.source == from)
{
entry.second.source = to;
}
}
wf::get_core().output_layout->apply_configuration(config);
}
};
class wayfire_idle_plugin : public wf::per_output_plugin_instance_t
{
double rotation = 0.0;
wf::option_wrapper_t<int> zoom_speed{"idle/cube_zoom_speed"};
screensaver_animation_t screensaver_animation{zoom_speed};
wf::option_wrapper_t<int> screensaver_timeout{"idle/screensaver_timeout"};
wf::option_wrapper_t<double> cube_rotate_speed{"idle/cube_rotate_speed"};
wf::option_wrapper_t<double> cube_max_zoom{"idle/cube_max_zoom"};
wf::option_wrapper_t<bool> disable_on_fullscreen{"idle/disable_on_fullscreen"};
wf::option_wrapper_t<bool> disable_initially{"idle/disable_initially"};
std::optional<wf::idle_inhibitor_t> fullscreen_inhibitor;
bool has_fullscreen = false;
cube_screensaver_state state = CUBE_SCREENSAVER_DISABLED;
bool hook_set = false;
bool output_inhibited = false;
uint32_t last_time;
wf::wl_timer<false> timeout_screensaver;
wf::signal::connection_t<wf::seat_activity_signal> on_seat_activity;
wf::shared_data::ref_ptr_t<wayfire_idle> global_idle;
wf::activator_callback toggle = [=] (auto)
{
if (global_idle->hotkey_inhibitor.has_value())
{
global_idle->hotkey_inhibitor.reset();
} else
{
global_idle->hotkey_inhibitor.emplace();
}
return true;
};
wf::signal::connection_t<wf::fullscreen_layer_focused_signal> fullscreen_state_changed =
[=] (wf::fullscreen_layer_focused_signal *ev)
{
this->has_fullscreen = ev->has_promoted;
update_fullscreen();
};
wf::signal::connection_t<wf::idle_inhibit_changed_signal> inhibit_changed =
[=] (wf::idle_inhibit_changed_signal *ev)
{
if (!ev)
{
return;
}
if (ev->inhibit)
{
wf::get_core().disconnect(&global_idle->on_seat_activity);
wf::get_core().disconnect(&on_seat_activity);
global_idle->timeout_dpms.disconnect();
timeout_screensaver.disconnect();
} else
{
wf::get_core().connect(&global_idle->on_seat_activity);
wf::get_core().connect(&on_seat_activity);
global_idle->create_dpms_timeout();
create_screensaver_timeout();
}
};
wf::config::option_base_t::updated_callback_t disable_on_fullscreen_changed =
[=] ()
{
update_fullscreen();
};
void update_fullscreen()
{
bool want = disable_on_fullscreen && has_fullscreen;
if (want && !fullscreen_inhibitor.has_value())
{
fullscreen_inhibitor.emplace();
}
if (!want && fullscreen_inhibitor.has_value())
{
fullscreen_inhibitor.reset();
}
}
wf::plugin_activation_data_t grab_interface = {
.name = "idle",
.capabilities = 0,
};
public:
void init() override
{
if (disable_initially)
{
global_idle->hotkey_inhibitor.emplace();
}
output->add_activator(wf::option_wrapper_t<wf::activatorbinding_t>{"idle/toggle"}, &toggle);
output->connect(&fullscreen_state_changed);
disable_on_fullscreen.set_callback(disable_on_fullscreen_changed);
if (auto toplevel = toplevel_cast(wf::get_active_view_for_output(output)))
{
/* Currently, the fullscreen count would always be 0 or 1,
* since fullscreen-layer-focused is only emitted on changes between 0
* and 1
**/
has_fullscreen = toplevel->pending_fullscreen();
}
update_fullscreen();
screensaver_timeout.set_callback([=] ()
{
create_screensaver_timeout();
});
create_screensaver_timeout();
on_seat_activity = [=] (void*)
{
create_screensaver_timeout();
};
wf::get_core().connect(&on_seat_activity);
wf::get_core().connect(&inhibit_changed);
}
void create_screensaver_timeout()
{
if (screensaver_timeout <= 0)
{
timeout_screensaver.disconnect();
return;
}
if (!timeout_screensaver.is_connected() && output_inhibited)
{
uninhibit_output();
return;
}
if (!timeout_screensaver.is_connected() && (state == CUBE_SCREENSAVER_RUNNING))
{
stop_screensaver();
return;
}
timeout_screensaver.disconnect();
timeout_screensaver.set_timeout(1000 * screensaver_timeout, [=] ()
{
start_screensaver();
});
}
void inhibit_output()
{
if (output_inhibited)
{
return;
}
if (hook_set)
{
output->render->rem_effect(&screensaver_frame);
hook_set = false;
}
output->render->add_inhibit(true);
output->render->damage_whole();
state = CUBE_SCREENSAVER_DISABLED;
output_inhibited = true;
}
void uninhibit_output()
{
if (!output_inhibited)
{
return;
}
output->render->add_inhibit(false);
output->render->damage_whole();
output_inhibited = false;
}
void screensaver_terminate()
{
cube_control_signal data;
data.angle = 0.0;
data.zoom = CUBE_ZOOM_BASE;
data.ease = 0.0;
data.last_frame = true;
data.carried_out = false;
output->emit(&data);
if (hook_set)
{
output->render->rem_effect(&screensaver_frame);
hook_set = false;
}
if (state == CUBE_SCREENSAVER_DISABLED)
{
uninhibit_output();
}
state = CUBE_SCREENSAVER_DISABLED;
}
wf::effect_hook_t screensaver_frame = [=] ()
{
cube_control_signal data;
uint32_t current = wf::get_current_time();
uint32_t elapsed = current - last_time;
last_time = current;
if ((state == CUBE_SCREENSAVER_STOPPING) && !screensaver_animation.running())
{
screensaver_terminate();
return;
}
if (state == CUBE_SCREENSAVER_STOPPING)
{
rotation = screensaver_animation.rot;
} else
{
rotation += (cube_rotate_speed / 5000.0) * elapsed;
}
if (rotation > M_PI * 2)
{
rotation -= M_PI * 2;
}
data.angle = rotation;
data.zoom = screensaver_animation.zoom;
data.ease = screensaver_animation.ease;
data.last_frame = false;
data.carried_out = false;
output->emit(&data);
if (!data.carried_out)
{
screensaver_terminate();
return;
}
if (state == CUBE_SCREENSAVER_STOPPING)
{
wf::get_core().seat->notify_activity();
}
};
void start_screensaver()
{
cube_control_signal data;
data.angle = 0.0;
data.zoom = CUBE_ZOOM_BASE;
data.ease = 0.0;
data.last_frame = false;
data.carried_out = false;
output->emit(&data);
if (data.carried_out)
{
if (!hook_set)
{
output->render->add_effect(
&screensaver_frame, wf::OUTPUT_EFFECT_PRE);
hook_set = true;
}
} else if (state == CUBE_SCREENSAVER_DISABLED)
{
inhibit_output();
return;
}
state = CUBE_SCREENSAVER_RUNNING;
rotation = 0.0;
screensaver_animation.zoom.set(CUBE_ZOOM_BASE, cube_max_zoom);
screensaver_animation.ease.set(0.0, 1.0);
screensaver_animation.start();
last_time = wf::get_current_time();
}
void stop_screensaver()
{
if (state == CUBE_SCREENSAVER_DISABLED)
{
uninhibit_output();
return;
}
state = CUBE_SCREENSAVER_STOPPING;
double end = rotation > M_PI ? M_PI * 2 : 0.0;
screensaver_animation.rot.set(rotation, end);
screensaver_animation.zoom.restart_with_end(CUBE_ZOOM_BASE);
screensaver_animation.ease.restart_with_end(0.0);
screensaver_animation.start();
}
void fini() override
{
wf::get_core().disconnect(&on_seat_activity);
wf::get_core().disconnect(&inhibit_changed);
timeout_screensaver.disconnect();
output->rem_binding(&toggle);
}
};
DECLARE_WAYFIRE_PLUGIN(wf::per_output_plugin_t<wayfire_idle_plugin>);