mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 06:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "loadacti.hpp"
 | 
						|
 | 
						|
#include "esmreader.hpp"
 | 
						|
#include "esmwriter.hpp"
 | 
						|
 | 
						|
namespace ESM
 | 
						|
{
 | 
						|
    void Activator::load(ESMReader& esm, bool& isDeleted)
 | 
						|
    {
 | 
						|
        isDeleted = false;
 | 
						|
        mRecordFlags = esm.getRecordFlags();
 | 
						|
 | 
						|
        bool hasName = false;
 | 
						|
        while (esm.hasMoreSubs())
 | 
						|
        {
 | 
						|
            esm.getSubName();
 | 
						|
            switch (esm.retSubName().toInt())
 | 
						|
            {
 | 
						|
                case SREC_NAME:
 | 
						|
                    mId = esm.getHString();
 | 
						|
                    hasName = true;
 | 
						|
                    break;
 | 
						|
                case fourCC("MODL"):
 | 
						|
                    mModel = esm.getHString();
 | 
						|
                    break;
 | 
						|
                case fourCC("FNAM"):
 | 
						|
                    mName = esm.getHString();
 | 
						|
                    break;
 | 
						|
                case fourCC("SCRI"):
 | 
						|
                    mScript = esm.getHString();
 | 
						|
                    break;
 | 
						|
                case SREC_DELE:
 | 
						|
                    esm.skipHSub();
 | 
						|
                    isDeleted = true;
 | 
						|
                    break;
 | 
						|
                default:
 | 
						|
                    esm.fail("Unknown subrecord");
 | 
						|
                    break;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        if (!hasName)
 | 
						|
            esm.fail("Missing NAME subrecord");
 | 
						|
    }
 | 
						|
    void Activator::save(ESMWriter& esm, bool isDeleted) const
 | 
						|
    {
 | 
						|
        esm.writeHNCString("NAME", mId);
 | 
						|
 | 
						|
        if (isDeleted)
 | 
						|
        {
 | 
						|
            esm.writeHNString("DELE", "", 3);
 | 
						|
            return;
 | 
						|
        }
 | 
						|
 | 
						|
        esm.writeHNCString("MODL", mModel);
 | 
						|
        esm.writeHNOCString("FNAM", mName);
 | 
						|
        esm.writeHNOCString("SCRI", mScript);
 | 
						|
    }
 | 
						|
 | 
						|
    void Activator::blank()
 | 
						|
    {
 | 
						|
        mRecordFlags = 0;
 | 
						|
        mName.clear();
 | 
						|
        mScript.clear();
 | 
						|
        mModel.clear();
 | 
						|
    }
 | 
						|
}
 |