mirror of
https://forgejo.xatacraft.ru/Sunshine/mkxp-sunshine.git
synced 2026-08-19 13:29:54 +00:00
The general rule I'm aiming for is to <> include system wide / installed paths / generally everything that's outside the git managed source tree (this means mruby paths too!), and "" include everything else, ie. local mkxp headers. The only current exception are the mri headers, which all have './' at their front as to not clash with system wide ruby headers. I'm leaving them be for now until I can come up with a better general solution.
191 lines
3.5 KiB
C++
191 lines
3.5 KiB
C++
/*
|
|
** eventthread.h
|
|
**
|
|
** This file is part of mkxp.
|
|
**
|
|
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
|
|
**
|
|
** mkxp is free software: you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation, either version 2 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** mkxp is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with mkxp. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef EVENTTHREAD_H
|
|
#define EVENTTHREAD_H
|
|
|
|
#include "config.h"
|
|
#include "etc-internal.h"
|
|
|
|
#include <SDL_scancode.h>
|
|
#include <SDL_joystick.h>
|
|
#include <SDL_mouse.h>
|
|
#include <SDL_mutex.h>
|
|
|
|
#include <QByteArray>
|
|
#include <QVector>
|
|
|
|
#include <stdint.h>
|
|
|
|
struct RGSSThreadData;
|
|
struct SDL_Thread;
|
|
struct SDL_Window;
|
|
|
|
class EventThread
|
|
{
|
|
public:
|
|
static bool keyStates[SDL_NUM_SCANCODES];
|
|
|
|
struct JoyState
|
|
{
|
|
int xAxis;
|
|
int yAxis;
|
|
|
|
bool buttons[16];
|
|
};
|
|
|
|
static JoyState joyState;
|
|
|
|
struct MouseState
|
|
{
|
|
int x, y;
|
|
bool buttons[32];
|
|
};
|
|
|
|
static MouseState mouseState;
|
|
|
|
EventThread();
|
|
|
|
void process(RGSSThreadData &rtData);
|
|
void cleanup();
|
|
|
|
/* Called from RGSS thread */
|
|
void requestFullscreenMode(bool mode);
|
|
void requestWindowResize(int width, int height);
|
|
void requestShowCursor(bool mode);
|
|
|
|
void requestTerminate();
|
|
|
|
bool getFullscreen() const;
|
|
bool getShowCursor() const;
|
|
|
|
void showMessageBox(const char *body, int flags = 0);
|
|
|
|
/* RGSS thread calls this once per frame */
|
|
void notifyFrame();
|
|
|
|
private:
|
|
void resetInputStates();
|
|
void setFullscreen(SDL_Window *, bool mode);
|
|
void updateCursorState(bool inWindow);
|
|
|
|
bool fullscreen;
|
|
bool showCursor;
|
|
volatile bool msgBoxDone;
|
|
|
|
struct
|
|
{
|
|
uint64_t lastFrame;
|
|
uint64_t displayCounter;
|
|
bool displaying;
|
|
bool immInitFlag;
|
|
bool immFiniFlag;
|
|
double acc;
|
|
uint32_t accDiv;
|
|
} fps;
|
|
};
|
|
|
|
/* Used to asynchronously inform the RGSS thread
|
|
* about window size changes */
|
|
struct WindowSizeNotify
|
|
{
|
|
SDL_mutex *mutex;
|
|
|
|
volatile bool changedFlag;
|
|
volatile int w, h;
|
|
|
|
WindowSizeNotify()
|
|
{
|
|
mutex = SDL_CreateMutex();
|
|
changedFlag = false;
|
|
w = h = 0;
|
|
}
|
|
|
|
~WindowSizeNotify()
|
|
{
|
|
SDL_DestroyMutex(mutex);
|
|
}
|
|
|
|
/* Done from the sending side */
|
|
void notifyChange(int w, int h)
|
|
{
|
|
SDL_LockMutex(mutex);
|
|
|
|
this->w = w;
|
|
this->h = h;
|
|
changedFlag = true;
|
|
|
|
SDL_UnlockMutex(mutex);
|
|
}
|
|
|
|
/* Done from the receiving side */
|
|
bool pollChange(int *w, int *h)
|
|
{
|
|
if (!changedFlag)
|
|
return false;
|
|
|
|
SDL_LockMutex(mutex);
|
|
|
|
*w = this->w;
|
|
*h = this->h;
|
|
changedFlag = false;
|
|
|
|
SDL_UnlockMutex(mutex);
|
|
|
|
return true;
|
|
}
|
|
};
|
|
|
|
struct RGSSThreadData
|
|
{
|
|
/* Main thread sets this to request RGSS thread to terminate */
|
|
volatile bool rqTerm;
|
|
/* In response, RGSS thread sets this to confirm
|
|
* that it received the request and isn't stuck */
|
|
volatile bool rqTermAck;
|
|
|
|
EventThread *ethread;
|
|
WindowSizeNotify windowSizeMsg;
|
|
|
|
const char *argv0;
|
|
|
|
SDL_Window *window;
|
|
|
|
Vec2 sizeResoRatio;
|
|
Vec2i screenOffset;
|
|
|
|
Config config;
|
|
|
|
QByteArray rgssErrorMsg;
|
|
|
|
RGSSThreadData(EventThread *ethread,
|
|
const char *argv0,
|
|
SDL_Window *window)
|
|
: rqTerm(false),
|
|
rqTermAck(false),
|
|
ethread(ethread),
|
|
argv0(argv0),
|
|
window(window),
|
|
sizeResoRatio(1, 1)
|
|
{}
|
|
};
|
|
|
|
#endif // EVENTTHREAD_H
|