EightBit/Gaming/inc/Game.h
Adrian Conlon 1663c7caf3 Refactor the "Game" class a little to allow future refactoring.
Signed-off-by: Adrian Conlon <adrian.conlon@gmail.com>
2020-05-03 20:55:58 +01:00

112 lines
3.1 KiB
C++

#pragma once
#include <cstdint>
#include <map>
#include <memory>
#include <stdexcept>
#include <string>
#include <SDL.h>
#include <Device.h>
#include "GameController.h"
#include "SDLWrapper.h"
class Configuration;
namespace Gaming {
class Game : public EightBit::Device {
public:
Game();
virtual ~Game();
virtual void runLoop();
virtual void raisePOWER() override;
protected:
virtual float fps() const = 0;
virtual bool useVsync() const = 0;
virtual int windowWidth() const noexcept { return displayWidth() * displayScale(); }
virtual int windowHeight() const noexcept { return displayHeight() * displayScale(); }
virtual int displayWidth() const noexcept { return rasterWidth(); }
virtual int displayHeight() const noexcept { return rasterHeight(); }
virtual int displayScale() const noexcept = 0;
virtual int rasterWidth() const noexcept = 0;
virtual int rasterHeight() const noexcept = 0;
virtual std::string title() const = 0;
virtual void handleEvents();
virtual void update();
virtual void draw();
virtual bool maybeSynchronise(); // true, if manual synchronisation required
virtual void synchronise();
virtual void runRasterLines() {};
virtual void runVerticalBlank() {}
void addJoystick(SDL_Event& e);
void removeJoystick(SDL_Event& e);
virtual void updateTexture();
virtual void copyTexture();
virtual void displayTexture();
virtual const uint32_t* pixels() const = 0;
virtual bool handleKeyDown(SDL_Keycode key);
virtual bool handleKeyUp(SDL_Keycode key);
virtual bool handleJoyButtonDown(SDL_JoyButtonEvent event);
virtual bool handleJoyButtonUp(SDL_JoyButtonEvent event);
virtual bool handleControllerButtonDown(SDL_ControllerButtonEvent event);
virtual bool handleControllerButtonUp(SDL_ControllerButtonEvent event);
void toggleFullscreen();
std::shared_ptr<GameController> gameController(const int which) const {
const auto i = m_gameControllers.find(which);
if (i == m_gameControllers.cend())
throw std::runtime_error("Unknown controller");
return i->second;
}
int mappedController(const SDL_JoystickID which) const {
const auto i = m_mappedControllers.find(which);
if (i == m_mappedControllers.cend())
throw std::runtime_error("Unknown joystick");
return i->second;
}
int chooseControllerIndex(int who) const;
std::shared_ptr<GameController> chooseController(int who) const;
std::shared_ptr<SDL_Renderer> renderer() const noexcept { return m_renderer; }
std::shared_ptr<SDL_Texture> bitmapTexture() const noexcept { return m_bitmapTexture; }
std::shared_ptr<SDL_PixelFormat> pixelFormat() const noexcept { return m_pixelFormat; }
private:
SDLWrapper m_wrapper;
std::shared_ptr<SDL_Window> m_window;
std::shared_ptr<SDL_Renderer> m_renderer;
std::shared_ptr<SDL_Texture> m_bitmapTexture;
std::shared_ptr<SDL_PixelFormat> m_pixelFormat;
Uint32 m_pixelType = SDL_PIXELFORMAT_ARGB8888;
bool m_vsync = false;
Uint32 m_startTicks = 0;
Uint32 m_frames = 0;
std::map<int, std::shared_ptr<GameController>> m_gameControllers;
std::map<SDL_JoystickID, int> m_mappedControllers;
void configureBackground() const;
void createBitmapTexture();
};
}