forked from niftools/nifskope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kfmmodel.h
125 lines (88 loc) · 3.83 KB
/
kfmmodel.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/***** BEGIN LICENSE BLOCK *****
BSD License
Copyright (c) 2005-2012, NIF File Format Library and Tools
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. The name of the NIF File Format Library and Tools project may not be
used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
***** END LICENCE BLOCK *****/
#ifndef KFMMODEL_H
#define KFMMODEL_H
#include "basemodel.h"
#include <QHash>
#include <QStringList>
#include <QReadWriteLock>
class KfmModel : public BaseModel
{
Q_OBJECT
public:
KfmModel( QObject * parent = 0 );
// call this once on startup to load the XML descriptions
static bool loadXML();
// when creating kfmmodels from outside the main thread better protect them with a QReadLocker
static QReadWriteLock XMLlock;
// clear model data
void clear();
// generic load and save to and from QIODevice
bool load( QIODevice & device );
bool save( QIODevice & device ) const;
// is it a compound type?
static bool isCompound( const QString & name );
QModelIndex getKFMroot() const;
// is this version supported ?
static bool isVersionSupported( quint32 );
// version conversion
static QString version2string( quint32 );
static quint32 version2number( const QString & );
// check wether the current nif file version lies in the range since~until
bool checkVersion( quint32 since, quint32 until ) const;
QString getVersion() const { return version2string( version ); }
quint32 getVersionNumber() const { return version; }
static QAbstractItemDelegate * createDelegate();
protected:
void insertType( NifItem * parent, const NifData & data, int row = -1 );
NifItem * insertBranch( NifItem * parent, const NifData & data, int row = -1 );
bool updateArrayItem( NifItem * array, bool fast );
bool load( NifItem * parent, NifIStream & stream, bool fast = true );
bool save( NifItem * parent, NifOStream & stream ) const;
bool setItemValue( NifItem * item, const NifValue & v );
bool setHeaderString( const QString & );
bool evalVersion( NifItem * item, bool chkParents = false ) const;
QString ver2str( quint32 v ) const { return version2string( v ); }
quint32 str2ver( QString s ) const { return version2number( s ); }
// kfm file version
quint32 version;
NifItem * kfmroot;
// XML structures
static QList<quint32> supportedVersions;
static QHash<QString,NifBlock*> compounds;
static QString parseXmlDescription( const QString & filename );
friend class KfmXmlHandler;
}; // class NifModel
inline bool KfmModel::isCompound( const QString & name )
{
return compounds.contains( name );
}
inline bool KfmModel::isVersionSupported( quint32 v )
{
return supportedVersions.contains( v );
}
#endif