mirror of
https://github.com/BanjoRecomp/BanjoRecomp
synced 2026-06-11 20:48:27 -04:00
222 lines
7.1 KiB
C++
222 lines
7.1 KiB
C++
#include <cmath>
|
|
|
|
#include "recomp.h"
|
|
#include "librecomp/overlays.hpp"
|
|
#include "librecomp/addresses.hpp"
|
|
#include "banjo_config.h"
|
|
#include "recomp_input.h"
|
|
#include "recomp_ui.h"
|
|
#include "banjo_render.h"
|
|
#include "banjo_sound.h"
|
|
#include "librecomp/helpers.hpp"
|
|
#include "../patches/input.h"
|
|
#include "../patches/graphics.h"
|
|
#include "../patches/sound.h"
|
|
#include "ultramodern/ultramodern.hpp"
|
|
#include "ultramodern/config.hpp"
|
|
|
|
extern "C" void recomp_update_inputs(uint8_t* rdram, recomp_context* ctx) {
|
|
recomp::poll_inputs();
|
|
}
|
|
|
|
extern "C" void recomp_puts(uint8_t* rdram, recomp_context* ctx) {
|
|
PTR(char) cur_str = _arg<0, PTR(char)>(rdram, ctx);
|
|
u32 length = _arg<1, u32>(rdram, ctx);
|
|
|
|
for (u32 i = 0; i < length; i++) {
|
|
fputc(MEM_B(i, (gpr)cur_str), stdout);
|
|
}
|
|
}
|
|
|
|
extern "C" void recomp_exit(uint8_t* rdram, recomp_context* ctx) {
|
|
ultramodern::quit();
|
|
}
|
|
|
|
extern "C" void recomp_error(uint8_t* rdram, recomp_context* ctx) {
|
|
std::string str{};
|
|
PTR(u8) str_ptr = _arg<0, PTR(u8)>(rdram, ctx);
|
|
|
|
for (size_t i = 0; MEM_B(str_ptr, i) != '\x00'; i++) {
|
|
str += (char)MEM_B(str_ptr, i);
|
|
}
|
|
|
|
recompui::message_box(str.c_str());
|
|
assert(false);
|
|
ultramodern::error_handling::quick_exit(__FILE__, __LINE__, __FUNCTION__);
|
|
}
|
|
|
|
extern "C" void recomp_get_gyro_deltas(uint8_t* rdram, recomp_context* ctx) {
|
|
float* x_out = _arg<0, float*>(rdram, ctx);
|
|
float* y_out = _arg<1, float*>(rdram, ctx);
|
|
|
|
recomp::get_gyro_deltas(x_out, y_out);
|
|
}
|
|
|
|
extern "C" void recomp_get_mouse_deltas(uint8_t* rdram, recomp_context* ctx) {
|
|
float* x_out = _arg<0, float*>(rdram, ctx);
|
|
float* y_out = _arg<1, float*>(rdram, ctx);
|
|
|
|
recomp::get_mouse_deltas(x_out, y_out);
|
|
}
|
|
|
|
extern "C" void recomp_powf(uint8_t* rdram, recomp_context* ctx) {
|
|
float a = _arg<0, float>(rdram, ctx);
|
|
float b = ctx->f14.fl; //_arg<1, float>(rdram, ctx);
|
|
|
|
_return(ctx, std::pow(a, b));
|
|
}
|
|
|
|
extern "C" void recomp_get_target_framerate(uint8_t* rdram, recomp_context* ctx) {
|
|
int frame_divisor = _arg<0, u32>(rdram, ctx);
|
|
|
|
_return(ctx, ultramodern::get_target_framerate(60 / frame_divisor));
|
|
}
|
|
|
|
extern "C" void recomp_get_window_resolution(uint8_t* rdram, recomp_context* ctx) {
|
|
int width, height;
|
|
recompui::get_window_size(width, height);
|
|
|
|
gpr width_out = _arg<0, PTR(u32)>(rdram, ctx);
|
|
gpr height_out = _arg<1, PTR(u32)>(rdram, ctx);
|
|
|
|
MEM_W(0, width_out) = (u32)width;
|
|
MEM_W(0, height_out) = (u32)height;
|
|
}
|
|
|
|
extern "C" void recomp_get_target_aspect_ratio(uint8_t* rdram, recomp_context* ctx) {
|
|
ultramodern::renderer::GraphicsConfig graphics_config = ultramodern::renderer::get_graphics_config();
|
|
float original = _arg<0, float>(rdram, ctx);
|
|
int width, height;
|
|
recompui::get_window_size(width, height);
|
|
|
|
switch (graphics_config.ar_option) {
|
|
case ultramodern::renderer::AspectRatio::Original:
|
|
default:
|
|
_return(ctx, original);
|
|
return;
|
|
case ultramodern::renderer::AspectRatio::Expand:
|
|
_return(ctx, std::max(static_cast<float>(width) / height, original));
|
|
return;
|
|
}
|
|
}
|
|
|
|
extern "C" void recomp_get_bgm_volume(uint8_t* rdram, recomp_context* ctx) {
|
|
_return(ctx, banjo::get_bgm_volume() / 100.0f);
|
|
}
|
|
|
|
extern "C" void recomp_time_us(uint8_t* rdram, recomp_context* ctx) {
|
|
_return(ctx, static_cast<u32>(std::chrono::duration_cast<std::chrono::microseconds>(ultramodern::time_since_start()).count()));
|
|
}
|
|
|
|
extern "C" void recomp_load_overlays(uint8_t * rdram, recomp_context * ctx) {
|
|
u32 rom = _arg<0, u32>(rdram, ctx);
|
|
PTR(void) ram = _arg<1, PTR(void)>(rdram, ctx);
|
|
u32 size = _arg<2, u32>(rdram, ctx);
|
|
|
|
load_overlays(rom, ram, size);
|
|
}
|
|
|
|
extern "C" void recomp_high_precision_fb_enabled(uint8_t * rdram, recomp_context * ctx) {
|
|
_return(ctx, static_cast<s32>(banjo::renderer::RT64HighPrecisionFBEnabled()));
|
|
}
|
|
|
|
extern "C" void recomp_get_resolution_scale(uint8_t* rdram, recomp_context* ctx) {
|
|
_return(ctx, ultramodern::get_resolution_scale());
|
|
}
|
|
|
|
extern "C" void recomp_get_inverted_axes(uint8_t* rdram, recomp_context* ctx) {
|
|
s32* x_out = _arg<0, s32*>(rdram, ctx);
|
|
s32* y_out = _arg<1, s32*>(rdram, ctx);
|
|
|
|
banjo::CameraInvertMode mode = banjo::get_camera_invert_mode();
|
|
|
|
*x_out = (mode == banjo::CameraInvertMode::InvertX || mode == banjo::CameraInvertMode::InvertBoth);
|
|
*y_out = (mode == banjo::CameraInvertMode::InvertY || mode == banjo::CameraInvertMode::InvertBoth);
|
|
}
|
|
|
|
extern "C" void recomp_get_analog_inverted_axes(uint8_t* rdram, recomp_context* ctx) {
|
|
s32* x_out = _arg<0, s32*>(rdram, ctx);
|
|
s32* y_out = _arg<1, s32*>(rdram, ctx);
|
|
|
|
banjo::CameraInvertMode mode = banjo::get_analog_camera_invert_mode();
|
|
|
|
*x_out = (mode == banjo::CameraInvertMode::InvertX || mode == banjo::CameraInvertMode::InvertBoth);
|
|
*y_out = (mode == banjo::CameraInvertMode::InvertY || mode == banjo::CameraInvertMode::InvertBoth);
|
|
}
|
|
|
|
extern "C" void recomp_get_analog_cam_enabled(uint8_t* rdram, recomp_context* ctx) {
|
|
_return<s32>(ctx, banjo::get_analog_cam_mode() == banjo::AnalogCamMode::On);
|
|
}
|
|
|
|
extern "C" void recomp_get_camera_inputs(uint8_t* rdram, recomp_context* ctx) {
|
|
float* x_out = _arg<0, float*>(rdram, ctx);
|
|
float* y_out = _arg<1, float*>(rdram, ctx);
|
|
|
|
// TODO expose this in the menu
|
|
constexpr float radial_deadzone = 0.05f;
|
|
|
|
float x, y;
|
|
|
|
recomp::get_right_analog(&x, &y);
|
|
|
|
float magnitude = sqrtf(x * x + y * y);
|
|
|
|
if (magnitude < radial_deadzone) {
|
|
*x_out = 0.0f;
|
|
*y_out = 0.0f;
|
|
}
|
|
else {
|
|
float x_normalized = x / magnitude;
|
|
float y_normalized = y / magnitude;
|
|
|
|
*x_out = x_normalized * ((magnitude - radial_deadzone) / (1 - radial_deadzone));
|
|
*y_out = y_normalized * ((magnitude - radial_deadzone) / (1 - radial_deadzone));
|
|
}
|
|
}
|
|
|
|
extern "C" void recomp_set_right_analog_suppressed(uint8_t* rdram, recomp_context* ctx) {
|
|
s32 suppressed = _arg<0, s32>(rdram, ctx);
|
|
|
|
recomp::set_right_analog_suppressed(suppressed);
|
|
}
|
|
|
|
constexpr uint32_t k1_to_phys(uint32_t addr) {
|
|
return addr & 0x1FFFFFFF;
|
|
}
|
|
|
|
extern "C" void osPiReadIo_recomp(RDRAM_ARG recomp_context * ctx) {
|
|
uint32_t devAddr = recomp::rom_base | ctx->r4;
|
|
gpr dramAddr = ctx->r5;
|
|
uint32_t physical_addr = k1_to_phys(devAddr);
|
|
|
|
if (physical_addr > recomp::rom_base) {
|
|
// cart rom
|
|
recomp::do_rom_pio(PASS_RDRAM dramAddr, physical_addr);
|
|
} else {
|
|
// sram
|
|
assert(false && "SRAM ReadIo unimplemented");
|
|
}
|
|
|
|
ctx->r2 = 0;
|
|
}
|
|
|
|
extern "C" void osPfsInit_recomp(uint8_t * rdram, recomp_context* ctx) {
|
|
ctx->r2 = 11; // PFS_ERR_DEVICE
|
|
}
|
|
|
|
// u32 rom_addr, void *ram_addr, u32 size
|
|
extern "C" void recomp_load_overlays_by_rom(uint8_t* rdram, recomp_context* ctx) {
|
|
u32 rom_addr = _arg<0, u32>(rdram, ctx);
|
|
PTR(void) ram_addr = _arg<1, PTR(void)>(rdram, ctx);
|
|
u32 size = _arg<2, u32>(rdram, ctx);
|
|
|
|
load_overlays(rom_addr, ram_addr, size);
|
|
}
|
|
|
|
extern "C" void recomp_abort(uint8_t* rdram, recomp_context* ctx) {
|
|
std::string msg = _arg_string<0>(rdram, ctx);
|
|
recompui::message_box(msg.c_str());
|
|
assert(false);
|
|
ultramodern::error_handling::quick_exit(__FILE__, __LINE__, __FUNCTION__);
|
|
}
|