summaryrefslogtreecommitdiff
path: root/Source/Core/DiscIO/FileMonitor.cpp
AgeCommit message (Collapse)Author
2015-06-04Volume: Return volume type as an enumJosJuice
ISOFile and GameFile were using IsWiiDisc() and IsWadFile() to set an enum value. The volume might as well return an enum directly. I increased the Qt CACHE_REVISION because m_platform now is saved as u32 instead of int, but increasing the wx CACHE_REVISION is not necessary.
2015-06-02Merge pull request #2338 from JosJuice/getfilelist-returncomex
Filesystem: Return file list reference instead of modifying argument
2015-05-25Set copyright year to when a file was createdTillmann Karras
2015-05-25Update license headers to GPLv2+Tillmann Karras
2015-04-28Filesystem: Return file list reference instead of modifying argumentJosJuice
2015-03-03FileMonitor: Check log level in addition to FileMonitor checkboxJosJuice
This is good for performance when FileMontior is selected but the log level only is set to notice or warning. The ability to do this wasn't available until recently: 1ed41672f50c9cfe7aa4ab5aa3b73f7e41029124
2015-01-21Merge pull request #1895 from JosJuice/isvolumewiidiscRyan Houdek
Don't read from disk when checking volume type
2015-01-17Don't read from disk when checking volume typeJosJuice
Should be faster than relying on the OS to cache the magic words. Also gets rid of the odd recursive call in VolumeDirectory.
2014-12-27Add FileMonitor support for VolumeDirectoryJosJuice
2014-12-25FileMonitor: Get rid of "GC" from names and commentsJosJuice
2014-12-25Re-add FileMonitor support for Wii discsJosJuice
This in done in the same way as GC discs, unlike the previous implementation.
2014-09-08Include CommonTypes.h instead of Common.h.Rohit Nirmal
2014-08-25DiscIO: Make the unordered set in IsSoundFile staticLioncash
Doesn't need to be instantiated every time the function is called.
2014-07-11mark all local variables as staticdegasus
2014-07-11mark all local functions as staticdegasus
2014-06-25Centralize the logging code into its own folder in Common.Lioncash
2014-03-29Remove all trailing whitespaces from our codebase.Pierre Bourdon
2014-03-23Fix a crash that got recently introduced.Ryan Houdek
When CFileSystemGCWii::GetFileName can't find a valid filename it would return nullptr. nullptr as a std::string throws an assert within the std lib. So return an empty string and check if it is empty or not
2014-03-16Simplify file tree building for the filesystem view.Lioncash
Technically this also simplifies on disc filename building in general.
2014-03-10Merge pull request #149 from lioncash/filemonitor-song-typesMatthew Parlane
Add more sound file extensions to FileMonitor's IsSoundFile.
2014-03-09clang-modernize -use-nullptrTillmann Karras
and s/\bNULL\b/nullptr/g for *.cpp/h/mm files not compiled on my machine
2014-03-09Add more sound file extensions to FileMonitor's IsSoundFile.Lioncash
2014-03-04Add two other formats to the list of extensions in IsSoundFilelioncash
.adx is used in various games, so this should definitely be here.
2014-03-04Simplify ShowSound() in FileMonitor.cpp.lioncash
Now if more sound types are found, they just need to simply be added to the unordered set. - Also changed ShowSound() to IsSoundFile() - Fixed IsSoundFile’s definition in FileMonitor.h. This whole time it has been defined as a void method, when in reality it was a bool function. - Changed the FileMonitor’s string parameters to be constant references.
2014-02-22Make DiscIO/ mostly IWYU clean (and fix errors in rest of the project ↵Pierre Bourdon
detected by this change).
2014-02-18Convert all includes to relative paths.Lioncash
2013-12-31Remove unnecessary Src/ foldersJasper St. Pierre