Bump version to 6.4-15
[LibreOffice.git] / svx / source / sdr / animation / scheduler.cxx
blob4f32f101f99977c4805bb2ffbc2c2d9158bf9e35
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
30 namespace animation
32 Event::Event() : mnTime(0)
36 Event::~Event()
41 void Event::SetTime(sal_uInt32 nNew)
43 if(mnTime != nNew)
45 mnTime = nNew;
49 Scheduler::Scheduler()
50 : mnTime(0),
51 mnDeltaTime(0),
52 mbIsPaused(false)
56 Scheduler::~Scheduler()
58 Stop();
61 void Scheduler::Invoke()
63 // stop timer and add time
64 Stop();
65 mnTime += mnDeltaTime;
67 // execute events
68 triggerEvents();
70 // re-start or stop timer according to event list
71 checkTimeout();
74 void Scheduler::triggerEvents()
76 if (mvEvents.empty())
77 return;
79 // copy events which need to be executed to a vector. Remove them from
80 // the scheduler
81 ::std::vector< Event* > aToBeExecutedList;
83 while(!mvEvents.empty() && mvEvents.front()->GetTime() <= mnTime)
85 Event* pNextEvent = mvEvents.front();
86 mvEvents.erase(mvEvents.begin());
87 aToBeExecutedList.push_back(pNextEvent);
90 // execute events from the vector
91 for(auto& rpCandidate : aToBeExecutedList)
93 // trigger event. This may re-insert the event to the scheduler again
94 rpCandidate->Trigger(mnTime);
98 void Scheduler::checkTimeout()
100 // re-start or stop timer according to event list
101 if(!IsPaused() && !mvEvents.empty())
103 mnDeltaTime = mvEvents.front()->GetTime() - mnTime;
105 if(0L != mnDeltaTime)
107 SetTimeout(mnDeltaTime);
108 Start();
111 else
113 Stop();
118 // #i38135#
119 void Scheduler::SetTime(sal_uInt32 nTime)
121 // reset time
122 Stop();
123 mnTime = nTime;
125 if (mvEvents.empty())
126 return;
128 // reset event time points
129 for (auto & rEvent : mvEvents)
131 rEvent->SetTime(nTime);
134 if(!IsPaused())
136 // without delta time, init events by triggering them. This will invalidate
137 // painted objects and add them to the scheduler again
138 mnDeltaTime = 0;
139 triggerEvents();
140 checkTimeout();
144 void Scheduler::InsertEvent(Event& rNew)
146 // insert maintaining time ordering
147 auto it = std::find_if(mvEvents.begin(), mvEvents.end(),
148 [&rNew](const Event* pEvent) { return rNew.GetTime() < pEvent->GetTime(); });
149 mvEvents.insert(it, &rNew);
150 checkTimeout();
153 void Scheduler::RemoveEvent(Event* pOld)
155 if(!mvEvents.empty())
157 mvEvents.erase(std::remove(mvEvents.begin(), mvEvents.end(), pOld), mvEvents.end());
158 checkTimeout();
162 void Scheduler::SetPaused(bool bNew)
164 if(bNew != mbIsPaused)
166 mbIsPaused = bNew;
167 checkTimeout();
170 } // end of namespace animation
171 } // end of namespace sdr
173 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */