aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common
Commit message (Collapse)AuthorAge
...
* | Merge pull request #570 from purpasmart96/config_memGravatar bunnei2015-02-18
|\ \ | | | | | | ConfigMem: Clean up the Config memory to be more like the shared page
| | * Asserts: Use lambdas to keep assertion code away from the main code pathGravatar Yuri Kunde Schlesner2015-02-18
| |/ |/|
| * ConfigMem: Clean up the Config memory to be more like the shared page and movedGravatar purpasmart962015-02-16
| | | | | | | | the helper macro for padding to common_funcs.h
* | Merge pull request #529 from Subv/masterGravatar bunnei2015-02-14
|\ \ | |/ |/| Build: Fixed some warnings
* | backend: Add logging subentry for ldrGravatar Lioncash2015-02-12
| | | | | | | | Fixes an assertion upon executing citra in debug mode.
| * Build: Fixed some warningsGravatar Subv2015-02-12
|/
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-10
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Merge pull request #526 from purpasmart96/citra_stubsGravatar bunnei2015-02-10
|\ | | | | Services: Stub some functions
| * Services: Stub some functionsGravatar purpasmart962015-02-07
| |
* | Fix a wrong file name in a commentGravatar chinhodado2015-02-07
|/
* Common: Fix SCOPE_EXIT to actually create unique identifiers.Gravatar Yuri Kunde Schlesner2015-01-30
|
* Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxxGravatar archshift2015-01-21
|
* Logging: Log all called service functions (under trace). Compile out all ↵Gravatar archshift2015-01-10
| | | | trace logs under release for performance.
* Merge pull request #431 from yuriks/thread-queue-cleanupGravatar bunnei2015-01-07
|\ | | | | Common: Clean up ThreadQueueList
| * Common: Clean up ThreadQueueListGravatar Yuri Kunde Schlesner2015-01-07
| | | | | | | | | | | | | | | | Replace all the C-style complicated buffer management with a std::deque. In addition to making the code easier to understand it also adds support for non-POD IdTypes. Also clean the rest of the code to follow our code style.
* | Merge pull request #425 from Subv/coretimingGravatar bunnei2015-01-07
|\ \ | |/ |/| Ported the CoreTiming namespace from PPSSPP
| * CoreTiming: Ported the CoreTiming namespace from PPSSPPGravatar Subv2015-01-07
| | | | | | | | | | | | Implemented the required calls to make it work. CoreTiming: Added a new logging class Core_Timing.
* | Merge pull request #421 from linkmauve/remove-dead-platformsGravatar bunnei2015-01-06
|\ \ | | | | | | Remove dead platform #ifdefs to make the code more readable.
* \ \ Merge pull request #376 from Subv/arc_reorderGravatar bunnei2015-01-06
|\ \ \ | | | | | | | | Archives: Change the folder layout of some archives.
| | * | Common: Remove dead platform #ifdefs to make the code more readable.Gravatar Emmanuel Gil Peyrot2015-01-06
| |/ / |/| | | | | | | | | | | | | | Symbian, Xbox, Blackberry and iOS got removed. FreeBSD and Android kept due to them potentially being able to run Citra in the future. The iOS specific part also got removed from PPSSPP in order to fix a bug there.
* | | Common: Use std::abs instead of abs, using abs with cmath fails on some systems.Gravatar Emmanuel Gil Peyrot2015-01-05
| | |
* | | Common: Remove the unused x86-specific 128-bit float type.Gravatar Emmanuel Gil Peyrot2015-01-05
| |/ |/|
| * Archives: Changed the way paths are built for the archives.Gravatar Subv2015-01-03
| | | | | | | | Each archive now takes a mount point of either NAND or SDMC, and builds its own directory structure there, trying to simulate an HLE-friendly hardware layout
| * SaveDataCheck: Move the files to nand/titleGravatar Subv2015-01-03
| | | | | | | | under /nand/title/high/low/content/00000000.app.romfs
| * Archives: Change the folder layout of some archives.Gravatar Subv2015-01-02
|/ | | | This is to better represent the hardware layout, they are still aren't quite accurate, but this better and will help a bit when implementing the other archives like NAND-RO and NAND-RW
* Archives: Reduced duplicate code in RomFS and SaveCheck.Gravatar Subv2015-01-02
| | | | Fixed a few warnings and cleaned up the code
* SOC_U: Preliminary implementation of sockets.Gravatar Subv2014-12-31
| | | | | | | | | | | | | 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
* Merge pull request #369 from darkf/mingw_Gravatar bunnei2014-12-30
|\ | | | | Fix MinGW build (2)
| * Fix MSVC-related #defines and add CMakeLists commentGravatar darkf2014-12-29
| |
| * Fix merge conflictsGravatar darkf2014-12-29
| |\
* | | Archives: Implemented ExtSaveData and SharedExtSaveDataGravatar Subv2014-12-29
| |/ |/| | | | | | | | | | | | | 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.
* | Merge pull request #322 from chinhodado/masterGravatar bunnei2014-12-22
|\ \ | | | | | | More warning cleanups
* \ \ Merge pull request #291 from purpasmart96/licenseGravatar bunnei2014-12-21
|\ \ \ | | | | | | | | License change
| | * | More warning cleanupsGravatar Chin2014-12-21
| |/ / |/| |
| * | License changeGravatar purpasmart962014-12-20
| | |
* | | BitField: Add an explicit Assign method.Gravatar Tony Wasserka2014-12-20
| | | | | | | | | | | | This is useful when doing crazy stuff like inheriting from BitField.
* | | Common: Add a clone of std::make_uniqueGravatar Yuri Kunde Schlesner2014-12-20
|/ /
* | SaveData: Implemented the SystemSaveData archive.Gravatar Subv2014-12-17
| | | | | | | | It will be stored in the /syssavedata folder. This archive is user by various Services and possibly games via the FS:U service.
* | Filesystem/Archives: Implemented the SaveData archiveGravatar Subv2014-12-17
| | | | | | | | | | | | | | | | | | | | 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
* | Restore the original console color after logging a message.Gravatar Yuri Kunde Schlesner2014-12-14
| | | | | | | | Fixes #277
* | Remove old logging systemGravatar Yuri Kunde Schlesner2014-12-13
| |
* | Add configurable per-class log filteringGravatar Yuri Kunde Schlesner2014-12-13
| |
* | Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
| |
* | Implement text path trimming for shorter paths.Gravatar Yuri Kunde Schlesner2014-12-13
| |
* | Re-add coloring to the console logging output.Gravatar Yuri Kunde Schlesner2014-12-13
| |
* | New logging systemGravatar Yuri Kunde Schlesner2014-12-13
| |
* | Add SCOPE_EXIT macro to conveniently execute cleanup actionsGravatar Yuri Kunde Schlesner2014-12-13
| |
* | Added missing include in common_funcs.hGravatar Yuri Kunde Schlesner2014-12-13
| |
* | Remove redundant include from common_funcs.hGravatar Yuri Kunde Schlesner2014-12-13
| |
* | Merge pull request #267 from bunnei/apt-shared-fontGravatar bunnei2014-12-12
|\ \ | | | | | | APT shared font loading