1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-22 18:32:44 +01:00

Refactor Script loading into engine

This commit is contained in:
Daniel Evans 2014-07-21 00:34:28 +01:00
parent 5b69e4c40f
commit e0a0c4882f
6 changed files with 255 additions and 186 deletions

View File

@ -0,0 +1,79 @@
#pragma once
#ifndef _SCMFILE_HPP_
#define _SCMFILE_HPP_
#include <cstdint>
#include <vector>
#include <string>
typedef uint16_t SCMOpcode;
typedef char SCMByte;
/**
* @brief Handles in-memory SCM file data including section offsets.
*/
class SCMFile {
public:
typedef std::uint32_t uint32;
typedef std::uint16_t u16;
typedef std::uint8_t u8;
enum SCMTarget {
NoTarget = 0,
GTAIII = 0xC6,
GTAVC = 0x6D,
GTASA = 0x73
};
SCMFile()
: _data(nullptr), _target(NoTarget), mainOffset(0),
mainSize(0), missionLargestSize(0)
{}
~SCMFile()
{
delete[] _data;
}
void loadFile(char* data, unsigned int size);
SCMByte* data() const { return _data; }
template<class T> T read(unsigned int offset) const
{
return *(T*)(_data+offset);
}
uint32 getMainSize() const { return mainSize; }
uint32 getLargestMissionSize() const { return missionLargestSize; }
const std::vector<std::string>& getModels() const { return models; }
const std::vector<unsigned int>& getMissionOffsets() const { return missionOffsets; }
std::uint32_t getGlobalSection() const { return globalSectionOffset; }
std::uint32_t getModelSection() const { return modelSectionOffset; }
std::uint32_t getMissionSection() const { return missionSectionOffset; }
std::uint32_t getCodeSection() const { return codeSectionOffset; }
private:
SCMByte* _data;
SCMTarget _target;
std::vector<std::string> models;
uint32 mainOffset;
std::vector<unsigned int> missionOffsets;
uint32 mainSize;
uint32 missionLargestSize;
uint32 globalSectionOffset;
uint32 modelSectionOffset;
uint32 missionSectionOffset;
uint32 codeSectionOffset;
};
#endif

View File

@ -0,0 +1,87 @@
#pragma once
#ifndef _SCRIPTMACHINE_HPP_
#define _SCRIPTMACHINE_HPP_
#include <string>
#include <map>
#define SCM_CONDITIONAL_MASK 0xF000
struct SCMException
{
virtual ~SCMException() { }
virtual std::string what() const = 0;
};
struct IllegalInstruction : SCMException
{
SCMOpcode opcode;
unsigned int offset;
IllegalInstruction(SCMOpcode opcode, unsigned int offset)
: opcode(opcode), offset(offset) { }
std::string what() const {
std::stringstream ss;
ss << "Illegal Instruction " <<
std::setfill('0') << std::setw(4) << std::hex << opcode <<
" encountered at offset " <<
std::setfill('0') << std::setw(4) << std::hex << offset;
return ss.str();
}
};
struct UnknownType : SCMException
{
SCMByte type;
unsigned int offset;
UnknownType(SCMByte type, unsigned int offset)
: type(type), offset(offset) {}
std::string what() const {
std::stringstream ss;
ss << "Unkown data type " <<
std::setfill('0') << std::hex << static_cast<unsigned int>(type) <<
" encountered at offset " <<
std::setfill('0') << std::hex << offset;
return ss.str();
}
};
struct SCMMicrocode {
std::string name;
int parameters;
};
typedef std::map<SCMOpcode, SCMMicrocode> SCMMicrocodeTable;
SCMMicrocodeTable knownOps;
enum SCMType {
EndOfArgList = 0x00,
TInt32 = 0x01,
TGlobal = 0x02,
TLocal = 0x03,
TInt8 = 0x04,
TInt16 = 0x05,
TFloat16 = 0x06,
TString = 0x09,
};
struct SCMTypeInfo {
uint8_t size;
};
typedef std::map<SCMType, SCMTypeInfo> SCMTypeInfoTable;
SCMTypeInfoTable typeData = {
{TInt8, {1}},
{TInt16, {2}},
{TInt32, {4}},
{TGlobal, {2}},
{TLocal, {2}},
{TFloat16,{2}},
{EndOfArgList, {0}},
};
#endif

