2014-12-20 18:24:08 +01:00
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
#include <cstring>
|
|
|
|
#include <cassert>
|
|
|
|
|
2014-12-27 23:18:10 +01:00
|
|
|
#include <new>
|
2014-12-20 18:24:08 +01:00
|
|
|
|
|
|
|
#include "rwbase.h"
|
|
|
|
#include "rwplugin.h"
|
2015-07-11 23:48:11 +02:00
|
|
|
#include "rwpipeline.h"
|
2014-12-23 15:59:14 +01:00
|
|
|
#include "rwobjects.h"
|
2014-12-20 18:24:08 +01:00
|
|
|
#include "rwps2.h"
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2015-01-25 22:27:03 +01:00
|
|
|
namespace rw {
|
|
|
|
namespace ps2 {
|
2014-12-20 18:24:08 +01:00
|
|
|
|
2014-12-20 20:18:41 +01:00
|
|
|
void*
|
2015-01-25 22:27:03 +01:00
|
|
|
destroyNativeData(void *object, int32, int32)
|
2014-12-20 20:18:41 +01:00
|
|
|
{
|
|
|
|
Geometry *geometry = (Geometry*)object;
|
|
|
|
assert(geometry->instData->platform == PLATFORM_PS2);
|
2014-12-30 17:39:39 +01:00
|
|
|
InstanceDataHeader *header = (InstanceDataHeader*)geometry->instData;
|
2014-12-20 20:18:41 +01:00
|
|
|
for(uint32 i = 0; i < header->numMeshes; i++)
|
|
|
|
delete[] header->instanceMeshes[i].data;
|
|
|
|
delete[] header->instanceMeshes;
|
|
|
|
delete header;
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
2014-12-20 18:24:08 +01:00
|
|
|
void
|
2015-01-25 22:27:03 +01:00
|
|
|
readNativeData(Stream *stream, int32, void *object, int32, int32)
|
2014-12-20 18:24:08 +01:00
|
|
|
{
|
|
|
|
Geometry *geometry = (Geometry*)object;
|
2015-01-25 22:27:03 +01:00
|
|
|
assert(findChunk(stream, ID_STRUCT, NULL, NULL));
|
2014-12-27 23:18:10 +01:00
|
|
|
assert(stream->readU32() == PLATFORM_PS2);
|
2014-12-30 17:39:39 +01:00
|
|
|
InstanceDataHeader *header = new InstanceDataHeader;
|
2014-12-20 18:24:08 +01:00
|
|
|
geometry->instData = header;
|
2014-12-23 11:29:37 +01:00
|
|
|
header->platform = PLATFORM_PS2;
|
2014-12-20 18:24:08 +01:00
|
|
|
assert(geometry->meshHeader != NULL);
|
|
|
|
header->numMeshes = geometry->meshHeader->numMeshes;
|
2014-12-30 17:39:39 +01:00
|
|
|
header->instanceMeshes = new InstanceData[header->numMeshes];
|
2014-12-20 18:24:08 +01:00
|
|
|
for(uint32 i = 0; i < header->numMeshes; i++){
|
2014-12-30 17:39:39 +01:00
|
|
|
InstanceData *instance = &header->instanceMeshes[i];
|
2014-12-20 18:24:08 +01:00
|
|
|
uint32 buf[2];
|
2014-12-27 23:18:10 +01:00
|
|
|
stream->read(buf, 8);
|
2014-12-20 18:24:08 +01:00
|
|
|
instance->dataSize = buf[0];
|
2014-12-30 19:30:13 +01:00
|
|
|
instance->arePointersFixed = buf[1];
|
2014-12-30 17:39:39 +01:00
|
|
|
// TODO: force alignment
|
2014-12-20 18:24:08 +01:00
|
|
|
instance->data = new uint8[instance->dataSize];
|
2014-12-30 19:30:13 +01:00
|
|
|
#ifdef RW_PS2
|
|
|
|
uint32 a = (uint32)instance->data;
|
2014-12-30 17:39:39 +01:00
|
|
|
assert(a % 0x10 == 0);
|
2014-12-30 19:30:13 +01:00
|
|
|
#endif
|
2014-12-27 23:18:10 +01:00
|
|
|
stream->read(instance->data, instance->dataSize);
|
2015-01-06 23:17:05 +01:00
|
|
|
// sizedebug(instance);
|
2014-12-20 18:24:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-01-25 22:27:03 +01:00
|
|
|
writeNativeData(Stream *stream, int32 len, void *object, int32, int32)
|
2014-12-20 18:24:08 +01:00
|
|
|
{
|
|
|
|
Geometry *geometry = (Geometry*)object;
|
2015-01-25 22:27:03 +01:00
|
|
|
writeChunkHeader(stream, ID_STRUCT, len-12);
|
2014-12-20 20:18:41 +01:00
|
|
|
assert(geometry->instData->platform == PLATFORM_PS2);
|
2014-12-27 23:18:10 +01:00
|
|
|
stream->writeU32(PLATFORM_PS2);
|
2014-12-20 18:24:08 +01:00
|
|
|
assert(geometry->instData != NULL);
|
2014-12-30 17:39:39 +01:00
|
|
|
InstanceDataHeader *header = (InstanceDataHeader*)geometry->instData;
|
2014-12-20 18:24:08 +01:00
|
|
|
for(uint32 i = 0; i < header->numMeshes; i++){
|
2014-12-30 17:39:39 +01:00
|
|
|
InstanceData *instance = &header->instanceMeshes[i];
|
2014-12-30 19:30:13 +01:00
|
|
|
if(instance->arePointersFixed == 2)
|
|
|
|
unfixDmaOffsets(instance);
|
2014-12-20 18:24:08 +01:00
|
|
|
uint32 buf[2];
|
|
|
|
buf[0] = instance->dataSize;
|
2014-12-30 19:30:13 +01:00
|
|
|
buf[1] = instance->arePointersFixed;
|
2014-12-27 23:18:10 +01:00
|
|
|
stream->write(buf, 8);
|
|
|
|
stream->write(instance->data, instance->dataSize);
|
2014-12-20 18:24:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int32
|
2015-01-25 22:27:03 +01:00
|
|
|
getSizeNativeData(void *object, int32, int32)
|
2014-12-20 18:24:08 +01:00
|
|
|
{
|
|
|
|
Geometry *geometry = (Geometry*)object;
|
|
|
|
int32 size = 16;
|
2014-12-20 20:18:41 +01:00
|
|
|
assert(geometry->instData->platform == PLATFORM_PS2);
|
2014-12-20 18:24:08 +01:00
|
|
|
assert(geometry->instData != NULL);
|
2014-12-30 17:39:39 +01:00
|
|
|
InstanceDataHeader *header = (InstanceDataHeader*)geometry->instData;
|
2014-12-20 18:24:08 +01:00
|
|
|
for(uint32 i = 0; i < header->numMeshes; i++){
|
2014-12-30 17:39:39 +01:00
|
|
|
InstanceData *instance = &header->instanceMeshes[i];
|
2014-12-20 18:24:08 +01:00
|
|
|
size += 8;
|
|
|
|
size += instance->dataSize;
|
|
|
|
}
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2014-12-30 17:39:39 +01:00
|
|
|
void
|
2015-01-25 22:27:03 +01:00
|
|
|
registerNativeDataPlugin(void)
|
2014-12-30 17:39:39 +01:00
|
|
|
{
|
|
|
|
Geometry::registerPlugin(0, ID_NATIVEDATA,
|
2015-01-25 22:27:03 +01:00
|
|
|
NULL, destroyNativeData, NULL);
|
2014-12-30 17:39:39 +01:00
|
|
|
Geometry::registerPluginStream(ID_NATIVEDATA,
|
2015-01-25 22:27:03 +01:00
|
|
|
readNativeData,
|
|
|
|
writeNativeData,
|
|
|
|
getSizeNativeData);
|
2014-12-30 17:39:39 +01:00
|
|
|
}
|
|
|
|
|
2014-12-30 19:30:13 +01:00
|
|
|
#ifdef RW_PS2
|
|
|
|
void
|
|
|
|
fixDmaOffsets(InstanceData *inst)
|
|
|
|
{
|
|
|
|
if(inst->arePointersFixed)
|
|
|
|
return;
|
|
|
|
|
|
|
|
uint32 base = (uint32)inst->data;
|
|
|
|
uint32 *tag = (uint32*)inst->data;
|
|
|
|
for(;;){
|
|
|
|
switch(tag[0]&0x70000000){
|
|
|
|
// DMAcnt
|
|
|
|
case 0x10000000:
|
|
|
|
// no need to fix
|
|
|
|
tag += (1+(tag[0]&0xFFFF))*4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// DMAref
|
|
|
|
case 0x30000000:
|
|
|
|
// fix address and jump to next
|
|
|
|
tag[1] = base + tag[1]*0x10;
|
|
|
|
tag += 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// DMAret
|
|
|
|
case 0x60000000:
|
|
|
|
// we're done
|
|
|
|
inst->arePointersFixed = 2;
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "error: unknown DMAtag %X\n", tag[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void
|
|
|
|
unfixDmaOffsets(InstanceData *inst)
|
|
|
|
{
|
2015-07-11 23:48:11 +02:00
|
|
|
(void)inst;
|
2014-12-30 19:30:13 +01:00
|
|
|
#ifdef RW_PS2
|
|
|
|
if(inst->arePointersFixed != 2)
|
|
|
|
return;
|
|
|
|
|
|
|
|
uint32 base = (uint32)inst->data;
|
|
|
|
uint32 *tag = (uint32*)inst->data;
|
|
|
|
for(;;){
|
|
|
|
switch(tag[0]&0x70000000){
|
|
|
|
// DMAcnt
|
|
|
|
case 0x10000000:
|
|
|
|
// no need to unfix
|
|
|
|
tag += (1+(tag[0]&0xFFFF))*4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// DMAref
|
|
|
|
case 0x30000000:
|
|
|
|
// unfix address and jump to next
|
|
|
|
tag[1] = (tag[1] - base)/0x10;
|
|
|
|
tag += 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// DMAret
|
|
|
|
case 0x60000000:
|
|
|
|
// we're done
|
|
|
|
inst->arePointersFixed = 0;
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
fprintf(stderr, "error: unknown DMAtag %X\n", tag[0]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2015-07-11 23:48:11 +02:00
|
|
|
// Pipeline
|
|
|
|
|
|
|
|
enum PS2Attribs {
|
|
|
|
AT_V2_32 = 0x64000000,
|
|
|
|
AT_V2_16 = 0x65000000,
|
|
|
|
AT_V2_8 = 0x66000000,
|
|
|
|
AT_V3_32 = 0x68000000,
|
|
|
|
AT_V3_16 = 0x69000000,
|
|
|
|
AT_V3_8 = 0x6A000000,
|
|
|
|
AT_V4_32 = 0x6C000000,
|
|
|
|
AT_V4_16 = 0x6D000000,
|
|
|
|
AT_V4_8 = 0x6E000000,
|
|
|
|
AT_UNSGN = 0x00004000,
|
|
|
|
|
|
|
|
AT_RW = 0x6
|
|
|
|
};
|
|
|
|
|
|
|
|
enum PS2AttibTypes {
|
|
|
|
AT_XYZ = 0,
|
|
|
|
AT_UV = 1,
|
|
|
|
AT_UV2 = 2,
|
|
|
|
AT_RGBA = 3,
|
|
|
|
AT_NORMAL = 4
|
|
|
|
};
|
|
|
|
|
|
|
|
PipeAttribute attribXYZ = {
|
|
|
|
"XYZ",
|
|
|
|
AT_V3_32
|
|
|
|
};
|
|
|
|
|
|
|
|
PipeAttribute attribUV = {
|
|
|
|
"UV",
|
|
|
|
AT_V2_32
|
|
|
|
};
|
|
|
|
|
|
|
|
PipeAttribute attribUV2 = {
|
|
|
|
"UV2",
|
|
|
|
AT_V4_32
|
|
|
|
};
|
|
|
|
|
|
|
|
PipeAttribute attribRGBA = {
|
|
|
|
"RGBA",
|
|
|
|
AT_V4_8 | AT_UNSGN
|
|
|
|
};
|
|
|
|
|
|
|
|
PipeAttribute attribNormal = {
|
|
|
|
"Normal",
|
|
|
|
AT_V3_8 // RW has V4_8 but uses V3_8, wtf?
|
|
|
|
};
|
|
|
|
|
|
|
|
PipeAttribute attribWeights = {
|
|
|
|
"Weights",
|
|
|
|
AT_V4_32 | AT_RW
|
|
|
|
};
|
|
|
|
|
|
|
|
Pipeline::Pipeline(uint32 platform)
|
|
|
|
: rw::Pipeline(platform) { }
|
|
|
|
|
|
|
|
void
|
|
|
|
Pipeline::setTriBufferSizes(uint32 inputStride,
|
|
|
|
uint32 stripCount, uint32 listCount)
|
|
|
|
{
|
|
|
|
this->inputStride = inputStride;
|
|
|
|
this->triListCount = listCount/12*12;
|
|
|
|
PipeAttribute *a;
|
|
|
|
for(uint i = 0; i < nelem(this->attribs); i++){
|
|
|
|
a = this->attribs[i];
|
|
|
|
if(a && a->attrib & AT_RW)
|
|
|
|
goto brokenout;
|
|
|
|
}
|
|
|
|
this->triStripCount = stripCount/4*4;
|
|
|
|
return;
|
|
|
|
brokenout:
|
|
|
|
this->triStripCount = (stripCount-2)/4*4+2;
|
|
|
|
}
|
|
|
|
|
|
|
|
Pipeline*
|
|
|
|
makeDefaultPipeline(void)
|
|
|
|
{
|
|
|
|
Pipeline *pipe = new Pipeline(PLATFORM_PS2);
|
|
|
|
pipe->attribs[AT_XYZ] = &attribXYZ;
|
|
|
|
pipe->attribs[AT_UV] = &attribUV;
|
|
|
|
pipe->attribs[AT_RGBA] = &attribRGBA;
|
|
|
|
pipe->attribs[AT_NORMAL] = &attribNormal;
|
|
|
|
uint32 vertCount = Pipeline::getVertCount(VU_Lights, 4, 3, 2);
|
|
|
|
pipe->setTriBufferSizes(4, vertCount, vertCount/3);
|
|
|
|
pipe->vifOffset = pipe->inputStride*vertCount;
|
|
|
|
return pipe;
|
|
|
|
}
|
|
|
|
|
|
|
|
Pipeline*
|
|
|
|
makeSkinPipeline(void)
|
|
|
|
{
|
|
|
|
Pipeline *pipe = new Pipeline(PLATFORM_PS2);
|
|
|
|
pipe->attribs[AT_XYZ] = &attribXYZ;
|
|
|
|
pipe->attribs[AT_UV] = &attribUV;
|
|
|
|
pipe->attribs[AT_RGBA] = &attribRGBA;
|
|
|
|
pipe->attribs[AT_NORMAL] = &attribNormal;
|
|
|
|
pipe->attribs[AT_NORMAL+1] = &attribWeights;
|
|
|
|
uint32 vertCount = Pipeline::getVertCount(VU_Lights-0x100, 5, 3, 2);
|
|
|
|
pipe->setTriBufferSizes(5, vertCount, vertCount/3);
|
|
|
|
pipe->vifOffset = pipe->inputStride*vertCount;
|
|
|
|
return pipe;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
dumpPipeline(rw::Pipeline *rwpipe)
|
|
|
|
{
|
|
|
|
if(rwpipe->platform != PLATFORM_PS2)
|
|
|
|
return;
|
|
|
|
Pipeline *pipe = (Pipeline*)rwpipe;
|
|
|
|
PipeAttribute *a;
|
|
|
|
for(uint i = 0; i < nelem(pipe->attribs); i++){
|
|
|
|
a = pipe->attribs[i];
|
|
|
|
if(a)
|
|
|
|
printf("%d %s: %x\n", i, a->name, a->attrib);
|
|
|
|
}
|
|
|
|
printf("stride: %x\n", pipe->inputStride);
|
|
|
|
printf("triSCount: %x\n", pipe->triStripCount);
|
|
|
|
printf("triLCount: %x\n", pipe->triListCount);
|
|
|
|
printf("vifOffset: %x\n", pipe->vifOffset);
|
|
|
|
}
|
|
|
|
|
2015-01-07 23:06:44 +01:00
|
|
|
// Skin
|
|
|
|
|
|
|
|
void
|
2015-01-25 22:27:03 +01:00
|
|
|
readNativeSkin(Stream *stream, int32, void *object, int32 offset)
|
2015-01-07 23:06:44 +01:00
|
|
|
{
|
|
|
|
uint8 header[4];
|
|
|
|
uint32 vers;
|
|
|
|
Geometry *geometry = (Geometry*)object;
|
2015-01-25 22:27:03 +01:00
|
|
|
assert(findChunk(stream, ID_STRUCT, NULL, &vers));
|
2015-01-07 23:06:44 +01:00
|
|
|
assert(stream->readU32() == PLATFORM_PS2);
|
|
|
|
stream->read(header, 4);
|
|
|
|
Skin *skin = new Skin;
|
|
|
|
*PLUGINOFFSET(Skin*, geometry, offset) = skin;
|
|
|
|
skin->numBones = header[0];
|
|
|
|
|
|
|
|
// both values unused in/before 33002, used in/after 34003
|
|
|
|
skin->numUsedBones = header[1];
|
|
|
|
skin->maxIndex = header[2];
|
|
|
|
|
|
|
|
bool oldFormat = skin->numUsedBones == 0;
|
|
|
|
int32 size = skin->numUsedBones + skin->numBones*64 + 15;
|
|
|
|
uint8 *data = new uint8[size];
|
|
|
|
skin->data = data;
|
|
|
|
skin->indices = NULL;
|
|
|
|
skin->weights = NULL;
|
|
|
|
|
|
|
|
skin->usedBones = NULL;
|
|
|
|
if(skin->numUsedBones){
|
|
|
|
skin->usedBones = data;
|
|
|
|
data += skin->numUsedBones;
|
|
|
|
stream->read(skin->data, skin->numUsedBones);
|
|
|
|
}
|
|
|
|
|
|
|
|
uintptr ptr = (uintptr)data + 15;
|
|
|
|
ptr &= ~0xF;
|
|
|
|
data = (uint8*)ptr;
|
|
|
|
skin->inverseMatrices = NULL;
|
|
|
|
if(skin->numBones){
|
|
|
|
skin->inverseMatrices = (float*)data;
|
|
|
|
stream->read(skin->inverseMatrices, skin->numBones*64);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!oldFormat)
|
|
|
|
// last 3 ints are probably the same as in generic format
|
|
|
|
// TODO: what are the other 4?
|
|
|
|
stream->seek(7*4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-01-25 22:27:03 +01:00
|
|
|
writeNativeSkin(Stream *stream, int32 len, void *object, int32 offset)
|
2015-01-07 23:06:44 +01:00
|
|
|
{
|
|
|
|
uint8 header[4];
|
|
|
|
|
2015-01-25 22:27:03 +01:00
|
|
|
writeChunkHeader(stream, ID_STRUCT, len-12);
|
2015-01-07 23:06:44 +01:00
|
|
|
stream->writeU32(PLATFORM_PS2);
|
|
|
|
Skin *skin = *PLUGINOFFSET(Skin*, object, offset);
|
2015-01-25 22:27:03 +01:00
|
|
|
bool oldFormat = version < 0x34003;
|
2015-01-07 23:06:44 +01:00
|
|
|
header[0] = skin->numBones;
|
|
|
|
header[1] = skin->numUsedBones;
|
|
|
|
header[2] = skin->maxIndex;
|
|
|
|
header[3] = 0;
|
|
|
|
if(oldFormat){
|
|
|
|
header[1] = 0;
|
|
|
|
header[2] = 0;
|
|
|
|
}
|
|
|
|
stream->write(header, 4);
|
|
|
|
|
|
|
|
if(!oldFormat)
|
|
|
|
stream->write(skin->usedBones, skin->numUsedBones);
|
|
|
|
stream->write(skin->inverseMatrices, skin->numBones*64);
|
|
|
|
if(!oldFormat){
|
|
|
|
uint32 buffer[7] = { 0, 0, 0, 0, 0, 0, 0 };
|
|
|
|
stream->write(buffer, 7*4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
int32
|
2015-01-25 22:27:03 +01:00
|
|
|
getSizeNativeSkin(void *object, int32 offset)
|
2015-01-07 23:06:44 +01:00
|
|
|
{
|
|
|
|
Skin *skin = *PLUGINOFFSET(Skin*, object, offset);
|
|
|
|
if(skin == NULL)
|
|
|
|
return -1;
|
|
|
|
int32 size = 12 + 4 + 4 + skin->numBones*64;
|
|
|
|
// not sure which version introduced the new format
|
2015-01-25 22:27:03 +01:00
|
|
|
if(version >= 0x34003)
|
2015-01-07 23:06:44 +01:00
|
|
|
size += skin->numUsedBones + 16 + 12;
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-01-06 23:17:05 +01:00
|
|
|
// ADC
|
|
|
|
|
|
|
|
static void*
|
|
|
|
createADC(void *object, int32 offset, int32)
|
|
|
|
{
|
|
|
|
ADCData *adc = PLUGINOFFSET(ADCData, object, offset);
|
|
|
|
adc->adcFormatted = 0;
|
|
|
|
return object;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void*
|
|
|
|
copyADC(void *dst, void *src, int32 offset, int32)
|
|
|
|
{
|
|
|
|
ADCData *dstadc = PLUGINOFFSET(ADCData, dst, offset);
|
|
|
|
ADCData *srcadc = PLUGINOFFSET(ADCData, src, offset);
|
|
|
|
dstadc->adcFormatted = srcadc->adcFormatted;
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
2015-01-07 23:06:44 +01:00
|
|
|
// TODO: look at PC SA rccam.dff bloodrb.dff
|
|
|
|
|
2015-01-06 23:17:05 +01:00
|
|
|
static void
|
|
|
|
readADC(Stream *stream, int32, void *object, int32 offset, int32)
|
|
|
|
{
|
|
|
|
ADCData *adc = PLUGINOFFSET(ADCData, object, offset);
|
|
|
|
stream->seek(12);
|
|
|
|
uint32 x = stream->readU32();
|
|
|
|
assert(x == 0);
|
|
|
|
adc->adcFormatted = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
writeADC(Stream *stream, int32, void *, int32, int32)
|
|
|
|
{
|
2015-01-25 22:27:03 +01:00
|
|
|
writeChunkHeader(stream, ID_ADC, 4);
|
2015-01-06 23:17:05 +01:00
|
|
|
stream->writeI32(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int32
|
|
|
|
getSizeADC(void *object, int32 offset, int32)
|
|
|
|
{
|
|
|
|
ADCData *adc = PLUGINOFFSET(ADCData, object, offset);
|
|
|
|
return adc->adcFormatted ? 16 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-01-25 22:27:03 +01:00
|
|
|
registerADCPlugin(void)
|
2015-01-06 23:17:05 +01:00
|
|
|
{
|
|
|
|
Geometry::registerPlugin(sizeof(ADCData), ID_ADC,
|
|
|
|
createADC, NULL, copyADC);
|
|
|
|
Geometry::registerPluginStream(ID_ADC,
|
2015-01-25 22:27:03 +01:00
|
|
|
readADC,
|
|
|
|
writeADC,
|
|
|
|
getSizeADC);
|
2015-01-06 23:17:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// misc stuff
|
|
|
|
|
|
|
|
/* Function to specifically walk geometry chains */
|
|
|
|
void
|
|
|
|
walkDMA(InstanceData *inst, void (*f)(uint32 *data, int32 size))
|
|
|
|
{
|
|
|
|
if(inst->arePointersFixed == 2)
|
|
|
|
return;
|
|
|
|
uint32 *base = (uint32*)inst->data;
|
|
|
|
uint32 *tag = (uint32*)inst->data;
|
|
|
|
for(;;){
|
|
|
|
switch(tag[0]&0x70000000){
|
|
|
|
// DMAcnt
|
|
|
|
case 0x10000000:
|
|
|
|
f(tag+2, 2+(tag[0]&0xFFFF)*4);
|
|
|
|
tag += (1+(tag[0]&0xFFFF))*4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// DMAref
|
|
|
|
case 0x3000000:
|
|
|
|
f(base + tag[1]*4, (tag[0]&0xFFFF)*4);
|
|
|
|
tag += 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// DMAret
|
|
|
|
case 0x60000000:
|
|
|
|
f(tag+2, 2+(tag[0]&0xFFFF)*4);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
sizedebug(InstanceData *inst)
|
|
|
|
{
|
|
|
|
if(inst->arePointersFixed == 2)
|
|
|
|
return;
|
|
|
|
uint32 *base = (uint32*)inst->data;
|
|
|
|
uint32 *tag = (uint32*)inst->data;
|
|
|
|
uint32 *last = NULL;
|
|
|
|
for(;;){
|
|
|
|
switch(tag[0]&0x70000000){
|
|
|
|
// DMAcnt
|
|
|
|
case 0x10000000:
|
|
|
|
tag += (1+(tag[0]&0xFFFF))*4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// DMAref
|
|
|
|
case 0x30000000:
|
|
|
|
last = base + tag[1]*4 + (tag[0]&0xFFFF)*4;
|
|
|
|
tag += 4;
|
|
|
|
break;
|
|
|
|
|
|
|
|
// DMAret
|
|
|
|
case 0x60000000:
|
|
|
|
tag += (1+(tag[0]&0xFFFF))*4;
|
|
|
|
uint32 diff;
|
|
|
|
if(!last)
|
|
|
|
diff = (uint8*)tag - (uint8*)base;
|
|
|
|
else
|
|
|
|
diff = (uint8*)last - (uint8*)base;
|
|
|
|
printf("%x %x %x\n", inst->dataSize-diff, diff, inst->dataSize);
|
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
printf("unkown DMAtag: %X %X\n", tag[0], tag[1]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-30 17:39:39 +01:00
|
|
|
}
|
2014-12-20 18:24:08 +01:00
|
|
|
}
|