File indexing completed on 2024-05-12 04:04:51

0001 /*
0002  * Copyright (C) 2001-2009 Stephan Kulow <coolo@kde.org>
0003  *
0004  * This program is free software; you can redistribute it and/or
0005  * modify it under the terms of the GNU General Public License as
0006  * published by the Free Software Foundation; either version 2 of
0007  * the License, or (at your option) any later version.
0008  *
0009  * This program is distributed in the hope that it will be useful,
0010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
0011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0012  * GNU General Public License for more details.
0013  *
0014  * You should have received a copy of the GNU General Public License
0015  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
0016  */
0017 
0018 #ifndef SPEEDS_H
0019 #define SPEEDS_H
0020 
0021 const qreal SPEED_FACTOR = 1;
0022 
0023 const qreal DEAL_SPEED = 4 / SPEED_FACTOR;
0024 
0025 const int DURATION_DEAL = SPEED_FACTOR * 1500;
0026 const int DURATION_WON = SPEED_FACTOR * 2000;
0027 const int DURATION_DEMO = SPEED_FACTOR * 300;
0028 const int DURATION_MOVE = SPEED_FACTOR * 230;
0029 const int DURATION_RELAYOUT = SPEED_FACTOR * 120;
0030 const int DURATION_FANCYSHOW = SPEED_FACTOR * 350;
0031 
0032 const int DURATION_AUTODROP = SPEED_FACTOR * 250;
0033 const int DURATION_AUTODROP_MINIMUM = SPEED_FACTOR * 80;
0034 const qreal AUTODROP_SPEEDUP_FACTOR = 0.90;
0035 
0036 const int TIME_BETWEEN_MOVES = SPEED_FACTOR * 250;
0037 
0038 #endif