mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Fixed multiple issues with carousel on-demand texture loading.
Also cleaned up some code.
This commit is contained in:
parent
b9af765657
commit
123f29aa43
|
@ -356,7 +356,7 @@ void GuiGamelistOptions::startEditMode()
|
|||
// as we will want to edit the selected collection within.
|
||||
if (editingSystem ==
|
||||
CollectionSystemsManager::getInstance()->getCustomCollectionsBundle()->getName()) {
|
||||
FileData* file = getGamelist()->getCursor();
|
||||
FileData* file {getGamelist()->getCursor()};
|
||||
// Do we have the cursor on a specific collection?.
|
||||
if (file->getType() == FOLDER)
|
||||
editingSystem = file->getName();
|
||||
|
|
|
@ -387,7 +387,7 @@ bool GamelistBase::input(InputConfig* config, Input input)
|
|||
mWindow->queueInfoPopup("CAN'T ADD FOLDERS TO CUSTOM COLLECTIONS", 4000);
|
||||
}
|
||||
else {
|
||||
MetaDataList* md = &entryToUpdate->getSourceFileData()->metadata;
|
||||
MetaDataList* md {&entryToUpdate->getSourceFileData()->metadata};
|
||||
if (md->get("favorite") == "false") {
|
||||
md->set("favorite", "true");
|
||||
mWindow->queueInfoPopup(
|
||||
|
|
|
@ -42,6 +42,12 @@ public:
|
|||
FileData* getLastEntry() { return mPrimary->getLast(); }
|
||||
FileData* getFirstGameEntry() { return mFirstGameEntry; }
|
||||
|
||||
void onDemandTextureLoad()
|
||||
{
|
||||
if (mPrimary != nullptr)
|
||||
mPrimary->onDemandTextureLoad();
|
||||
}
|
||||
|
||||
// These functions are used to retain the folder cursor history, for instance
|
||||
// during a view reload. The calling function stores the history temporarily.
|
||||
void copyCursorHistory(std::vector<FileData*>& cursorHistory)
|
||||
|
|
|
@ -57,6 +57,8 @@ void GamelistView::onFileChanged(FileData* file, bool reloadGamelist)
|
|||
populateList(mRoot->getChildrenListToDisplay(), mRoot);
|
||||
setCursor(cursor);
|
||||
}
|
||||
|
||||
onDemandTextureLoad();
|
||||
}
|
||||
|
||||
void GamelistView::onShow()
|
||||
|
@ -435,8 +437,8 @@ void GamelistView::updateView(const CursorState& state)
|
|||
|
||||
bool loadedTexture {false};
|
||||
|
||||
if (mCarousel != nullptr && mCarousel->isScrolling()) {
|
||||
mCarousel->onDemandTextureLoad();
|
||||
if (mPrimary->isScrolling()) {
|
||||
onDemandTextureLoad();
|
||||
loadedTexture = true;
|
||||
}
|
||||
|
||||
|
@ -449,8 +451,8 @@ void GamelistView::updateView(const CursorState& state)
|
|||
if (file == mLastUpdated)
|
||||
return;
|
||||
|
||||
if (mCarousel != nullptr && !loadedTexture)
|
||||
mCarousel->onDemandTextureLoad();
|
||||
if (!loadedTexture)
|
||||
onDemandTextureLoad();
|
||||
|
||||
if (state == CursorState::CURSOR_STOPPED)
|
||||
mLastUpdated = file;
|
||||
|
|
|
@ -742,7 +742,7 @@ std::shared_ptr<GamelistView> ViewController::getGamelistView(SystemData* system
|
|||
bool themeHasVideoView {system->getTheme()->hasView("video")};
|
||||
|
||||
// Decide which view style to use.
|
||||
GamelistViewStyle selectedViewStyle = AUTOMATIC;
|
||||
GamelistViewStyle selectedViewStyle {AUTOMATIC};
|
||||
|
||||
std::string viewPreference {Settings::getInstance()->getString("GamelistViewStyle")};
|
||||
if (viewPreference == "basic")
|
||||
|
@ -995,7 +995,7 @@ void ViewController::reloadGamelistView(GamelistView* view, bool reloadTheme)
|
|||
if (reloadTheme)
|
||||
system->loadTheme();
|
||||
system->getIndex()->setKidModeFilters();
|
||||
std::shared_ptr<GamelistView> newView = getGamelistView(system);
|
||||
std::shared_ptr<GamelistView> newView {getGamelistView(system)};
|
||||
|
||||
// To counter having come from a placeholder.
|
||||
if (!cursor->isPlaceHolder()) {
|
||||
|
|
|
@ -52,7 +52,7 @@ public:
|
|||
void addEntry(Entry& entry, const std::shared_ptr<ThemeData>& theme);
|
||||
void updateEntry(Entry& entry, const std::shared_ptr<ThemeData>& theme);
|
||||
Entry& getEntry(int index) { return mEntries.at(index); }
|
||||
void onDemandTextureLoad();
|
||||
void onDemandTextureLoad() override;
|
||||
const CarouselType getType() { return mType; }
|
||||
const std::string& getItemType() { return mItemType; }
|
||||
void setItemType(std::string itemType) { mItemType = itemType; }
|
||||
|
@ -796,6 +796,9 @@ template <typename T> void CarouselComponent<T>::render(const glm::mat4& parentT
|
|||
renderItem.trans = itemTrans;
|
||||
|
||||
renderItems.emplace_back(renderItem);
|
||||
|
||||
if (singleEntry)
|
||||
break;
|
||||
}
|
||||
|
||||
int belowCenter {static_cast<int>(std::round((renderItems.size() - centerOffset - 1) / 2))};
|
||||
|
@ -1286,7 +1289,6 @@ template <typename T> void CarouselComponent<T>::onCursorChanged(const CursorSta
|
|||
if (mScrollVelocity != 0)
|
||||
mPreviousScrollVelocity = mScrollVelocity;
|
||||
|
||||
if (endPos != mEntryCamOffset) {
|
||||
// Needed to make sure that overlapping items are renderered correctly.
|
||||
if (startPos > endPos)
|
||||
mPositiveDirection = true;
|
||||
|
@ -1309,7 +1311,6 @@ template <typename T> void CarouselComponent<T>::onCursorChanged(const CursorSta
|
|||
500)};
|
||||
|
||||
GuiComponent::setAnimation(anim, 0, nullptr, false, 0);
|
||||
}
|
||||
|
||||
if (mCursorChangedCallback && !mEntries.empty())
|
||||
mCursorChangedCallback(state);
|
||||
|
|
|
@ -44,7 +44,8 @@ public:
|
|||
virtual const size_t getNumEntries() = 0;
|
||||
|
||||
// Functions used by some primary components.
|
||||
virtual void setAlignment(PrimaryAlignment align) {};
|
||||
virtual void onDemandTextureLoad() {}
|
||||
virtual void setAlignment(PrimaryAlignment align) {}
|
||||
};
|
||||
|
||||
#endif // ES_CORE_COMPONENTS_PRIMARY_COMPONENT_H
|
||||
|
|
Loading…
Reference in a new issue