2015-09-01 04:35:33 +00:00
// Copyright 2015 Citra Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
# pragma once
2018-08-10 22:12:26 +00:00
# include <array>
2018-08-21 00:36:36 +00:00
# include <map>
2018-09-02 14:53:06 +00:00
# include <string>
2018-08-06 17:36:05 +00:00
# include <utility>
2018-09-02 14:53:06 +00:00
2018-08-29 13:42:53 +00:00
# include <QCoreApplication>
2016-04-13 21:04:05 +00:00
# include <QImage>
2018-08-29 13:42:53 +00:00
# include <QObject>
2015-09-01 04:35:33 +00:00
# include <QStandardItem>
# include <QString>
2018-07-23 10:43:34 +00:00
# include <QWidget>
2018-09-02 14:53:06 +00:00
# include "common/common_types.h"
2018-08-29 13:42:53 +00:00
# include "common/logging/log.h"
2016-09-18 00:38:01 +00:00
# include "common/string_util.h"
2018-08-31 16:21:34 +00:00
# include "yuzu/ui_settings.h"
2018-01-16 18:05:21 +00:00
# include "yuzu/util/util.h"
2016-04-13 21:04:05 +00:00
/**
* Gets the default icon ( for games without valid SMDH )
* @ param large If true , returns large icon ( 48 x48 ) , otherwise returns small icon ( 24 x24 )
* @ return QPixmap default icon
*/
2018-07-28 16:32:16 +00:00
static QPixmap GetDefaultIcon ( u32 size ) {
2016-04-13 21:04:05 +00:00
QPixmap icon ( size , size ) ;
icon . fill ( Qt : : transparent ) ;
return icon ;
}
2015-09-01 04:35:33 +00:00
class GameListItem : public QStandardItem {
public :
2018-08-06 16:58:46 +00:00
GameListItem ( ) = default ;
explicit GameListItem ( const QString & string ) : QStandardItem ( string ) { }
2015-09-01 04:35:33 +00:00
} ;
/**
* A specialization of GameListItem for path values .
* This class ensures that for every full path value it holds , a correct string representation
* of just the filename ( with no extension ) will be displayed to the user .
2016-10-20 14:26:59 +00:00
* If this class receives valid SMDH data , it will also display game icons and titles .
2015-09-01 04:35:33 +00:00
*/
class GameListItemPath : public GameListItem {
public :
static const int FullPathRole = Qt : : UserRole + 1 ;
2016-04-13 21:04:05 +00:00
static const int TitleRole = Qt : : UserRole + 2 ;
2016-12-15 09:55:03 +00:00
static const int ProgramIdRole = Qt : : UserRole + 3 ;
2018-07-28 16:32:16 +00:00
static const int FileTypeRole = Qt : : UserRole + 4 ;
2015-09-01 04:35:33 +00:00
2018-08-06 16:58:46 +00:00
GameListItemPath ( ) = default ;
2018-07-28 16:32:16 +00:00
GameListItemPath ( const QString & game_path , const std : : vector < u8 > & picture_data ,
2018-08-10 22:07:43 +00:00
const QString & game_name , const QString & game_type , u64 program_id ) {
2015-09-01 04:35:33 +00:00
setData ( game_path , FullPathRole ) ;
2018-07-28 16:32:16 +00:00
setData ( game_name , TitleRole ) ;
2016-12-15 09:55:03 +00:00
setData ( qulonglong ( program_id ) , ProgramIdRole ) ;
2018-07-28 16:32:16 +00:00
setData ( game_type , FileTypeRole ) ;
2018-08-10 22:15:06 +00:00
const u32 size = UISettings : : values . icon_size ;
2018-07-28 16:32:16 +00:00
QPixmap picture ;
2018-08-10 22:15:06 +00:00
if ( ! picture . loadFromData ( picture_data . data ( ) , static_cast < u32 > ( picture_data . size ( ) ) ) ) {
2018-07-28 16:32:16 +00:00
picture = GetDefaultIcon ( size ) ;
2018-08-10 22:15:06 +00:00
}
2018-09-22 01:34:46 +00:00
picture = picture . scaled ( size , size , Qt : : IgnoreAspectRatio , Qt : : SmoothTransformation ) ;
2018-07-28 16:32:16 +00:00
setData ( picture , Qt : : DecorationRole ) ;
2015-09-01 04:35:33 +00:00
}
2016-04-13 21:04:05 +00:00
QVariant data ( int role ) const override {
if ( role = = Qt : : DisplayRole ) {
2015-09-01 04:35:33 +00:00
std : : string filename ;
2016-09-18 00:38:01 +00:00
Common : : SplitPath ( data ( FullPathRole ) . toString ( ) . toStdString ( ) , nullptr , & filename ,
nullptr ) ;
2018-07-28 16:32:16 +00:00
2018-08-10 22:12:26 +00:00
const std : : array < QString , 4 > row_data { {
2018-07-28 16:32:16 +00:00
QString : : fromStdString ( filename ) ,
data ( FileTypeRole ) . toString ( ) ,
QString : : fromStdString ( fmt : : format ( " 0x{:016X} " , data ( ProgramIdRole ) . toULongLong ( ) ) ) ,
data ( TitleRole ) . toString ( ) ,
2018-08-10 22:12:26 +00:00
} } ;
2018-07-28 16:32:16 +00:00
2018-08-10 22:12:26 +00:00
const auto & row1 = row_data . at ( UISettings : : values . row_1_text_id ) ;
const auto & row2 = row_data . at ( UISettings : : values . row_2_text_id ) ;
2018-07-28 16:32:16 +00:00
if ( row1 . isEmpty ( ) | | row1 = = row2 )
return row2 ;
if ( row2 . isEmpty ( ) )
return row1 ;
2019-05-20 19:02:30 +00:00
return QString ( row1 + QStringLiteral ( " \n " ) + row2 ) ;
2015-09-01 04:35:33 +00:00
}
2018-08-10 22:12:26 +00:00
return GameListItem : : data ( role ) ;
2015-09-01 04:35:33 +00:00
}
} ;
2018-08-29 13:42:53 +00:00
class GameListItemCompat : public GameListItem {
Q_DECLARE_TR_FUNCTIONS ( GameListItemCompat )
public :
static const int CompatNumberRole = Qt : : UserRole + 1 ;
GameListItemCompat ( ) = default ;
2018-09-17 09:31:27 +00:00
explicit GameListItemCompat ( const QString & compatibility ) {
2018-08-29 13:42:53 +00:00
struct CompatStatus {
QString color ;
const char * text ;
const char * tooltip ;
} ;
// clang-format off
static const std : : map < QString , CompatStatus > status_data = {
2019-05-20 19:02:30 +00:00
{ QStringLiteral ( " 0 " ) , { QStringLiteral ( " #5c93ed " ) , QT_TR_NOOP ( " Perfect " ) , QT_TR_NOOP ( " Game functions flawless with no audio or graphical glitches, all tested functionality works as intended without \n any workarounds needed. " ) } } ,
{ QStringLiteral ( " 1 " ) , { QStringLiteral ( " #47d35c " ) , QT_TR_NOOP ( " Great " ) , QT_TR_NOOP ( " Game functions with minor graphical or audio glitches and is playable from start to finish. May require some \n workarounds. " ) } } ,
{ QStringLiteral ( " 2 " ) , { QStringLiteral ( " #94b242 " ) , QT_TR_NOOP ( " Okay " ) , QT_TR_NOOP ( " Game functions with major graphical or audio glitches, but game is playable from start to finish with \n workarounds. " ) } } ,
{ QStringLiteral ( " 3 " ) , { QStringLiteral ( " #f2d624 " ) , QT_TR_NOOP ( " Bad " ) , QT_TR_NOOP ( " Game functions, but with major graphical or audio glitches. Unable to progress in specific areas due to glitches \n even with workarounds. " ) } } ,
{ QStringLiteral ( " 4 " ) , { QStringLiteral ( " #FF0000 " ) , QT_TR_NOOP ( " Intro/Menu " ) , QT_TR_NOOP ( " Game is completely unplayable due to major graphical or audio glitches. Unable to progress past the Start \n Screen. " ) } } ,
{ QStringLiteral ( " 5 " ) , { QStringLiteral ( " #828282 " ) , QT_TR_NOOP ( " Won't Boot " ) , QT_TR_NOOP ( " The game crashes when attempting to startup. " ) } } ,
{ QStringLiteral ( " 99 " ) , { QStringLiteral ( " #000000 " ) , QT_TR_NOOP ( " Not Tested " ) , QT_TR_NOOP ( " The game has not yet been tested. " ) } } ,
} ;
2018-08-29 13:42:53 +00:00
// clang-format on
2018-09-17 09:31:27 +00:00
auto iterator = status_data . find ( compatibility ) ;
2018-08-29 13:42:53 +00:00
if ( iterator = = status_data . end ( ) ) {
2018-09-17 09:31:27 +00:00
LOG_WARNING ( Frontend , " Invalid compatibility number {} " , compatibility . toStdString ( ) ) ;
2018-08-29 13:42:53 +00:00
return ;
}
2018-09-17 09:30:09 +00:00
const CompatStatus & status = iterator - > second ;
2018-09-17 09:31:27 +00:00
setData ( compatibility , CompatNumberRole ) ;
2018-08-29 13:42:53 +00:00
setText ( QObject : : tr ( status . text ) ) ;
setToolTip ( QObject : : tr ( status . tooltip ) ) ;
setData ( CreateCirclePixmapFromColor ( status . color ) , Qt : : DecorationRole ) ;
}
bool operator < ( const QStandardItem & other ) const override {
return data ( CompatNumberRole ) < other . data ( CompatNumberRole ) ;
}
} ;
2015-09-01 04:35:33 +00:00
/**
* A specialization of GameListItem for size values .
* This class ensures that for every numerical size value it holds ( in bytes ) , a correct
* human - readable string representation will be displayed to the user .
*/
class GameListItemSize : public GameListItem {
public :
static const int SizeRole = Qt : : UserRole + 1 ;
2018-08-06 16:58:46 +00:00
GameListItemSize ( ) = default ;
explicit GameListItemSize ( const qulonglong size_bytes ) {
2015-09-01 04:35:33 +00:00
setData ( size_bytes , SizeRole ) ;
}
2016-09-18 00:38:01 +00:00
void setData ( const QVariant & value , int role ) override {
2015-09-01 04:35:33 +00:00
// By specializing setData for SizeRole, we can ensure that the numerical and string
// representations of the data are always accurate and in the correct format.
if ( role = = SizeRole ) {
qulonglong size_bytes = value . toULongLong ( ) ;
GameListItem : : setData ( ReadableByteSize ( size_bytes ) , Qt : : DisplayRole ) ;
GameListItem : : setData ( value , SizeRole ) ;
} else {
GameListItem : : setData ( value , role ) ;
}
}
/**
* This operator is , in practice , only used by the TreeView sorting systems .
2016-09-18 00:38:01 +00:00
* Override it so that it will correctly sort by numerical value instead of by string
* representation .
2015-09-01 04:35:33 +00:00
*/
2016-09-18 00:38:01 +00:00
bool operator < ( const QStandardItem & other ) const override {
2015-09-01 04:35:33 +00:00
return data ( SizeRole ) . toULongLong ( ) < other . data ( SizeRole ) . toULongLong ( ) ;
}
} ;
2018-07-23 10:43:34 +00:00
class GameList ;
class QHBoxLayout ;
class QTreeView ;
class QLabel ;
class QLineEdit ;
class QToolButton ;
class GameListSearchField : public QWidget {
Q_OBJECT
public :
explicit GameListSearchField ( GameList * parent = nullptr ) ;
void setFilterResult ( int visible , int total ) ;
void clear ( ) ;
void setFocus ( ) ;
private :
class KeyReleaseEater : public QObject {
public :
explicit KeyReleaseEater ( GameList * gamelist ) ;
private :
GameList * gamelist = nullptr ;
QString edit_filter_text_old ;
protected :
// EventFilter in order to process systemkeys while editing the searchfield
bool eventFilter ( QObject * obj , QEvent * event ) override ;
} ;
QHBoxLayout * layout_filter = nullptr ;
QTreeView * tree_view = nullptr ;
QLabel * label_filter = nullptr ;
QLineEdit * edit_filter = nullptr ;
QLabel * label_filter_result = nullptr ;
QToolButton * button_filter_close = nullptr ;
} ;