2013-09-01 14:27:21 +00:00
|
|
|
/*
|
2013-10-09 10:30:33 +00:00
|
|
|
** sharedstate.h
|
2013-09-01 14:27:21 +00:00
|
|
|
**
|
|
|
|
** 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/>.
|
|
|
|
*/
|
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
#ifndef SHAREDSTATE_H
|
|
|
|
#define SHAREDSTATE_H
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-12-04 16:48:37 +00:00
|
|
|
#include <sigc++/signal.h>
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
#define shState SharedState::instance
|
|
|
|
#define glState shState->_glState()
|
2014-08-28 21:11:10 +00:00
|
|
|
#define rgssVer SharedState::rgssVersion
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
struct SharedStatePrivate;
|
2013-09-01 14:27:21 +00:00
|
|
|
struct RGSSThreadData;
|
|
|
|
struct GlobalIBO;
|
|
|
|
struct SDL_Window;
|
2013-09-06 10:26:41 +00:00
|
|
|
struct TEXFBO;
|
2013-09-04 17:07:28 +00:00
|
|
|
struct Quad;
|
2013-12-11 04:22:13 +00:00
|
|
|
struct ShaderSet;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
class Scene;
|
|
|
|
class FileSystem;
|
|
|
|
class EventThread;
|
|
|
|
class Graphics;
|
|
|
|
class Input;
|
|
|
|
class Audio;
|
|
|
|
class GLState;
|
|
|
|
class TexPool;
|
|
|
|
class Font;
|
Font: Overhaul font asset discovery
Previously, any font names requested by RGSS would be translated
directly to filenames by lowercasing and replacing spaces with
underscores (and finally doing some extension substitution).
To make this whole thing work smoother as well as get closer to
how font discovery is done in VX, we now scan the "Fonts/" folder
at startup and index all present font assets by their family name;
now, if an "Open Sans" font is present in "Fonts/", it will be
used regardless of filename.
Font assets with "Regular" style are preferred, but in their
absence, mkxp will make use of any other style it can find for
the respective family. This is not the exact same behavior as
VX, but it should cover 95% of use cases.
Previously, one could substitute fonts via filenames, ie. to
substitute "Arial" with "Open Sans", one would just rename
"OpenSans.ttf" to "arial.ttf" and put it in "Fonts/". With the
above change, this is no longer possible. As an alternative, one
can now explicitly specify font family substitutions via mkxp.conf;
eg. for the above case, one would add
fontSub=Arial>Open Sans
to the configuration file. Multiple such rules can be specified.
In the process, I also added the ability to provide
'Font.(default_)name' with an array of font families to search
for the first existing one instead of a plain string.
This makes the behavior closer to RMXP; however, it doesn't
work 100% the same: when a reference to the 'Font.name' array is
held and additional strings are added to it without re-assignig
the array to 'Font.name', those will be ignored.
2014-04-11 11:37:14 +00:00
|
|
|
class SharedFontState;
|
2013-09-01 14:27:21 +00:00
|
|
|
struct GlobalIBO;
|
|
|
|
struct Config;
|
2013-09-23 05:15:01 +00:00
|
|
|
struct Vec2i;
|
2014-07-31 01:32:07 +00:00
|
|
|
struct SharedMidiState;
|
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
struct SharedState
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2014-08-12 18:33:40 +00:00
|
|
|
void *bindingData() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
void setBindingData(void *data);
|
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
SDL_Window *sdlWindow() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
Scene *screen() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
void setScreen(Scene &screen);
|
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
FileSystem &fileSystem() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
EventThread &eThread() const;
|
|
|
|
RGSSThreadData &rtData() const;
|
|
|
|
Config &config() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
Graphics &graphics() const;
|
|
|
|
Input &input() const;
|
|
|
|
Audio &audio() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
GLState &_glState() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
ShaderSet &shaders() const;
|
2013-10-02 20:40:09 +00:00
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
TexPool &texPool() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
SharedFontState &fontState() const;
|
|
|
|
Font &defaultFont() const;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
SharedMidiState &midiState() const;
|
2014-07-31 01:32:07 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
sigc::signal<void> prepareDraw;
|
|
|
|
|
|
|
|
unsigned int genTimeStamp();
|
|
|
|
|
|
|
|
/* Returns global quad IBO, and ensures it has indices
|
|
|
|
* for at least minSize quads */
|
2014-08-12 17:46:30 +00:00
|
|
|
void ensureQuadIBO(size_t minSize);
|
2014-07-13 12:03:18 +00:00
|
|
|
GlobalIBO &globalIBO();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
/* Global general purpose texture */
|
|
|
|
void bindTex();
|
2013-09-23 05:15:01 +00:00
|
|
|
void ensureTexSize(int minW, int minH, Vec2i ¤tSizeOut);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-09-06 10:26:41 +00:00
|
|
|
TEXFBO &gpTexFBO(int minW, int minH);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-08-12 18:33:40 +00:00
|
|
|
Quad &gpQuad() const;
|
2013-09-04 17:07:28 +00:00
|
|
|
|
2013-10-22 04:36:13 +00:00
|
|
|
/* Basically just a simple "TexPool"
|
|
|
|
* replacement for Tilemap atlas use */
|
|
|
|
void requestAtlasTex(int w, int h, TEXFBO &out);
|
|
|
|
void releaseAtlasTex(TEXFBO &tex);
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
/* Checks EventThread's shutdown request flag and if set,
|
|
|
|
* requests the binding to terminate. In this case, this
|
|
|
|
* function will most likely not return */
|
|
|
|
void checkShutdown();
|
|
|
|
|
2014-08-24 05:36:19 +00:00
|
|
|
void checkReset();
|
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
static SharedState *instance;
|
2014-08-28 21:11:10 +00:00
|
|
|
static int rgssVersion;
|
2013-12-30 00:26:39 +00:00
|
|
|
|
|
|
|
/* This function will throw an Exception instance
|
|
|
|
* on initialization error */
|
2013-09-01 14:27:21 +00:00
|
|
|
static void initInstance(RGSSThreadData *threadData);
|
|
|
|
static void finiInstance();
|
|
|
|
|
|
|
|
private:
|
2013-10-09 10:30:33 +00:00
|
|
|
SharedState(RGSSThreadData *threadData);
|
|
|
|
~SharedState();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
SharedStatePrivate *p;
|
2013-09-01 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
2013-10-09 10:30:33 +00:00
|
|
|
#endif // SHAREDSTATE_H
|