From 1b6adc3347bed462cca197d8f77f31ca784baecf Mon Sep 17 00:00:00 2001 From: Igor Talankin Date: Thu, 6 May 2021 11:58:12 +0500 Subject: [PATCH] Added export section for statistics --- docs/how-to-play-ru.markdown | 18 ++++++++++++++++++ docs/how-to-play.markdown | 18 ++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/docs/how-to-play-ru.markdown b/docs/how-to-play-ru.markdown index a3444db..e23ba55 100644 --- a/docs/how-to-play-ru.markdown +++ b/docs/how-to-play-ru.markdown @@ -183,3 +183,21 @@ permalink: /ru/how-to-play/

Statistics

Включить Статистику можно в [дополнительных настройках](#62-дополнительные). + +### 8.1. Экспорт + +Статистика текущей сессии может быть экспортирована в [CSV](https://ru.wikipedia.org/wiki/CSV) файл (кнопка `экспорт`). + +Файл будет содержать следующую информацию: + +|тип|сложный режим|ширина|высота|время|ходы|tps| +|-|-|-|-|-|-|-| +|[тип игры](#3-типы-игры)|`0` для легкого режима, `1` для [сложного](#42-сложный)|ширина поля|высота поля|время в секундах (с миллисекундами)|количество ходов|[TPS](https://www.speedsolving.com/wiki/index.php/Turns_per_second)| + +Например: + +``` +тип;сложный режим;ширина;высота;время;ходы;tps +classic;0;4;4;11.732;78;6.648 +classic;0;4;4;16.315;134;8.213 +``` diff --git a/docs/how-to-play.markdown b/docs/how-to-play.markdown index 8699e97..5f2a5ec 100644 --- a/docs/how-to-play.markdown +++ b/docs/how-to-play.markdown @@ -183,3 +183,21 @@ Statistics screen shows various information about current session, such as [aver

Statistics

Statistics can be enabled in [advanced settings](#62-advanced). + +### 8.1. Export + +Current session statistics can be exported to a file in [CSV](https://en.wikipedia.org/wiki/Comma-separated_values) format by pressing `export` button. + +The exported file contains the following information: + +|type|hard mode|width|height|time|moves|tps| +|-|-|-|-|-|-|-| +|[game type](#3-game-types)|`0` for easy mode, `1` for [hard mode](#42-hard)|width of the puzzle|height of the puzzle|time in seconds (with milliseconds)|count of moves|[TPS](https://www.speedsolving.com/wiki/index.php/Turns_per_second)| + +For example: + +``` +type;hard mode;width;height;time;moves;tps +classic;0;4;4;11.732;78;6.648 +classic;0;4;4;16.315;134;8.213 +```