allow passing words file as argument
[multypo.git] / qt / player.cpp
index 4c84eb74a182ba66b2ef472b0d58ae07e8fcbe88..69e7651432a114a5b6309c11d399e525cfbc715f 100644 (file)
@@ -1,6 +1,7 @@
 #include "player.h"
 
 #include <QLayout>
 #include "player.h"
 
 #include <QLayout>
+#include <QDebug>
 
 static QString colorToString(QColor col)
 {
 
 static QString colorToString(QColor col)
 {
@@ -9,15 +10,15 @@ static QString colorToString(QColor col)
                        .arg(col.blue(), 2, 16, QChar('0'));
 }
 
                        .arg(col.blue(), 2, 16, QChar('0'));
 }
 
-Player::Player(QWidget* parent) {
+Player::Player(QWidget* parent) : score(0) {
        theLabel = new QLabel (parent);
        parent->layout()->addWidget(theLabel);
        modifyable = true;
        theLabel = new QLabel (parent);
        parent->layout()->addWidget(theLabel);
        modifyable = true;
+       qDebug() << "Player created";
 }
 
 }
 
-
 bool Player::hasName() {
 bool Player::hasName() {
-       return !name.isNull();
+       return !name.isEmpty();
 }
 
 QString Player::getName() {
 }
 
 QString Player::getName() {
@@ -39,11 +40,13 @@ void Player::resetText() {
        modifyable = true;
 }
 
        modifyable = true;
 }
 
-void Player::handleKey(QString str) {
+bool Player::handleKey(QString str) {
        if (!modifyable)
        if (!modifyable)
-               return;
+               return false;
+       bool newChar = false;
        if (str.length() == 1) {
                currentLine += str;
        if (str.length() == 1) {
                currentLine += str;
+               newChar = true;
        } else if (!hasName() && str == "Return") {
                // set name
                name = currentLine;
        } else if (!hasName() && str == "Return") {
                // set name
                name = currentLine;
@@ -52,4 +55,5 @@ void Player::handleKey(QString str) {
                currentLine.chop(1);
        }
        theLabel->setText(currentLine);
                currentLine.chop(1);
        }
        theLabel->setText(currentLine);
+       return newChar;
 }
 }