summaryrefslogtreecommitdiff
path: root/src/common
AgeCommit message (Collapse)Author
2014-12-31SOC_U: Preliminary implementation of sockets.Subv
Stubbed CreateMemoryBlock Using Berkeley sockets, and Winsock2.2 on Windows. So far ftpony creates the socket and accepts incoming connections SOC_U: Renamed functions to maintain consistency Also prevents possible scope errors / conflicts with the actual Berkeley socket functions SOCU: Close all the opened sockets when cleaning up SOCU
2014-12-30Merge pull request #369 from darkf/mingw_bunnei
Fix MinGW build (2)
2014-12-29Fix MSVC-related #defines and add CMakeLists commentdarkf
2014-12-29Fix merge conflictsdarkf
2014-12-29Archives: Implemented ExtSaveData and SharedExtSaveDataSubv
They will be stored in /extsavedata/SDMC and /extsavedata/NAND respectively. Also redirect some APT_A functions to their APT_U equivalents. Implemented the gamecoin.dat file in SharedExtSaveData in the PTM module. Implemented formatting the savegame. Retake a previous savegame if it exists instead of reporting them as not formatted every time a game is loaded.
2014-12-22Merge pull request #322 from chinhodado/masterbunnei
More warning cleanups
2014-12-21Merge pull request #291 from purpasmart96/licensebunnei
License change
2014-12-21More warning cleanupsChin
2014-12-20License changepurpasmart96
2014-12-20BitField: Add an explicit Assign method.Tony Wasserka
This is useful when doing crazy stuff like inheriting from BitField.
2014-12-20Common: Add a clone of std::make_uniqueYuri Kunde Schlesner
2014-12-17SaveData: Implemented the SystemSaveData archive.Subv
It will be stored in the /syssavedata folder. This archive is user by various Services and possibly games via the FS:U service.
2014-12-17Filesystem/Archives: Implemented the SaveData archiveSubv
The savedata for each game is stored in /savedata/<ProgramID> for NCCH files. ELF files and 3DSX files use the folder 0 because they have no ID information Got rid of the code duplication in File and Directory Files that deal with the host machine's file system now live in DiskFile, similarly for directories and DiskDirectory and archives with DiskArchive. FS_U: Use the correct error code when a file wasn't found
2014-12-14Restore the original console color after logging a message.Yuri Kunde Schlesner
Fixes #277
2014-12-13Remove old logging systemYuri Kunde Schlesner
2014-12-13Add configurable per-class log filteringYuri Kunde Schlesner
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner
2014-12-13Implement text path trimming for shorter paths.Yuri Kunde Schlesner
2014-12-13Re-add coloring to the console logging output.Yuri Kunde Schlesner
2014-12-13New logging systemYuri Kunde Schlesner
2014-12-13Add SCOPE_EXIT macro to conveniently execute cleanup actionsYuri Kunde Schlesner
2014-12-13Added missing include in common_funcs.hYuri Kunde Schlesner
2014-12-13Remove redundant include from common_funcs.hYuri Kunde Schlesner
2014-12-12Merge pull request #267 from bunnei/apt-shared-fontbunnei
APT shared font loading
2014-12-12APT_U: Added GetSharedFont service function.bunnei
2014-12-12Merge pull request #261 from neobrain/boostTony Wasserka
Add Boost as a submodule and add some minor cleanups using Boost.Range
2014-12-12Common: Add "sysdata" to GetUserPath and cleanup.bunnei
2014-12-09Explicitly specify LE strings to iconv, fixes paths in Steel Diverarchshift
2014-12-09Remove unused NDMA moduleYuri Kunde Schlesner
2014-12-09Some code cleanup.Tony Wasserka
2014-12-09Fix some headers to include their dependencies properly.Tony Wasserka
2014-12-07StringUtil: Perform some minimal cleanup.Tony Wasserka
2014-12-03Change NULLs to nullptrs.Rohit Nirmal
2014-11-28Fix MinGW builddarkf
2014-11-25Remove unused includes to common/thread.hEmmanuel Gil Peyrot
2014-11-19Remove tabs in all files except in skyeye imports and in generated GL codeEmmanuel Gil Peyrot
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Emmanuel Gil Peyrot
or generated
2014-11-18Merge pull request #165 from neobrain/viewport-scalingbunnei
Stretch emulation output to render window and be display density independent
2014-11-18Remove extraneous semicolonsLioncash
2014-11-18EmuWindow: Add some explicit documentation and set proper minimal client ↵Tony Wasserka
area size.
2014-11-18EmuWindow: Add a TODO.Tony Wasserka
Implementing this function currently is not critical, as we don't perform any configuration changes, yet. However, the interface is a good starting point for adding this functionality.
2014-11-18MathUtil: Make Rectangle work with unsigned types.Tony Wasserka
2014-11-18EmuWindow: Better document the purpose of OnMinimalClientAreaChangeRequest.Tony Wasserka
2014-11-18EmuWindow: Remove window title getters/setters.Tony Wasserka
The window title is none of the emulation core's business. The GUI code is free to put whatever it wants there. Providing properly thread-safe window title getters and setters is a mess anyway.
2014-11-18EmuWindow: Add documentation.Tony Wasserka
2014-11-18EmuWindow: Add support for specifying minimal client area sizes.Tony Wasserka
2014-11-18Fixup EmuWindow interface and implementations thereof.Tony Wasserka
2014-11-18Viewport scaling and display density independenceKevin Hartman
The view is scaled to be as large as possible, without changing the aspect, within the bounds of the window. On "retina" displays, or other displays where window units != pixels, the view should no longer draw incorrectly.
2014-11-18Add a GUI logging channel.Tony Wasserka
Replace asserts with _dbg_assert_.
2014-11-17emu_window: Fix initializer list order.Lioncash
Gets rid of a warning on OSX.