summaryrefslogtreecommitdiffstats
path: root/src/plugins/simulator/camera/simulatorcameraexposurecontrol.cpp
blob: f4de0dba9a7ee5e22f73ff699d12381c309088f5 (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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
/****************************************************************************
**
** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include <QtCore/qstring.h>

#include "simulatorcameraexposurecontrol.h"
#include "simulatorcamerasession.h"

SimulatorCameraExposureControl::SimulatorCameraExposureControl(SimulatorCameraSession *session, QObject *parent) :
    QCameraExposureControl(parent),
    mExposureMode(QCameraExposure::ExposureAuto),
    mMeteringMode(QCameraExposure::MeteringAverage),
    mSpot(0.5, 0.5),
    mSession(session),
    mSettings(0)
{
    mSettings = mSession->settings();

    connect(mSettings, SIGNAL(apertureChanged()), this, SLOT(apertureChanged()));
    connect(mSettings, SIGNAL(apertureRangeChanged()), this, SLOT(apertureRangeChanged()));
    connect(mSettings, SIGNAL(shutterSpeedChanged()), this, SLOT(shutterSpeedChanged()));
    connect(mSettings, SIGNAL(isoSensitivityChanged()), this, SLOT(isoSensitivityChanged()));
}

SimulatorCameraExposureControl::~SimulatorCameraExposureControl()
{
}

void SimulatorCameraExposureControl::apertureChanged()
{
    emit exposureParameterChanged(QCameraExposureControl::Aperture);
}

void SimulatorCameraExposureControl::apertureRangeChanged()
{
    emit exposureParameterRangeChanged(QCameraExposureControl::Aperture);
}

void SimulatorCameraExposureControl::shutterSpeedChanged()
{
    emit exposureParameterChanged(QCameraExposureControl::ShutterSpeed);
}

void SimulatorCameraExposureControl::isoSensitivityChanged()
{
    emit exposureParameterChanged(QCameraExposureControl::ISO);
}

QCameraExposure::ExposureMode SimulatorCameraExposureControl::exposureMode() const
{
    return mExposureMode;
}

void SimulatorCameraExposureControl::setExposureMode(QCameraExposure::ExposureMode mode)
{
    if (isExposureModeSupported(mode))
        mExposureMode = mode;
}

bool SimulatorCameraExposureControl::isExposureModeSupported(QCameraExposure::ExposureMode mode) const
{
    switch (mode) {
    case QCameraExposure::ExposureAuto:
    case QCameraExposure::ExposureManual:
        return true;
    default:
        return false;
    }

    return false;
}

QCameraExposure::MeteringMode SimulatorCameraExposureControl::meteringMode() const
{
    return mMeteringMode;
}

void SimulatorCameraExposureControl::setMeteringMode(QCameraExposure::MeteringMode mode)
{
    if (isMeteringModeSupported(mode))
            mMeteringMode = mode;
}

bool SimulatorCameraExposureControl::isMeteringModeSupported(QCameraExposure::MeteringMode mode) const
{
    switch (mode) {
    case QCameraExposure::MeteringAverage:
    case QCameraExposure::MeteringSpot:
    case QCameraExposure::MeteringMatrix:
        return true;
    default:
        return false;
    }
    return false;
}

bool SimulatorCameraExposureControl::isParameterSupported(ExposureParameter parameter) const
{
    switch (parameter) {
    case QCameraExposureControl::ISO:
    case QCameraExposureControl::Aperture:
    case QCameraExposureControl::ShutterSpeed:
    case QCameraExposureControl::ExposureCompensation:
    case QCameraExposureControl::SpotMeteringPoint:
        return true;
    case QCameraExposureControl::FlashPower:
    case QCameraExposureControl::FlashCompensation:
        return false;

    default:
        return false;
    }

    return false;
}

QVariant SimulatorCameraExposureControl::exposureParameter(ExposureParameter parameter) const
{
    switch (parameter) {
        case QCameraExposureControl::ISO:
            return QVariant(isoSensitivity());
        case QCameraExposureControl::Aperture:
            return QVariant(aperture());
        case QCameraExposureControl::ShutterSpeed:
            return QVariant(shutterSpeed());
        case QCameraExposureControl::ExposureCompensation:
            return QVariant(exposureCompensation());

        case QCameraExposureControl::SpotMeteringPoint:
            return mSpot;

        case QCameraExposureControl::FlashPower:
        case QCameraExposureControl::FlashCompensation:
            // Not supported
            return QVariant();

        default:
            // Not supported
            return QVariant();
    }
}

QCameraExposureControl::ParameterFlags SimulatorCameraExposureControl::exposureParameterFlags(ExposureParameter parameter) const
{
    QCameraExposureControl::ParameterFlags flags;

    /*
     * ISO, Aperture, ShutterSpeed:
     *  - Automatic/Manual
     *  - Read/Write
     *  - Discrete range
     *
     * ExposureCompensation:
     *  - Automatic/Manual
     *  - Read/Write
     *  - Continuous range
     *
     * FlashPower, FlashCompensation:
     *  - Not supported
     */
    switch (parameter) {
        case QCameraExposureControl::ISO:
        case QCameraExposureControl::Aperture:
        case QCameraExposureControl::ShutterSpeed:
            flags |= QCameraExposureControl::AutomaticValue;
            break;
        case QCameraExposureControl::ExposureCompensation:
            flags |= QCameraExposureControl::AutomaticValue;
            flags |= QCameraExposureControl::ContinuousRange;
            break;
        case QCameraExposureControl::FlashPower:
        case QCameraExposureControl::FlashCompensation:
            // Do nothing - no flags
            break;

        default:
            // Do nothing - no flags
            break;
    }

    return flags;
}

QVariantList SimulatorCameraExposureControl::supportedParameterRange(ExposureParameter parameter) const
{
    QVariantList valueList;
    switch (parameter) {
    case QCameraExposureControl::ISO: {
        QList<int> exposureValues = mSettings->supportedIsoSensitivities();
        for (int i = 0; i < exposureValues.count(); ++i) {
            valueList.append(QVariant(exposureValues[i]));
        }
        break;
    }
    case QCameraExposureControl::Aperture: {
        QList<qreal> apertureValues = mSettings->supportedApertures();
        for (int i = 0; i < apertureValues.count(); ++i) {
            valueList.append(QVariant(apertureValues[i]));
        }
        break;
    }
    case QCameraExposureControl::ShutterSpeed: {
        QList<qreal> shutterSpeedValues = mSettings->supportedShutterSpeeds();
        for (int i = 0; i < shutterSpeedValues.count(); ++i) {
            valueList.append(QVariant(shutterSpeedValues[i]));
        }
        break;
    }
    case QCameraExposureControl::ExposureCompensation: {
        QList<qreal> evValues = mSettings->supportedExposureCompensationValues();
        for (int i = 0; i < evValues.count(); ++i) {
            valueList.append(QVariant(evValues[i]));
        }
        break;
    }
    case QCameraExposureControl::FlashPower:
    case QCameraExposureControl::FlashCompensation:
        // Not supported
        break;

    default:
        // Not supported
        return QVariantList();
    }

    return valueList;
}

bool SimulatorCameraExposureControl::setExposureParameter(ExposureParameter parameter, const QVariant& value)
{
    bool useDefaultValue = false;

    if (value.isNull())
        useDefaultValue = true;

    switch (parameter) {
        case QCameraExposureControl::ISO:
            if (useDefaultValue) {
                setAutoIsoSensitivity();
                return false;
            }
            else
                return setManualIsoSensitivity(value.toInt());

        case QCameraExposureControl::Aperture:
            if (useDefaultValue) {
                setAutoAperture();
                return false;
            }
            else
                return setManualAperture(value.toReal());

        case QCameraExposureControl::ShutterSpeed:
            if (useDefaultValue) {
                setAutoShutterSpeed();
                return false;
            }
            else
                return setManualShutterSpeed(value.toReal());

        case QCameraExposureControl::ExposureCompensation:
            if (useDefaultValue) {
                setAutoExposureCompensation();
                return false;
            }
            else
                return setManualExposureCompensation(value.toReal());

        case QCameraExposureControl::FlashPower:
            return false;
        case QCameraExposureControl::FlashCompensation:
            return false;

        case QCameraExposureControl::SpotMeteringPoint:
            {
                static QRectF valid(0, 0, 1, 1);
                if (valid.contains(value.toPointF())) {
                    mSpot = value.toPointF();
                    return true;
                }
                return false;
            }

        default:
            // Not supported
            return false;
    }
}

QString SimulatorCameraExposureControl::extendedParameterName(ExposureParameter parameter)
{
    switch (parameter) {
        case QCameraExposureControl::ISO:
            return QString("ISO Sensitivity");
        case QCameraExposureControl::Aperture:
            return QString("Aperture");
        case QCameraExposureControl::ShutterSpeed:
            return QString("Shutter Speed");
        case QCameraExposureControl::ExposureCompensation:
            return QString("Exposure Compensation");
        case QCameraExposureControl::FlashPower:
            return QString("Flash Power");
        case QCameraExposureControl::FlashCompensation:
            return QString("Flash Compensation");
        case QCameraExposureControl::SpotMeteringPoint:
            return QString("Spot Metering Point");
        default:
            return QString();
    }
}

int SimulatorCameraExposureControl::isoSensitivity() const
{
    return mSettings->isoSensitivity();
}

bool SimulatorCameraExposureControl::isIsoSensitivitySupported(const int iso) const
{
    return mSettings->supportedIsoSensitivities().contains(iso);
}

bool SimulatorCameraExposureControl::setManualIsoSensitivity(int iso)
{
    if (isIsoSensitivitySupported(iso)) {
        mSettings->setManualIsoSensitivity(iso);
        return true;
    } else {
        QList<int> supportedIsoValues = mSettings->supportedIsoSensitivities();
        int minIso = supportedIsoValues.first();
        int maxIso = supportedIsoValues.last();

        if (iso < minIso) { // Smaller than minimum
            iso = minIso;
        } else if (iso > maxIso) { // Bigger than maximum
            iso = maxIso;
        } else { // Find closest
            int indexOfClosest = 0;
            int smallestDiff = 10000000; // Sensible max diff
            for(int i = 0; i < supportedIsoValues.count(); ++i) {
                int currentDiff = qAbs(iso - supportedIsoValues[i]);
                if(currentDiff < smallestDiff) {
                    smallestDiff = currentDiff;
                    indexOfClosest = i;
                }
            }
            iso = supportedIsoValues[indexOfClosest];
        }
        mSettings->setManualIsoSensitivity(iso);
    }

    return false;
}

void SimulatorCameraExposureControl::setAutoIsoSensitivity()
{
    mSettings->setAutoIsoSensitivity();
}


qreal SimulatorCameraExposureControl::aperture() const
{
    return mSettings->aperture();
}

bool SimulatorCameraExposureControl::isApertureSupported(const qreal aperture) const
{
    return mSettings->supportedApertures().contains(aperture);
}

bool SimulatorCameraExposureControl::setManualAperture(qreal aperture)
{
    if (isApertureSupported(aperture)) {
        mSettings->setManualAperture(aperture);
        return true;
    } else {
        QList<qreal> supportedApertureValues = mSettings->supportedApertures();
        qreal minAperture = supportedApertureValues.first();
        qreal maxAperture = supportedApertureValues.last();

        if (aperture < minAperture) { // Smaller than minimum
            aperture = minAperture;
        } else if (aperture > maxAperture) { // Bigger than maximum
            aperture = maxAperture;
        } else { // Find closest
            int indexOfClosest = 0;
            qreal smallestDiff = 100000000; // Sensible max diff
            for(int i = 0; i < supportedApertureValues.count(); ++i) {
                qreal currentDiff = qAbs(aperture - supportedApertureValues[i]);
                if(currentDiff < smallestDiff) {
                    smallestDiff = currentDiff;
                    indexOfClosest = i;
                }
            }
            aperture = supportedApertureValues[indexOfClosest];
        }
        mSettings->setManualAperture(aperture);
    }

    return false;
}

void SimulatorCameraExposureControl::setAutoAperture()
{
    mSettings->setAutoAperture();
}

qreal SimulatorCameraExposureControl::shutterSpeed() const
{
    return mSettings->shutterSpeed();
}

bool SimulatorCameraExposureControl::isShutterSpeedSupported(const qreal seconds) const
{
    return mSettings->supportedShutterSpeeds().contains(seconds);
}

bool SimulatorCameraExposureControl::setManualShutterSpeed(qreal seconds)
{
    if (isShutterSpeedSupported(seconds)) {
        mSettings->setManualShutterSpeed(seconds);
        return true;
    } else {
        QList<qreal> supportedShutterSpeeds = mSettings->supportedShutterSpeeds();

        qreal minShutterSpeed = supportedShutterSpeeds.first();
        qreal maxShutterSpeed = supportedShutterSpeeds.last();

        if (seconds < minShutterSpeed) { // Smaller than minimum
            seconds = minShutterSpeed;
        } else if (seconds > maxShutterSpeed) { // Bigger than maximum
            seconds = maxShutterSpeed;
        } else { // Find closest
            int indexOfClosest = 0;
            qreal smallestDiff = 100000000; // Sensible max diff
            for(int i = 0; i < supportedShutterSpeeds.count(); ++i) {
                qreal currentDiff = qAbs(seconds - supportedShutterSpeeds[i]);
                if(currentDiff < smallestDiff) {
                    smallestDiff = currentDiff;
                    indexOfClosest = i;
                }
            }
            seconds = supportedShutterSpeeds[indexOfClosest];
        }
        mSettings->setManualShutterSpeed(seconds);
    }

    return false;
}

void SimulatorCameraExposureControl::setAutoShutterSpeed()
{
    mSettings->setAutoShutterSpeed();
}

qreal SimulatorCameraExposureControl::exposureCompensation() const
{
    return mSettings->exposureCompensation();
}

bool SimulatorCameraExposureControl::isExposureCompensationSupported(const qreal ev) const
{
    QList<qreal> supportedValues = mSettings->supportedExposureCompensationValues();
    return (ev >= supportedValues.first() && ev <= supportedValues.last());
}

bool SimulatorCameraExposureControl::setManualExposureCompensation(qreal ev)
{
    if (isExposureCompensationSupported(ev)) {
        mSettings->setExposureCompensation(ev);
        return true;
    }

    return false;
}

void SimulatorCameraExposureControl::setAutoExposureCompensation()
{
    mSettings->setAutoExposureCompensation();
}

// End of file