|
- /*
- ==============================================================================
-
- This file is part of the JUCE library.
- Copyright (c) 2017 - ROLI Ltd.
-
- JUCE is an open source library subject to commercial or open-source
- licensing.
-
- By using JUCE, you agree to the terms of both the JUCE 5 End-User License
- Agreement and JUCE 5 Privacy Policy (both updated and effective as of the
- 27th April 2017).
-
- End User License Agreement: www.juce.com/juce-5-licence
- Privacy Policy: www.juce.com/juce-5-privacy-policy
-
- Or: You may also use this code under the terms of the GPL v3 (see
- www.gnu.org/licenses).
-
- JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
- EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
- DISCLAIMED.
-
- ==============================================================================
- */
-
- #include "../JuceDemoHeader.h"
-
- #if JUCE_USE_CAMERA
-
- //==============================================================================
- class CameraDemo : public Component,
- private ComboBoxListener,
- private ButtonListener,
- private CameraDevice::Listener,
- private AsyncUpdater
- {
- public:
- CameraDemo()
- : cameraSelectorComboBox ("Camera"),
- snapshotButton ("Take a snapshot"),
- recordMovieButton ("Record a movie (to your desktop)..."),
- recordingMovie (false)
- {
- setOpaque (true);
-
- addAndMakeVisible (cameraSelectorComboBox);
- updateCameraList();
- cameraSelectorComboBox.setSelectedId (1);
- cameraSelectorComboBox.addListener (this);
-
- addAndMakeVisible (snapshotButton);
- snapshotButton.addListener (this);
- snapshotButton.setEnabled (false);
-
- addAndMakeVisible (recordMovieButton);
- recordMovieButton.addListener (this);
- recordMovieButton.setEnabled (false);
-
- addAndMakeVisible (lastSnapshot);
-
- cameraSelectorComboBox.setSelectedId (2);
- }
-
- //==============================================================================
- void paint (Graphics& g) override
- {
- g.fillAll (Colours::black);
- }
-
- void resized() override
- {
- Rectangle<int> r (getLocalBounds().reduced (5));
-
- Rectangle<int> top (r.removeFromTop (25));
- cameraSelectorComboBox.setBounds (top.removeFromLeft (250));
-
- r.removeFromTop (4);
- top = r.removeFromTop (25);
-
- snapshotButton.changeWidthToFitText (24);
- snapshotButton.setBounds (top.removeFromLeft (snapshotButton.getWidth()));
- top.removeFromLeft (4);
- recordMovieButton.changeWidthToFitText (24);
- recordMovieButton.setBounds (top.removeFromLeft (recordMovieButton.getWidth()));
-
- r.removeFromTop (4);
- Rectangle<int> previewArea (r.removeFromTop (r.getHeight() / 2));
-
- if (cameraPreviewComp != nullptr)
- cameraPreviewComp->setBounds (previewArea);
-
- r.removeFromTop (4);
- lastSnapshot.setBounds (r);
- }
-
-
- private:
- //==============================================================================
- ScopedPointer<CameraDevice> cameraDevice;
- ScopedPointer<Component> cameraPreviewComp;
- ImageComponent lastSnapshot;
-
- ComboBox cameraSelectorComboBox;
- TextButton snapshotButton;
- TextButton recordMovieButton;
- bool recordingMovie;
-
- void updateCameraList()
- {
- cameraSelectorComboBox.clear();
- cameraSelectorComboBox.addItem ("No camera", 1);
- cameraSelectorComboBox.addSeparator();
-
- StringArray cameras = CameraDevice::getAvailableDevices();
-
- for (int i = 0; i < cameras.size(); ++i)
- cameraSelectorComboBox.addItem (cameras[i], i + 2);
- }
-
- void comboBoxChanged (ComboBox*) override
- {
- // This is called when the user chooses a camera from the drop-down list.
- cameraDevice = nullptr;
- cameraPreviewComp = nullptr;
- recordingMovie = false;
-
- if (cameraSelectorComboBox.getSelectedId() > 1)
- {
- // Try to open the user's choice of camera..
- cameraDevice = CameraDevice::openDevice (cameraSelectorComboBox.getSelectedId() - 2);
-
- // and if it worked, create a preview component for it..
- if (cameraDevice != nullptr)
- addAndMakeVisible (cameraPreviewComp = cameraDevice->createViewerComponent());
- }
-
- snapshotButton.setEnabled (cameraDevice != nullptr);
- recordMovieButton.setEnabled (cameraDevice != nullptr);
- resized();
- }
-
- void buttonClicked (Button* b) override
- {
- if (cameraDevice != nullptr)
- {
- if (b == &recordMovieButton)
- {
- // The user has clicked the record movie button..
- if (! recordingMovie)
- {
- // Start recording to a file on the user's desktop..
- recordingMovie = true;
-
- File file (File::getSpecialLocation (File::userDesktopDirectory)
- .getNonexistentChildFile ("JuceCameraDemo",
- CameraDevice::getFileExtension()));
-
- cameraDevice->startRecordingToFile (file);
- recordMovieButton.setButtonText ("Stop Recording");
- }
- else
- {
- // Already recording, so stop...
- recordingMovie = false;
- cameraDevice->stopRecording();
- recordMovieButton.setButtonText ("Start recording (to a file on your desktop)");
- }
- }
- else
- {
- // When the user clicks the snapshot button, we'll attach ourselves to
- // the camera as a listener, and wait for an image to arrive...
- cameraDevice->addListener (this);
- }
- }
- }
-
- // This is called by the camera device when a new image arrives
- void imageReceived (const Image& image) override
- {
- // In this app we just want to take one image, so as soon as this happens,
- // we'll unregister ourselves as a listener.
- if (cameraDevice != nullptr)
- cameraDevice->removeListener (this);
-
- // This callback won't be on the message thread, so to get the image back to
- // the message thread, we'll stash a pointer to it (which is reference-counted in
- // a thead-safe way), and trigger an async callback which will then display the
- // new image..
- incomingImage = image;
- triggerAsyncUpdate();
- }
-
- Image incomingImage;
-
- void handleAsyncUpdate() override
- {
- if (incomingImage.isValid())
- lastSnapshot.setImage (incomingImage);
- }
-
- JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (CameraDemo)
- };
-
-
- // This static object will register this demo type in a global list of demos..
- static JuceDemoType<CameraDemo> demo ("29 Graphics: Camera Capture");
-
- #endif // JUCE_USE_CAMERA
|