mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-06 01:15:32 +00:00
Merge branch 'esm_opti' into 'master'
Teensy optimisation for esmtool See merge request OpenMW/openmw!826
This commit is contained in:
commit
08e1a8e0fb
5 changed files with 10 additions and 16 deletions
|
@ -2,6 +2,7 @@
|
|||
#include <vector>
|
||||
#include <deque>
|
||||
#include <list>
|
||||
#include <unordered_set>
|
||||
#include <map>
|
||||
#include <set>
|
||||
#include <fstream>
|
||||
|
@ -322,7 +323,7 @@ int load(Arguments& info)
|
|||
std::string filename = info.filename;
|
||||
std::cout << "Loading file: " << filename << std::endl;
|
||||
|
||||
std::list<uint32_t> skipped;
|
||||
std::unordered_set<uint32_t> skipped;
|
||||
|
||||
try {
|
||||
|
||||
|
@ -364,17 +365,17 @@ int load(Arguments& info)
|
|||
// Loop through all records
|
||||
while(esm.hasMoreRecs())
|
||||
{
|
||||
ESM::NAME n = esm.getRecName();
|
||||
const ESM::NAME n = esm.getRecName();
|
||||
uint32_t flags;
|
||||
esm.getRecHeader(flags);
|
||||
|
||||
EsmTool::RecordBase *record = EsmTool::RecordBase::create(n);
|
||||
if (record == nullptr)
|
||||
{
|
||||
if (std::find(skipped.begin(), skipped.end(), n.intval) == skipped.end())
|
||||
if (skipped.count(n.intval) == 0)
|
||||
{
|
||||
std::cout << "Skipping " << n.toString() << " records." << std::endl;
|
||||
skipped.push_back(n.intval);
|
||||
skipped.emplace(n.intval);
|
||||
}
|
||||
|
||||
esm.skipRecord();
|
||||
|
|
|
@ -172,7 +172,7 @@ void printTransport(const std::vector<ESM::Transport::Dest>& transport)
|
|||
namespace EsmTool {
|
||||
|
||||
RecordBase *
|
||||
RecordBase::create(ESM::NAME type)
|
||||
RecordBase::create(const ESM::NAME type)
|
||||
{
|
||||
RecordBase *record = nullptr;
|
||||
|
||||
|
|
|
@ -110,15 +110,8 @@ struct FIXED_STRING<4> : public FIXED_STRING_BASE<FIXED_STRING, 4>
|
|||
void assign(const std::string& value)
|
||||
{
|
||||
intval = 0;
|
||||
size_t length = value.size();
|
||||
if (length == 0) return;
|
||||
data[0] = value[0];
|
||||
if (length == 1) return;
|
||||
data[1] = value[1];
|
||||
if (length == 2) return;
|
||||
data[2] = value[2];
|
||||
if (length == 3) return;
|
||||
data[3] = value[3];
|
||||
std::memcpy(data, value.data(), (value.size() < 4)? value.size(): 4);
|
||||
|
||||
}
|
||||
|
||||
char const* ro_data() const { return data; }
|
||||
|
|
|
@ -354,7 +354,7 @@ void ESMReader::setEncoder(ToUTF8::Utf8Encoder* encoder)
|
|||
mEncoder = encoder;
|
||||
}
|
||||
|
||||
size_t ESMReader::getFileOffset()
|
||||
size_t ESMReader::getFileOffset() const
|
||||
{
|
||||
return mEsm->tellg();
|
||||
}
|
||||
|
|
|
@ -73,7 +73,7 @@ public:
|
|||
void openRaw(const std::string &filename);
|
||||
|
||||
/// Get the current position in the file. Make sure that the file has been opened!
|
||||
size_t getFileOffset();
|
||||
size_t getFileOffset() const;
|
||||
|
||||
// This is a quick hack for multiple esm/esp files. Each plugin introduces its own
|
||||
// terrain palette, but ESMReader does not pass a reference to the correct plugin
|
||||
|
|
Loading…
Reference in a new issue