Fix autoplay settings apply in albums.

This commit is contained in:
John Preston 2019-12-25 12:01:49 +03:00
parent 063be9a13a
commit 08e04cdcb1
9 changed files with 60 additions and 17 deletions

View File

@ -3225,17 +3225,25 @@ void Session::unregisterContactItem(
} }
void Session::registerPlayingVideoFile(not_null<ViewElement*> view) { void Session::registerPlayingVideoFile(not_null<ViewElement*> view) {
_playingVideoFiles.emplace(view); if (++_playingVideoFiles[view] == 1) {
registerHeavyViewPart(view); registerHeavyViewPart(view);
}
} }
void Session::unregisterPlayingVideoFile(not_null<ViewElement*> view) { void Session::unregisterPlayingVideoFile(not_null<ViewElement*> view) {
_playingVideoFiles.remove(view); const auto i = _playingVideoFiles.find(view);
unregisterHeavyViewPart(view); if (i != _playingVideoFiles.end()) {
if (!--i->second) {
_playingVideoFiles.erase(i);
unregisterHeavyViewPart(view);
}
} else {
unregisterHeavyViewPart(view);
}
} }
void Session::stopPlayingVideoFiles() { void Session::stopPlayingVideoFiles() {
for (const auto view : base::take(_playingVideoFiles)) { for (const auto &[view, count] : base::take(_playingVideoFiles)) {
if (const auto media = view->media()) { if (const auto media = view->media()) {
media->stopAnimation(); media->stopAnimation();
} }
@ -3243,10 +3251,16 @@ void Session::stopPlayingVideoFiles() {
} }
void Session::checkPlayingVideoFiles() { void Session::checkPlayingVideoFiles() {
for (const auto view : base::take(_playingVideoFiles)) { const auto old = base::take(_playingVideoFiles);
for (const auto &[view, count] : old) {
if (const auto media = view->media()) { if (const auto media = view->media()) {
media->checkAnimation(); if (const auto left = media->checkAnimationCount()) {
_playingVideoFiles.emplace(view, left);
registerHeavyViewPart(view);
continue;
}
} }
unregisterHeavyViewPart(view);
} }
} }

View File

@ -951,7 +951,7 @@ private:
std::unordered_map< std::unordered_map<
UserId, UserId,
base::flat_set<not_null<ViewElement*>>> _contactViews; base::flat_set<not_null<ViewElement*>>> _contactViews;
base::flat_set<not_null<ViewElement*>> _playingVideoFiles; base::flat_map<not_null<ViewElement*>, int> _playingVideoFiles;
base::flat_set<not_null<WebPageData*>> _webpagesUpdated; base::flat_set<not_null<WebPageData*>> _webpagesUpdated;
base::flat_set<not_null<GameData*>> _gamesUpdated; base::flat_set<not_null<GameData*>> _gamesUpdated;

View File

@ -56,8 +56,8 @@ public:
void stopAnimation() override { void stopAnimation() override {
if (_attach) _attach->stopAnimation(); if (_attach) _attach->stopAnimation();
} }
void checkAnimation() override { int checkAnimationCount() override {
if (_attach) _attach->checkAnimation(); return _attach ? _attach->checkAnimationCount() : 0;
} }
not_null<GameData*> game() { not_null<GameData*> game() {

View File

@ -1365,10 +1365,14 @@ void Gif::stopAnimation() {
} }
} }
void Gif::checkAnimation() { int Gif::checkAnimationCount() {
if (_streamed && !autoplayEnabled()) { if (!_streamed) {
stopAnimation(); return 0;
} else if (autoplayEnabled()) {
return 1;
} }
stopAnimation();
return 0;
} }
float64 Gif::dataProgress() const { float64 Gif::dataProgress() const {

View File

@ -82,7 +82,7 @@ public:
StateRequest request) const override; StateRequest request) const override;
void stopAnimation() override; void stopAnimation() override;
void checkAnimation() override; int checkAnimationCount() override;
TextWithEntities getCaption() const override { TextWithEntities getCaption() const override {
return _caption.toTextWithEntities(); return _caption.toTextWithEntities();

View File

@ -133,7 +133,8 @@ public:
} }
virtual void clearStickerLoopPlayed() { virtual void clearStickerLoopPlayed() {
} }
virtual void checkAnimation() { virtual int checkAnimationCount() {
return 0;
} }
[[nodiscard]] virtual QSize sizeForGrouping() const { [[nodiscard]] virtual QSize sizeForGrouping() const {

View File

@ -408,6 +408,26 @@ void GroupedMedia::updateNeedBubbleState() {
_needBubble = computeNeedBubble(); _needBubble = computeNeedBubble();
} }
void GroupedMedia::stopAnimation() {
for (auto &part : _parts) {
part.content->stopAnimation();
}
}
int GroupedMedia::checkAnimationCount() {
auto result = 0;
for (auto &part : _parts) {
result += part.content->checkAnimationCount();
}
return result;
}
void GroupedMedia::unloadHeavyPart() {
for (auto &part : _parts) {
part.content->unloadHeavyPart();
}
}
void GroupedMedia::parentTextUpdated() { void GroupedMedia::parentTextUpdated() {
history()->owner().requestViewResize(_parent); history()->owner().requestViewResize(_parent);
} }

View File

@ -86,6 +86,10 @@ public:
return true; return true;
} }
void stopAnimation() override;
int checkAnimationCount() override;
void unloadHeavyPart() override;
void parentTextUpdated() override; void parentTextUpdated() override;
private: private:

View File

@ -62,8 +62,8 @@ public:
void stopAnimation() override { void stopAnimation() override {
if (_attach) _attach->stopAnimation(); if (_attach) _attach->stopAnimation();
} }
void checkAnimation() override { int checkAnimationCount() override {
if (_attach) _attach->checkAnimation(); return _attach ? _attach->checkAnimationCount() : 0;
} }
not_null<WebPageData*> webpage() { not_null<WebPageData*> webpage() {