1/*
2 * Copyright (C) 2001-2009 Stephan Kulow <coolo@kde.org>
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of
7 * the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
16 */
17
18#ifndef SPEEDS_H
19#define SPEEDS_H
20
21#include <QtGlobal>
22
23
24const qreal SPEED_FACTOR = 1;
25
26const qreal DEAL_SPEED = 4 / SPEED_FACTOR;
27
28const int DURATION_DEAL = SPEED_FACTOR * 1500;
29const int DURATION_WON = SPEED_FACTOR * 2000;
30const int DURATION_DEMO = SPEED_FACTOR * 300;
31const int DURATION_MOVE = SPEED_FACTOR * 230;
32const int DURATION_RELAYOUT = SPEED_FACTOR * 120;
33const int DURATION_FANCYSHOW = SPEED_FACTOR * 350;
34
35const int DURATION_AUTODROP = SPEED_FACTOR * 250;
36const int DURATION_AUTODROP_MINIMUM = SPEED_FACTOR * 80;
37const qreal AUTODROP_SPEEDUP_FACTOR = 0.90;
38
39const int TIME_BETWEEN_MOVES = SPEED_FACTOR * 250;
40
41#endif
42