forked from organicmaps/organicmaps
[core] remove PreWermend Idle
This commit is contained in:
parent
1cbb1c003a
commit
6ba4033ea8
3 changed files with 29 additions and 100 deletions
|
@ -18,39 +18,13 @@ namespace anim
|
|||
m_controller->Unlock();
|
||||
}
|
||||
|
||||
Controller::Controller()
|
||||
{
|
||||
m_LockCount = 0;
|
||||
m_IdleThreshold = 5;
|
||||
m_IdleFrames = 0;
|
||||
}
|
||||
|
||||
Controller::~Controller()
|
||||
{
|
||||
}
|
||||
|
||||
void Controller::AddTaskImpl(list<shared_ptr<Task> > & l, shared_ptr<Task> const & task)
|
||||
{
|
||||
l.push_back(task);
|
||||
task->SetController(this);
|
||||
if (task->IsVisual())
|
||||
m_IdleFrames = m_IdleThreshold;
|
||||
}
|
||||
|
||||
void Controller::AddTask(shared_ptr<Task> const & task)
|
||||
{
|
||||
m_tasks.ProcessList(bind(&Controller::AddTaskImpl, this, _1, task));
|
||||
}
|
||||
|
||||
void Controller::CopyAndClearTasks(TTasks & from, TTasks & to)
|
||||
{
|
||||
to.clear();
|
||||
swap(from, to);
|
||||
}
|
||||
|
||||
void Controller::MergeTasks(TTasks & from, TTasks & to)
|
||||
{
|
||||
copy(from.begin(), from.end(), back_inserter(to));
|
||||
m_tasks.ProcessList([this, &task](TTasks & taskList)
|
||||
{
|
||||
taskList.push_back(task);
|
||||
task->SetController(this);
|
||||
});
|
||||
}
|
||||
|
||||
bool Controller::HasTasks()
|
||||
|
@ -58,26 +32,9 @@ namespace anim
|
|||
return !m_tasks.Empty();
|
||||
}
|
||||
|
||||
void Controller::HasVisualTasksImpl(list<shared_ptr<Task> > &l, bool *res) const
|
||||
{
|
||||
*res = false;
|
||||
for (list<shared_ptr<Task> >::const_iterator it = l.begin();
|
||||
it != l.end();
|
||||
++it)
|
||||
{
|
||||
if ((*it)->IsVisual())
|
||||
{
|
||||
*res = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool Controller::HasVisualTasks()
|
||||
{
|
||||
bool res;
|
||||
m_tasks.ProcessList(bind(&Controller::HasVisualTasksImpl, this, _1, &res));
|
||||
return res;
|
||||
return m_hasVisualTasks;
|
||||
}
|
||||
|
||||
void Controller::Lock()
|
||||
|
@ -98,31 +55,20 @@ namespace anim
|
|||
|
||||
void Controller::PerformStep()
|
||||
{
|
||||
m_tasks.ProcessList(bind(&Controller::CopyAndClearTasks, _1, ref(m_tasksList)));
|
||||
m_tasks.ProcessList([this](TTasks & from)
|
||||
{
|
||||
m_tasksList.clear();
|
||||
swap(from, m_tasksList);
|
||||
});
|
||||
|
||||
double ts = GetCurrentTime();
|
||||
|
||||
TTasks l;
|
||||
TTasks resultList;
|
||||
|
||||
bool hasVisualTasks = false;
|
||||
for (list<shared_ptr<Task> >::const_iterator it = m_tasksList.begin();
|
||||
it != m_tasksList.end();
|
||||
++it)
|
||||
if ((*it)->IsVisual())
|
||||
{
|
||||
hasVisualTasks = true;
|
||||
break;
|
||||
}
|
||||
|
||||
for (TTasks::const_iterator it = m_tasksList.begin(); it != m_tasksList.end(); ++it)
|
||||
for (TTaskPtr const & task : m_tasksList)
|
||||
{
|
||||
shared_ptr<Task> const & task = *it;
|
||||
|
||||
task->Lock();
|
||||
|
||||
if (task->IsVisual())
|
||||
m_IdleFrames = m_IdleThreshold;
|
||||
|
||||
if (task->IsReady())
|
||||
{
|
||||
task->Start();
|
||||
|
@ -132,7 +78,7 @@ namespace anim
|
|||
task->OnStep(ts);
|
||||
|
||||
if (task->IsRunning())
|
||||
l.push_back(task);
|
||||
resultList.push_back(task);
|
||||
else
|
||||
{
|
||||
if (task->IsCancelled())
|
||||
|
@ -144,15 +90,15 @@ namespace anim
|
|||
task->Unlock();
|
||||
}
|
||||
|
||||
if (!hasVisualTasks && m_IdleFrames > 0)
|
||||
m_IdleFrames -= 1;
|
||||
|
||||
m_tasks.ProcessList(bind(&Controller::MergeTasks, ref(l), _1));
|
||||
}
|
||||
|
||||
bool Controller::IsVisuallyPreWarmed() const
|
||||
{
|
||||
return m_IdleFrames > 0;
|
||||
m_hasVisualTasks = false;
|
||||
m_tasks.ProcessList([this, &resultList](TTasks & to)
|
||||
{
|
||||
for_each(resultList.begin(), resultList.end(), [this, &to](shared_ptr<Task> task)
|
||||
{
|
||||
m_hasVisualTasks |= task->IsVisual();
|
||||
to.push_back(task);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
double Controller::GetCurrentTime() const
|
||||
|
|
|
@ -14,21 +14,16 @@ namespace anim
|
|||
{
|
||||
private:
|
||||
|
||||
typedef shared_ptr<Task> TTaskPtr;
|
||||
// Container for tasks
|
||||
typedef list<shared_ptr<Task> > TTasks;
|
||||
typedef list<TTaskPtr> TTasks;
|
||||
|
||||
ThreadedList<shared_ptr<Task> > m_tasks;
|
||||
ThreadedList<TTaskPtr> m_tasks;
|
||||
// Task for the current step.
|
||||
TTasks m_tasksList;
|
||||
|
||||
int m_LockCount;
|
||||
int m_IdleThreshold;
|
||||
int m_IdleFrames;
|
||||
|
||||
void AddTaskImpl(list<shared_ptr<Task> > & l, shared_ptr<Task> const & task);
|
||||
void HasVisualTasksImpl(list<shared_ptr<Task> > & l, bool * res) const;
|
||||
static void CopyAndClearTasks(list<shared_ptr<Task> > & from, list<shared_ptr<Task> > & to);
|
||||
static void MergeTasks(list<shared_ptr<Task> > & from, list<shared_ptr<Task> > & to);
|
||||
int m_LockCount = 0;
|
||||
bool m_hasVisualTasks = false;
|
||||
|
||||
public:
|
||||
|
||||
|
@ -39,10 +34,6 @@ namespace anim
|
|||
~Guard();
|
||||
};
|
||||
|
||||
// Constructor
|
||||
Controller();
|
||||
// Destructor
|
||||
~Controller();
|
||||
// Adding animation task to the controller
|
||||
void AddTask(shared_ptr<Task> const & task);
|
||||
// Do we have animation tasks, which are currently running?
|
||||
|
@ -59,13 +50,6 @@ namespace anim
|
|||
int LockCount();
|
||||
// Perform single animation step
|
||||
void PerformStep();
|
||||
// When the last animation is finished, Controller continues
|
||||
// to be considered animating something for some frames to allow
|
||||
// animations that are likely to happen in the next few frames to
|
||||
// catch the Controller up and animate everything smoothly without
|
||||
// interrupting rendering process, which might had happened in these
|
||||
// "frames-in-the-middle".
|
||||
bool IsVisuallyPreWarmed() const;
|
||||
// Getting current simulation time
|
||||
double GetCurrentTime() const;
|
||||
};
|
||||
|
|
|
@ -141,8 +141,7 @@ bool RenderPolicy::NeedRedraw() const
|
|||
bool RenderPolicy::IsAnimating() const
|
||||
{
|
||||
return (m_controller->HasVisualTasks()
|
||||
|| (m_controller->LockCount() > 0)
|
||||
|| (m_controller->IsVisuallyPreWarmed()));
|
||||
|| (m_controller->LockCount() > 0));
|
||||
}
|
||||
|
||||
bool RenderPolicy::IsTiling() const
|
||||
|
|
Loading…
Add table
Reference in a new issue