saving benchmark results.

This commit is contained in:
rachytski 2011-02-13 15:45:33 +02:00 committed by Alex Zolotarev
parent 9a27df9663
commit 197885e18f
6 changed files with 38 additions and 5 deletions

View file

@ -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;

View file

@ -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;

View file

@ -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;

View file

@ -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();

View file

@ -382,7 +382,12 @@ public:
bool IsBenchmarking() const
{
return false;
return true;
}
string const DeviceID() const
{
return "DesktopVersion";
}
};

View file

@ -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