View File

@ -0,0 +1,43 @@
#include <script/SCMFile.hpp>
void SCMFile::loadFile(char *data, unsigned int size)
{
_data = new SCMByte[size];
std::copy(data, data+size, _data);
// Bytes required to hop over a jump opcode.
const unsigned int jumpOpSize = 2u+1u+4u;
const unsigned int jumpParamSize = 2u+1u;
_target = static_cast<SCMTarget>(_data[jumpOpSize]);
globalSectionOffset = jumpOpSize+1u;
modelSectionOffset = read<uint32>(jumpParamSize) + jumpOpSize + 1u;
missionSectionOffset = read<uint32>(modelSectionOffset-jumpOpSize-1u+jumpParamSize) + jumpOpSize + 1u;
codeSectionOffset = read<uint32>(missionSectionOffset-jumpOpSize-1u+jumpParamSize);
unsigned int model_count = read<uint32>(modelSectionOffset);
models.reserve(model_count);
int i = modelSectionOffset + sizeof(uint32);
for(unsigned int m = 0; m < model_count; ++m) {
char model_name[24];
for(size_t c = 0; c < 24; ++c) {
model_name[c] = read<char>(i++);
}
models.push_back(model_name);
}
i = missionSectionOffset;
mainSize = read<uint32>(i);
i += sizeof(uint32);
missionLargestSize = read<uint32>(i);
i += sizeof(uint32);
unsigned int missionCount = read<uint32>(i);
missionOffsets.reserve(missionCount);
i += sizeof(uint32);
for(unsigned int m = 0; m < missionCount; ++m) {
missionOffsets.push_back(read<uint32>(i));
i += sizeof(uint32);
}
}

View File

View File

@ -3,4 +3,6 @@ add_executable(${SCRIPTTOOL} main.cpp)
include_directories(${CMAKE_SOURCE_DIR}/rwengine/include)
target_link_libraries(${SCRIPTTOOL} rwengine)
install(TARGETS ${SCRIPTTOOL} RUNTIME DESTINATION bin)

View File

