-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathoptions.h
271 lines (217 loc) · 7.33 KB
/
options.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
/***** 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 OPTIONS_H
#define OPTIONS_H
#include <QObject>
#include "widgets/groupbox.h"
#define NifSkopeDisplayRole (Qt::UserRole + 42)
//! \file options.h Options class
class QAbstractButton;
class QAction;
class QColor;
class QCheckBox;
class QDialog;
class QLineEdit;
class QListView;
class QModelIndex;
class QRadioButton;
class QSpinBox;
class QStringListModel;
class QTabWidget;
class QTimer;
class QComboBox;
class AlphaSlider;
class ColorWheel;
class FileSelector;
class GroupBox;
//! Global options menu and dialog
class Options : public QObject
{
Q_OBJECT
public:
//! Global instance
static Options * get();
//! The list of currently enabled actions
static QList<QAction*> actions();
//! Texture folders
static QStringList textureFolders();
//! Whether to use alternative textures
static bool textureAlternatives();
//! Whether to enable antialiasing
static bool antialias();
//! Whether to enable texturing
static bool texturing();
//! Whether to enable shaders
static bool shaders();
//! Whether to enable blending
static bool blending() { return true; }
//! The background color of the main view window
static QColor bgColor();
//! The colour to normally use for drawing
static QColor nlColor();
//! The colour to use when highlighting
static QColor hlColor();
//! Regular expression to use for culling
static QRegExp cullExpression();
//! Whether to only draw textured shapes
static bool onlyTextured();
//! Whether to draw the axes
static bool drawAxes();
//! Whether to draw nodes
static bool drawNodes();
//! Whether to draw Havok shapes
static bool drawHavok();
//! Whether to draw constraints
static bool drawConstraints();
//! Whether to draw furniture markers
static bool drawFurn();
//! Whether to draw hidden shapes
static bool drawHidden();
//! Whether to draw stats
static bool drawStats();
//! Whether to draw meshes
static bool drawMeshes();
//! Whether to benchmark FPS
static bool benchmark();
//! The possible axes
typedef enum {
ZAxis, YAxis, XAxis
} Axis;
//! The axis defined as up
static Axis upAxis();
//! The ambient lighting color
static QColor ambient();
//! The diffuse lighting color
static QColor diffuse();
//! The specular lighting color
static QColor specular();
//! Whether to use frontal lighting
static bool lightFrontal();
//! The angle between the Z axis and the light
static int lightDeclination();
//! The angle between the X axis and the light
static int lightPlanarAngle();
//! Whether to override material colors
static bool overrideMaterials();
//! The ambient color to override materials with
static QColor overrideAmbient();
//! The diffuse color to override materials with
static QColor overrideDiffuse();
//! The specular color to override materials with
static QColor overrideSpecular();
//! The emissive color to override materials with
static QColor overrideEmissive();
//! The NIF version to use at start
static QString startupVersion();
//! The current translation locale
static QLocale translationLocale();
// Maximum string length (see NifIStream::init for the current usage)
//static int maxStringLength();
//! status of Collada Cull setting
static bool exportCullEnabled();
signals:
//! Signal emitted when a value changes
void sigChanged();
//! Signal emitted when material overrides change
void materialOverridesChanged();
//! Signal emitted when the locale changes
void sigLocaleChanged();
protected slots:
//! Texture folder button actions
void textureFolderAction( int );
//! Per-index texture folder options
void textureFolderIndex( const QModelIndex & );
//! Automatic detection of texture folders
void textureFolderAutoDetect();
//! Set lighting presets
void activateLightPreset( int );
public slots:
void save();
protected:
friend class TexturesPage;
friend class ColorsOptionPage;
friend class MaterialOverrideOptionPage;
Options();
~Options();
bool eventFilter( QObject * o, QEvent * e );
//////////////////////////////////////////////////////////////////////////
// Menu
QAction * aDrawAxes;
QAction * aDrawNodes;
QAction * aDrawHavok;
QAction * aDrawConstraints;
QAction * aDrawFurn;
QAction * aDrawHidden;
QAction * aDrawStats;
QAction * aSettings;
QTimer * tSave, * tEmit;
//////////////////////////////////////////////////////////////////////////
// General Settings page
QComboBox * RegionOpt;
QLineEdit * StartVer;
//QSpinBox * StringLength;
//////////////////////////////////////////////////////////////////////////
// Rendering Settings page
QStringListModel * TexFolderModel;
QListView * TexFolderView;
FileSelector * TexFolderSelect;
QCheckBox * TexAlternatives;
QAbstractButton * TexFolderButtons[4];
QCheckBox * AntiAlias;
QCheckBox * Textures;
QCheckBox * Shaders;
QCheckBox * CullNoTex;
QCheckBox * CullByID;
QLineEdit * CullExpr;
QRadioButton * AxisX;
QRadioButton * AxisY;
QRadioButton * AxisZ;
//////////////////////////////////////////////////////////////////////////
// Colors Settings page
ColorWheel * colors[3];
AlphaSlider * alpha[3];
ColorWheel * LightColor[3];
QCheckBox * LightFrontal;
QSpinBox * LightDeclination;
QSpinBox * LightPlanarAngle;
//////////////////////////////////////////////////////////////////////////
// Materials Settings page
QCheckBox * overrideMatCheck;
ColorWheel * matColors[4];
//////////////////////////////////////////////////////////////////////////
// Export Settings page
QCheckBox * exportCull;
//////////////////////////////////////////////////////////////////////////
GroupBox * dialog;
QTabWidget *tab;
bool showMeshes;
};
//! Gets the color normally used for drawing from Options::nlColor()
#define glNormalColor() glColor( Color4( Options::nlColor() ) )
//! Gets the color used for highlighting from Options::hlColor()
#define glHighlightColor() glColor( Color4( Options::hlColor() ) )
#endif