mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 11:56:39 +00:00 
			
		
		
		
	Nice side effects: - Subrecord name comparison now uses magic number instead of string (faster) - Improves the error message for unknown subrecords: will print the record in question instead of failing to read the next record with a strange error
		
			
				
	
	
		
			56 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "loadbody.hpp"
 | 
						|
 | 
						|
#include "esmreader.hpp"
 | 
						|
#include "esmwriter.hpp"
 | 
						|
#include "defs.hpp"
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
    unsigned int BodyPart::sRecordId = REC_BODY;
 | 
						|
 | 
						|
 | 
						|
void BodyPart::load(ESMReader &esm)
 | 
						|
{
 | 
						|
    bool hasData = false;
 | 
						|
    while (esm.hasMoreSubs())
 | 
						|
    {
 | 
						|
        esm.getSubName();
 | 
						|
        uint32_t name = esm.retSubName().val;
 | 
						|
        switch (name)
 | 
						|
        {
 | 
						|
            case ESM::FourCC<'M','O','D','L'>::value:
 | 
						|
                mModel = esm.getHString();
 | 
						|
                break;
 | 
						|
            case ESM::FourCC<'F','N','A','M'>::value:
 | 
						|
                mRace = esm.getHString();
 | 
						|
                break;
 | 
						|
            case ESM::FourCC<'B','Y','D','T'>::value:
 | 
						|
                esm.getHT(mData, 4);
 | 
						|
                hasData = true;
 | 
						|
                break;
 | 
						|
            default:
 | 
						|
                esm.fail("Unknown subrecord");
 | 
						|
        }
 | 
						|
    }
 | 
						|
 | 
						|
    if (!hasData)
 | 
						|
        esm.fail("Missing BYDT subrecord");
 | 
						|
}
 | 
						|
void BodyPart::save(ESMWriter &esm) const
 | 
						|
{
 | 
						|
    esm.writeHNCString("MODL", mModel);
 | 
						|
    esm.writeHNOCString("FNAM", mRace);
 | 
						|
    esm.writeHNT("BYDT", mData, 4);
 | 
						|
}
 | 
						|
 | 
						|
    void BodyPart::blank()
 | 
						|
    {
 | 
						|
        mData.mPart = 0;
 | 
						|
        mData.mVampire = 0;
 | 
						|
        mData.mFlags = 0;
 | 
						|
        mData.mType = 0;
 | 
						|
 | 
						|
        mModel.clear();
 | 
						|
        mRace.clear();
 | 
						|
    }
 | 
						|
}
 |