purge unused code

This commit is contained in:
insects 2025-02-05 20:28:00 +01:00
parent 5db9687be9
commit 3c935a1be3

View file

@ -195,45 +195,6 @@ impl<'a> CombinedFish<'a> {
is_current && is_past
}
/// Finds out if the fish is up now, includes weather and time bounds.
pub fn is_up_now(&self, data: &Data) -> bool {
self.is_up_at_n(data, 0)
}
/// Finds out if the fish is up at a specific time, `n` Eorzean hours away.
pub fn is_up_at_n(&self, data: &Data, n: i64) -> bool {
let forecast = self.get_forecast(data);
let date = clock::get_current_eorzea_date() + Duration::hours(n);
self.is_in_time_range_at(date)
&& forecast.is_none_or(|forecast| self.is_in_correct_weather_at(forecast, date))
}
/// Get the next uptime for a fish that is only restricted by time.
pub fn get_next_time_uptime(&self) -> DateTime<Utc> {
let ez_date = clock::get_current_eorzea_date();
// Check if we have a minute part to our start time, which can happen.
let adjusted_date = clock::set_hm_from_float(&ez_date, self.entry.start_hour.unwrap());
clock::to_earth_time(adjusted_date)
}
/// Get the next times when the weather is favorable for a fish.
pub fn get_next_weather_uptimes(&self, data: &Data, cycles: u32) -> Vec<DateTime<Utc>> {
let forecast = self.get_forecast(data).unwrap();
// Skip ahead by 8-hour intervals, to quickly find the next favorable weather.
let mut date = round_to_last_weather_time(clock::get_current_eorzea_date());
// Start with the next weather cycle.
date += Duration::hours(8);
let mut results = Vec::new();
for _i in 1..cycles {
while !self.is_in_correct_weather_at(forecast, date) {
date += Duration::hours(8);
}
results.push(date);
date += Duration::hours(8);
}
results
}
// Given a forecast and a start date of a window, find how long that weather stays.
pub fn get_weather_duration(&self, forecast: &Forecast, date: &DateTime<Utc>) -> Duration {
let mut length = 0;