RetroShare/plugins/patience_plugin/Patience/Punktezaehler.h
defnax 0b78ed6ff8 added patience plugin
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@2245 b45a01b8-16f6-495d-af2f-9b41ad6348cc
2010-02-08 22:33:14 +00:00

53 lines
873 B
C++

#ifndef PUNKTEZAEHLER_H
#define PUNKTEZAEHLER_H
#include <QObject>
#include <QString>
#include <QStringList>
#include "Zug.h"
class QTimer;
class Scene;
class Punktezaehler : public QObject
{
Q_OBJECT
public:
Punktezaehler(Scene *parent);
virtual ~Punktezaehler();
int punktstand() const;
const QStringList speichere() const;
bool lade(const QStringList&);
bool begonnenes_spiel() const;
public slots:
void neuer_zug(const Zug&);
void stapel_durch();
void neues_spiel();
void spiel_zuende();
void eine_ziehen();
void drei_ziehen();
void undo_meldung(const Zug&);
signals:
void neue_punktzahl(int);
void erster_zug();
private slots:
void reaktion_auf_timeout();
private:
int punkte;
QTimer *straftimer;
Scene *scene;
QStringList nach_oben_liste;
bool nur_eine_ziehen;
int kalkuliere_punkte(const Zug&) const;
bool bringt_zeitaufschub(const Zug&) const;
};
#endif