39 lines
1.4 KiB
C++
39 lines
1.4 KiB
C++
#pragma once
|
|
|
|
/* Read persistent data */ if ( false ) {
|
|
struct {
|
|
bool exists = false;
|
|
uf::stl::string filename = uf::io::root+"/persistent.json";
|
|
} file;
|
|
struct {
|
|
uf::Serializer file;
|
|
} config;
|
|
/* Read from file */ if (( file.exists = config.file.readFromFile(file.filename) )) {
|
|
persistent.window.size = uf::vector::decode( config.file["window"]["size"], pod::Vector2ui{} );
|
|
// persistent.window.size.x = config.file["window"]["size"]["x"].as<size_t>();
|
|
// persistent.window.size.y = config.file["window"]["size"]["y"].as<size_t>();
|
|
if ( config.file["window"]["title"] != "null" ) {
|
|
persistent.window.title = config.file["window"]["title"].as<uf::stl::string>();
|
|
}
|
|
|
|
/* Update window size */ {
|
|
ext::json::Value json;
|
|
uf::stl::string hook = "window:Resized";
|
|
json["type"] = hook;
|
|
json["invoker"] = "ext";
|
|
json["window"]["size"] = uf::vector::encode( persistent.window.size );
|
|
// json["window"]["size"]["x"] = persistent.window.size.x;
|
|
// json["window"]["size"]["y"] = persistent.window.size.y;
|
|
if ( persistent.window.size.x != 0 && persistent.window.size.y != 0 )
|
|
uf::hooks.call(hook, json);
|
|
}
|
|
/* Update window title */ {
|
|
ext::json::Value json;
|
|
uf::stl::string hook = "window:Title.Changed";
|
|
json["type"] = hook;
|
|
json["invoker"] = "ext";
|
|
json["window"]["title"] = uf::stl::string(persistent.window.title);
|
|
uf::hooks.call(hook, json);
|
|
}
|
|
}
|
|
} |