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
mod default_program_icon {
include!(concat!(env!("OUT_DIR"), "/default_program_icon.rs"));
}
use {
super::program_root,
serde::{Deserialize, Serialize},
std::{
convert::{AsRef, TryFrom},
io::Error,
path::PathBuf,
},
winit::window::{BadIcon, Icon as WinitIcon},
};
const DEFAULT_AUTHOR: &str = "screen-13";
const DEFAULT_NAME: &str = "default";
#[derive(Debug, Deserialize, Serialize)]
pub struct Icon<'a> {
pub height: u32,
pub pixels: &'a [u8],
pub width: u32,
}
impl Icon<'static> {
pub const DEFAULT: Self = Self {
height: default_program_icon::HEIGHT,
pixels: &default_program_icon::PIXELS,
width: default_program_icon::WIDTH,
};
}
impl Default for Icon<'static> {
fn default() -> Self {
Self::DEFAULT
}
}
impl<'a> TryFrom<&'a Icon<'_>> for WinitIcon {
type Error = BadIcon;
fn try_from(val: &'a Icon) -> Result<Self, Self::Error> {
Self::from_rgba(val.pixels.to_owned(), val.width, val.height)
}
}
#[derive(Debug, Deserialize, Serialize)]
pub struct Program<'a, 'b> {
pub author: &'static str,
pub fullscreen: bool,
pub icon: Option<Icon<'b>>,
pub name: &'static str,
pub resizable: bool,
pub title: &'a str,
}
impl Program<'static, 'static> {
pub const FULLSCREEN: Program<'static, 'static> = Program {
author: DEFAULT_AUTHOR,
fullscreen: true,
icon: Some(Icon::DEFAULT),
name: DEFAULT_NAME,
resizable: true,
title: DEFAULT_NAME,
};
pub const WINDOW: Program<'static, 'static> = Program {
author: DEFAULT_AUTHOR,
fullscreen: false,
icon: Some(Icon::DEFAULT),
name: DEFAULT_NAME,
resizable: true,
title: DEFAULT_NAME,
};
}
impl Program<'_, '_> {
pub const fn new(name: &'static str, author: &'static str) -> Self {
#[cfg(not(debug_assertions))]
let fullscreen = true;
#[cfg(debug_assertions)]
let fullscreen = false;
Self {
author,
fullscreen,
icon: None,
name,
resizable: true,
title: name,
}
}
const fn new_default() -> Self {
Self::new(DEFAULT_NAME, DEFAULT_AUTHOR)
}
pub const fn with_fullscreen(self) -> Self {
self.with_fullscreen_is(true)
}
pub const fn with_fullscreen_is(mut self, fullscreen: bool) -> Self {
self.fullscreen = fullscreen;
self
}
pub const fn with_name_author(mut self, name: &'static str, author: &'static str) -> Self {
self.author = author;
self.name = name;
self
}
pub const fn with_resizable(self) -> Self {
self.with_resizable_is(true)
}
pub const fn with_resizable_is(mut self, resizable: bool) -> Self {
self.resizable = resizable;
self
}
pub const fn with_window(self) -> Self {
self.with_window_is(true)
}
pub const fn with_window_is(self, window: bool) -> Self {
self.with_fullscreen_is(!window)
}
pub fn without_icon(mut self) -> Self {
self.icon = None;
self
}
pub fn root(&self) -> Result<PathBuf, Error> {
program_root(self)
}
}
impl<'a> Program<'a, '_> {
pub const fn with_title(mut self, title: &'a str) -> Self {
self.title = title;
self
}
}
impl<'b> Program<'_, 'b> {
pub fn with_icon(self, icon: Icon<'b>) -> Self {
self.with_icon_is(Some(icon))
}
pub fn with_icon_is(mut self, icon: Option<Icon<'b>>) -> Self {
self.icon = icon;
self
}
}
impl<'a, 'b> AsRef<Program<'a, 'b>> for Program<'a, 'b> {
fn as_ref(&self) -> &Self {
self
}
}
impl Default for Program<'_, '_> {
fn default() -> Self {
Self::new_default()
}
}