2018-01-19 13:42:21 +00:00
|
|
|
// Copyright 2017 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include <QMessageBox>
|
|
|
|
#include <QString>
|
|
|
|
|
|
|
|
#include "citra_qt/multiplayer/message.h"
|
|
|
|
|
|
|
|
namespace NetworkMessage {
|
|
|
|
const ConnectionError USERNAME_NOT_VALID(
|
|
|
|
QT_TR_NOOP("Username is not valid. Must be 4 to 20 alphanumeric characters."));
|
|
|
|
const ConnectionError ROOMNAME_NOT_VALID(
|
|
|
|
QT_TR_NOOP("Room name is not valid. Must be 4 to 20 alphanumeric characters."));
|
2018-11-02 12:17:25 +00:00
|
|
|
const ConnectionError USERNAME_NOT_VALID_SERVER(
|
|
|
|
QT_TR_NOOP("Username is already in use or not valid. Please choose another."));
|
2018-01-19 13:42:21 +00:00
|
|
|
const ConnectionError IP_ADDRESS_NOT_VALID(QT_TR_NOOP("IP is not a valid IPv4 address."));
|
|
|
|
const ConnectionError PORT_NOT_VALID(QT_TR_NOOP("Port must be a number between 0 to 65535."));
|
2019-04-19 16:12:30 +01:00
|
|
|
const ConnectionError GAME_NOT_SELECTED(QT_TR_NOOP(
|
|
|
|
"You must choose a Preferred Game to host a room. If you do not have any games in your game "
|
|
|
|
"list yet, add a game folder by clicking on the plus icon in the game list."));
|
2018-01-19 13:42:21 +00:00
|
|
|
const ConnectionError NO_INTERNET(
|
|
|
|
QT_TR_NOOP("Unable to find an internet connection. Check your internet settings."));
|
|
|
|
const ConnectionError UNABLE_TO_CONNECT(
|
2018-04-18 06:06:02 +01:00
|
|
|
QT_TR_NOOP("Unable to connect to the host. Verify that the connection settings are correct. If "
|
|
|
|
"you still cannot connect, contact the room host and verify that the host is "
|
|
|
|
"properly configured with the external port forwarded."));
|
2018-04-20 08:34:37 +01:00
|
|
|
const ConnectionError ROOM_IS_FULL(
|
|
|
|
QT_TR_NOOP("Unable to connect to the room because it is already full."));
|
2018-01-19 13:42:21 +00:00
|
|
|
const ConnectionError COULD_NOT_CREATE_ROOM(
|
|
|
|
QT_TR_NOOP("Creating a room failed. Please retry. Restarting Citra might be necessary."));
|
|
|
|
const ConnectionError HOST_BANNED(
|
|
|
|
QT_TR_NOOP("The host of the room has banned you. Speak with the host to unban you "
|
|
|
|
"or try a different room."));
|
|
|
|
const ConnectionError WRONG_VERSION(
|
2018-04-19 07:47:11 +01:00
|
|
|
QT_TR_NOOP("Version mismatch! Please update to the latest version of Citra. If the problem "
|
2018-04-18 06:06:02 +01:00
|
|
|
"persists, contact the room host and ask them to update the server."));
|
|
|
|
const ConnectionError WRONG_PASSWORD(QT_TR_NOOP("Incorrect password."));
|
2018-04-19 07:47:11 +01:00
|
|
|
const ConnectionError GENERIC_ERROR(
|
|
|
|
QT_TR_NOOP("An unknown error occured. If this error continues to occur, please open an issue"));
|
2018-01-19 13:42:21 +00:00
|
|
|
const ConnectionError LOST_CONNECTION(QT_TR_NOOP("Connection to room lost. Try to reconnect."));
|
2018-11-24 08:13:46 +00:00
|
|
|
const ConnectionError HOST_KICKED(QT_TR_NOOP("You have been kicked by the room host."));
|
2018-01-19 13:42:21 +00:00
|
|
|
const ConnectionError MAC_COLLISION(
|
2018-04-18 06:06:02 +01:00
|
|
|
QT_TR_NOOP("MAC address is already in use. Please choose another."));
|
2018-10-31 15:07:03 +00:00
|
|
|
const ConnectionError CONSOLE_ID_COLLISION(QT_TR_NOOP(
|
|
|
|
"Your Console ID conflicted with someone else's in the room.\n\nPlease go to Emulation "
|
|
|
|
"> Configure > System to regenerate your Console ID."));
|
2018-11-24 08:13:46 +00:00
|
|
|
const ConnectionError PERMISSION_DENIED(
|
|
|
|
QT_TR_NOOP("You do not have enough permission to perform this action."));
|
|
|
|
const ConnectionError NO_SUCH_USER(QT_TR_NOOP(
|
|
|
|
"The user you are trying to kick/ban could not be found.\nThey may have left the room."));
|
2018-01-19 13:42:21 +00:00
|
|
|
|
|
|
|
static bool WarnMessage(const std::string& title, const std::string& text) {
|
|
|
|
return QMessageBox::Ok == QMessageBox::warning(nullptr, QObject::tr(title.c_str()),
|
|
|
|
QObject::tr(text.c_str()),
|
|
|
|
QMessageBox::Ok | QMessageBox::Cancel);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ShowError(const ConnectionError& e) {
|
2018-04-25 16:44:16 +01:00
|
|
|
QMessageBox::critical(nullptr, QObject::tr("Error"), QObject::tr(e.GetString().c_str()));
|
2018-01-19 13:42:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool WarnCloseRoom() {
|
|
|
|
return WarnMessage(
|
|
|
|
QT_TR_NOOP("Leave Room"),
|
|
|
|
QT_TR_NOOP("You are about to close the room. Any network connections will be closed."));
|
|
|
|
}
|
|
|
|
|
|
|
|
bool WarnDisconnect() {
|
|
|
|
return WarnMessage(
|
|
|
|
QT_TR_NOOP("Disconnect"),
|
|
|
|
QT_TR_NOOP("You are about to leave the room. Any network connections will be closed."));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace NetworkMessage
|