mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-26 11:04:15 +01:00
added NodeName plugin
This commit is contained in:
parent
01babd43b1
commit
83cc43eeff
@ -2,10 +2,72 @@
|
||||
#include "patcher.h"
|
||||
#include "NodeName.h"
|
||||
|
||||
int &gPluginOffset = *(int*)0x64C610;
|
||||
static int32 &gPluginOffset = *(int32*)0x64C610;
|
||||
|
||||
enum
|
||||
{
|
||||
ID_NODENAME = MAKECHUNKID(rwVENDORID_ROCKSTAR, 0xFE),
|
||||
};
|
||||
|
||||
#define NODENAMEEXT(o) (RWPLUGINOFFSET(char, o, gPluginOffset))
|
||||
|
||||
void*
|
||||
NodeNameConstructor(void *object, RwInt32 offsetInObject, RwInt32 sizeInObject)
|
||||
{
|
||||
if(gPluginOffset > 0)
|
||||
NODENAMEEXT(object)[0] = '\0';
|
||||
return object;
|
||||
}
|
||||
|
||||
void*
|
||||
NodeNameDestructor(void *object, RwInt32 offsetInObject, RwInt32 sizeInObject)
|
||||
{
|
||||
return object;
|
||||
}
|
||||
|
||||
void*
|
||||
NodeNameCopy(void *dstObject, const void *srcObject, RwInt32 offsetInObject, RwInt32 sizeInObject)
|
||||
{
|
||||
strncpy(NODENAMEEXT(dstObject), NODENAMEEXT(srcObject), 23);
|
||||
return nil;
|
||||
}
|
||||
|
||||
RwStream*
|
||||
NodeNameStreamRead(RwStream *stream, RwInt32 binaryLength, void *object, RwInt32 offsetInObject, RwInt32 sizeInObject)
|
||||
{
|
||||
RwStreamRead(stream, NODENAMEEXT(object), binaryLength);
|
||||
NODENAMEEXT(object)[binaryLength] = '\0';
|
||||
return stream;
|
||||
}
|
||||
|
||||
RwStream*
|
||||
NodeNameStreamWrite(RwStream *stream, RwInt32 binaryLength, const void *object, RwInt32 offsetInObject, RwInt32 sizeInObject)
|
||||
{
|
||||
RwStreamWrite(stream, NODENAMEEXT(object), binaryLength);
|
||||
return stream;
|
||||
}
|
||||
|
||||
RwInt32
|
||||
NodeNameStreamGetSize(const void *object, RwInt32 offsetInObject, RwInt32 sizeInObject)
|
||||
{
|
||||
// game checks for null pointer on node name extension but that really happen
|
||||
return rwstrlen(NODENAMEEXT(object));
|
||||
}
|
||||
|
||||
bool
|
||||
NodeNamePluginAttach(void)
|
||||
{
|
||||
gPluginOffset = RwFrameRegisterPlugin(24, ID_NODENAME,
|
||||
NodeNameConstructor,
|
||||
NodeNameDestructor,
|
||||
NodeNameCopy);
|
||||
RwFrameRegisterPluginStream(ID_NODENAME,
|
||||
NodeNameStreamRead,
|
||||
NodeNameStreamWrite,
|
||||
NodeNameStreamGetSize);
|
||||
return gPluginOffset != -1;
|
||||
}
|
||||
|
||||
char*
|
||||
GetFrameNodeName(RwFrame *frame)
|
||||
{
|
||||
|
@ -1,3 +1,4 @@
|
||||
#pragma once
|
||||
|
||||
bool NodeNamePluginAttach(void);
|
||||
char *GetFrameNodeName(RwFrame *frame);
|
||||
|
@ -33,6 +33,7 @@
|
||||
#include "Garages.h"
|
||||
#include "MusicManager.h"
|
||||
#include "VisibilityPlugins.h"
|
||||
#include "NodeName.h"
|
||||
#include "DMAudio.h"
|
||||
#include "CutsceneMgr.h"
|
||||
#include "Lights.h"
|
||||
@ -55,9 +56,6 @@
|
||||
|
||||
WRAPPER void CameraSize(RwCamera *camera, void *rect, float viewWindow, float aspectRatio) { EAXJMP(0x527170); }
|
||||
|
||||
//WRAPPER RwBool RpAnimBlendPluginAttach() { EAXJMP(0x4052D0); }
|
||||
WRAPPER RwBool NodeNamePluginAttach() { EAXJMP(0x527100); }
|
||||
|
||||
|
||||
bool &b_FoundRecentSavedGameWantToLoad = *(bool*)0x95CDA8;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user