File: message_loop.cpp

package info (click to toggle)
aseprite 1.0.5%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,504 kB
  • ctags: 18,296
  • sloc: cpp: 84,144; ansic: 49,119; xml: 1,971; objc: 1,211; asm: 117; makefile: 45
file content (45 lines) | stat: -rw-r--r-- 1,082 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Aseprite UI Library
// Copyright (C) 2001-2013  David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include "ui/message_loop.h"

#include "base/chrono.h"
#include "base/thread.h"
#include "ui/manager.h"

namespace ui {

MessageLoop::MessageLoop(Manager* manager)
  : m_manager(manager)
{
}

void MessageLoop::pumpMessages()
{
  base::Chrono chrono;

  if (m_manager->generateMessages()) {
    m_manager->dispatchMessages();
  }
  else {
    m_manager->collectGarbage();
  }

  // If the dispatching of messages was faster than 10 milliseconds,
  // it means that the process is not using a lot of CPU, so we can
  // wait the difference to cover those 10 milliseconds
  // sleeping. With this code we can avoid 100% CPU usage (a
  // property of Allegro 4 polling nature).
  double elapsedMSecs = chrono.elapsed() * 1000.0;
  if (elapsedMSecs > 0.0 && elapsedMSecs < 10.0)
    base::this_thread::sleep_for((10.0 - elapsedMSecs) / 1000.0);
}

} // namespace ui