forked from organicmaps/organicmaps
saving benchmark results.
This commit is contained in:
parent
9a27df9663
commit
197885e18f
6 changed files with 38 additions and 5 deletions
|
@ -22,8 +22,10 @@ public:
|
|||
virtual double PeriodicalUpdateInterval() const;
|
||||
virtual vector<string> GetFontNames() const;
|
||||
virtual bool IsBenchmarking() const;
|
||||
|
||||
virtual string const DeviceID() const;
|
||||
|
||||
private:
|
||||
string m_deviceID;
|
||||
string m_skinName;
|
||||
double m_visualScale;
|
||||
NSDate * m_StartDate;
|
||||
|
|
|
@ -36,18 +36,23 @@ IPhonePlatform::IPhonePlatform()
|
|||
|
||||
/// Calculating resolution
|
||||
UIDevice * device = [UIDevice currentDevice];
|
||||
|
||||
|
||||
NSRange range = [device.name rangeOfString:@"iPad"];
|
||||
if (range.location != NSNotFound)
|
||||
{
|
||||
m_deviceID = "iPad";
|
||||
m_visualScale = 1.3;
|
||||
}
|
||||
else {
|
||||
range = [device.name rangeOfString:@"iPod"];
|
||||
float ver = [device.systemVersion floatValue];
|
||||
if (ver >= 3.1999)
|
||||
{
|
||||
m_deviceID = "iPod";
|
||||
UIScreen * mainScr = [UIScreen mainScreen];
|
||||
if (mainScr.currentMode.size.width == 640)
|
||||
{
|
||||
m_deviceID = "iPod";
|
||||
m_visualScale = 2.0;
|
||||
m_isMultiSampled = false;
|
||||
m_skinName = "basic_highres.skn";
|
||||
|
@ -57,7 +62,6 @@ IPhonePlatform::IPhonePlatform()
|
|||
|
||||
NSLog(@"Device Name : %@, SystemName : %@, SystemVersion : %@", device.name, device.systemName, device.systemVersion);
|
||||
|
||||
|
||||
[pool release];
|
||||
}
|
||||
|
||||
|
@ -194,6 +198,11 @@ bool IPhonePlatform::IsBenchmarking() const
|
|||
return false;
|
||||
}
|
||||
|
||||
string const IPhonePlatform::DeviceID() const
|
||||
{
|
||||
return m_deviceID;
|
||||
}
|
||||
|
||||
Platform & GetPlatform()
|
||||
{
|
||||
static IPhonePlatform platform;
|
||||
|
|
|
@ -4,10 +4,13 @@
|
|||
#include "drawer_yg.hpp"
|
||||
|
||||
#include "../indexer/mercator.hpp"
|
||||
#include "../base/string_utils.hpp"
|
||||
#include "../yg/defines.hpp"
|
||||
#include "../yg/skin.hpp"
|
||||
|
||||
#include "../std/fstream.hpp"
|
||||
#include "../version/version.hpp"
|
||||
|
||||
#include "../base/string_utils.hpp"
|
||||
#include "../base/logging.hpp"
|
||||
|
||||
InformationDisplay::InformationDisplay()
|
||||
|
@ -416,6 +419,17 @@ bool InformationDisplay::addBenchmarkInfo(string const & name, m2::RectD const &
|
|||
info.m_duration = frameDuration;
|
||||
info.m_rect = globalRect;
|
||||
m_benchmarkInfo.push_back(info);
|
||||
|
||||
ofstream fout(GetPlatform().WritablePathForFile("benchmark_results.txt").c_str(), ios::app);
|
||||
fout << GetPlatform().DeviceID() << " "
|
||||
<< VERSION_STRING << " "
|
||||
<< info.m_name << " "
|
||||
<< info.m_rect.minX() << " "
|
||||
<< info.m_rect.minY() << " "
|
||||
<< info.m_rect.maxX() << " "
|
||||
<< info.m_rect.maxY() << " "
|
||||
<< info.m_duration << endl;
|
||||
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
|
|
@ -72,6 +72,8 @@ public:
|
|||
virtual vector<string> GetFontNames() const = 0;
|
||||
|
||||
virtual bool IsBenchmarking() const = 0;
|
||||
|
||||
virtual string const DeviceID() const = 0;
|
||||
};
|
||||
|
||||
extern "C" Platform & GetPlatform();
|
||||
|
|
|
@ -382,7 +382,12 @@ public:
|
|||
|
||||
bool IsBenchmarking() const
|
||||
{
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
string const DeviceID() const
|
||||
{
|
||||
return "DesktopVersion";
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -16,6 +16,7 @@ using std::ofstream;
|
|||
using std::ostream;
|
||||
using std::ifstream;
|
||||
using std::istream;
|
||||
using std::ios;
|
||||
|
||||
#ifdef DEBUG_NEW
|
||||
#define new DEBUG_NEW
|
||||
|
|
Loading…
Add table
Reference in a new issue