Refactor sprite scaling in STKModifiedSpriteBank
Make it proportional to font height so that it can be auto-resized
This commit is contained in:
parent
1319c9845b
commit
db2cc69d89
@ -11,6 +11,7 @@
|
||||
#include <cassert>
|
||||
#include "font/font_drawer.hpp"
|
||||
#include "graphics/2dutils.hpp"
|
||||
#include "guiengine/engine.hpp"
|
||||
|
||||
namespace irr
|
||||
{
|
||||
@ -27,7 +28,7 @@ STKModifiedSpriteBank::STKModifiedSpriteBank(IGUIEnvironment* env) :
|
||||
#endif
|
||||
|
||||
m_scale = 1.0f;
|
||||
m_height = 0;
|
||||
m_fixed_scale = 0.0f;
|
||||
m_target_icon_size = core::dimension2du(0, 0);
|
||||
if (Environment)
|
||||
{
|
||||
@ -332,28 +333,22 @@ void STKModifiedSpriteBank::draw2DSpriteBatch(const core::array<u32>& indices,
|
||||
}
|
||||
} // draw2DSpriteBatch
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
void STKModifiedSpriteBank::scaleToHeight(int height)
|
||||
{
|
||||
m_height = height;
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
s32 STKModifiedSpriteBank::getScaledWidth(s32 width) const
|
||||
{
|
||||
if (m_height == 0)
|
||||
return (s32)((float)width * m_scale);
|
||||
if (m_fixed_scale == 0.0f)
|
||||
return (s32)(GUIEngine::getFontHeight() * (float)width * m_scale);
|
||||
else
|
||||
return m_height;
|
||||
return (s32)(GUIEngine::getFontHeight() * m_fixed_scale);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
s32 STKModifiedSpriteBank::getScaledHeight(s32 height) const
|
||||
{
|
||||
if (m_height == 0)
|
||||
return (s32)((float)height * m_scale);
|
||||
if (m_fixed_scale == 0.0f)
|
||||
return (s32)(GUIEngine::getFontHeight() * (float)height * m_scale);
|
||||
else
|
||||
return m_height;
|
||||
return (s32)(GUIEngine::getFontHeight() * m_fixed_scale);
|
||||
}
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
|
@ -67,7 +67,8 @@ public:
|
||||
m_scale = scale;
|
||||
}
|
||||
|
||||
void scaleToHeight(int height);
|
||||
void setFixedScale(float scale)
|
||||
{ m_fixed_scale = scale; }
|
||||
|
||||
void setTargetIconSize(int width, int height)
|
||||
{ m_target_icon_size = core::dimension2du(width, height); }
|
||||
@ -78,7 +79,7 @@ protected:
|
||||
unsigned int m_magic_number;
|
||||
|
||||
float m_scale;
|
||||
int m_height;
|
||||
float m_fixed_scale;
|
||||
|
||||
struct SDrawBatch
|
||||
{
|
||||
|
@ -48,11 +48,12 @@ ListWidget::ListWidget() : Widget(WTYPE_LIST)
|
||||
m_sortable = true;
|
||||
m_header_created = false;
|
||||
m_choosing_header = false;
|
||||
m_icon_scale = -1.0f;
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
|
||||
void ListWidget::setIcons(STKModifiedSpriteBank* icons, int size)
|
||||
void ListWidget::setIcons(STKModifiedSpriteBank* icons, float scale)
|
||||
{
|
||||
m_use_icons = (icons != NULL);
|
||||
m_icons = icons;
|
||||
@ -63,14 +64,25 @@ void ListWidget::setIcons(STKModifiedSpriteBank* icons, int size)
|
||||
if (m_use_icons)
|
||||
{
|
||||
list->setSpriteBank(m_icons);
|
||||
|
||||
// determine needed height
|
||||
int item_height = 0;
|
||||
if (size > 0)
|
||||
{
|
||||
item_height = size;
|
||||
m_icon_scale = scale;
|
||||
updateIconScale();
|
||||
}
|
||||
else
|
||||
{
|
||||
list->setSpriteBank(NULL);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
void ListWidget::updateIconScale()
|
||||
{
|
||||
CGUISTKListBox* list = getIrrlichtElement<CGUISTKListBox>();
|
||||
assert(list != NULL);
|
||||
|
||||
// determine needed height
|
||||
int item_height = (int)(m_icon_scale * GUIEngine::getFontHeight());
|
||||
if (m_icon_scale <= 0.0f)
|
||||
{
|
||||
const core::array< core::rect<s32> >& rects = m_icons->getPositions();
|
||||
const int count = rects.size();
|
||||
@ -86,12 +98,6 @@ void ListWidget::setIcons(STKModifiedSpriteBank* icons, int size)
|
||||
list->setItemHeight(item_height);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
list->setSpriteBank(NULL);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// -----------------------------------------------------------------------------
|
||||
int ListWidget::getHeaderHeight() const
|
||||
@ -699,4 +705,6 @@ void ListWidget::resize()
|
||||
if (m_element)
|
||||
m_element->setRelativePosition(getListBoxSize());
|
||||
updateHeader();
|
||||
if (m_use_icons)
|
||||
updateIconScale();
|
||||
}
|
||||
|
@ -98,6 +98,8 @@ namespace GUIEngine
|
||||
|
||||
bool m_header_created;
|
||||
|
||||
float m_icon_scale;
|
||||
|
||||
void repairSortCol()
|
||||
{
|
||||
// Exclude scrollbar
|
||||
@ -109,6 +111,7 @@ namespace GUIEngine
|
||||
}
|
||||
|
||||
void updateHeader();
|
||||
void updateIconScale();
|
||||
int getHeaderHeight() const;
|
||||
irr::core::rect<s32> getListBoxSize() const;
|
||||
|
||||
@ -140,7 +143,7 @@ namespace GUIEngine
|
||||
* you're done with it (but do not delete it when the list widget is still active)
|
||||
* \pre may only be called after the widget has been added to the screen with add()
|
||||
*/
|
||||
void setIcons(irr::gui::STKModifiedSpriteBank* icons, int size=-1);
|
||||
void setIcons(irr::gui::STKModifiedSpriteBank* icons, float scale = -1.0f);
|
||||
|
||||
|
||||
// ---- contents management
|
||||
|
@ -157,11 +157,10 @@ void AddonsScreen::init()
|
||||
getWidget<GUIEngine::ListWidget>("list_addons");
|
||||
|
||||
// This defines the row height !
|
||||
m_icon_height = GUIEngine::getFontHeight() * 2;
|
||||
m_icon_bank->setScale(1.0f / 72.0f);
|
||||
// 128 is the height of the image file
|
||||
m_icon_bank->setScale((float)GUIEngine::getFontHeight() / 72.0f);
|
||||
m_icon_bank->setTargetIconSize(128, 128);
|
||||
w_list->setIcons(m_icon_bank, (int)(m_icon_height));
|
||||
w_list->setIcons(m_icon_bank, 2.0f);
|
||||
|
||||
m_type = "kart";
|
||||
|
||||
|
@ -69,8 +69,6 @@ private:
|
||||
* addons_loading is being displayed. */
|
||||
int m_selected_index;
|
||||
|
||||
float m_icon_height;
|
||||
|
||||
bool m_reloading;
|
||||
|
||||
bool m_sort_desc;
|
||||
|
@ -83,8 +83,7 @@ GhostReplayInfoDialog::GhostReplayInfoDialog(unsigned int replay_id,
|
||||
|
||||
/* Used to display kart icons for the selected replay(s) */
|
||||
irr::gui::STKModifiedSpriteBank *icon_bank = GhostReplaySelection::getInstance()->getIconBank();
|
||||
int icon_height = GUIEngine::getFontHeight() * 3 / 2;
|
||||
m_replay_info_widget->setIcons(icon_bank, (int)icon_height);
|
||||
m_replay_info_widget->setIcons(icon_bank, 1.5f);
|
||||
|
||||
updateReplayDisplayedInfo();
|
||||
|
||||
|
@ -101,11 +101,10 @@ HighScoreInfoDialog::HighScoreInfoDialog(Highscores* highscore, bool is_linear,
|
||||
|
||||
/* Used to display kart icons for the entries */
|
||||
irr::gui::STKModifiedSpriteBank *icon_bank = HighScoreSelection::getInstance()->getIconBank();
|
||||
int icon_height = GUIEngine::getFontHeight() * 3 / 2;
|
||||
|
||||
icon_bank->setScale(icon_height/128.0f);
|
||||
icon_bank->setScale(1.5f / 128.0f);
|
||||
icon_bank->setTargetIconSize(128, 128);
|
||||
m_high_score_list->setIcons(icon_bank, (int)icon_height);
|
||||
m_high_score_list->setIcons(icon_bank, 1.5f);
|
||||
|
||||
updateHighscoreEntries();
|
||||
|
||||
|
@ -234,8 +234,8 @@ void EditGPScreen::loadList(const int selected)
|
||||
m_list->clear();
|
||||
m_icons.clear();
|
||||
m_icon_bank->clear();
|
||||
m_icon_bank->scaleToHeight (GUIEngine::getFontHeight() * 3 / 2);
|
||||
m_list->setIcons(m_icon_bank, GUIEngine::getFontHeight() * 3 / 2);
|
||||
m_icon_bank->setFixedScale(1.5f);
|
||||
m_list->setIcons(m_icon_bank, 1.5f);
|
||||
|
||||
for (unsigned int i = 0; i < m_gp->getNumberOfTracks(true); i++)
|
||||
{
|
||||
|
@ -178,13 +178,10 @@ void GhostReplaySelection::init()
|
||||
Screen::init();
|
||||
m_cur_difficulty = RaceManager::get()->getDifficulty();
|
||||
|
||||
int icon_height = GUIEngine::getFontHeight();
|
||||
int row_height = GUIEngine::getFontHeight() * 5 / 4;
|
||||
|
||||
// 128 is the height of the image file
|
||||
m_icon_bank->setScale(icon_height/128.0f);
|
||||
m_icon_bank->setScale(1.0f / 128.0f);
|
||||
m_icon_bank->setTargetIconSize(128, 128);
|
||||
m_replay_list_widget->setIcons(m_icon_bank, (int)row_height);
|
||||
m_replay_list_widget->setIcons(m_icon_bank, 1.25f);
|
||||
|
||||
refresh(/*reload replay files*/ false, /* update columns */ true);
|
||||
} // init
|
||||
|
@ -291,11 +291,9 @@ void GPInfoScreen::init()
|
||||
getWidget<LabelWidget>("name")->setText(m_gp.getName(), false);
|
||||
m_gp.checkConsistency();
|
||||
|
||||
int icon_height = GUIEngine::getFontHeight();
|
||||
int row_height = GUIEngine::getFontHeight() * 1.2f;
|
||||
m_icon_bank->setScale(icon_height/128.0f);
|
||||
m_icon_bank->setScale(1.0f / 128.0f);
|
||||
m_icon_bank->setTargetIconSize(128, 128);
|
||||
m_highscore_list->setIcons(m_icon_bank,row_height);
|
||||
m_highscore_list->setIcons(m_icon_bank, 1.2f);
|
||||
RaceManager::get()->setNumKarts(RaceManager::get()->getNumLocalPlayers() + m_ai_kart_spinner->getValue());
|
||||
// We don't save highscores for random gps so load highscores here
|
||||
updateHighscores();
|
||||
|
@ -168,13 +168,10 @@ void HighScoreSelection::init()
|
||||
{
|
||||
Screen::init();
|
||||
|
||||
int icon_height = GUIEngine::getFontHeight();
|
||||
int row_height = GUIEngine::getFontHeight() * 5 / 4;
|
||||
|
||||
// 128 is the height of the image file
|
||||
m_icon_bank->setScale(icon_height/128.0f);
|
||||
m_icon_bank->setScale(1.0f / 128.0f);
|
||||
m_icon_bank->setTargetIconSize(128, 128);
|
||||
m_high_scores_list_widget->setIcons(m_icon_bank, (int)row_height);
|
||||
m_high_scores_list_widget->setIcons(m_icon_bank, 1.25f);
|
||||
|
||||
refresh(/*reload high score list*/ false, /* update columns */ true);
|
||||
} // init
|
||||
|
@ -157,7 +157,7 @@ void NetworkingLobby::loadedFromFile()
|
||||
m_icon_bank->addTextureAsSprite(m_spectate_texture);
|
||||
m_icon_bank->addTextureAsSprite(icon_6);
|
||||
|
||||
m_icon_bank->setScale((float)GUIEngine::getFontHeight() / 96.0f);
|
||||
m_icon_bank->setScale(1.0f / 96.0f);
|
||||
m_icon_bank->setTargetIconSize(128, 128);
|
||||
} // loadedFromFile
|
||||
|
||||
|
@ -174,7 +174,7 @@ void ServerSelection::init()
|
||||
m_searcher->clearListeners();
|
||||
m_searcher->addListener(this);
|
||||
|
||||
m_icon_bank->setScale((float)GUIEngine::getFontHeight() / 72.0f);
|
||||
m_icon_bank->setScale(1.0f / 72.0f);
|
||||
m_icon_bank->setTargetIconSize(128, 128);
|
||||
|
||||
video::ITexture* icon1 = irr_driver->getTexture(
|
||||
@ -205,9 +205,7 @@ void ServerSelection::init()
|
||||
m_icon_bank->addTextureAsSprite(tex);
|
||||
}
|
||||
|
||||
int row_height = GUIEngine::getFontHeight() * 2;
|
||||
|
||||
m_server_list_widget->setIcons(m_icon_bank, row_height);
|
||||
m_server_list_widget->setIcons(m_icon_bank, 2.0f);
|
||||
m_sort_desc = false;
|
||||
refresh();
|
||||
m_ipv6_only_without_nat64 = false;
|
||||
|
@ -451,10 +451,9 @@ void TracksScreen::init()
|
||||
m_track_icons->addTextureAsSprite(tex);
|
||||
}
|
||||
|
||||
int icon_height = getHeight() / 13;
|
||||
m_track_icons->setScale(icon_height / 256.0f);
|
||||
m_track_icons->setScale(1.0f / 128.0f);
|
||||
m_track_icons->setTargetIconSize(256, 256);
|
||||
m_vote_list->setIcons(m_track_icons, (int)icon_height);
|
||||
m_vote_list->setIcons(m_track_icons);
|
||||
|
||||
const PeerVote* vote = cl->getVote(STKHost::get()->getMyHostId());
|
||||
if (vote)
|
||||
|
@ -18,7 +18,6 @@
|
||||
#include "states_screens/options/options_screen_device.hpp"
|
||||
|
||||
#include "config/user_config.hpp"
|
||||
#include "guiengine/CGUISpriteBank.hpp"
|
||||
#include "guiengine/message_queue.hpp"
|
||||
#include "guiengine/scalable_font.hpp"
|
||||
#include "guiengine/screen.hpp"
|
||||
|
@ -74,9 +74,7 @@ void OptionsScreenInput::loadedFromFile()
|
||||
m_icon_bank->addTextureAsSprite(icon4);
|
||||
m_icon_bank->addTextureAsSprite(icon5);
|
||||
|
||||
// scale icons depending on font height
|
||||
const float scale = GUIEngine::getFontHeight() / 72.0f;
|
||||
m_icon_bank->setScale(scale);
|
||||
m_icon_bank->setScale(1.0f / 72.0f);
|
||||
m_icon_bank->setTargetIconSize(128, 128);
|
||||
m_gamepad_count = 0;
|
||||
} // loadFromFile
|
||||
|
@ -345,12 +345,9 @@ void TrackInfoScreen::init()
|
||||
|
||||
if (has_highscores)
|
||||
{
|
||||
int icon_height = GUIEngine::getFontHeight();
|
||||
int row_height = GUIEngine::getFontHeight() * 1.2f;
|
||||
|
||||
m_icon_bank->setScale(icon_height/128.0f);
|
||||
m_icon_bank->setScale(1.0f / 128.0f);
|
||||
m_icon_bank->setTargetIconSize(128, 128);
|
||||
m_highscore_entries->setIcons(m_icon_bank, (int)row_height);
|
||||
m_highscore_entries->setIcons(m_icon_bank, 1.2f);
|
||||
m_highscore_entries->setVisible(has_highscores);
|
||||
|
||||
updateHighScores();
|
||||
|
Loading…
Reference in New Issue
Block a user