mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-22 10:19:01 +00:00
fix compile
This commit is contained in:
parent
44260fd743
commit
645d77a5d4
4 changed files with 25 additions and 24 deletions
|
@ -259,10 +259,10 @@ CEXISlippi::~CEXISlippi()
|
|||
// indicate to server that this client has abandoned. Anyone trying to modify
|
||||
// this behavior to game their rating is subject to get banned.
|
||||
auto active_match_id = matchmaking->GetMatchmakeResult().id;
|
||||
if (activeMatchId.find("mode.ranked") != std::string::npos)
|
||||
if (active_match_id.find("mode.ranked") != std::string::npos)
|
||||
{
|
||||
ERROR_LOG(SLIPPI_ONLINE, "Exit during in-progress ranked game: %s", activeMatchId.c_str());
|
||||
gameReporter->ReportAbandonment(activeMatchId);
|
||||
ERROR_LOG_FMT(SLIPPI_ONLINE, "Exit during in-progress ranked game: {}", active_match_id);
|
||||
game_reporter->ReportAbandonment(active_match_id);
|
||||
}
|
||||
handleConnectionCleanup();
|
||||
|
||||
|
@ -1872,9 +1872,9 @@ void CEXISlippi::prepareOpponentInputs(s32 frame, bool shouldSkip)
|
|||
results[i] = slippi_netplay->GetSlippiRemotePad(i, ROLLBACK_MAX_FRAMES);
|
||||
// results[i] = slippi_netplay->GetFakePadOutput(frame);
|
||||
|
||||
// INFO_LOG(SLIPPI_ONLINE, "Sending checksum values: [%d] %08x", results[i]->checksumFrame,
|
||||
// INFO_LOG(SLIPPI_ONLINE, "Sending checksum values: [%d] %08x", results[i]->checksum_frame,
|
||||
// results[i]->checksum);
|
||||
appendWordToBuffer(&m_read_queue, static_cast<u32>(results[i]->checksumFrame));
|
||||
appendWordToBuffer(&m_read_queue, static_cast<u32>(results[i]->checksum_frame));
|
||||
appendWordToBuffer(&m_read_queue, results[i]->checksum);
|
||||
}
|
||||
for (int i = remotePlayerCount; i < SLIPPI_REMOTE_PLAYER_MAX; i++)
|
||||
|
@ -1895,11 +1895,11 @@ void CEXISlippi::prepareOpponentInputs(s32 frame, bool shouldSkip)
|
|||
// results[i] = slippi_netplay->GetFakePadOutput(frame);
|
||||
|
||||
// determine offset from which to copy data
|
||||
offset[i] = (results[i]->latestFrame - frame) * SLIPPI_PAD_FULL_SIZE;
|
||||
offset[i] = (results[i]->latest_frame - frame) * SLIPPI_PAD_FULL_SIZE;
|
||||
offset[i] = offset[i] < 0 ? 0 : offset[i];
|
||||
|
||||
// add latest frame we are transfering to begining of return buf
|
||||
int32_t latestFrame = results[i]->latestFrame;
|
||||
int32_t latestFrame = results[i]->latest_frame;
|
||||
if (latestFrame > frame)
|
||||
latestFrame = frame;
|
||||
latestFrameRead[i] = latestFrame;
|
||||
|
@ -2727,21 +2727,21 @@ void CEXISlippi::prepareOnlineMatchState()
|
|||
std::vector<std::string> opponentNames = {};
|
||||
if (matchmaking->RemotePlayerCount() == 1)
|
||||
{
|
||||
opponentNames.push_back(matchmaking->GetPlayerName(remotePlayerIndex));
|
||||
opponentNames.push_back(matchmaking->GetPlayerName(m_remote_player_index));
|
||||
}
|
||||
else
|
||||
{
|
||||
int teamIdx = onlineMatchBlock[0x69 + localPlayerIndex * 0x24];
|
||||
int teamIdx = onlineMatchBlock[0x69 + m_local_player_index * 0x24];
|
||||
for (int i = 0; i < 4; i++)
|
||||
{
|
||||
if (localPlayerIndex == i || onlineMatchBlock[0x69 + i * 0x24] == teamIdx)
|
||||
if (m_local_player_index == i || onlineMatchBlock[0x69 + i * 0x24] == teamIdx)
|
||||
continue;
|
||||
|
||||
opponentNames.push_back(matchmaking->GetPlayerName(i));
|
||||
}
|
||||
}
|
||||
|
||||
auto numOpponents = opponentNames.size() == 0 ? 1 : opponentNames.size();
|
||||
int numOpponents = opponentNames.size() == 0 ? 1 : static_cast<int>(opponentNames.size());
|
||||
auto charsPerName = (MAX_NAME_LENGTH - (numOpponents - 1)) / numOpponents;
|
||||
std::string oppText = "";
|
||||
for (auto& name : opponentNames)
|
||||
|
@ -3143,8 +3143,8 @@ void CEXISlippi::handleReportGame(const SlippiExiTypes::ReportGameQuery& query)
|
|||
ERROR_LOG_FMT(SLIPPI_ONLINE,
|
||||
"Mode: {} / {}, Frames: {}, GameIdx: {}, TiebreakIdx: {}, WinnerIdx: {}, "
|
||||
"StageId: {}, GameEndMethod: {}, LRASInitiator: {}",
|
||||
r.mode, query.mode, r.duration_frames, r.game_index, r.tiebreak_index, r.winner_idx,
|
||||
r.stage_id, r.game_end_method, r.lras_initiator);
|
||||
static_cast<u8>(r.mode), query.mode, r.duration_frames, r.game_index,
|
||||
r.tiebreak_index, r.winner_idx, r.stage_id, r.game_end_method, r.lras_initiator);
|
||||
|
||||
auto mm_players = recentMmResult.players;
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "Common/CommonTypes.h"
|
||||
#include <Common/CommonTypes.h>
|
||||
#include <Common/Swap.h>
|
||||
|
||||
#define REPORT_PLAYER_COUNT 4
|
||||
|
||||
|
@ -86,13 +87,13 @@ template <>
|
|||
inline ReportGameQuery Convert(u8* payload)
|
||||
{
|
||||
auto q = *reinterpret_cast<ReportGameQuery*>(payload);
|
||||
q.frameLength = Common::FromBigEndian(q.frameLength);
|
||||
q.gameIndex = Common::FromBigEndian(q.gameIndex);
|
||||
q.tiebreakIndex = Common::FromBigEndian(q.tiebreakIndex);
|
||||
q.frame_length = Common::FromBigEndian(q.frame_length);
|
||||
q.game_index = Common::FromBigEndian(q.game_index);
|
||||
q.tiebreak_index = Common::FromBigEndian(q.tiebreak_index);
|
||||
for (int i = 0; i < REPORT_PLAYER_COUNT; i++)
|
||||
{
|
||||
auto* p = &q.players[i];
|
||||
p->damageDone = Common::FromBigEndian(p->damageDone);
|
||||
p->damage_done = Common::FromBigEndian(p->damage_done);
|
||||
}
|
||||
return q;
|
||||
}
|
||||
|
|
|
@ -171,6 +171,7 @@ void SlippiGameReporter::ReportAbandonment(std::string match_id)
|
|||
if (res != 0)
|
||||
{
|
||||
ERROR_LOG_FMT(SLIPPI_ONLINE,
|
||||
"[GameReport] Got error executing abandonment request. Err code: {}", res);
|
||||
"[GameReport] Got error executing abandonment request. Err code: {}",
|
||||
static_cast<u8>(res));
|
||||
}
|
||||
}
|
||||
|
|
|
@ -306,7 +306,7 @@ unsigned int SlippiNetplayClient::OnData(sf::Packet& packet, ENetPeer* peer)
|
|||
|
||||
s64 frame64 = static_cast<s64>(frame);
|
||||
s32 headFrame = remotePadQueue[pIdx].empty() ? 0 : remotePadQueue[pIdx].front()->frame;
|
||||
s64 inputs_to_copy = frame64 - static_cast<s64>(headFrame);
|
||||
inputs_to_copy = frame64 - static_cast<s64>(headFrame);
|
||||
|
||||
// Check that the packet actually contains the data it claims to
|
||||
if ((pad_data_offset + inputs_to_copy * SLIPPI_PAD_DATA_SIZE) >
|
||||
|
@ -330,9 +330,8 @@ unsigned int SlippiNetplayClient::OnData(sf::Packet& packet, ENetPeer* peer)
|
|||
|
||||
for (s64 i = inputs_to_copy - 1; i >= 0; i--)
|
||||
{
|
||||
auto pad =
|
||||
std::make_unique<SlippiPad>(static_cast<s32>(frame64 - i), pIdx,
|
||||
&packetData[pad_data_offset + i * SLIPPI_PAD_DATA_SIZE]);
|
||||
auto pad = std::make_unique<SlippiPad>(
|
||||
static_cast<s32>(frame64 - i), &packetData[pad_data_offset + i * SLIPPI_PAD_DATA_SIZE]);
|
||||
remotePadQueue[pIdx].push_front(std::move(pad));
|
||||
}
|
||||
}
|
||||
|
@ -354,7 +353,7 @@ unsigned int SlippiNetplayClient::OnData(sf::Packet& packet, ENetPeer* peer)
|
|||
|
||||
ENetPacket* epac =
|
||||
enet_packet_create(spac.getData(), spac.getDataSize(), ENET_PACKET_FLAG_UNSEQUENCED);
|
||||
int sendResult = enet_peer_send(peer, 2, epac);
|
||||
enet_peer_send(peer, 2, epac);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue