mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
136 lines
3.8 KiB
C++
136 lines
3.8 KiB
C++
#ifndef CSM_WOLRD_IDCOLLECTION_H
|
|
#define CSM_WOLRD_IDCOLLECTION_H
|
|
|
|
#include <components/esm/esmreader.hpp>
|
|
|
|
#include "collection.hpp"
|
|
|
|
namespace CSMWorld
|
|
{
|
|
/// \brief Single type collection of top level records
|
|
template<typename ESXRecordT, typename IdAccessorT = IdAccessor<ESXRecordT> >
|
|
class IdCollection : public Collection<ESXRecordT, IdAccessorT>
|
|
{
|
|
public:
|
|
|
|
void load (ESM::ESMReader& reader, bool base);
|
|
|
|
/// \param index Index at which the record can be found.
|
|
/// Special values: -2 index unknown, -1 record does not exist yet and therefore
|
|
/// does not have an index
|
|
void load (const ESXRecordT& record, bool base, int index = -2);
|
|
|
|
bool tryDelete (const std::string& id);
|
|
///< Try deleting \a id. If the id does not exist or can't be deleted the call is ignored.
|
|
///
|
|
/// \return Has the ID been deleted?
|
|
};
|
|
|
|
template<typename ESXRecordT, typename IdAccessorT>
|
|
void IdCollection<ESXRecordT, IdAccessorT>::load (ESM::ESMReader& reader, bool base)
|
|
{
|
|
std::string id = reader.getHNOString ("NAME");
|
|
|
|
if (reader.isNextSub ("DELE"))
|
|
{
|
|
int index = Collection<ESXRecordT, IdAccessorT>::searchId (id);
|
|
|
|
reader.skipRecord();
|
|
|
|
if (index==-1)
|
|
{
|
|
// deleting a record that does not exist
|
|
|
|
// ignore it for now
|
|
|
|
/// \todo report the problem to the user
|
|
}
|
|
else if (base)
|
|
{
|
|
Collection<ESXRecordT, IdAccessorT>::removeRows (index, 1);
|
|
}
|
|
else
|
|
{
|
|
Record<ESXRecordT> record = Collection<ESXRecordT, IdAccessorT>::getRecord (index);
|
|
record.mState = RecordBase::State_Deleted;
|
|
this->setRecord (index, record);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ESXRecordT record;
|
|
|
|
int index = this->searchId (id);
|
|
|
|
if (index==-1)
|
|
IdAccessorT().getId (record) = id;
|
|
else
|
|
{
|
|
record = this->getRecord (index).get();
|
|
}
|
|
|
|
record.load (reader);
|
|
|
|
load (record, base, index);
|
|
}
|
|
}
|
|
|
|
template<typename ESXRecordT, typename IdAccessorT>
|
|
void IdCollection<ESXRecordT, IdAccessorT>::load (const ESXRecordT& record, bool base,
|
|
int index)
|
|
{
|
|
if (index==-2)
|
|
index = this->searchId (IdAccessorT().getId (record));
|
|
|
|
if (index==-1)
|
|
{
|
|
// new record
|
|
Record<ESXRecordT> record2;
|
|
record2.mState = base ? RecordBase::State_BaseOnly : RecordBase::State_ModifiedOnly;
|
|
(base ? record2.mBase : record2.mModified) = record;
|
|
|
|
this->appendRecord (record2);
|
|
}
|
|
else
|
|
{
|
|
// old record
|
|
Record<ESXRecordT> record2 = Collection<ESXRecordT, IdAccessorT>::getRecord (index);
|
|
|
|
if (base)
|
|
record2.mBase = record;
|
|
else
|
|
record2.setModified (record);
|
|
|
|
this->setRecord (index, record2);
|
|
}
|
|
}
|
|
|
|
template<typename ESXRecordT, typename IdAccessorT>
|
|
bool IdCollection<ESXRecordT, IdAccessorT>::tryDelete (const std::string& id)
|
|
{
|
|
int index = this->searchId (id);
|
|
|
|
if (index==-1)
|
|
return false;
|
|
|
|
Record<ESXRecordT> record = Collection<ESXRecordT, IdAccessorT>::getRecord (index);
|
|
|
|
if (record.isDeleted())
|
|
return false;
|
|
|
|
if (record.mState==RecordBase::State_ModifiedOnly)
|
|
{
|
|
Collection<ESXRecordT, IdAccessorT>::removeRows (index, 1);
|
|
}
|
|
else
|
|
{
|
|
record.mState = RecordBase::State_Deleted;
|
|
this->setRecord (index, record);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
#endif
|