-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Font] Class added in order to remove Text::updateCharWidth.
- Loading branch information
Showing
6 changed files
with
392 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/* | ||
* ===================================================================================== | ||
* | ||
* OpenMiner | ||
* | ||
* Copyright (C) 2018-2020 Unarelith, Quentin Bazin <[email protected]> | ||
* Copyright (C) 2019-2020 the OpenMiner contributors (see CONTRIBUTORS.md) | ||
* | ||
* This file is part of OpenMiner. | ||
* | ||
* OpenMiner is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* OpenMiner 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 | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with OpenMiner; if not, write to the Free Software Foundation, Inc., | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* | ||
* ===================================================================================== | ||
*/ | ||
#include <fstream> | ||
|
||
#include <gk/gl/Texture.hpp> | ||
#include <gk/resource/ResourceHandler.hpp> | ||
|
||
#include "Font.hpp" | ||
|
||
Font::Font(const std::string &textureName, const std::string &configPath) | ||
: m_texture(gk::ResourceHandler::getInstance().get<gk::Texture>(textureName)) | ||
{ | ||
m_textureName = textureName; | ||
|
||
std::memset(m_charWidth, 0, sizeof(u8) * 256); | ||
|
||
parseConfig(configPath); | ||
} | ||
|
||
void Font::parseConfig(const std::string &configPath) { | ||
std::ifstream file(configPath); | ||
|
||
std::string line; | ||
while (std::getline(file, line, '\n')) { | ||
if (line.empty()) continue; | ||
|
||
u16 dot = line.find_first_of('.'); | ||
u16 equal = line.find_first_of('='); | ||
|
||
std::string propertyName = line.substr(0, dot); | ||
if (propertyName != "width") | ||
throw EXCEPTION("Unexpected property for font:", propertyName); | ||
|
||
int propertyKey = std::stoi(line.substr(dot + 1, equal - dot - 1)); | ||
u8 propertyValue = std::stoi(line.substr(equal + 1)); | ||
|
||
m_charWidth[propertyKey] = propertyValue; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* ===================================================================================== | ||
* | ||
* OpenMiner | ||
* | ||
* Copyright (C) 2018-2020 Unarelith, Quentin Bazin <[email protected]> | ||
* Copyright (C) 2019-2020 the OpenMiner contributors (see CONTRIBUTORS.md) | ||
* | ||
* This file is part of OpenMiner. | ||
* | ||
* OpenMiner is free software; you can redistribute it and/or | ||
* modify it under the terms of the GNU Lesser General Public | ||
* License as published by the Free Software Foundation; either | ||
* version 2.1 of the License, or (at your option) any later version. | ||
* | ||
* OpenMiner 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 | ||
* Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with OpenMiner; if not, write to the Free Software Foundation, Inc., | ||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA | ||
* | ||
* ===================================================================================== | ||
*/ | ||
#ifndef FONT_HPP_ | ||
#define FONT_HPP_ | ||
|
||
#include <string> | ||
|
||
#include <gk/core/IntTypes.hpp> | ||
|
||
namespace gk { | ||
class Texture; | ||
} | ||
|
||
class Font { | ||
public: | ||
Font(const std::string &textureName, const std::string &configPath); | ||
|
||
u8 getCharWidth(u8 c) { return m_charWidth[c]; } | ||
|
||
const std::string &textureName() const { return m_textureName; } // FIXME: Will be removed later | ||
const gk::Texture &texture() const { return m_texture; } | ||
|
||
private: | ||
void parseConfig(const std::string &configPath); | ||
|
||
std::string m_textureName; // FIXME: Will be removed later | ||
gk::Texture &m_texture; | ||
|
||
u8 m_charWidth[256]; | ||
}; | ||
|
||
#endif // FONT_HPP_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.