summaryrefslogtreecommitdiffstats
path: root/twin4/twin4/twin4player.h
blob: a7186e10d7d8bec797694add07d3f4da4e6590e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/***************************************************************************
                          Kwin4Player  
                          -------------------
    begin                : August 2001
    copyright            : (C) 1995-2000 by Martin Heni
    email                : martin@heni-online.de
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef TWIN4PLAYER_H
#define TWIN4PLAYER_H

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif 

#include <kgame/kplayer.h>

class StatusWidget;
class TDEConfig;

class Kwin4Player : public KPlayer
{
  Q_OBJECT
  

  signals:
	  
  public:
    Kwin4Player();
    int rtti() const {return 1;}
    void setWidget(StatusWidget *w) {sWidget=w;}
    void readConfig(TDEConfig *config);
    void writeConfig(TDEConfig *config);
    void incWin();
    void incRemis();
    void incLost();
    void incBrk();
    int win() {return mAllWin.value();}
    int lost() {return mAllLost.value();}
    int brk() {return mAllBrk.value();}
    int remis() {return mAllRemis.value();}
    void resetStats(bool all=true);

   protected slots:
    void slotPlayerPropertyChanged(KGamePropertyBase *prop,KPlayer *player);

   private:
    // One session
    KGamePropertyInt mWin;
    KGamePropertyInt mRemis;
    KGamePropertyInt mLost;
    KGamePropertyInt mBrk;

    // all time
    KGamePropertyInt mAllWin;
    KGamePropertyInt mAllRemis;
    KGamePropertyInt mAllLost;
    KGamePropertyInt mAllBrk;

    StatusWidget *sWidget;
};

#endif // TWIN4PLAYER_H