mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-04-28 00:35:41 -04:00
74 lines
2.0 KiB
C++
74 lines
2.0 KiB
C++
#pragma once
|
|
#include "YBaseLib/Timer.h"
|
|
#include "settings.h"
|
|
#include "types.h"
|
|
#include <chrono>
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <vector>
|
|
|
|
class AudioStream;
|
|
class HostDisplay;
|
|
|
|
class System;
|
|
|
|
class HostInterface
|
|
{
|
|
public:
|
|
HostInterface();
|
|
virtual ~HostInterface();
|
|
|
|
/// Access to host display.
|
|
ALWAYS_INLINE HostDisplay* GetDisplay() const { return m_display.get(); }
|
|
|
|
/// Access to host audio stream.
|
|
AudioStream* GetAudioStream() const { return m_audio_stream.get(); }
|
|
|
|
/// Returns a settings object which can be modified.
|
|
Settings& GetSettings() { return m_settings; }
|
|
|
|
/// Adjusts the throttle frequency, i.e. how many times we should sleep per second.
|
|
void SetThrottleFrequency(double frequency) { m_throttle_period = static_cast<s64>(1000000000.0 / frequency); }
|
|
|
|
bool CreateSystem();
|
|
bool BootSystem(const char* filename, const char* state_filename);
|
|
void DestroySystem();
|
|
|
|
virtual void ReportError(const char* message);
|
|
virtual void ReportMessage(const char* message);
|
|
|
|
// Adds OSD messages, duration is in seconds.
|
|
virtual void AddOSDMessage(const char* message, float duration = 2.0f) = 0;
|
|
|
|
/// Loads the BIOS image for the specified region.
|
|
virtual std::optional<std::vector<u8>> GetBIOSImage(ConsoleRegion region);
|
|
|
|
bool LoadState(const char* filename);
|
|
bool SaveState(const char* filename);
|
|
|
|
protected:
|
|
using ThrottleClock = std::chrono::steady_clock;
|
|
|
|
/// Connects controllers. TODO: Clean this up later...
|
|
virtual void ConnectControllers();
|
|
|
|
/// Throttles the system, i.e. sleeps until it's time to execute the next frame.
|
|
void Throttle();
|
|
|
|
void UpdateSpeedLimiterState();
|
|
|
|
std::unique_ptr<HostDisplay> m_display;
|
|
std::unique_ptr<AudioStream> m_audio_stream;
|
|
std::unique_ptr<System> m_system;
|
|
Settings m_settings;
|
|
|
|
u64 m_last_throttle_time = 0;
|
|
s64 m_throttle_period = INT64_C(1000000000) / 60;
|
|
Timer m_throttle_timer;
|
|
Timer m_speed_lost_time_timestamp;
|
|
|
|
bool m_paused = false;
|
|
bool m_speed_limiter_temp_disabled = false;
|
|
bool m_speed_limiter_enabled = false;
|
|
};
|