Version 7.1.7.1, tag libreoffice-7.1.7.1
[LibreOffice.git] / svx / source / sdr / animation / scheduler.cxx
blob21a28fe72f9f23e32e1363a6a22c4c5571659cec
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <svx/sdr/animation/scheduler.hxx>
22 #include <algorithm>
23 #include <vector>
26 // event class
28 namespace sdr::animation
30 Event::Event() : mnTime(0)
34 Event::~Event()
39 void Event::SetTime(sal_uInt32 nNew)
41 if(mnTime != nNew)
43 mnTime = nNew;
47 Scheduler::Scheduler()
48 : mnTime(0),
49 mnDeltaTime(0),
50 mbIsPaused(false)
52 SetPriority(TaskPriority::POST_PAINT);
55 Scheduler::~Scheduler()
57 Stop();
60 void Scheduler::Invoke()
62 // stop timer and add time
63 Stop();
64 mnTime += mnDeltaTime;
66 // execute events
67 triggerEvents();
69 // re-start or stop timer according to event list
70 checkTimeout();
73 void Scheduler::triggerEvents()
75 if (mvEvents.empty())
76 return;
78 // copy events which need to be executed to a vector. Remove them from
79 // the scheduler
80 ::std::vector< Event* > aToBeExecutedList;
82 while(!mvEvents.empty() && mvEvents.front()->GetTime() <= mnTime)
84 Event* pNextEvent = mvEvents.front();
85 mvEvents.erase(mvEvents.begin());
86 aToBeExecutedList.push_back(pNextEvent);
89 // execute events from the vector
90 for(auto& rpCandidate : aToBeExecutedList)
92 // trigger event. This may re-insert the event to the scheduler again
93 rpCandidate->Trigger(mnTime);
97 void Scheduler::checkTimeout()
99 // re-start or stop timer according to event list
100 if(!IsPaused() && !mvEvents.empty())
102 mnDeltaTime = mvEvents.front()->GetTime() - mnTime;
104 if(0 != mnDeltaTime)
106 SetTimeout(mnDeltaTime);
107 Start();
110 else
112 Stop();
117 // #i38135#
118 void Scheduler::SetTime(sal_uInt32 nTime)
120 // reset time
121 Stop();
122 mnTime = nTime;
124 if (mvEvents.empty())
125 return;
127 // reset event time points
128 for (auto & rEvent : mvEvents)
130 rEvent->SetTime(nTime);
133 if(!IsPaused())
135 // without delta time, init events by triggering them. This will invalidate
136 // painted objects and add them to the scheduler again
137 mnDeltaTime = 0;
138 triggerEvents();
139 checkTimeout();
143 void Scheduler::InsertEvent(Event& rNew)
145 // insert maintaining time ordering
146 auto it = std::find_if(mvEvents.begin(), mvEvents.end(),
147 [&rNew](const Event* pEvent) { return rNew.GetTime() < pEvent->GetTime(); });
148 mvEvents.insert(it, &rNew);
149 checkTimeout();
152 void Scheduler::RemoveEvent(Event* pOld)
154 if(!mvEvents.empty())
156 mvEvents.erase(std::remove(mvEvents.begin(), mvEvents.end(), pOld), mvEvents.end());
157 checkTimeout();
161 void Scheduler::SetPaused(bool bNew)
163 if(bNew != mbIsPaused)
165 mbIsPaused = bNew;
166 checkTimeout();
170 } // end of namespace
172 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */