missyhud.prx
From GameBrew
More actions
| missyhud.prx | |
|---|---|
| General | |
| Author | pebeto |
| Type | Plugins |
| Version | 0.5 |
| License | Mixed |
| Last Updated | 2024/06/07 |
| Links | |
| Download | |
| Website | |
| Source | |
missyhud.prx is a plugin to display a simple HUD.
Features
- Stupidly simple black UI (yes, the best one).
- Compatible with VSH, GAME and POPS.
- RAM usage indicator.
- Power percentage indicator.
- Duration minutes.
- Charging detection.
- No battery detection.
- CPU indicators:
- CPU Usage.
- CPU clock speed.
- BUS clock speed.
- FPS indicator.
- Key combination to turn on and off (Hold L + R + Start for 1 second).
Installation
Download the latest release.
Place missyhud.prx into:
- ms0:/seplugins/ for PSP 1000, 2000, 3000 and Street
- ef0:/seplugins/ for PSP Go
Open (or create) game.txt, vsh.txt and/or pop.txt in the seplugins folder, then add the following path to the test files.
For PSP 1000, 2000, 3000 and Street
ms0:/seplugins/missyhud.prx 1
For PSP Go
ef0:/seplugins/missyhud.prx 1
Screenshots
Known issues
- According to the PSPSDK documentation,
sceKernelTotalFreeMemSizereturns a different value thanpspSdkTotalFreeUserMemSize - The FPS indicator does not work with double buffering. Follow-up on this issue is ongoing.
Changelog
v0.5 2024/06/07
- Implemented
Globalsstructure containing all shared project variables. - The declaration of
Globalsfields is done in their respective threads. - Defined macros to improve readability.
- Improved
getFPSfunction by removing overhead. - Implemented
getCpuUsageandprintCpuIndicators.getCpuUsageimplementation thanks to darko79.
v0.4 2024/06/06
- Improved
getFpsfunction by changingsceKernelGetSystemTimewithsceKernelGetSystemTimeLow(reduced overhead). - Implemented key combo (
L + R + Start) to show/hide the HUD. - The plugin logic was separated into three different threads.
missyhud_worker_threadis in charge of system calls and computations.missyhud_gui_threadis in charge of drawing the HUD.missyhud_control_threadis in charge of reading user input.
v0.3 2024/06/04
- Implemented
printFpsto get the actual frame-rate by hookingsceDisplaySetFrameBufto incrementfps_counter.hook.cimplementation thanks to Alexander "Raphael" Berl.getFpsimplementation thanks to darko79.
v0.2 2024/06/04
scePowerGetBatteryLifePercentcrash the PSP when waking up from standby. Replaced it by manually calculating the remaining capacity percentage.- Added
scePowerIsBatteryExistinprintPowerInfo.
v0.1 2024/06/04
- Showing CPU/BUS frequencies with
printCpuBusFrequencies. - Showing Power information with
printPowerInfo. - Showing Memory usage with
printMemoryUsage.