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 
22 
23 const qreal SPEED_FACTOR = 1;
24 
25 const qreal DEAL_SPEED = 4 / SPEED_FACTOR;
26 
27 const int DURATION_DEAL        = SPEED_FACTOR * 1500;
28 const int DURATION_WON         = SPEED_FACTOR * 2000;
29 const int DURATION_DEMO        = SPEED_FACTOR * 300;
30 const int DURATION_MOVE        = SPEED_FACTOR * 230;
31 const int DURATION_RELAYOUT    = SPEED_FACTOR * 120;
32 const int DURATION_FANCYSHOW   = SPEED_FACTOR * 350;
33 
34 const int DURATION_AUTODROP         = SPEED_FACTOR * 250;
35 const int DURATION_AUTODROP_MINIMUM = SPEED_FACTOR * 80;
36 const qreal AUTODROP_SPEEDUP_FACTOR = 0.90;
37 
38 const int TIME_BETWEEN_MOVES =  SPEED_FACTOR * 250;
39 
40 #endif
41