@ -1,154 +1,49 @@
#include <iostream>
#include <sstream>
#include <cstdint>
#include <fstream>
#include <iomanip>
#include <map>
#include <script/SCMFile.hpp>
#include <script/ScriptMachine.hpp>
#define FIELD_DESC_WIDTH 30
#define FIELD_PARAM_WIDTH 8
#define CONDITIONAL_MASK 0xF000
void printUsage();
typedef uint16_t SCMOpcode;
typedef char SCMByte;
template<class T> T readFromSCM(SCMByte* scm, unsigned int offset)
void dumpModels(SCMFile* file)
{
return *((T*)(scm+offset));
}
SCMOpcode readOpcode(SCMByte* scm, unsigned int offset)
{
return readFromSCM<SCMOpcode>(scm, offset);
}
struct SCMException
{
virtual ~SCMException() { }
virtual std::string what() const = 0;
};
struct IllegalInstruction : SCMException
{
SCMOpcode opcode;
unsigned int offset;
IllegalInstruction(SCMOpcode opcode, unsigned int offset)
: opcode(opcode), offset(offset) { }
std::string what() const {
std::stringstream ss;
ss << "Illegal Instruction " <<
std::setfill('0') << std::setw(4) << std::hex << opcode <<
" encountered at offset " <<
std::setfill('0') << std::setw(4) << std::hex << offset;
return ss.str();
}
};
struct UnknownType : SCMException
{
SCMByte type;
unsigned int offset;
UnknownType(SCMByte type, unsigned int offset)
: type(type), offset(offset) {}
std::string what() const {
std::stringstream ss;
ss << "Unkown data type " <<
std::setfill('0') << std::hex << static_cast<unsigned int>(type) <<
" encountered at offset " <<
std::setfill('0') << std::hex << offset;
return ss.str();
}
};
struct SCMMicrocode {
std::string name;
int parameters;
};
typedef std::map<SCMOpcode, SCMMicrocode> SCMMicrocodeTable;
SCMMicrocodeTable knownOps;
enum SCMType {
EndOfArgList = 0x00,
TInt32 = 0x01,
TGlobal = 0x02,
TLocal = 0x03,
TInt8 = 0x04,
TInt16 = 0x05,
TFloat16 = 0x06,
TString = 0x09,
};
struct SCMTypeInfo {
uint8_t size;
};
typedef std::map<SCMType, SCMTypeInfo> SCMTypeInfoTable;
SCMTypeInfoTable typeData = {
{TInt8, {1}},
{TInt16, {2}},
{TInt32, {4}},
{TInt8, {1}},
{TGlobal, {2}},
{TLocal, {2}},
{TFloat16,{2}},
{EndOfArgList, {0}},
};
void dumpModels(SCMByte* scm, unsigned int offset, unsigned int size)
{
int i = offset;
unsigned int model_count = readFromSCM<uint32_t>(scm, i);
std::cout << "model_count = " << std::dec << model_count << std::endl;
i += sizeof(uint32_t);
for(unsigned int m = 0; m < model_count; ++m) {
char model_name[24];
for(size_t c = 0; c < 24; ++c) {
model_name[c] = readFromSCM<char>(scm, i++);
}
std::cout << std::dec << m << ": " << model_name << std::endl;
std::cout << "model count: " << std::dec << file->getModels().size() << std::endl;
int i = 0;
for( auto& m : file->getModels() ) {
std::cout << std::dec << (i++) << ": " << m << std::endl;
}
}
void dumpCodeSizes(SCMByte* scm, unsigned int offset, unsigned int size)
void dumpCodeSizes(SCMFile* file)
{
int i = offset;
std::cout << "main size: " << std::hex <<
file->getMainSize() << std::endl;
unsigned int size_main = readFromSCM<uint32_t>(scm, i);
std::cout << "size_main = " << std::dec << size_main << std::endl;
i += sizeof(uint32_t);
std::cout << "largest mission size: " << std::hex <<
file->getLargestMissionSize() << std::endl;
unsigned int largest_mission = readFromSCM<uint32_t>(scm, i);
std::cout << "largest _mission = " << std::dec << largest_mission << std::endl;
i += sizeof(uint32_t);
std::cout << "mission count: " << std::dec <<
file->getMissionOffsets().size() << std::endl;
unsigned int mission_count = readFromSCM<uint32_t>(scm, i);
std::cout << "mission_count = " << std::dec << mission_count << std::endl;
i += sizeof(uint32_t);
for(unsigned int m = 0; m < mission_count; ++m) {
unsigned int mission_address = readFromSCM<uint32_t>(scm, i);
std::cout << std::dec << m << ": " << std::hex << mission_address << std::endl;
i += sizeof(uint32_t);
int i = 0;
for(auto& m : file->getMissionOffsets()) {
std::cout << std::dec << (i++) << ": " << std::hex << m << std::endl;
}
}
void dumpOpcodes(SCMByte* scm, unsigned int offset, unsigned int size)
void dumpOpcodes(SCMFile* scm, unsigned int offset, unsigned int size)
{
std::cout << "Offs Opcd " << std::setw(FIELD_DESC_WIDTH) << std::left
<< "Description" << " Parameters" << std::endl;
<< "Description" << "Parameters" << std::endl;
for( unsigned int i = offset; i < offset+size; ) {
SCMOpcode op = readOpcode(scm, i) & ~CONDITIONAL_MASK;
SCMOpcode op = scm->read<SCMOpcode>(i) & ~SCM_CONDITIONAL_MASK;
auto opit = knownOps.find( op );
@ -167,7 +62,7 @@ void dumpOpcodes(SCMByte* scm, unsigned int offset, unsigned int size)
bool hasMoreArgs = opit->second.parameters < 0;
for( int p = 0; p < std::abs(opit->second.parameters) || hasMoreArgs; ++p ) {
SCMByte datatype = readFromSCM<SCMByte>(scm, i);
SCMByte datatype = scm->read<SCMByte>(i);
auto typeit = typeData.find(static_cast<SCMType>(datatype));
if( typeit == typeData.end()) {
@ -188,20 +83,20 @@ void dumpOpcodes(SCMByte* scm, unsigned int offset, unsigned int size)
switch( datatype ) {
case TInt32:
std::cout << std::dec << readFromSCM<int32_t>(scm, i);
std::cout << std::dec << scm->read<int32_t>(i);
break;
case TInt16:
std::cout << std::dec << readFromSCM<int16_t>(scm, i);
std::cout << std::dec << scm->read<int16_t>(i);
break;
case TGlobal:
case TLocal:
std::cout << std::hex << readFromSCM<int16_t>(scm, i);
std::cout << std::hex << scm->read<int16_t>(i);
break;
case TInt8:
std::cout << std::dec << static_cast<int>(readFromSCM<int8_t>(scm, i));
std::cout << std::dec << static_cast<int>(scm->read<int8_t>(i));
break;
case TFloat16:
std::cout << (float)readFromSCM<uint16_t>(scm, i) / 16.f;
std::cout << (float)scm->read<uint16_t>(i) / 16.f;
break;
case EndOfArgList:
hasMoreArgs = false;
@ -209,7 +104,7 @@ void dumpOpcodes(SCMByte* scm, unsigned int offset, unsigned int size)
case TString: {
char strbuff[8];
for(size_t c = 0; c < 8; ++c) {
strbuff[c] = readFromSCM<char>(scm, i++);
strbuff[c] = scm->read<char>(i++);
}
std::cout << strbuff << " ";
}
@ -280,68 +175,31 @@ void readSCM(const std::string& scmname)
int size = scmfile.tellg();
scmfile.seekg(0);
SCMByte* scm = new SCMByte[size];
scmfile.read(scm, size);
int section_globals = 10;
int section_models = 0;
int section_sizes = 0;
int section_main = 0;
SCMByte* byff = new SCMByte[size];
scmfile.read(byff, size);
SCMFile scm;
scm.loadFile(byff, size);
delete byff;
try {
int i = 0;
std::cout << "section globals: " << std::hex <<
scm.getGlobalSection() << std::endl;
std::cout << "section models: " << std::hex <<
scm.getModelSection() << std::endl;
std::cout << "section sizes: " << std::hex <<
scm.getMissionSection() << std::endl;
std::cout << "section main: " << std::hex <<
scm.getCodeSection() << std::endl;
SCMOpcode op;
SCMByte param;
dumpModels(&scm);
op = readOpcode(scm, i);
i += sizeof(SCMOpcode);
dumpCodeSizes(&scm);
param = readFromSCM<SCMByte>(scm, i);
i += sizeof(SCMByte);
section_models = readFromSCM<int32_t>(scm, i);
i = section_models;
op = readOpcode(scm, i);
i += sizeof(SCMOpcode);
param = readFromSCM<SCMByte>(scm, i);
i += sizeof(SCMByte);
section_sizes = readFromSCM<int32_t>(scm, i);
i = section_sizes;
op = readOpcode(scm, i);
i += sizeof(SCMOpcode);
param = readFromSCM<SCMByte>(scm, i);
i += sizeof(SCMByte);
section_main = readFromSCM<int32_t>(scm, i);
i = section_main;
std::cout << "section_globals = " << std::hex << section_globals << std::endl;
std::cout << "section_models = " << std::hex << section_models << std::endl;
std::cout << "section_sizes = " << std::hex << section_sizes << std::endl;
std::cout << "section_main = " << std::hex << section_main << std::endl;
dumpModels(scm, section_models + 2 + 1 + 4 + 1,
section_sizes - section_models);
dumpCodeSizes(scm, section_sizes + 2 + 1 + 4 + 1,
section_main - section_sizes);
dumpOpcodes(scm, i, size);
dumpOpcodes(&scm, scm.getCodeSection(), size);
}
catch (SCMException& ex) {
std::cerr << ex.what() << std::endl;
}
delete scm;
}
int main(int argc, char** argv)