2015-08-31 01:06:01 +05:30
/* Copyright 2015 MultiMC Contributors
2015-08-31 01:03:53 +05:30
*
* Licensed under the Apache License , Version 2.0 ( the " License " ) ;
* you may not use this file except in compliance with the License .
* You may obtain a copy of the License at
*
* http : //www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing , software
* distributed under the License is distributed on an " AS IS " BASIS ,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND , either express or implied .
* See the License for the specific language governing permissions and
* limitations under the License .
*/
2015-08-19 04:40:17 +05:30
# include "WorldListPage.h"
# include "ui_WorldListPage.h"
# include "minecraft/WorldList.h"
2016-01-05 12:02:52 +05:30
# include <DesktopServices.h>
2015-08-19 04:40:17 +05:30
# include "dialogs/ModEditDialogCommon.h"
# include <QEvent>
# include <QKeyEvent>
2015-09-07 03:05:58 +05:30
# include <QClipboard>
2015-09-01 01:04:15 +05:30
# include <QMessageBox>
2015-09-07 03:05:58 +05:30
# include <QTreeView>
2015-09-15 03:19:32 +05:30
# include <QInputDialog>
2015-09-07 03:05:58 +05:30
# include "MultiMC.h"
2015-09-10 03:23:33 +05:30
# include <GuiUtil.h>
2015-08-19 04:40:17 +05:30
WorldListPage : : WorldListPage ( BaseInstance * inst , std : : shared_ptr < WorldList > worlds , QString id ,
QString iconName , QString displayName , QString helpPage ,
QWidget * parent )
2015-09-26 07:34:09 +05:30
: QWidget ( parent ) , m_inst ( inst ) , ui ( new Ui : : WorldListPage ) , m_worlds ( worlds ) , m_iconName ( iconName ) , m_id ( id ) , m_displayName ( displayName ) , m_helpName ( helpPage )
2015-08-19 04:40:17 +05:30
{
ui - > setupUi ( this ) ;
ui - > tabWidget - > tabBar ( ) - > hide ( ) ;
2015-09-07 03:05:58 +05:30
QSortFilterProxyModel * proxy = new QSortFilterProxyModel ( this ) ;
2015-09-15 03:19:32 +05:30
proxy - > setSortCaseSensitivity ( Qt : : CaseInsensitive ) ;
2015-09-07 03:05:58 +05:30
proxy - > setSourceModel ( m_worlds . get ( ) ) ;
ui - > worldTreeView - > setSortingEnabled ( true ) ;
ui - > worldTreeView - > setModel ( proxy ) ;
2015-08-19 04:40:17 +05:30
ui - > worldTreeView - > installEventFilter ( this ) ;
2015-09-07 03:05:58 +05:30
auto head = ui - > worldTreeView - > header ( ) ;
head - > setSectionResizeMode ( 0 , QHeaderView : : Stretch ) ;
head - > setSectionResizeMode ( 1 , QHeaderView : : ResizeToContents ) ;
connect ( ui - > worldTreeView - > selectionModel ( ) ,
SIGNAL ( currentChanged ( const QModelIndex & , const QModelIndex & ) ) , this ,
SLOT ( worldChanged ( const QModelIndex & , const QModelIndex & ) ) ) ;
worldChanged ( QModelIndex ( ) , QModelIndex ( ) ) ;
2015-08-19 04:40:17 +05:30
}
void WorldListPage : : opened ( )
{
m_worlds - > startWatching ( ) ;
}
void WorldListPage : : closed ( )
{
m_worlds - > stopWatching ( ) ;
}
WorldListPage : : ~ WorldListPage ( )
{
m_worlds - > stopWatching ( ) ;
delete ui ;
}
bool WorldListPage : : shouldDisplay ( ) const
{
return true ;
}
bool WorldListPage : : worldListFilter ( QKeyEvent * keyEvent )
{
switch ( keyEvent - > key ( ) )
{
case Qt : : Key_Delete :
on_rmWorldBtn_clicked ( ) ;
return true ;
default :
break ;
}
return QWidget : : eventFilter ( ui - > worldTreeView , keyEvent ) ;
}
bool WorldListPage : : eventFilter ( QObject * obj , QEvent * ev )
{
if ( ev - > type ( ) ! = QEvent : : KeyPress )
{
return QWidget : : eventFilter ( obj , ev ) ;
}
QKeyEvent * keyEvent = static_cast < QKeyEvent * > ( ev ) ;
if ( obj = = ui - > worldTreeView )
return worldListFilter ( keyEvent ) ;
return QWidget : : eventFilter ( obj , ev ) ;
}
2015-09-07 03:05:58 +05:30
2015-08-19 04:40:17 +05:30
void WorldListPage : : on_rmWorldBtn_clicked ( )
{
2015-09-07 03:05:58 +05:30
auto proxiedIndex = getSelectedWorld ( ) ;
2015-08-19 04:40:17 +05:30
2015-09-07 03:05:58 +05:30
if ( ! proxiedIndex . isValid ( ) )
2015-08-19 04:40:17 +05:30
return ;
2015-09-01 05:53:18 +05:30
2015-09-01 01:04:15 +05:30
auto result = QMessageBox : : question ( this ,
tr ( " Are you sure? " ) ,
tr ( " This will remove the selected world permenantly. \n "
" The world will be gone forever (A LONG TIME). \n "
" \n "
2015-09-01 05:53:18 +05:30
" Do you want to continue? " ) ) ;
if ( result ! = QMessageBox : : Yes )
{
2015-09-01 01:04:15 +05:30
return ;
2015-09-01 05:53:18 +05:30
}
2015-08-19 04:40:17 +05:30
m_worlds - > stopWatching ( ) ;
2015-09-07 03:05:58 +05:30
m_worlds - > deleteWorld ( proxiedIndex . row ( ) ) ;
2015-08-19 04:40:17 +05:30
m_worlds - > startWatching ( ) ;
}
void WorldListPage : : on_viewFolderBtn_clicked ( )
{
2016-01-05 12:02:52 +05:30
DesktopServices : : openDirectory ( m_worlds - > dir ( ) . absolutePath ( ) , true ) ;
2015-08-19 04:40:17 +05:30
}
2015-09-07 03:05:58 +05:30
QModelIndex WorldListPage : : getSelectedWorld ( )
{
auto index = ui - > worldTreeView - > selectionModel ( ) - > currentIndex ( ) ;
auto proxy = ( QSortFilterProxyModel * ) ui - > worldTreeView - > model ( ) ;
return proxy - > mapToSource ( index ) ;
}
void WorldListPage : : on_copySeedBtn_clicked ( )
{
QModelIndex index = getSelectedWorld ( ) ;
if ( ! index . isValid ( ) )
{
return ;
}
int64_t seed = m_worlds - > data ( index , WorldList : : SeedRole ) . toLongLong ( ) ;
MMC - > clipboard ( ) - > setText ( QString : : number ( seed ) ) ;
}
void WorldListPage : : on_mcEditBtn_clicked ( )
{
const QString mceditPath = MMC - > settings ( ) - > get ( " MCEditPath " ) . toString ( ) ;
QModelIndex index = getSelectedWorld ( ) ;
if ( ! index . isValid ( ) )
{
return ;
}
2015-09-16 02:21:10 +05:30
if ( ! worldSafetyNagQuestion ( ) )
return ;
2015-09-07 03:05:58 +05:30
auto fullPath = m_worlds - > data ( index , WorldList : : FolderRole ) . toString ( ) ;
# ifdef Q_OS_OSX
QProcess * process = new QProcess ( ) ;
connect ( process , SIGNAL ( finished ( int , QProcess : : ExitStatus ) ) , process , SLOT ( deleteLater ( ) ) ) ;
process - > setProgram ( mceditPath ) ;
process - > setArguments ( QStringList ( ) < < fullPath ) ;
process - > start ( ) ;
# else
QDir mceditDir ( mceditPath ) ;
QString program ;
# ifdef Q_OS_LINUX
if ( mceditDir . exists ( " mcedit.py " ) )
{
program = mceditDir . absoluteFilePath ( " mcedit.py " ) ;
}
else if ( mceditDir . exists ( " mcedit.sh " ) )
{
program = mceditDir . absoluteFilePath ( " mcedit.sh " ) ;
}
# elif defined(Q_OS_WIN32)
if ( mceditDir . exists ( " mcedit.exe " ) )
{
program = mceditDir . absoluteFilePath ( " mcedit.exe " ) ;
}
else if ( mceditDir . exists ( " mcedit2.exe " ) )
{
program = mceditDir . absoluteFilePath ( " mcedit2.exe " ) ;
}
# endif
if ( program . size ( ) )
{
2015-09-14 05:53:40 +05:30
qint64 pid = 0 ;
2016-01-05 12:02:52 +05:30
DesktopServices : : openFile ( program , fullPath , mceditPath , & pid ) ;
2015-09-14 05:53:40 +05:30
if ( pid = = 0 )
{
QMessageBox : : warning ( this - > parentWidget ( ) , tr ( " MCEdit failed to start! " ) , tr ( " MCEdit failed to start. \n It may be necessary to reinstall it. " ) ) ;
}
}
else
{
QMessageBox : : warning ( this - > parentWidget ( ) , tr ( " No MCEdit found or set up! " ) , tr ( " You do not have MCEdit set up or it was moved. \n You can set it up in the global settings. " ) ) ;
2015-09-07 03:05:58 +05:30
}
# endif
}
void WorldListPage : : worldChanged ( const QModelIndex & current , const QModelIndex & previous )
{
QModelIndex index = getSelectedWorld ( ) ;
bool enable = index . isValid ( ) ;
ui - > copySeedBtn - > setEnabled ( enable ) ;
ui - > mcEditBtn - > setEnabled ( enable ) ;
ui - > rmWorldBtn - > setEnabled ( enable ) ;
2015-09-15 03:19:32 +05:30
ui - > copyBtn - > setEnabled ( enable ) ;
ui - > renameBtn - > setEnabled ( enable ) ;
2015-09-07 03:05:58 +05:30
}
2015-09-10 03:23:33 +05:30
void WorldListPage : : on_addBtn_clicked ( )
{
auto list = GuiUtil : : BrowseForFiles (
m_helpName ,
tr ( " Select a Minecraft world zip " ) ,
tr ( " Minecraft World Zip File (*.zip) " ) , QString ( ) , this - > parentWidget ( ) ) ;
if ( ! list . empty ( ) )
{
m_worlds - > stopWatching ( ) ;
for ( auto filename : list )
{
m_worlds - > installWorld ( QFileInfo ( filename ) ) ;
}
m_worlds - > startWatching ( ) ;
}
2015-09-15 03:19:32 +05:30
}
2015-09-16 02:21:10 +05:30
bool WorldListPage : : isWorldSafe ( QModelIndex )
{
return ! m_inst - > isRunning ( ) ;
}
bool WorldListPage : : worldSafetyNagQuestion ( )
{
if ( ! isWorldSafe ( getSelectedWorld ( ) ) )
{
auto result = QMessageBox : : question ( this , tr ( " Copy World " ) , tr ( " Changing a world while Minecraft is running is potentially unsafe. \n Do you wish to proceed? " ) ) ;
if ( result = = QMessageBox : : No )
{
return false ;
}
}
return true ;
}
2015-09-15 03:19:32 +05:30
void WorldListPage : : on_copyBtn_clicked ( )
{
QModelIndex index = getSelectedWorld ( ) ;
if ( ! index . isValid ( ) )
{
return ;
}
2015-09-16 02:21:10 +05:30
if ( ! worldSafetyNagQuestion ( ) )
return ;
2015-09-15 03:19:32 +05:30
auto worldVariant = m_worlds - > data ( index , WorldList : : ObjectRole ) ;
auto world = ( World * ) worldVariant . value < void * > ( ) ;
bool ok = false ;
QString name = QInputDialog : : getText ( this , tr ( " World name " ) , tr ( " Enter a new name for the copy. " ) , QLineEdit : : Normal , world - > name ( ) , & ok ) ;
if ( ok & & name . length ( ) > 0 )
{
world - > install ( m_worlds - > dir ( ) . absolutePath ( ) , name ) ;
}
}
void WorldListPage : : on_renameBtn_clicked ( )
{
QModelIndex index = getSelectedWorld ( ) ;
if ( ! index . isValid ( ) )
{
return ;
}
2015-09-16 02:21:10 +05:30
if ( ! worldSafetyNagQuestion ( ) )
return ;
2015-09-15 03:19:32 +05:30
auto worldVariant = m_worlds - > data ( index , WorldList : : ObjectRole ) ;
auto world = ( World * ) worldVariant . value < void * > ( ) ;
bool ok = false ;
QString name = QInputDialog : : getText ( this , tr ( " World name " ) , tr ( " Enter a new world name. " ) , QLineEdit : : Normal , world - > name ( ) , & ok ) ;
if ( ok & & name . length ( ) > 0 )
{
world - > rename ( name ) ;
}
}
2015-09-16 02:21:10 +05:30
void WorldListPage : : on_refreshBtn_clicked ( )
{
m_worlds - > update ( ) ;
}