summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ns (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-08-02service/ns: Add missing ns servicesLioncash1-0/+447
Implements the basic skeleton of ns:am2, ns:ec, ns:rid, ns:rt, ns:su, ns:vm, and ns:web based off the information provided by Switch Brew and SwIPC.
2018-07-21file_util: Use an enum class for GetUserPath()Lioncash1-1/+1
Instead of using an unsigned int as a parameter and expecting a user to always pass in the correct values, we can just convert the enum into an enum class and use that type as the parameter type instead, which makes the interface more type safe. We also get rid of the bookkeeping "NUM_" element in the enum by just using an unordered map. This function is generally low-frequency in terms of calls (and I'd hope so, considering otherwise would mean we're slamming the disk with IO all the time) so I'd consider this acceptable in this case.
2018-07-20pl_u: Simplify WriteBuffer() calls in GetSharedFontInOrderOfPriority()Lioncash1-3/+3
With the new overload, we can simply pass the container directly.
2018-07-19pl_u: Specify correct size for buffers in GetSharedFontInOrderOfPriority()Lioncash1-3/+3
This WriteBuffer overload expects its size argument to be in bytes, not elements.
2018-07-19pl_u: Remove printf specifier in log call in a log call in GetSharedFontInOrderOfPriority()Lioncash1-1/+1
This can just use the fmt specifiers and be type-agnostic.
2018-07-03Rename logging macro back to LOG_*James Rowe1-7/+7
2018-05-01GetSharedFontInOrderOfPriority (#381)David2-1/+27
* GetSharedFontInOrderOfPriority * Update pl_u.cpp * Ability to use ReadBuffer and WriteBuffer with different buffer indexes, fixed up GetSharedFontInOrderOfPriority * switched to NGLOG * Update pl_u.cpp * Update pl_u.cpp * language_code is actually language code and not index * u32->u64 * final cleanups
2018-04-24ns: Move logging macros over to new fmt-compatible onesLioncash1-6/+6
2018-04-20service: Use nested namespace specifiers where applicableLioncash4-16/+8
Tidies up namespace declarations
2018-04-15pl_u: Use empty shared font if none is available.bunnei1-17/+14
- Makes games work in lieu of shared_font.bin.
2018-04-10Updated pl:u with more service names.Hexagon121-1/+3
2018-03-25pl_u: Add RequestLoad.bunnei2-0/+11
2018-03-14core: Move process creation out of global state.bunnei1-4/+5
2018-02-15pl_u: Implement basic shared font loading from RAM dump.bunnei4-0/+176
2017-10-13Remove lots more 3DS-specific code.bunnei4-87/+0
2017-09-16Services/NS: Port ns:s to the new service framework.Subv4-0/+87