From 3c935a1be31a5912a9a737456575a51abbc81dfd Mon Sep 17 00:00:00 2001 From: insects Date: Wed, 5 Feb 2025 20:28:00 +0100 Subject: [PATCH] purge unused code --- src/data.rs | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/src/data.rs b/src/data.rs index a0d6552..0866c6a 100644 --- a/src/data.rs +++ b/src/data.rs @@ -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 { - 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> { - 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) -> Duration { let mut length = 0;