/* * 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 * * $Id$ */ #include "login.h" #include #include #include "../main.h" #include "../configuration.h" #include "../log.h" #include "../logindata.h" #include "button.h" #include "checkbox.h" #include "ok_dialog.h" #include "passwordfield.h" #include "textfield.h" void WrongDataNoticeListener::setTarget(gcn::TextField *textField) { this->target = textField; } void WrongDataNoticeListener::action(const std::string &eventId) { if (eventId == "ok") { // Reset the field target->setText(""); target->setCaretPosition(0); target->requestFocus(); } } LoginDialog::LoginDialog(LoginData *loginData): Window("Login"), mLoginData(loginData) { userLabel = new gcn::Label("Name:"); passLabel = new gcn::Label("Password:"); serverLabel = new gcn::Label("Server:"); userField = new TextField("player"); passField = new PasswordField(); serverField = new TextField(); keepCheck = new CheckBox("Keep", false); okButton = new Button("OK"); cancelButton = new Button("Cancel"); registerButton = new Button("Register"); setContentSize(200, 100); userLabel->setPosition(5, 5); passLabel->setPosition(5, 14 + userLabel->getHeight()); serverLabel->setPosition( 5, 23 + userLabel->getHeight() + passLabel->getHeight()); userField->setPosition(65, 5); passField->setPosition(65, 14 + userLabel->getHeight()); serverField->setPosition( 65, 23 + userLabel->getHeight() + passLabel->getHeight()); userField->setWidth(130); passField->setWidth(130); serverField->setWidth(130); keepCheck->setPosition(4, 77); keepCheck->setMarked(config.getValue("remember", 0)); cancelButton->setPosition( 200 - cancelButton->getWidth() - 5, 100 - cancelButton->getHeight() - 5); okButton->setPosition( cancelButton->getX() - okButton->getWidth() - 5, 100 - okButton->getHeight() - 5); registerButton->setPosition(keepCheck->getX() + keepCheck->getWidth() + 10, 100 - registerButton->getHeight() - 5); userField->setEventId("ok"); passField->setEventId("ok"); serverField->setEventId("ok"); okButton->setEventId("ok"); cancelButton->setEventId("cancel"); registerButton->setEventId("register"); userField->addActionListener(this); passField->addActionListener(this); serverField->addActionListener(this); keepCheck->addActionListener(this); okButton->addActionListener(this); cancelButton->addActionListener(this); registerButton->addActionListener(this); add(userLabel); add(passLabel); add(serverLabel); add(userField); add(passField); add(serverField); add(keepCheck); add(okButton); add(cancelButton); add(registerButton); setLocationRelativeTo(getParent()); userField->requestFocus(); userField->setCaretPosition(userField->getText().length()); if (config.getValue("remember", 0) != 0) { if (config.getValue("username", "") != "") { userField->setText(config.getValue("username", "")); passField->requestFocus(); } } serverField->setText(config.getValue("host", "")); wrongDataNoticeListener = NULL; } void LoginDialog::action(const std::string& eventId) { if (eventId == "ok") { const std::string user = userField->getText(); logger->log("Network: Username is %s", user.c_str()); // Store config settings config.setValue("remember", keepCheck->isMarked()); if (keepCheck->isMarked()) { config.setValue("username", user); config.setValue("host", serverField->getText()); } else { config.setValue("username", ""); } // Check login if (user.length() == 0) { wrongDataNoticeListener = new WrongDataNoticeListener(); wrongDataNoticeListener->setTarget(this->passField); new OkDialog("Error", "Enter your username first", wrongDataNoticeListener); } else { mLoginData->hostname = config.getValue("host", "animesites.de"); mLoginData->port = (short)config.getValue("port", 0); mLoginData->username = userField->getText(); mLoginData->password = passField->getText(); okButton->setEnabled(false); //cancelButton->setEnabled(false); registerButton->setEnabled(false); state = ACCOUNT_STATE; } } else if (eventId == "cancel") { state = EXIT_STATE; } else if (eventId == "register") { state = REGISTER_STATE; } }