#weather #time #ffxiv #eorzea

ffxiv-chronowatcher

最终幻想XIV的天气和艾欧泽亚时间库

2个版本

新版本 0.0.2 2024年8月23日
0.0.1 2024年8月23日

#8 in #ffxiv

MIT 许可证

21KB
333 代码行

Chronowatcher

Chronowatcher 是一个用于获取《最终幻想XIV》中位置时间和天气的Rust库

  • 获取艾欧泽亚日期
use eorzean_weather::calculate_forecast;
current_time = Utc::now().timestamp_millis();
let eorzean_date = eorzean_time::convert_to_eorzean_date(current_time);
// EorzeanDate { guardian: "Thaliak", phase: "Waxing Half Moon", moon: "Second Astral Moon", years: 1069, suns: 9, bells: 5, minutes: 54 }

// or convert to a simple form as a tuple
let eorzean_time = eorzean_time::convert_to_eorzean_time(current_time);
// (hours/bells, mins)
// (5,54)
  • 在艾欧泽亚时间和地球时间之间转换持续时间
use eorzean_time::EorzeanTime;
use eorzean_time::eorzea_duration_to_earth_sec;

let earth_seconds = eorzea_duration_to_earth_sec(
    EorzeanTime {
        years: 0,
        moons: 0,
        weeks: 0,
        suns: 1,
        bells: 2,
        minutes: 3,
        seconds: 0,
    }
);
// 4558.75
  • 计算天气预报
use eorzean_weather::find_next_weather_occurance;
use eorzean_weather::get_weather_by_time;
use eorzean_weather::calculate_current_weather_interval;

let current_weather = get_weather_by_time("Middle La Noscea", current_time);
// Current weather: Clouds

// 3rd parameter is the number of intervals (+/-) to calculate
// 1 = what is the weather after the current one
// 2 = what is the weather in 2 changes (after the current one)
// -1 = what was the weather before the current one
let future_weather = calculate_forecast("Middle La Noscea", current_time, 1);
// Future weather: EorzeaWeather { start_time: 1724388382, end_time: 1724389762, zone_name: "Middle La Noscea", weather: FairSkies }

let when_will_it_be_rainy = find_next_weather_occurance("Middle La Noscea", current_time, eorzean_weather::Weather::Rain);
// When will it be rainy: EorzeaWeather { start_time: 1724395282, end_time: 1724396662, zone_name: "Middle La Noscea", weather: Rain }

依赖项

~1.4–2.2MB
~38K SLoC