DisplayManager.cpp 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. //
  2. // DisplayManager.cpp
  3. // konvergo
  4. //
  5. // Created by Lionel CHAZALLON on 28/09/2014.
  6. //
  7. //
  8. #include "QsLog.h"
  9. #include "DisplayManager.h"
  10. #include "math.h"
  11. #include "settings/SettingsComponent.h"
  12. ///////////////////////////////////////////////////////////////////////////////////////////////////
  13. DisplayManager::DisplayManager(QObject* parent) : QObject(parent) {}
  14. ///////////////////////////////////////////////////////////////////////////////////////////////////
  15. bool DisplayManager::initialize()
  16. {
  17. QLOG_INFO() << QString("DisplayManager found %1 Display(s).").arg(m_displays.size());
  18. // list video modes
  19. for(int displayid : m_displays.keys())
  20. {
  21. DMDisplayPtr display = m_displays[displayid];
  22. QLOG_INFO() << QString("Available modes for Display #%1 (%2)").arg(displayid).arg(display->m_name);
  23. for (int modeid = 0; modeid < display->m_videoModes.size(); modeid++)
  24. {
  25. DMVideoModePtr mode = display->m_videoModes[modeid];
  26. QLOG_INFO() << QString("Mode %1: %2").arg(modeid, 2).arg(mode->getPrettyName());
  27. }
  28. }
  29. // Log current display mode
  30. int mainDisplay = getMainDisplay();
  31. if (mainDisplay >= 0)
  32. {
  33. int currentMode = getCurrentDisplayMode(mainDisplay);
  34. if (currentMode >= 0)
  35. QLOG_INFO() << QString("DisplayManager : Current Display Mode on Display #%1 is %2")
  36. .arg(mainDisplay)
  37. .arg(m_displays[mainDisplay]->m_videoModes[currentMode]->getPrettyName());
  38. else
  39. QLOG_ERROR() << "DisplayManager : unable to retrieve current video mode";
  40. }
  41. else
  42. QLOG_ERROR() << "DisplayManager : unable to retrieve main display";
  43. return true;
  44. }
  45. ///////////////////////////////////////////////////////////////////////////////////////////////////
  46. DMVideoModePtr DisplayManager::getCurrentVideoMode(int display)
  47. {
  48. int currentMode = getCurrentDisplayMode(display);
  49. DMVideoModePtr currentVideoMode;
  50. if (currentMode >= 0)
  51. currentVideoMode = m_displays[display]->m_videoModes[currentMode];
  52. return currentVideoMode;
  53. }
  54. ///////////////////////////////////////////////////////////////////////////////////////////////////
  55. bool DisplayManager::isValidDisplay(int display) { return m_displays.contains(display); }
  56. ///////////////////////////////////////////////////////////////////////////////////////////////////
  57. bool DisplayManager::isValidDisplayMode(int display, int mode)
  58. {
  59. if (isValidDisplay(display))
  60. if (mode >= 0 && mode < m_displays[display]->m_videoModes.size())
  61. return true;
  62. return false;
  63. }
  64. ///////////////////////////////////////////////////////////////////////////////////////////////////
  65. // refresh: video FPS
  66. // multiple: display FPS
  67. bool DisplayManager::isRateMultipleOf(float refresh, float multiple, bool exact)
  68. {
  69. long roundedRefresh = lrint(refresh);
  70. long roundedMultiple = lrint(multiple);
  71. if (roundedRefresh == 0)
  72. return false;
  73. float newRate = roundedMultiple / roundedRefresh * refresh;
  74. if (newRate < 1)
  75. return false;
  76. float tolerance = exact ? 0.1 : 1;
  77. return fabs(newRate - multiple) < tolerance;
  78. }
  79. ///////////////////////////////////////////////////////////////////////////////////////////////////
  80. int DisplayManager::findBestMatch(int display, DMMatchMediaInfo& matchInfo)
  81. {
  82. bool avoid_25_30 = SettingsComponent::Get().value(SETTINGS_SECTION_VIDEO, "refreshrate.avoid_25hz_30hz").toBool();
  83. // Grab current videomode information
  84. DMVideoModePtr currentVideoMode = getCurrentVideoMode(display);
  85. if (!currentVideoMode)
  86. return -1;
  87. // now we try to find the exact match in current resolution
  88. // then fill a list
  89. DMVideoModeWeightMap weights;
  90. DMVideoModeMap::const_iterator modeit = m_displays[display]->m_videoModes.constBegin();
  91. while (modeit != m_displays[display]->m_videoModes.constEnd())
  92. {
  93. DMVideoModePtr candidate = modeit.value();
  94. // avoid switching to 30 fps (prefer a multiple - 60Hz is ideal)
  95. // the intention is also to match 30/1.001
  96. if ((fabs(candidate->m_refreshRate - 30.0) < 0.5) ||
  97. (fabs(candidate->m_refreshRate - 25.0) < 0.5))
  98. {
  99. if (avoid_25_30)
  100. {
  101. QLOG_INFO() << "DisplayManager RefreshMatch : skipping rate " << candidate->m_refreshRate << "as requested";
  102. modeit++;
  103. continue;
  104. }
  105. }
  106. weights[candidate->m_id] = DMVideoModeWeightPtr(new DMVideoModeWeight);
  107. weights[candidate->m_id]->m_mode = candidate;
  108. weights[candidate->m_id]->m_weight = 0;
  109. // Weight Resolution match
  110. if ((candidate->m_width == currentVideoMode->m_width) &&
  111. (candidate->m_height == currentVideoMode->m_height) &&
  112. (candidate->m_bitsPerPixel == currentVideoMode->m_bitsPerPixel))
  113. {
  114. weights[candidate->m_id]->m_weight += MATCH_WEIGHT_RES;
  115. }
  116. // weight refresh rate
  117. // exact Match
  118. if (fabs(candidate->m_refreshRate - matchInfo.m_refreshRate) <= 0.01)
  119. weights[candidate->m_id]->m_weight += MATCH_WEIGHT_REFRESH_RATE_EXACT;
  120. // exact multiple refresh rate
  121. if (isRateMultipleOf(matchInfo.m_refreshRate, candidate->m_refreshRate, true))
  122. weights[candidate->m_id]->m_weight += MATCH_WEIGHT_REFRESH_RATE_MULTIPLE;
  123. // close refresh match (less than 1 hz diff to match all 23.xxx modes to 24p)
  124. if (fabs(candidate->m_refreshRate - matchInfo.m_refreshRate) <= 0.5)
  125. {
  126. weights[candidate->m_id]->m_weight += MATCH_WEIGHT_REFRESH_RATE_CLOSE;
  127. }
  128. // approx multiple refresh rate
  129. if (isRateMultipleOf(matchInfo.m_refreshRate, candidate->m_refreshRate, false))
  130. weights[candidate->m_id]->m_weight += MATCH_WEIGHT_REFRESH_RATE_MULTIPLE_CLOSE;
  131. // weight interlacing
  132. if (candidate->m_interlaced == matchInfo.m_interlaced)
  133. weights[candidate->m_id]->m_weight += MATCH_WEIGHT_INTERLACE;
  134. if (candidate->m_id == currentVideoMode->m_id)
  135. weights[candidate->m_id]->m_weight += MATCH_WEIGHT_CURRENT;
  136. modeit++;
  137. }
  138. // now grab the mode with the highest weight
  139. DMVideoModeWeightPtr chosen;
  140. float maxWeight = 0;
  141. DMVideoModeWeightMap::const_iterator weightit = weights.constBegin();
  142. while (weightit != weights.constEnd())
  143. {
  144. QLOG_DEBUG() << "Mode " << weightit.value()->m_mode->m_id << "("
  145. << weightit.value()->m_mode->getPrettyName() << ") has weight "
  146. << weightit.value()->m_weight;
  147. if (weightit.value()->m_weight > maxWeight)
  148. {
  149. chosen = weightit.value();
  150. maxWeight = chosen->m_weight;
  151. }
  152. weightit++;
  153. }
  154. if ((chosen) && (chosen->m_weight > MATCH_WEIGHT_RES))
  155. {
  156. QLOG_INFO() << "DisplayManager RefreshMatch : found a suitable mode : "
  157. << chosen->m_mode->getPrettyName();
  158. return chosen->m_mode->m_id;
  159. }
  160. QLOG_INFO() << "DisplayManager RefreshMatch : found no suitable videomode";
  161. return -1;
  162. }
  163. ///////////////////////////////////////////////////////////////////////////////////////////////////
  164. int DisplayManager::findBestMode(int display)
  165. {
  166. int bestMode = -1;
  167. for(auto mode : m_displays[display]->m_videoModes)
  168. {
  169. if (bestMode < 0)
  170. {
  171. bestMode = mode->m_id;
  172. }
  173. else
  174. {
  175. DMVideoModePtr best = m_displays[display]->m_videoModes[bestMode];
  176. DMVideoModePtr candidate = mode;
  177. // Highest priority: prefer non-interlaced modes.
  178. if (!best->m_interlaced && candidate->m_interlaced)
  179. continue;
  180. if (best->m_bitsPerPixel > candidate->m_bitsPerPixel)
  181. continue;
  182. if (best->m_width > candidate->m_width)
  183. continue;
  184. if (best->m_height > candidate->m_height)
  185. continue;
  186. if (best->m_refreshRate > candidate->m_refreshRate)
  187. continue;
  188. bestMode = candidate->m_id;
  189. }
  190. }
  191. return bestMode;
  192. }
  193. ///////////////////////////////////////////////////////////////////////////////////////////////////
  194. int DisplayManager::getDisplayFromPoint(const QPoint& pt)
  195. {
  196. return getDisplayFromPoint(pt.x(), pt.y());
  197. }