void ChatPanelMenu::OnUserMenuJoinSame( wxCommandEvent& /*unused*/ ) { const User* user = m_chatpanel->GetSelectedUser(); if ( user == 0 ) return; Battle* battle = user->GetBattle(); if ( battle == 0 ) return; if ( !usync().ModExists( battle->GetHostModName() ) ) { customMessageBoxNoModal( SL_MAIN_ICON, _( "You don't have the mod " ) + battle->GetHostModName() + _( " . Please download it first" ), _( "Mod unavailable" ) ); return; } if ( battle->IsLocked() ) { customMessageBoxNoModal( SL_MAIN_ICON, _( "The battle you requested to join is locked." ) ); return; } wxString password; if ( battle->IsPassworded() ) { if ( !ui().AskPassword( _( "Battle password" ), _( "This battle is password protected, enter the password." ), password ) ) return; } battle->Join( password ); }
void BattleListTab::DoJoin( Battle& battle ) { if ( !ui().IsSpringCompatible() ) { wxLogWarning( _T( "trying to join battles with imcompatible spring version" ) ); customMessageBox( SL_MAIN_ICON, _( "Joining battles is disabled due to the incompatible spring version you're using." ), _( "Spring error" ), wxICON_EXCLAMATION | wxOK ); return; } Battle* curbattle = ui().mw().GetJoinTab().GetCurrentBattle(); if ( curbattle != 0 && curbattle->GetID() == battle.GetID() ) { if ( ui().Ask( _( "Already in this battle" ), _( "You are already in this battle.\n\nDo you want to leave it?" ) ) ) { curbattle->Leave(); ui().mw().GetJoinTab().LeaveCurrentBattle(); return; } else { return; } } if ( curbattle != 0 ) { if ( ui().Ask( _( "Already in another battle" ), _( "You are already in a battle.\n\nDo you want to leave your current battle and join this one?" ) ) ) { curbattle->Leave(); ui().mw().GetJoinTab().LeaveCurrentBattle(); } else { return; } } #ifdef NO_TORRENT_SYSTEM wxString downloadProc = _( "Do you want me to take you to the download page?" ); #else wxString downloadProc = _( "Should i try to download it for you?\nYou can see the progress in the \"Download Manager\" tab." ); #endif if ( !battle.ModExists() ) { if ( customMessageBox( SL_MAIN_ICON, _( "You need to download the game before you can join this game.\n\n" ) + downloadProc, _( "Game not available" ), wxYES_NO | wxICON_QUESTION ) == wxYES ) { wxString modhash = battle.GetHostModHash(); wxString modname = battle.GetHostModName(); ui().DownloadMod ( modhash, modname ); } return; } if ( !battle.MapExists() ) { if ( customMessageBox( SL_MAIN_ICON, _( "You need to download the map to be able to play in this game.\n\n" ) + downloadProc, _( "Map not available" ), wxYES_NO | wxICON_QUESTION ) == wxYES ) { wxString maphash = battle.GetHostMapHash(); wxString mapname = battle.GetHostMapName(); ui().DownloadMap ( maphash, mapname ); } } if ( battle.IsPassworded() ) { wxPasswordEntryDialog pw( this, _( "Battle password" ), _( "Enter password (spaces will be stripped)" ) ); pw.SetFocus(); if ( pw.ShowModal() == wxID_OK ) { wxString password = pw.GetValue(); password.Replace(_T(" "), _T("")); battle.Join( password ); } } else { battle.Join(); } }