13da69c49e8d8e8919c4ea85206478029bd2b428
[chessclock] / classes / timecontrol / fischerclock.cpp
1  /**************************************************************************
2
3     Chess Clock
4
5     Copyright (c) Arto Hyvättinen 2010
6
7     This file is part of Chess Clock software.
8
9     Chess Clock is free software: you can redistribute it and/or modify
10     it under the terms of the GNU General Public License as published by
11     the Free Software Foundation, either version 3 of the License, or
12     (at your option) any later version.
13
14     Chess Clock is distributed in the hope that it will be useful,
15     but WITHOUT ANY WARRANTY; without even the implied warranty of
16     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17     GNU General Public License for more details.
18
19
20 **************************************************************************/
21
22 #include "fischerclock.h"
23
24 FischerClock::FischerClock(bool white, int addition, int perTurns,  QWidget *parent) :
25     ChessClockWidget(white, parent)
26 {
27     addition_ = addition;
28     perTurns_ = perTurns;
29
30     setGreenTime( addition );
31 }
32
33 void FischerClock::startTurn()
34 {
35     if(getTurn() % perTurns_ == 0 )
36         addTime( addition_ );
37     ChessClock::startTurn();
38 }