mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-11 01:25:07 +02:00
509 lines
17 KiB
C++
509 lines
17 KiB
C++
#include <algorithm>
|
|
#include "AdhocServerScreen.h"
|
|
|
|
#include "Common/Net/Resolve.h"
|
|
#include "Common/UI/Root.h"
|
|
#include "Common/StringUtils.h"
|
|
#include "Core/HLE/sceNetAdhoc.h"
|
|
#include "UI/MiscViews.h"
|
|
|
|
class AdhocAddServerPopupScreen : public UI::PopupScreen {
|
|
public:
|
|
AdhocAddServerPopupScreen(std::string *outEditValue) : PopupScreen(T(I18NCat::NETWORKING, "Add server"), T(I18NCat::DIALOG, "Add"), T(I18NCat::DIALOG, "Cancel")), outEditValue_(outEditValue) {
|
|
}
|
|
|
|
void CreatePopupContents(UI::ViewGroup *parent) override {
|
|
using namespace UI;
|
|
auto ni = GetI18NCategory(I18NCat::NETWORKING);
|
|
|
|
PopupTextInputChoice *textInputChoice = parent->Add(new PopupTextInputChoice(GetRequesterToken(), &editValue_, ni->T("Hostname"), "", 450, screenManager()));
|
|
parent->Add(new CheckBox(&hasRelay_, ni->T("Relay server mode")));
|
|
}
|
|
|
|
virtual void OnCompleted(DialogResult result) {
|
|
if (result == DialogResult::DR_OK) {
|
|
std::vector<AdhocServerListEntry> servers = AdhocGetServerList(AdhocLoadListMode::CacheOnlySync);
|
|
bool preset = false;
|
|
for (auto &iter : servers) {
|
|
if (equalsNoCase(editValue_, iter.host)) {
|
|
// We have this predefined.
|
|
preset = true;
|
|
}
|
|
}
|
|
if (!preset) {
|
|
if (hasRelay_) {
|
|
// Insert at the start of the vector.
|
|
if (!ContainsNoCase(g_Config.vCustomAdhocServerListWithRelay, editValue_) &&
|
|
!ContainsNoCase(g_Config.vCustomAdhocServerList, editValue_)) {
|
|
g_Config.vCustomAdhocServerListWithRelay.insert(g_Config.vCustomAdhocServerListWithRelay.begin(), editValue_);
|
|
}
|
|
} else {
|
|
if (!ContainsNoCase(g_Config.vCustomAdhocServerList, editValue_) &&
|
|
!ContainsNoCase(g_Config.vCustomAdhocServerListWithRelay, editValue_)) {
|
|
g_Config.vCustomAdhocServerList.insert(g_Config.vCustomAdhocServerList.begin(), editValue_);
|
|
}
|
|
}
|
|
}
|
|
*outEditValue_ = editValue_;
|
|
}
|
|
}
|
|
virtual bool CanComplete(DialogResult result) { return result == DR_OK ? !editValue_.empty() : true; }
|
|
|
|
const char *tag() const override { return "AdhocAddServerPopup"; }
|
|
|
|
private:
|
|
std::string editValue_;
|
|
std::string *outEditValue_;
|
|
bool hasRelay_ = true;
|
|
};
|
|
|
|
static UI::View *CreateLinkButton(std::string url) {
|
|
using namespace UI;
|
|
|
|
// steal strings from all over the place
|
|
auto cr = GetI18NCategory(I18NCat::PSPCREDITS);
|
|
auto st = GetI18NCategory(I18NCat::STORE);
|
|
|
|
ImageID icon = ImageID("I_LINK_OUT_QUESTION");
|
|
std::string title;
|
|
|
|
if (startsWith(url, "https://discord")) {
|
|
icon = ImageID("I_LOGO_DISCORD");
|
|
title = cr->T("Discord");
|
|
} else {
|
|
icon = ImageID("I_LINK_OUT");
|
|
title = st->T("Website");
|
|
}
|
|
|
|
Choice *choice = new Choice(title, icon, new LinearLayoutParams(WRAP_CONTENT, WRAP_CONTENT));
|
|
choice->OnClick.Add([url](UI::EventParams &) {
|
|
System_LaunchUrl(LaunchUrlType::BROWSER_URL, url);
|
|
});
|
|
return choice;
|
|
}
|
|
|
|
// Later, this might also show games-in-progress.
|
|
// For now, it's just a simple metadata viewer.
|
|
class AdhocServerInfoScreen : public UI::PopupScreen {
|
|
public:
|
|
AdhocServerInfoScreen(const AdhocServerListEntry &entry)
|
|
: PopupScreen(entry.name, T(I18NCat::DIALOG, "Back")), entry_(entry) {
|
|
} // PopupScreen will translate Back on its own
|
|
|
|
const char *tag() const override { return "AdhocServerInfo"; }
|
|
|
|
protected:
|
|
bool FillVertical() const override { return false; }
|
|
UI::Size PopupWidth() const override { return 500; }
|
|
bool ShowButtons() const override { return true; }
|
|
|
|
void CreatePopupContents(UI::ViewGroup *parent) override {
|
|
using namespace UI;
|
|
auto pa = GetI18NCategory(I18NCat::PAUSE);
|
|
auto di = GetI18NCategory(I18NCat::DIALOG);
|
|
auto ni = GetI18NCategory(I18NCat::NETWORKING);
|
|
|
|
ScrollView *scroll = new ScrollView(ORIENT_VERTICAL, new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT, 1.0f));
|
|
LinearLayout *content = new LinearLayout(ORIENT_VERTICAL);
|
|
Margins contentMargins(10, 0);
|
|
content->SetSpacing(0.0f);
|
|
LinearLayout *hostLine = content->Add(new LinearLayout(ORIENT_HORIZONTAL, new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT, Margins(12, 0))));
|
|
hostLine->Add(new TextView(entry_.host, new LinearLayoutParams(0.0f, Gravity::G_VCENTER)));
|
|
hostLine->Add(new Spacer(0, new LinearLayoutParams(1.0f)));
|
|
hostLine->Add(new Choice(ImageID("I_FILE_COPY"), new LinearLayoutParams(WRAP_CONTENT, WRAP_CONTENT)))->OnClick.Add([host = entry_.host](UI::EventParams &) {
|
|
System_CopyStringToClipboard(host);
|
|
});
|
|
if (!entry_.ip.empty()) {
|
|
content->Add(new InfoItem(entry_.ip, ""));
|
|
}
|
|
content->Add(new InfoItem(entry_.location, ""));
|
|
content->Add(new InfoItem(ni->T("Relay server mode"), entry_.mode == AdhocDataMode::AemuPostoffice ? di->T("Yes") : di->T("No")));
|
|
TextView *desc = content->Add(new TextView(entry_.description, new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT, Margins(12))));
|
|
desc->SetTextSize(TextSize::Small);
|
|
desc->SetWordWrap();
|
|
|
|
if (!entry_.web.empty() || !entry_.discord.empty()) {
|
|
LinearLayout *buttonStrip = content->Add(new LinearLayout(ORIENT_HORIZONTAL, new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT, Margins(12))));
|
|
buttonStrip->SetSpacing(8);
|
|
if (!entry_.web.empty()) {
|
|
buttonStrip->Add(CreateLinkButton(entry_.web));
|
|
}
|
|
if (!entry_.discord.empty()) {
|
|
buttonStrip->Add(CreateLinkButton(entry_.discord));
|
|
}
|
|
}
|
|
|
|
scroll->Add(content);
|
|
parent->Add(scroll);
|
|
}
|
|
|
|
private:
|
|
AdhocServerListEntry entry_;
|
|
};
|
|
|
|
class AdhocServerRow : public UI::LinearLayout {
|
|
public:
|
|
AdhocServerRow(std::string *value, const AdhocServerListEntry &entry, bool showDeleteButton, ScreenManager *screenManager, UI::LayoutParams *layoutParams = nullptr);
|
|
|
|
void GetContentDimensions(const UIContext &dc, float &w, float &h) const override {
|
|
w = 500; h = 90;
|
|
}
|
|
|
|
void Draw(UIContext &dc) override {
|
|
dc.FillRect(dc.GetTheme().itemStyle.background, bounds_);
|
|
if (*value_ == entry_.host) {
|
|
// TODO: Make this highlight themable
|
|
dc.FillRect(UI::Drawable(0x48FFFFFF), GetBounds());
|
|
}
|
|
LinearLayout::Draw(dc);
|
|
}
|
|
|
|
bool Touch(const TouchInput &input) override {
|
|
using namespace UI;
|
|
if (UI::LinearLayout::Touch(input)) {
|
|
return true;
|
|
}
|
|
if (input.flags & TouchInputFlags::DOWN) {
|
|
if (bounds_.Contains(input.x, input.y)) {
|
|
dragging_ = true;
|
|
return true;
|
|
}
|
|
}
|
|
if (dragging_ && (input.flags & TouchInputFlags::UP)) {
|
|
dragging_ = false;
|
|
if (!(input.flags & TouchInputFlags::CANCEL) && bounds_.Contains(input.x, input.y)) {
|
|
EventParams e;
|
|
e.v = this;
|
|
OnSelected.Trigger(e);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
UI::Event OnSelected;
|
|
|
|
private:
|
|
bool dragging_ = false;
|
|
std::string *value_;
|
|
AdhocServerListEntry entry_;
|
|
};
|
|
|
|
AdhocServerRow::AdhocServerRow(std::string *editValue, const AdhocServerListEntry &entry, bool showDeleteButton, ScreenManager *screenManager, UI::LayoutParams *layoutParams)
|
|
: UI::LinearLayout(ORIENT_HORIZONTAL, new UI::LinearLayoutParams(UI::FILL_PARENT, UI::WRAP_CONTENT, UI::Margins(5.0f, 0.0f))), value_(editValue), entry_(entry) {
|
|
using namespace UI;
|
|
|
|
SetSpacing(5.0f);
|
|
// Show as radio button to make it really clear that selection actually is the choice.
|
|
int number = 0;
|
|
Add(new ImageView([editValue, host = entry.host]() { return host == *editValue ? ImageID("I_RADIO_SELECTED") : ImageID("I_RADIO_EMPTY"); },
|
|
new LinearLayoutParams(WRAP_CONTENT, WRAP_CONTENT, Gravity::G_VCENTER, Margins(5, 0, 0, 0))));
|
|
|
|
LinearLayout *lines = Add(new LinearLayout(ORIENT_VERTICAL, new LinearLayoutParams(Margins(5, 5))));
|
|
lines->SetSpacing(0.0f);
|
|
lines->Add(new TextView(entry.name));
|
|
|
|
std::string secondLine = entry.host;
|
|
if (entry.host == "localhost") {
|
|
// Special case this to add a hint.
|
|
auto n = GetI18NCategory(I18NCat::NETWORKING);
|
|
secondLine = n->T("Change proAdhocServer address hint");
|
|
}
|
|
if (!entry.location.empty()) {
|
|
secondLine += ": " + entry.location;
|
|
}
|
|
|
|
lines->Add(new TextView(secondLine))->SetTextSize(TextSize::Small)->SetWordWrap();
|
|
|
|
Add(new Spacer(0.0f, new LinearLayoutParams(1.0f, Margins(0.0f, 5.0f))));
|
|
|
|
if (entry.mode == AdhocDataMode::AemuPostoffice) {
|
|
TextView *relay = Add(new TextView("Relay", new LinearLayoutParams(WRAP_CONTENT, WRAP_CONTENT, Gravity::G_VCENTER, Margins(10.0))));
|
|
}
|
|
if (showDeleteButton) {
|
|
Choice *deleteButton = Add(new Choice(ImageID("I_TRASHCAN"), new LinearLayoutParams(WRAP_CONTENT, WRAP_CONTENT, Gravity::G_VCENTER, Margins(0, 0, 10, 0))));
|
|
deleteButton->OnClick.Add([host = entry.host, screenManager, editValue](UI::EventParams &e) {
|
|
auto di = GetI18NCategory(I18NCat::DIALOG);
|
|
const std::string quotedHost = "\"" + host + "\"";
|
|
const std::string message = ApplySafeSubstitutions(di->T("Are you sure you want to delete %1?"), quotedHost);
|
|
screenManager->push(new UI::MessagePopupScreen(di->T("Delete"), message, di->T("Delete"), di->T("Cancel"), [host, editValue](bool confirmed) {
|
|
if (confirmed) {
|
|
RemoveNoCase(g_Config.vCustomAdhocServerList, host);
|
|
RemoveNoCase(g_Config.vCustomAdhocServerListWithRelay, host);
|
|
if (*editValue == host) {
|
|
// Reset to socom.cc, which will always be in a list.
|
|
*editValue = DefaultProAdhocServer();
|
|
}
|
|
}
|
|
}));
|
|
});
|
|
}
|
|
|
|
if (!entry.description.empty()) {
|
|
Choice *infoButton = Add(new Choice(ImageID("I_INFO"), new LinearLayoutParams(WRAP_CONTENT, WRAP_CONTENT, Gravity::G_VCENTER, Margins(0, 0, 10, 0))));
|
|
AdhocServerListEntry copy = entry;
|
|
infoButton->OnClick.Add([this, copy, screenManager](UI::EventParams &e) {
|
|
e.v = this;
|
|
screenManager->push(new AdhocServerInfoScreen(copy));
|
|
});
|
|
}
|
|
}
|
|
|
|
AdhocServerScreen::AdhocServerScreen(std::string *value, std::string_view title)
|
|
: UI::PopupScreen(title, T(I18NCat::DIALOG, "OK"), T(I18NCat::DIALOG, "Cancel")), value_(value) {
|
|
resolver_ = std::thread([](AdhocServerScreen *thiz) {
|
|
thiz->ResolverThread();
|
|
}, this);
|
|
editValue_ = *value;
|
|
AdhocLoadServerList(AdhocLoadListMode::AllSourcesAsync);
|
|
}
|
|
|
|
AdhocServerScreen::~AdhocServerScreen() {
|
|
{
|
|
std::unique_lock<std::mutex> guard(resolverLock_);
|
|
resolverState_ = ResolverState::QUIT;
|
|
resolverCond_.notify_one();
|
|
}
|
|
resolver_.join();
|
|
}
|
|
|
|
void AdhocServerScreen::sendMessage(UIMessage message, const char *value) {
|
|
if (message == UIMessage::ADHOC_SERVER_LIST_CHANGED) {
|
|
RecreateViews();
|
|
}
|
|
}
|
|
|
|
void AdhocServerScreen::CreatePopupContents(UI::ViewGroup *parent) {
|
|
using namespace UI;
|
|
auto sy = GetI18NCategory(I18NCat::SYSTEM);
|
|
auto di = GetI18NCategory(I18NCat::DIALOG);
|
|
auto n = GetI18NCategory(I18NCat::NETWORKING);
|
|
|
|
// We already kicked off loading the server list in the constructor, so by now it should be either loaded or in the process of loading.
|
|
// We can get the cached list immediately, and then update it when the async load finishes.
|
|
std::vector<AdhocServerListEntry> listItems = AdhocGetServerList(AdhocLoadListMode::CacheOnlySync);
|
|
|
|
Choice *addServer = parent->Add(new Choice(n->T("Add server"), ImageID("I_PLUS")));
|
|
addServer->OnClick.Add([this](UI::EventParams &e) {
|
|
AdhocAddServerPopupScreen *addScreen = new AdhocAddServerPopupScreen(&editValue_);
|
|
screenManager()->push(addScreen);
|
|
});
|
|
|
|
parent->Add(new Spacer(5.0f));
|
|
|
|
// editValue_ has the currently selected server. On closing the dialog, we copy that to settings.
|
|
|
|
// Start with the downloaded list.
|
|
std::vector<AdhocServerListEntry> entries = listItems;
|
|
std::vector<AdhocServerListEntry> localEntries;
|
|
std::vector<AdhocServerListEntry> customEntries;
|
|
|
|
bool currentServerFound = false; // If the current server is not found, we'll have to add it to one of the lists.
|
|
|
|
for (const auto &iter : entries) {
|
|
if (iter.host == editValue_) {
|
|
currentServerFound = true;
|
|
}
|
|
}
|
|
|
|
// Add localhost and local IPs, since those are common ones to connect to.
|
|
{
|
|
AdhocServerListEntry localhostEntry;
|
|
localhostEntry.name = "localhost";
|
|
localhostEntry.host = "localhost";
|
|
localEntries.push_back(localhostEntry);
|
|
|
|
std::vector<std::string> listIP;
|
|
net::GetLocalIP4List(listIP);
|
|
|
|
for (const auto &ipAddress : listIP) {
|
|
if (startsWith(ipAddress, "127.") || startsWith(ipAddress, "169.254.") || startsWith(ipAddress, "0.")) {
|
|
continue;
|
|
}
|
|
AdhocServerListEntry entry;
|
|
entry.name = ipAddress;
|
|
entry.host = ipAddress;
|
|
localEntries.push_back(entry);
|
|
|
|
if (ipAddress == editValue_) {
|
|
currentServerFound = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
auto hostInEntries = [entries](const std::string &host) {
|
|
for (const auto &entry : entries) {
|
|
if (entry.host == host) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
};
|
|
|
|
for (const auto &host : g_Config.vCustomAdhocServerListWithRelay) {
|
|
// If the host is already in the public list, skip it. We don't want duplicates.
|
|
if (hostInEntries(host) || host.empty()) {
|
|
continue;
|
|
}
|
|
AdhocServerListEntry entry;
|
|
entry.name = host;
|
|
entry.host = host;
|
|
entry.mode = AdhocDataMode::AemuPostoffice;
|
|
customEntries.push_back(entry);
|
|
|
|
if (host == editValue_) {
|
|
currentServerFound = true;
|
|
}
|
|
}
|
|
|
|
for (const auto &host : g_Config.vCustomAdhocServerList) {
|
|
// If the host is already in the public list, skip it. We don't want duplicates.
|
|
if (hostInEntries(host) || host.empty()) {
|
|
continue;
|
|
}
|
|
AdhocServerListEntry entry;
|
|
entry.name = host;
|
|
entry.host = host;
|
|
entry.mode = AdhocDataMode::P2P;
|
|
customEntries.push_back(entry);
|
|
|
|
if (host == editValue_) {
|
|
currentServerFound = true;
|
|
}
|
|
}
|
|
|
|
ScrollView *scrollView = new ScrollView(ORIENT_VERTICAL, new LinearLayoutParams(1.0f));
|
|
LinearLayout *innerView = new LinearLayout(ORIENT_VERTICAL, new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT));
|
|
innerView->SetSpacing(5.0f);
|
|
|
|
auto AddButtonFromEntry = [this](UI::ViewGroup *parent, const AdhocServerListEntry &entry, bool showDeleteButton) {
|
|
AdhocServerRow *row = new AdhocServerRow(&editValue_, entry, showDeleteButton, screenManager());
|
|
parent->Add(row);
|
|
row->OnSelected.Add([this](UI::EventParams &e) {
|
|
std::string value = e.v->Tag();
|
|
if (!value.empty()) {
|
|
editValue_ = value;
|
|
}
|
|
});
|
|
row->SetTag(entry.host);
|
|
};
|
|
|
|
if (!customEntries.empty()) {
|
|
CollapsibleSection *customSection = innerView->Add(new CollapsibleSection(n->T("Custom server list"), new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT)));
|
|
|
|
if (!currentServerFound) {
|
|
// Add a virtual entry.
|
|
AdhocServerListEntry entry;
|
|
entry.name = editValue_;
|
|
entry.host = editValue_;
|
|
// Let's do a heuristic, we don't have a good value here..
|
|
entry.mode = (AdhocServerRelayMode)g_Config.iAdhocServerRelayMode == AdhocServerRelayMode::AlwaysOn ? AdhocDataMode::AemuPostoffice : AdhocDataMode::P2P;
|
|
AddButtonFromEntry(customSection, entry, true);
|
|
}
|
|
|
|
for (const auto &entry : customEntries) {
|
|
AddButtonFromEntry(customSection, entry, true);
|
|
}
|
|
}
|
|
|
|
CollapsibleSection *publicSection = innerView->Add(new CollapsibleSection(n->T("Public server list"), new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT)));
|
|
for (const auto &entry : entries) {
|
|
AddButtonFromEntry(publicSection, entry, false);
|
|
}
|
|
|
|
CollapsibleSection *localSection = innerView->Add(new CollapsibleSection(n->T("Local network addresses"), new LinearLayoutParams(FILL_PARENT, WRAP_CONTENT)));
|
|
for (const auto &entry : localEntries) {
|
|
AddButtonFromEntry(localSection, entry, false);
|
|
}
|
|
|
|
scrollView->Add(innerView);
|
|
parent->Add(scrollView);
|
|
|
|
progressView_ = parent->Add(new NoticeView(NoticeLevel::INFO, n->T("Validating address..."), "", new LinearLayoutParams(Margins(0, 5, 0, 0))));
|
|
progressView_->SetVisibility(UI::V_GONE);
|
|
}
|
|
|
|
void AdhocServerScreen::ResolverThread() {
|
|
std::unique_lock<std::mutex> guard(resolverLock_);
|
|
|
|
while (resolverState_ != ResolverState::QUIT) {
|
|
resolverCond_.wait(guard);
|
|
|
|
if (resolverState_ == ResolverState::QUEUED) {
|
|
resolverState_ = ResolverState::PROGRESS;
|
|
|
|
addrinfo *resolved = nullptr;
|
|
std::string err;
|
|
toResolveResult_ = net::DNSResolve(toResolve_, "80", &resolved, err);
|
|
if (resolved)
|
|
net::DNSResolveFree(resolved);
|
|
|
|
resolverState_ = ResolverState::READY;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool AdhocServerScreen::CanComplete(DialogResult result) {
|
|
auto n = GetI18NCategory(I18NCat::NETWORKING);
|
|
|
|
if (result != DR_OK)
|
|
return true;
|
|
|
|
std::string value = editValue_;
|
|
if (lastResolved_ == value) {
|
|
return true;
|
|
}
|
|
|
|
// Currently running.
|
|
if (resolverState_ == ResolverState::PROGRESS)
|
|
return false;
|
|
|
|
std::lock_guard<std::mutex> guard(resolverLock_);
|
|
switch (resolverState_) {
|
|
case ResolverState::PROGRESS:
|
|
case ResolverState::QUIT:
|
|
return false;
|
|
|
|
case ResolverState::QUEUED:
|
|
case ResolverState::WAITING:
|
|
break;
|
|
|
|
case ResolverState::READY:
|
|
if (toResolve_ == value) {
|
|
// Reset the state, nothing there now.
|
|
resolverState_ = ResolverState::WAITING;
|
|
toResolve_.clear();
|
|
lastResolved_ = value;
|
|
lastResolvedResult_ = toResolveResult_;
|
|
|
|
if (lastResolvedResult_) {
|
|
progressView_->SetVisibility(UI::V_GONE);
|
|
} else {
|
|
progressView_->SetText(n->T("Invalid IP or hostname"));
|
|
progressView_->SetLevel(NoticeLevel::ERROR);
|
|
progressView_->SetVisibility(UI::V_VISIBLE);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
// Throw away that last result, it was for a different value.
|
|
break;
|
|
}
|
|
|
|
resolverState_ = ResolverState::QUEUED;
|
|
toResolve_ = value;
|
|
resolverCond_.notify_one();
|
|
|
|
progressView_->SetText(n->T("Validating address..."));
|
|
progressView_->SetLevel(NoticeLevel::INFO);
|
|
progressView_->SetVisibility(UI::V_VISIBLE);
|
|
|
|
return false;
|
|
}
|
|
|
|
void AdhocServerScreen::OnCompleted(DialogResult result) {
|
|
if (result == DR_OK) {
|
|
*value_ = StripSpaces(editValue_);
|
|
}
|
|
}
|