mirror of
https://github.com/fairyglade/ly.git
synced 2025-12-20 19:24:53 +00:00
106 lines
3.3 KiB
Zig
106 lines
3.3 KiB
Zig
// The migrator ensures compatibility with <=0.6.0 configuration files
|
|
|
|
const std = @import("std");
|
|
const ini = @import("zigini");
|
|
const Save = @import("Save.zig");
|
|
const enums = @import("../enums.zig");
|
|
|
|
var animate = false;
|
|
|
|
pub var mapped_config_fields = false;
|
|
|
|
pub fn configFieldHandler(_: std.mem.Allocator, field: ini.IniField) ?ini.IniField {
|
|
if (std.mem.eql(u8, field.key, "animate")) {
|
|
// The option doesn't exist anymore, but we save its value for "animation"
|
|
animate = std.mem.eql(u8, field.value, "true");
|
|
|
|
mapped_config_fields = true;
|
|
return null;
|
|
}
|
|
|
|
if (std.mem.eql(u8, field.key, "animation")) {
|
|
// The option now uses a string (which then gets converted into an enum) instead of an integer
|
|
// It also combines the previous "animate" and "animation" options
|
|
const animation = std.fmt.parseInt(u8, field.value, 10) catch return field;
|
|
var mapped_field = field;
|
|
|
|
mapped_field.value = switch (animation) {
|
|
0 => "doom",
|
|
1 => "matrix",
|
|
else => "none",
|
|
};
|
|
|
|
mapped_config_fields = true;
|
|
return mapped_field;
|
|
}
|
|
|
|
if (std.mem.eql(u8, field.key, "blank_password")) {
|
|
// The option has simply been renamed
|
|
var mapped_field = field;
|
|
mapped_field.key = "clear_password";
|
|
|
|
mapped_config_fields = true;
|
|
return mapped_field;
|
|
}
|
|
|
|
if (std.mem.eql(u8, field.key, "default_input")) {
|
|
// The option now uses a string (which then gets converted into an enum) instead of an integer
|
|
const default_input = std.fmt.parseInt(u8, field.value, 10) catch return field;
|
|
var mapped_field = field;
|
|
|
|
mapped_field.value = switch (default_input) {
|
|
0 => "session",
|
|
1 => "login",
|
|
2 => "password",
|
|
else => "login",
|
|
};
|
|
|
|
mapped_config_fields = true;
|
|
return mapped_field;
|
|
}
|
|
|
|
if (std.mem.eql(u8, field.key, "wayland_specifier")) {
|
|
// The option doesn't exist anymore
|
|
|
|
mapped_config_fields = true;
|
|
return null;
|
|
}
|
|
|
|
return field;
|
|
}
|
|
|
|
// This is the stuff we only handle after reading the config.
|
|
// For example, the "animate" field could come after "animation"
|
|
pub fn lateConfigFieldHandler(animation: *enums.Animation) void {
|
|
if (!mapped_config_fields) return;
|
|
|
|
if (!animate) animation.* = .none;
|
|
}
|
|
|
|
pub fn tryMigrateSaveFile(user_buf: *[32]u8, path: []const u8) Save {
|
|
var save = Save{};
|
|
|
|
var file = std.fs.openFileAbsolute(path, .{}) catch return save;
|
|
defer file.close();
|
|
|
|
const reader = file.reader();
|
|
|
|
var user_fbs = std.io.fixedBufferStream(user_buf);
|
|
reader.streamUntilDelimiter(user_fbs.writer(), '\n', 32) catch return save;
|
|
const user = user_fbs.getWritten();
|
|
if (user.len > 0) save.user = user;
|
|
|
|
var session_buf: [20]u8 = undefined;
|
|
var session_fbs = std.io.fixedBufferStream(&session_buf);
|
|
reader.streamUntilDelimiter(session_fbs.writer(), '\n', 20) catch {};
|
|
|
|
const session_index_str = session_fbs.getWritten();
|
|
var session_index: ?usize = null;
|
|
if (session_index_str.len > 0) {
|
|
session_index = std.fmt.parseUnsigned(usize, session_index_str, 10) catch return save;
|
|
}
|
|
save.session_index = session_index;
|
|
|
|
return save;
|
|
}
|