Merge branch 'lobby_connect_fix' into 'master'
remember the last executable selected in lobby_connect See merge request Mr_Goldberg/goldberg_emulator!30merge-requests/30/merge
commit
000fde4c1c
|
@ -26,6 +26,7 @@
|
||||||
#include <thread>
|
#include <thread>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
#include <fstream>
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
@ -58,22 +59,23 @@ top:
|
||||||
|
|
||||||
std::cout << std::endl << "--------------Menu-------------" << std::endl << "\tappid\tname\tcommand line" << std::endl;
|
std::cout << std::endl << "--------------Menu-------------" << std::endl << "\tappid\tname\tcommand line" << std::endl;
|
||||||
|
|
||||||
std::vector<std::string> arguments;
|
std::vector<std::pair<std::string, uint32>> arguments;
|
||||||
for (int i = 0; i < friend_count; ++i) {
|
for (int i = 0; i < friend_count; ++i) {
|
||||||
CSteamID id = SteamFriends()->GetFriendByIndex(i, k_EFriendFlagAll);
|
CSteamID id = SteamFriends()->GetFriendByIndex(i, k_EFriendFlagAll);
|
||||||
const char *name = SteamFriends()->GetFriendPersonaName(id);
|
const char *name = SteamFriends()->GetFriendPersonaName(id);
|
||||||
const char *connect = SteamFriends()->GetFriendRichPresence( id, "connect");
|
const char *connect = SteamFriends()->GetFriendRichPresence( id, "connect");
|
||||||
FriendGameInfo_t friend_info = {};
|
FriendGameInfo_t friend_info = {};
|
||||||
SteamFriends()->GetFriendGamePlayed(id, &friend_info);
|
SteamFriends()->GetFriendGamePlayed(id, &friend_info);
|
||||||
|
auto appid = friend_info.m_gameID.AppID();
|
||||||
|
|
||||||
if (strlen(connect) > 0) {
|
if (strlen(connect) > 0) {
|
||||||
std::cout << arguments.size() << "\t" << friend_info.m_gameID.AppID() << "\t" << name << "\t" << connect << std::endl;
|
std::cout << arguments.size() << "\t" << appid << "\t" << name << "\t" << connect << std::endl;
|
||||||
arguments.push_back(connect);
|
arguments.emplace_back(connect, appid);
|
||||||
} else {
|
} else {
|
||||||
if (friend_info.m_steamIDLobby != k_steamIDNil) {
|
if (friend_info.m_steamIDLobby != k_steamIDNil) {
|
||||||
std::string connect = "+connect_lobby " + std::to_string(friend_info.m_steamIDLobby.ConvertToUint64());
|
std::string connect = "+connect_lobby " + std::to_string(friend_info.m_steamIDLobby.ConvertToUint64());
|
||||||
std::cout << arguments.size() << "\t" << friend_info.m_gameID.AppID() << "\t" << name << "\t" << connect << std::endl;
|
std::cout << arguments.size() << "\t" << appid << "\t" << name << "\t" << connect << std::endl;
|
||||||
arguments.push_back(connect);
|
arguments.emplace_back(connect, appid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -85,24 +87,40 @@ top:
|
||||||
|
|
||||||
if (choice >= arguments.size()) goto top;
|
if (choice >= arguments.size()) goto top;
|
||||||
|
|
||||||
|
auto connect = arguments[choice].first;
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
std::cout << "starting the game with: " << arguments[choice] << std::endl << "Please select the game exe" << std::endl;
|
auto appid = arguments[choice].second;
|
||||||
|
std::cout << "starting the game with: " << connect << std::endl;
|
||||||
|
|
||||||
OPENFILENAMEA ofn;
|
char szBaseDirectory[MAX_PATH] = "";
|
||||||
char szFileName[MAX_PATH] = "";
|
GetModuleFileNameA(0, szBaseDirectory, MAX_PATH);
|
||||||
ZeroMemory(&ofn, sizeof(ofn));
|
if (auto bs = strrchr(szBaseDirectory, '\\')) {
|
||||||
ofn.lStructSize = sizeof(ofn);
|
*bs = '\0';
|
||||||
ofn.hwndOwner = 0;
|
}
|
||||||
ofn.lpstrFilter = "Exe Files (*.exe)\0*.exe\0All Files (*.*)\0*.*\0";
|
auto lobbyFile = std::string(szBaseDirectory) + "\\lobby_connect_" + std::to_string(appid) + ".txt";
|
||||||
ofn.lpstrFile = szFileName;
|
|
||||||
ofn.nMaxFile = MAX_PATH;
|
auto readLobbyFile = [&lobbyFile]() {
|
||||||
ofn.Flags = OFN_EXPLORER | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
|
std::string data;
|
||||||
ofn.lpstrDefExt = "txt";
|
std::ifstream ifs(lobbyFile);
|
||||||
if(GetOpenFileNameA(&ofn))
|
if (ifs.is_open())
|
||||||
{
|
std::getline(ifs, data);
|
||||||
std::string filename = szFileName;
|
return data;
|
||||||
filename = "\"" + filename + "\" " + arguments[choice];
|
};
|
||||||
|
|
||||||
|
auto writeLobbyFile = [&lobbyFile](const std::string& data) {
|
||||||
|
std::ofstream ofs(lobbyFile);
|
||||||
|
ofs << data << std::endl;
|
||||||
|
};
|
||||||
|
|
||||||
|
auto fileExists = [](const std::string& filename) {
|
||||||
|
std::ifstream ifs(filename);
|
||||||
|
return ifs.is_open();
|
||||||
|
};
|
||||||
|
|
||||||
|
auto joinLobby = [&connect](std::string filename) {
|
||||||
|
filename = "\"" + filename + "\" " + connect;
|
||||||
std::cout << filename << std::endl;
|
std::cout << filename << std::endl;
|
||||||
|
|
||||||
STARTUPINFOA lpStartupInfo;
|
STARTUPINFOA lpStartupInfo;
|
||||||
PROCESS_INFORMATION lpProcessInfo;
|
PROCESS_INFORMATION lpProcessInfo;
|
||||||
|
|
||||||
|
@ -110,15 +128,38 @@ top:
|
||||||
lpStartupInfo.cb = sizeof( lpStartupInfo );
|
lpStartupInfo.cb = sizeof( lpStartupInfo );
|
||||||
ZeroMemory( &lpProcessInfo, sizeof( lpProcessInfo ) );
|
ZeroMemory( &lpProcessInfo, sizeof( lpProcessInfo ) );
|
||||||
|
|
||||||
CreateProcessA( NULL,
|
auto success = !!CreateProcessA( NULL,
|
||||||
const_cast<char *>(filename.c_str()), NULL, NULL,
|
const_cast<char *>(filename.c_str()), NULL, NULL,
|
||||||
NULL, NULL, NULL, NULL,
|
NULL, NULL, NULL, NULL,
|
||||||
&lpStartupInfo,
|
&lpStartupInfo,
|
||||||
&lpProcessInfo
|
&lpProcessInfo
|
||||||
);
|
);
|
||||||
|
|
||||||
|
CloseHandle(lpProcessInfo.hThread);
|
||||||
|
CloseHandle(lpProcessInfo.hProcess);
|
||||||
|
return success;
|
||||||
|
};
|
||||||
|
|
||||||
|
std::string filename = readLobbyFile();
|
||||||
|
if (filename.empty() || !fileExists(filename) || !joinLobby(filename)) {
|
||||||
|
std::cout << "Please select the game exe" << std::endl;
|
||||||
|
|
||||||
|
OPENFILENAMEA ofn;
|
||||||
|
char szFileName[MAX_PATH] = "";
|
||||||
|
ZeroMemory(&ofn, sizeof(ofn));
|
||||||
|
ofn.lStructSize = sizeof(ofn);
|
||||||
|
ofn.hwndOwner = 0;
|
||||||
|
ofn.lpstrFilter = "Exe Files (*.exe)\0*.exe\0All Files (*.*)\0*.*\0";
|
||||||
|
ofn.lpstrFile = szFileName;
|
||||||
|
ofn.nMaxFile = MAX_PATH;
|
||||||
|
ofn.Flags = OFN_EXPLORER | OFN_FILEMUSTEXIST | OFN_HIDEREADONLY;
|
||||||
|
ofn.lpstrDefExt = "exe";
|
||||||
|
if(GetOpenFileNameA(&ofn) && joinLobby(szFileName)) {
|
||||||
|
writeLobbyFile(szFileName);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
std::cout << "Please launch the game with these arguments: " << arguments[choice] << std::endl;
|
std::cout << "Please launch the game with these arguments: " << connect << std::endl;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue