2012-11-01 15:19:01 +00:00
|
|
|
// Copyright (c) 2012- PPSSPP Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
2012-11-04 22:01:49 +00:00
|
|
|
// the Free Software Foundation, version 2.0 or later versions.
|
2012-11-01 15:19:01 +00:00
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official git repository and contact information can be found at
|
|
|
|
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../../Globals.h"
|
|
|
|
|
|
|
|
// For easy parameter parsing and return value processing.
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<void func()> void WrapV_V() {
|
2012-11-01 15:19:01 +00:00
|
|
|
func();
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<u32 func()> void WrapU_V() {
|
2012-11-01 15:19:01 +00:00
|
|
|
RETURN(func());
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<float func()> void WrapF_V() {
|
2012-11-01 15:19:01 +00:00
|
|
|
RETURNF(func());
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<u32 func(u32)> void WrapU_U() {
|
2012-11-01 15:19:01 +00:00
|
|
|
u32 retval = func(PARAM(0));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-08 13:24:51 +00:00
|
|
|
template<int func(u32)> void WrapI_U() {
|
|
|
|
int retval = func(PARAM(0));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-11 21:32:44 +00:00
|
|
|
template<int func()> void WrapI_V() {
|
|
|
|
int retval = func();
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-11-08 13:24:51 +00:00
|
|
|
template<int func(int)> void WrapI_I() {
|
|
|
|
int retval = func(PARAM(0));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<void func(u32)> void WrapV_U() {
|
2012-11-01 15:19:01 +00:00
|
|
|
func(PARAM(0));
|
|
|
|
}
|
|
|
|
|
2012-11-11 21:32:44 +00:00
|
|
|
template<void func(int)> void WrapV_I() {
|
|
|
|
func(PARAM(0));
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<void func(u32, u32)> void WrapV_UU() {
|
2012-11-01 15:19:01 +00:00
|
|
|
func(PARAM(0), PARAM(1));
|
|
|
|
}
|
|
|
|
|
2012-11-11 21:32:44 +00:00
|
|
|
template<void func(int, int)> void WrapV_II() {
|
|
|
|
func(PARAM(0), PARAM(1));
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<u32 func(u32, u32)> void WrapU_UU() {
|
2012-11-01 15:19:01 +00:00
|
|
|
u32 retval = func(PARAM(0), PARAM(1));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-08 13:24:51 +00:00
|
|
|
template<int func(int, u32)> void WrapI_IU() {
|
|
|
|
int retval = func(PARAM(0), PARAM(1));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-11 21:32:44 +00:00
|
|
|
template<int func(int, int)> void WrapI_II() {
|
|
|
|
int retval = func(PARAM(0), PARAM(1));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<int func(int, int, int)> void WrapI_III() {
|
|
|
|
int retval = func(PARAM(0), PARAM(1), PARAM(2));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-08 15:24:06 +00:00
|
|
|
template<void func(int, u32)> void WrapV_IU() {
|
|
|
|
func(PARAM(0), PARAM(1));
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<int func(const char *, u32)> void WrapI_CU() {
|
2012-11-01 15:19:01 +00:00
|
|
|
int retval = func(Memory::GetCharPointer(PARAM(0)), PARAM(1));
|
2012-11-04 14:08:23 +00:00
|
|
|
RETURN(retval);
|
|
|
|
}
|
2012-11-01 15:19:01 +00:00
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<u32 func(const char *, u32)> void WrapU_CU() {
|
|
|
|
int retval = func(Memory::GetCharPointer(PARAM(0)), PARAM(1));
|
2012-11-04 14:08:23 +00:00
|
|
|
RETURN((u32)retval);
|
|
|
|
}
|
2012-11-05 09:05:09 +00:00
|
|
|
|
2012-11-11 22:47:28 +00:00
|
|
|
template<u32 func(u32, const char *)> void WrapU_UC() {
|
|
|
|
int retval = func(PARAM(0), Memory::GetCharPointer(PARAM(1)));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<u32 func(const char *, u32, u32)> void WrapU_CUU() {
|
2012-11-01 15:19:01 +00:00
|
|
|
int retval = func(Memory::GetCharPointer(PARAM(0)), PARAM(1), PARAM(2));
|
|
|
|
RETURN((u32)retval);
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<u32 func(u32, u32, u32)> void WrapU_UUU() {
|
2012-11-01 15:19:01 +00:00
|
|
|
u32 retval = func(PARAM(0), PARAM(1), PARAM(2));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-08 15:24:06 +00:00
|
|
|
template<void func(int, u32, u32)> void WrapV_IUU() {
|
|
|
|
func(PARAM(0), PARAM(1), PARAM(2));
|
2012-11-08 13:24:51 +00:00
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<void func(u32, u32, u32)> void WrapV_UUU() {
|
2012-11-01 15:19:01 +00:00
|
|
|
func(PARAM(0), PARAM(1), PARAM(2));
|
|
|
|
}
|
|
|
|
|
2012-11-07 15:05:39 +00:00
|
|
|
template<void func(u32, u32, u32, u32)> void WrapV_UUUU() {
|
|
|
|
func(PARAM(0), PARAM(1), PARAM(2), PARAM(3));
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<u32 func(u32, u32, u32, u32)> void WrapU_UUUU() {
|
2012-11-01 15:19:01 +00:00
|
|
|
u32 retval = func(PARAM(0), PARAM(1), PARAM(2), PARAM(3));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<u32 func(u32, u32, u32, u32, u32)> void WrapU_UUUUU() {
|
2012-11-01 15:19:01 +00:00
|
|
|
u32 retval = func(PARAM(0), PARAM(1), PARAM(2), PARAM(3), PARAM(4));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-08 13:24:51 +00:00
|
|
|
template<int func(const char *, int, u32, int, u32)> void WrapU_CIUIU() {
|
|
|
|
int retval = func(Memory::GetCharPointer(PARAM(0)), PARAM(1), PARAM(2), PARAM(3), PARAM(4));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|
|
|
|
|
2012-11-05 09:05:09 +00:00
|
|
|
template<u32 func(u32, u32, u32, u32, u32, u32)> void WrapU_UUUUUU() {
|
2012-11-01 15:19:01 +00:00
|
|
|
u32 retval = func(PARAM(0), PARAM(1), PARAM(2), PARAM(3), PARAM(4), PARAM(5));
|
|
|
|
RETURN(retval);
|
|
|
|
}
|