Citra-qt: Add multiplayer ui
This commit is contained in:
parent
bba2a60b22
commit
871196bc10
34 changed files with 2653 additions and 46 deletions
59
src/citra_qt/multiplayer/message.cpp
Normal file
59
src/citra_qt/multiplayer/message.cpp
Normal file
|
@ -0,0 +1,59 @@
|
|||
// 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."));
|
||||
const ConnectionError USERNAME_IN_USE(
|
||||
QT_TR_NOOP("Username is already in use. Please choose another."));
|
||||
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."));
|
||||
const ConnectionError NO_INTERNET(
|
||||
QT_TR_NOOP("Unable to find an internet connection. Check your internet settings."));
|
||||
const ConnectionError UNABLE_TO_CONNECT(
|
||||
QT_TR_NOOP("Unable to connect to the host. Verify that the connection settings are correct."));
|
||||
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(
|
||||
QT_TR_NOOP("You are using a different version of Citra-Local-Wifi(tm) then the room "
|
||||
"you are trying to connect to."));
|
||||
const ConnectionError WRONG_PASSWORD(QT_TR_NOOP("Wrong password."));
|
||||
const ConnectionError GENERIC_ERROR(QT_TR_NOOP("An error occured."));
|
||||
const ConnectionError LOST_CONNECTION(QT_TR_NOOP("Connection to room lost. Try to reconnect."));
|
||||
const ConnectionError MAC_COLLISION(
|
||||
QT_TR_NOOP("MAC-Address is already in use. Please choose another."));
|
||||
|
||||
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) {
|
||||
QMessageBox::critical(nullptr, QObject::tr("Error"), QString::fromStdString(e.GetString()));
|
||||
}
|
||||
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue