summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Qt3DStudio/Palettes/Inspector/GuideInspectable.cpp
blob: b10e4c1e355a18cea2b3eb1f4e8a2eafb2b9831f (plain)
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
/****************************************************************************
**
** Copyright (C) 1999-2002 NVIDIA Corporation.
** Copyright (C) 2017 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of Qt 3D Studio.
**
** $QT_BEGIN_LICENSE:GPL-EXCEPT$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "GuideInspectable.h"
#include "InspectableBase.h"
#include "StudioApp.h"
#include "Core.h"
#include "Doc.h"
#include "Qt3DSDMGuides.h"
#include "InspectorGroup.h"
#include "IDocumentEditor.h"
#include "Qt3DSDMDataTypes.h"
#include "IInspectableItem.h"
#include "Qt3DSDMValue.h"

typedef std::function<qt3dsdm::SValue()> TGetterFunc;
typedef std::function<void(qt3dsdm::SValue)> TSetterFunc;
typedef std::function<void()> TCommitFunc;
typedef std::function<void()> TCancelFunc;

struct SInspectableDataInfo
{
    QString m_Name;
    QString m_FormalName;
    QString m_Description;
    TGetterFunc m_Getter;
    TSetterFunc m_Setter;
    TCommitFunc m_Commit;
    TCancelFunc m_Cancel;

    SInspectableDataInfo(const QString &name, const QString &formalName,
                         const QString &description, TGetterFunc getter, TSetterFunc setter,
                         TCommitFunc commit, TCancelFunc inCancel)
        : m_Name(name)
        , m_FormalName(formalName)
        , m_Description(description)
        , m_Getter(getter)
        , m_Setter(setter)
        , m_Commit(commit)
        , m_Cancel(inCancel)
    {
    }
};

struct SComboAttItem : public IInspectableAttributeItem
{
    SInspectableDataInfo m_BaseInspectableInfo;
    qt3dsdm::TMetaDataStringList m_MetaDataTypes;
    SComboAttItem(const SInspectableDataInfo &inInfo, const qt3dsdm::TMetaDataStringList &inTypes)
        : m_BaseInspectableInfo(inInfo)
        , m_MetaDataTypes(inTypes)
    {
    }
    qt3dsdm::HandlerArgumentType::Value GetInspectableSubType() const override
    {
        return qt3dsdm::HandlerArgumentType::Property;
    }
    QString GetInspectableName() const override { return m_BaseInspectableInfo.m_Name; }
    QString GetInspectableFormalName() const override
    {
        return m_BaseInspectableInfo.m_FormalName;
    }
    QString GetInspectableDescription() const override
    {
        return m_BaseInspectableInfo.m_Description;
    }

    qt3dsdm::SValue GetInspectableData() const override { return m_BaseInspectableInfo.m_Getter(); }
    void SetInspectableData(const qt3dsdm::SValue &inValue) override
    {
        m_BaseInspectableInfo.m_Setter(inValue);
        m_BaseInspectableInfo.m_Commit();
    }

    void ChangeInspectableData(const qt3dsdm::SValue &inValue) override
    {
        m_BaseInspectableInfo.m_Setter(inValue);
    }
    void CancelInspectableData() override { m_BaseInspectableInfo.m_Cancel(); }

    float GetInspectableMin() const override { return 0; }
    float GetInspectableMax() const override { return 0; }
    qt3dsdm::TMetaDataStringList GetInspectableList() const override { return m_MetaDataTypes; }
    qt3dsdm::DataModelDataType::Value GetInspectableType() const override
    {
        return qt3dsdm::DataModelDataType::String;
    }
    qt3dsdm::AdditionalMetaDataType::Value GetInspectableAdditionalType() const override
    {
        return qt3dsdm::AdditionalMetaDataType::StringList;
    }
};

struct SFloatIntItem : public IInspectableAttributeItem
{
    SInspectableDataInfo m_BaseInspectableInfo;
    qt3dsdm::DataModelDataType::Value m_DataType;
    float m_Min;
    float m_Max;
    SFloatIntItem(const SInspectableDataInfo &inInfo, qt3dsdm::DataModelDataType::Value inType,
                  float inMin = 0, float inMax = 0)
        : m_BaseInspectableInfo(inInfo)
        , m_DataType(inType)
        , m_Min(inMin)
        , m_Max(inMax)
    {
    }
    qt3dsdm::HandlerArgumentType::Value GetInspectableSubType() const override
    {
        return qt3dsdm::HandlerArgumentType::Property;
    }
    QString GetInspectableName() const override { return m_BaseInspectableInfo.m_Name; }
    QString GetInspectableFormalName() const override
    {
        return m_BaseInspectableInfo.m_FormalName;
    }
    QString GetInspectableDescription() const override
    {
        return m_BaseInspectableInfo.m_Description;
    }

    qt3dsdm::SValue GetInspectableData() const override { return m_BaseInspectableInfo.m_Getter(); }
    void SetInspectableData(const qt3dsdm::SValue &inValue) override
    {
        m_BaseInspectableInfo.m_Setter(inValue);
        m_BaseInspectableInfo.m_Commit();
    }

    void ChangeInspectableData(const qt3dsdm::SValue &inValue) override
    {
        m_BaseInspectableInfo.m_Setter(inValue);
    }
    void CancelInspectableData() override { m_BaseInspectableInfo.m_Cancel(); }

    float GetInspectableMin() const override { return m_Min; }
    float GetInspectableMax() const override { return m_Max; }
    qt3dsdm::TMetaDataStringList GetInspectableList() const override
    {
        return qt3dsdm::TMetaDataStringList();
    }
    qt3dsdm::DataModelDataType::Value GetInspectableType() const override { return m_DataType; }
    qt3dsdm::AdditionalMetaDataType::Value GetInspectableAdditionalType() const override
    {
        if (m_Max > 0)
            return qt3dsdm::AdditionalMetaDataType::Range;
        else
            return qt3dsdm::AdditionalMetaDataType::None;
    }
};

GuideInspectable::GuideInspectable(qt3dsdm::Qt3DSDMGuideHandle inGuide)
    : m_Guide(inGuide)
    , m_Editor(*g_StudioApp.GetCore()->GetDoc())
{
}

Q3DStudio::IDocumentReader &GuideInspectable::Reader() const
{
    return g_StudioApp.GetCore()->GetDoc()->GetDocumentReader();
}

EStudioObjectType GuideInspectable::getObjectType() const
{
    return OBJTYPE_GUIDE;
}

Q3DStudio::CString GuideInspectable::getName()
{
    return L"Guide";
}

long GuideInspectable::getGroupCount() const
{
    return 1;
}

CInspectorGroup *GuideInspectable::getGroup(long)
{
    TCommitFunc theCommiter = std::bind(&GuideInspectable::Commit, this);
    TCancelFunc theCanceler = std::bind(&GuideInspectable::Rollback, this);
    m_Properties.push_back(
                std::make_shared<SFloatIntItem>(
                    SInspectableDataInfo(QStringLiteral("Position"), QObject::tr("Position"),
                                         QObject::tr("Position of the guide"),
                                         std::bind(&GuideInspectable::GetPosition, this),
                                         std::bind(&GuideInspectable::SetPosition, this,
                                                   std::placeholders::_1),
                                         theCommiter, theCanceler),
                    qt3dsdm::DataModelDataType::Float));
    qt3dsdm::TMetaDataStringList theComboItems;
    theComboItems.push_back(L"Horizontal");
    theComboItems.push_back(L"Vertical");

    m_Properties.push_back(
                std::make_shared<SComboAttItem>(
                    SInspectableDataInfo(QStringLiteral("Orientation"), QObject::tr("Orientation"),
                                         QObject::tr("Orientation of the guide"),
                                         std::bind(&GuideInspectable::GetDirection, this),
                                         std::bind(&GuideInspectable::SetDirection, this,
                                                   std::placeholders::_1),
                                         theCommiter, theCanceler),
                    theComboItems));

    m_Properties.push_back(
                std::make_shared<SFloatIntItem>(
                    SInspectableDataInfo(QStringLiteral("Width"), QObject::tr("Width"),
                                         QObject::tr("Width of the guide"),
                                         std::bind(&GuideInspectable::GetWidth, this),
                                         std::bind(&GuideInspectable::SetWidth, this,
                                                   std::placeholders::_1),
                                         theCommiter, theCanceler),
                    qt3dsdm::DataModelDataType::Long, 1.0f, 50.0f));

    CInspectorGroup *theNewGroup = new CInspectorGroup(QObject::tr("Basic"));
    return theNewGroup;
}

bool GuideInspectable::isValid() const
{
    return Reader().IsGuideValid(m_Guide);
}

bool GuideInspectable::isMaster() const
{
    return true;
}

qt3dsdm::Qt3DSDMInstanceHandle GuideInspectable::getInstance() const
{
    return 0; // guide has no instance
}

void GuideInspectable::SetDirection(const qt3dsdm::SValue &inValue)
{
    qt3dsdm::TDataStrPtr theData = inValue.getData<qt3dsdm::TDataStrPtr>();
    qt3dsdm::SGuideInfo theSetter(Reader().GetGuideInfo(m_Guide));
    if (theData) {
        if (qt3dsdm::AreEqual(theData->GetData(), L"Horizontal"))
            theSetter.m_Direction = qt3dsdm::GuideDirections::Horizontal;
        else if (qt3dsdm::AreEqual(theData->GetData(), L"Vertical"))
            theSetter.m_Direction = qt3dsdm::GuideDirections::Vertical;
    }
    Editor().UpdateGuide(m_Guide, theSetter);
    FireRefresh();
}

qt3dsdm::SValue GuideInspectable::GetDirection()
{
    switch (Reader().GetGuideInfo(m_Guide).m_Direction) {
    case qt3dsdm::GuideDirections::Horizontal:
        return std::make_shared<qt3dsdm::CDataStr>(L"Horizontal");
    case qt3dsdm::GuideDirections::Vertical:
        return std::make_shared<qt3dsdm::CDataStr>(L"Vertical");
    default:
        return std::make_shared<qt3dsdm::CDataStr>(L"");
    }
}

void GuideInspectable::SetPosition(const qt3dsdm::SValue &inValue)
{
    float thePos = inValue.getData<float>();
    qt3dsdm::SGuideInfo theSetter(Reader().GetGuideInfo(m_Guide));
    theSetter.m_Position = thePos;
    Editor().UpdateGuide(m_Guide, theSetter);
    FireRefresh();
}

qt3dsdm::SValue GuideInspectable::GetPosition()
{
    qt3dsdm::SGuideInfo theSetter(Reader().GetGuideInfo(m_Guide));
    return theSetter.m_Position;
}

void GuideInspectable::SetWidth(const qt3dsdm::SValue &inValue)
{
    auto theData = inValue.getData<qt3ds::QT3DSI32>();

    qt3dsdm::SGuideInfo theSetter(Reader().GetGuideInfo(m_Guide));
    theSetter.m_Width = theData;
    Editor().UpdateGuide(m_Guide, theSetter);
    FireRefresh();

}

qt3dsdm::SValue GuideInspectable::GetWidth()
{
    qt3dsdm::SGuideInfo theSetter(Reader().GetGuideInfo(m_Guide));
    return theSetter.m_Width;
}

Q3DStudio::IDocumentEditor &GuideInspectable::Editor()
{
    return m_Editor.EnsureEditor(QObject::tr("Set Property"), __FILE__, __LINE__);
}

void GuideInspectable::Commit()
{
    m_Editor.CommitEditor();
}

void GuideInspectable::Rollback()
{
    m_Editor.RollbackEditor();
}

void GuideInspectable::FireRefresh()
{
    m_Editor.FireImmediateRefresh(qt3dsdm::Qt3DSDMInstanceHandle());
}

void GuideInspectable::Destroy()
{
    m_Editor.EnsureEditor(QObject::tr("Delete Guide"), __FILE__, __LINE__).DeleteGuide(m_Guide);
    m_Editor.CommitEditor();
}

bool GuideInspectable::isHorizontal() const
{
    return Reader().GetGuideInfo(m_Guide).m_Direction == qt3dsdm::GuideDirections::Horizontal;
}

const std::vector<std::shared_ptr<IInspectableAttributeItem>> &
GuideInspectable::properties() const
{
    return m_Properties;
}