2013-09-01 14:27:21 +00:00
|
|
|
/*
|
|
|
|
** font.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 FONT_H
|
|
|
|
#define FONT_H
|
|
|
|
|
|
|
|
#include "etc.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2016-01-05 07:41:47 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
|
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
|
|
|
struct SDL_RWops;
|
2013-09-01 14:27:21 +00:00
|
|
|
struct _TTF_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
|
|
|
struct Config;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
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
|
|
|
struct SharedFontStatePrivate;
|
|
|
|
|
|
|
|
class SharedFontState
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
|
|
|
public:
|
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
|
|
|
SharedFontState(const Config &conf);
|
|
|
|
~SharedFontState();
|
|
|
|
|
|
|
|
/* Called from FileSystem during font cache initialization
|
|
|
|
* (when "Fonts/" is scanned for available assets).
|
|
|
|
* 'ops' is an opened handle to a possible font file,
|
|
|
|
* 'filename' is the corresponding path */
|
|
|
|
void initFontSetCB(SDL_RWops &ops,
|
|
|
|
const std::string &filename);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
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
|
|
|
_TTF_Font *getFont(std::string family,
|
2014-01-04 12:50:07 +00:00
|
|
|
int size);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2016-01-05 07:41:47 +00:00
|
|
|
bool fontPresent(std::string family) const;
|
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
|
|
|
|
2014-01-25 08:24:55 +00:00
|
|
|
static _TTF_Font *openBundled(int size);
|
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
private:
|
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
|
|
|
SharedFontStatePrivate *p;
|
2013-09-01 14:27:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct FontPrivate;
|
|
|
|
|
|
|
|
class Font
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static bool doesExist(const char *name);
|
|
|
|
|
2016-01-05 07:41:47 +00:00
|
|
|
Font(const std::vector<std::string> *names = 0,
|
2013-09-01 14:27:21 +00:00
|
|
|
int size = 0);
|
2016-01-05 07:41:47 +00:00
|
|
|
|
2013-10-31 09:09:57 +00:00
|
|
|
/* Clone constructor */
|
|
|
|
Font(const Font &other);
|
2016-01-05 07:41:47 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
~Font();
|
|
|
|
|
2014-09-04 23:26:03 +00:00
|
|
|
const Font &operator=(const Font &o);
|
|
|
|
|
2016-01-05 07:41:47 +00:00
|
|
|
DECL_ATTR( Size, int )
|
|
|
|
DECL_ATTR( Bold, bool )
|
|
|
|
DECL_ATTR( Italic, bool )
|
|
|
|
DECL_ATTR( Color, Color& )
|
|
|
|
DECL_ATTR( Shadow, bool )
|
|
|
|
DECL_ATTR( Outline, bool )
|
|
|
|
DECL_ATTR( OutColor, Color& )
|
|
|
|
|
|
|
|
DECL_ATTR_STATIC( DefaultSize, int )
|
|
|
|
DECL_ATTR_STATIC( DefaultBold, bool )
|
|
|
|
DECL_ATTR_STATIC( DefaultItalic, bool )
|
|
|
|
DECL_ATTR_STATIC( DefaultColor, Color& )
|
|
|
|
DECL_ATTR_STATIC( DefaultShadow, bool )
|
|
|
|
DECL_ATTR_STATIC( DefaultOutline, bool )
|
|
|
|
DECL_ATTR_STATIC( DefaultOutColor, Color& )
|
|
|
|
|
|
|
|
/* There is no point in providing getters for these,
|
|
|
|
* as the bindings will always return the stored native
|
|
|
|
* string/array object anyway. It's impossible to mirror
|
|
|
|
* in the C++ core.
|
|
|
|
* The core object picks the first existing name from the
|
|
|
|
* passed array and stores it internally (same for default). */
|
|
|
|
void setName(const std::vector<std::string> &names);
|
|
|
|
static void setDefaultName(const std::vector<std::string> &names,
|
|
|
|
const SharedFontState &sfs);
|
|
|
|
|
|
|
|
static const std::vector<std::string> &getInitialDefaultNames();
|
2013-09-01 14:27:21 +00:00
|
|
|
|
2014-09-04 23:26:03 +00:00
|
|
|
/* Assigns heap allocated objects to object properties;
|
|
|
|
* using this in pure C++ will cause memory leaks
|
2015-02-10 14:53:12 +00:00
|
|
|
* (ie. only to be used in GCed language bindings) */
|
2014-09-04 23:26:03 +00:00
|
|
|
void initDynAttribs();
|
|
|
|
static void initDefaultDynAttribs();
|
|
|
|
|
2016-01-05 07:41:47 +00:00
|
|
|
static void initDefaults(const SharedFontState &sfs);
|
2014-08-28 21:11:10 +00:00
|
|
|
|
2013-09-01 14:27:21 +00:00
|
|
|
/* internal */
|
|
|
|
_TTF_Font *getSdlFont();
|
|
|
|
|
|
|
|
private:
|
|
|
|
FontPrivate *p;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // FONT_H
|