/*
* The Mana World
* Copyright 2004 The Mana World Development Team
*
* This file is part of The Mana World.
*
* The Mana World 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
* any later version.
*
* The Mana World is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <string>
#include <sstream>
#include <guichan/widgets/label.hpp>
#include "../main.h"
#include "../configuration.h"
#include "../log.h"
#include "../logindata.h"
#include "button.h"
#include "checkbox.h"
#include "login.h"
#include "ok_dialog.h"
#include "passwordfield.h"
#include "radiobutton.h"
#include "register.h"
#include "textfield.h"
#include "../utils/tostring.h"
#include "../utils/gettext.h"
#include "../utils/strprintf.h"
void WrongDataNoticeListener::setTarget(gcn::TextField *textField)
{
mTarget = textField;
}
void WrongDataNoticeListener::action(const gcn::ActionEvent &event)
{
if (event.getId() == "ok")
{
mTarget->requestFocus();
}
}
RegisterDialog::RegisterDialog(LoginData *loginData):
Window(_("Register")),
mWrongDataNoticeListener(new WrongDataNoticeListener()),
mLoginData(loginData)
{
gcn::Label *userLabel = new gcn::Label(_("Name:"));
gcn::Label *passwordLabel = new gcn::Label(_("Password:"));
gcn::Label *confirmLabel = new gcn::Label(_("Confirm:"));
gcn::Label *serverLabel = new gcn::Label(_("Server:"));
gcn::Label *portLabel = new gcn::Label(_("Port:"));
mUserField = new TextField(loginData->username);
mPasswordField = new PasswordField(loginData->password);
mConfirmField = new PasswordField();
mServerField = new TextField(loginData->hostname);
mPortField = new TextField(toString(loginData->port));
mMaleButton = new RadioButton(_("Male"), "sex", true);
mFemaleButton = new RadioButton(_("Female"), "sex", false);
mRegisterButton = new Button(_("Register"), "register", this);
mCancelButton = new Button(_("Cancel"), "cancel", this);
const int WIDTH = 220;
const int HEIGHT = 170;
const int FIELD_WIDTH = WIDTH - 70;
setContentSize(WIDTH, HEIGHT);
const int USER_TOP = 5;
userLabel->setPosition(5, USER_TOP);
mUserField->setPosition(65, USER_TOP);
mUserField->setWidth(FIELD_WIDTH);
const int PASS_TOP = 9 + USER_TOP + userLabel->getHeight();
passwordLabel->setPosition(5, PASS_TOP);
mPasswordField->setPosition(65, PASS_TOP);
mPasswordField->setWidth(FIELD_WIDTH);
const int CONFIRM_TOP = 9 + PASS_TOP + passwordLabel->getHeight();
confirmLabel->setPosition(5, CONFIRM_TOP);
mConfirmField->setPosition(65, CONFIRM_TOP);
mConfirmField->setWidth(FIELD_WIDTH);
const int SEX_TOP = 9 + CONFIRM_TOP + confirmLabel->getHeight();
mMaleButton->setPosition(70, SEX_TOP);
mFemaleButton->setPosition(80 + mMaleButton->getWidth(), SEX_TOP);
const int SERVER_TOP = 9 + SEX_TOP + mMaleButton->getHeight() + 5;
serverLabel->setPosition(5, SERVER_TOP);
mServerField->setPosition(65, SERVER_TOP);
mServerField->setWidth(FIELD_WIDTH);
const int PORT_TOP = 9 + SERVER_TOP + serverLabel->getHeight();
portLabel->setPosition(5, PORT_TOP);
mPortField->setPosition(65, PORT_TOP);
mPortField->setWidth(FIELD_WIDTH);
mCancelButton->setPosition(
WIDTH - mCancelButton->getWidth() - 5,
HEIGHT - mCancelButton->getHeight() - 5);
mRegisterButton->setPosition(
mCancelButton->getX() - mRegisterButton->getWidth() - 5,
HEIGHT - mRegisterButton->getHeight() - 5);
mUserField->addKeyListener(this);
mPasswordField->addKeyListener(this);
mConfirmField->addKeyListener(this);
mServerField->addKeyListener(this);
mPortField->addKeyListener(this);
/* TODO:
* This is a quick and dirty way to respond to the ENTER key, regardless of
* which text field is selected. There may be a better way now with the new
* input system of Guichan 0.6.0. See also the login dialog.
*/
mUserField->setActionEventId("register");
mPasswordField->setActionEventId("register");
mConfirmField->setActionEventId("register");
mServerField->setActionEventId("register");
mPortField->setActionEventId("register");
mUserField->addActionListener(this);
mPasswordField->addActionListener(this);
mConfirmField->addActionListener(this);
mServerField->addActionListener(this);
mPortField->addActionListener(this);
add(userLabel);
add(passwordLabel);
add(confirmLabel);
add(serverLabel);
add(portLabel);
add(mUserField);
add(mPasswordField);
add(mConfirmField);
add(mServerField);
add(mPortField);
add(mMaleButton);
add(mFemaleButton);
add(mRegisterButton);
add(mCancelButton);
setLocationRelativeTo(getParent());
setVisible(true);
mUserField->requestFocus();
mUserField->setCaretPosition(mUserField->getText().length());
mRegisterButton->setEnabled(canSubmit());
}
RegisterDialog::~RegisterDialog()
{
delete mWrongDataNoticeListener;
}
void RegisterDialog::action(const gcn::ActionEvent &event)
{
if (event.getId() == "cancel")
{
state = LOGIN_STATE;
}
else if (event.getId() == "register" && canSubmit())
{
const std::string user = mUserField->getText();
logger->log(_("RegisterDialog::register Username is %s"), user.c_str());
std::string errorMsg;
int error = 0;
if (user.length() < LEN_MIN_USERNAME)
{
// Name too short
errorMsg = strprintf
(_("The username needs to be at least %d characters long."),
LEN_MIN_USERNAME);
error = 1;
}
else if (user.length() > LEN_MAX_USERNAME - 1 )
{
// Name too long
errorMsg = strprintf
(_("The username needs to be less than %d characters long."),
LEN_MAX_USERNAME);
error = 1;
}
else if (mPasswordField->getText().length() < LEN_MIN_PASSWORD)
{
// Pass too short
errorMsg = strprintf
(_("The password needs to be at least %d characters long."),
LEN_MIN_PASSWORD);
error = 2;
}
else if (mPasswordField->getText().length() > LEN_MAX_PASSWORD - 1 )
{
// Pass too long
errorMsg = strprintf
(_("The password needs to be less than %d characters long."),
LEN_MAX_PASSWORD);
error = 2;
}
else if (mPasswordField->getText() != mConfirmField->getText())
{
// Password does not match with the confirmation one
errorMsg = _("Passwords do not match.");
error = 2;
}
if (error > 0)
{
if (error == 1)
{
mWrongDataNoticeListener->setTarget(this->mUserField);
}
else if (error == 2)
{
// Reset password confirmation
mPasswordField->setText("");
mConfirmField->setText("");
mWrongDataNoticeListener->setTarget(this->mPasswordField);
}
OkDialog *mWrongRegisterNotice =
new OkDialog(_("Error"), errorMsg);
mWrongRegisterNotice->addActionListener(mWrongDataNoticeListener);
}
else
{
// No errors detected, register the new user.
mRegisterButton->setEnabled(false);
mLoginData->hostname = mServerField->getText();
mLoginData->port = getUShort(mPortField->getText());
mLoginData->username = mUserField->getText();
mLoginData->password = mPasswordField->getText();
mLoginData->username += mFemaleButton->isSelected() ? "_F" : "_M";
mLoginData->registerLogin = true;
state = ACCOUNT_STATE;
}
}
}
void RegisterDialog::keyPressed(gcn::KeyEvent &keyEvent)
{
mRegisterButton->setEnabled(canSubmit());
}
bool RegisterDialog::canSubmit()
{
return !mUserField->getText().empty() &&
!mPasswordField->getText().empty() &&
!mConfirmField->getText().empty() &&
!mServerField->getText().empty() &&
isUShort(mPortField->getText()) &&
state == REGISTER_STATE;
}
bool RegisterDialog::isUShort(const std::string &str)
{
if (str == "")
{
return false;
}
unsigned long l = 0;
for (std::string::const_iterator strPtr = str.begin(), strEnd = str.end();
strPtr != strEnd; ++strPtr)
{
if (*strPtr < '0' || *strPtr > '9')
{
return false;
}
l = l * 10 + (*strPtr - '0'); // *strPtr - '0' will never be negative
if (l > 65535)
{
return false;
}
}
return true;
}
unsigned short RegisterDialog::getUShort(const std::string &str)
{
unsigned long l = 0;
for (std::string::const_iterator strPtr = str.begin(), strEnd = str.end();
strPtr != strEnd; ++strPtr)
{
l = l * 10 + (*strPtr - '0');
}
return static_cast<unsigned short>(l);
}