mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2025-03-17 02:31:39 +01:00
66 lines
1.8 KiB
C++
66 lines
1.8 KiB
C++
#pragma once
|
|
#include "maths.h"
|
|
|
|
#define BYTEn(x, n) (*((unsigned char*)&(x)+n))
|
|
#define BYTE1(x) BYTEn(x, 1) // byte 1 (counting from 0)
|
|
#define BYTE2(x) BYTEn(x, 2)
|
|
|
|
|
|
struct resolution_info
|
|
{
|
|
int16_t ScreenWidth;
|
|
int16_t ScreenHeight;
|
|
int16_t TableWidth;
|
|
int16_t TableHeight;
|
|
int16_t ResolutionMenuId;
|
|
};
|
|
|
|
class fullscrn
|
|
{
|
|
public:
|
|
|
|
static int screen_mode;
|
|
static HWND hWnd;
|
|
static tagRECT WindowRect1, WindowRect2;
|
|
static rectangle_type WHRect;
|
|
static int fullscrn_flag1;
|
|
static int display_changed;
|
|
static int ChangeDisplay, ignoreNextDisplayChangeFg;
|
|
static int trick;
|
|
static const resolution_info resolution_array[3];
|
|
static float ScaleX;
|
|
static float ScaleY;
|
|
static int OffsetX;
|
|
static int OffsetY;
|
|
|
|
static void init(int width, int height, int isFullscreen, HWND winHandle, HMENU menuHandle, int changeDisplay);
|
|
static void shutdown();
|
|
static int set_screen_mode(int isFullscreen);
|
|
static void force_redraw();
|
|
static void center_in(HWND parent, HWND child);
|
|
static int displaychange();
|
|
static void activate(int flag);
|
|
static unsigned convert_mouse_pos(unsigned int mouseXY);
|
|
static void getminmaxinfo(MINMAXINFO* maxMin);
|
|
static void paint();
|
|
static bool set_menu_mode(int menuEnabled);
|
|
static int GetResolution();
|
|
static void SetResolution(int resolution);
|
|
static int GetMaxResolution();
|
|
static void SetMaxResolution(int resolution);
|
|
static int get_max_supported_resolution();
|
|
static int get_screen_resolution();
|
|
static void window_size_changed();
|
|
private :
|
|
static int MenuEnabled;
|
|
static HMENU MenuHandle;
|
|
static int resolution;
|
|
static int maxResolution;
|
|
|
|
static void GetWindowCenter();
|
|
static int disableWindowFlagsDisDlg();
|
|
static int setWindowFlagsDisDlg();
|
|
static int enableFullscreen();
|
|
static int disableFullscreen();
|
|
static void fillRect(int right, int bottom, int left, int top);
|
|
};
|