OpenShot Library | libopenshot  0.2.2
Bars.cpp
Go to the documentation of this file.
1 /**
2  * @file
3  * @brief Source file for Bars effect class
4  * @author Jonathan Thomas <jonathan@openshot.org>
5  *
6  * @section LICENSE
7  *
8  * Copyright (c) 2008-2014 OpenShot Studios, LLC
9  * <http://www.openshotstudios.com/>. This file is part of
10  * OpenShot Library (libopenshot), an open-source project dedicated to
11  * delivering high quality video editing and animation solutions to the
12  * world. For more information visit <http://www.openshot.org/>.
13  *
14  * OpenShot Library (libopenshot) is free software: you can redistribute it
15  * and/or modify it under the terms of the GNU Lesser General Public License
16  * as published by the Free Software Foundation, either version 3 of the
17  * License, or (at your option) any later version.
18  *
19  * OpenShot Library (libopenshot) is distributed in the hope that it will be
20  * useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
21  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22  * GNU Lesser General Public License for more details.
23  *
24  * You should have received a copy of the GNU Lesser General Public License
25  * along with OpenShot Library. If not, see <http://www.gnu.org/licenses/>.
26  */
27 
28 #include "../../include/effects/Bars.h"
29 
30 using namespace openshot;
31 
32 /// Blank constructor, useful when using Json to load the effect properties
33 Bars::Bars() : color("#000000"), left(0.0), top(0.1), right(0.0), bottom(0.1) {
34  // Init effect properties
35  init_effect_details();
36 }
37 
38 // Default constructor
39 Bars::Bars(Color color, Keyframe left, Keyframe top, Keyframe right, Keyframe bottom) :
40  color(color), left(left), top(top), right(right), bottom(bottom)
41 {
42  // Init effect properties
43  init_effect_details();
44 }
45 
46 // Init effect settings
47 void Bars::init_effect_details()
48 {
49  /// Initialize the values of the EffectInfo struct.
51 
52  /// Set the effect info
53  info.class_name = "Bars";
54  info.name = "Bars";
55  info.description = "Add colored bars around your video.";
56  info.has_audio = false;
57  info.has_video = true;
58 }
59 
60 // This method is required for all derived classes of EffectBase, and returns a
61 // modified openshot::Frame object
62 std::shared_ptr<Frame> Bars::GetFrame(std::shared_ptr<Frame> frame, int64_t frame_number)
63 {
64  // Get the frame's image
65  std::shared_ptr<QImage> frame_image = frame->GetImage();
66 
67  // Get bar color (and create small color image)
68  std::shared_ptr<QImage> tempColor = std::shared_ptr<QImage>(new QImage(frame_image->width(), 1, QImage::Format_RGBA8888));
69  tempColor->fill(QColor(QString::fromStdString(color.GetColorHex(frame_number))));
70 
71  // Get current keyframe values
72  double left_value = left.GetValue(frame_number);
73  double top_value = top.GetValue(frame_number);
74  double right_value = right.GetValue(frame_number);
75  double bottom_value = bottom.GetValue(frame_number);
76 
77  // Get pixel array pointer
78  unsigned char *pixels = (unsigned char *) frame_image->bits();
79  unsigned char *color_pixels = (unsigned char *) tempColor->bits();
80 
81  // Get pixels sizes of all bars
82  int top_bar_height = top_value * frame_image->height();
83  int bottom_bar_height = bottom_value * frame_image->height();
84  int left_bar_width = left_value * frame_image->width();
85  int right_bar_width = right_value * frame_image->width();
86 
87  // Loop through rows
88  for (int row = 0; row < frame_image->height(); row++) {
89 
90  // Top & Bottom Bar
91  if ((top_bar_height > 0.0 && row <= top_bar_height) || (bottom_bar_height > 0.0 && row >= frame_image->height() - bottom_bar_height)) {
92  memcpy(&pixels[row * frame_image->width() * 4], color_pixels, sizeof(char) * frame_image->width() * 4);
93  } else {
94  // Left Bar
95  if (left_bar_width > 0.0) {
96  memcpy(&pixels[row * frame_image->width() * 4], color_pixels, sizeof(char) * left_bar_width * 4);
97  }
98 
99  // Right Bar
100  if (right_bar_width > 0.0) {
101  memcpy(&pixels[((row * frame_image->width()) + (frame_image->width() - right_bar_width)) * 4], color_pixels, sizeof(char) * right_bar_width * 4);
102  }
103  }
104  }
105 
106  // Cleanup colors and arrays
107  tempColor.reset();
108 
109  // return the modified frame
110  return frame;
111 }
112 
113 // Generate JSON string of this object
114 string Bars::Json() {
115 
116  // Return formatted string
117  return JsonValue().toStyledString();
118 }
119 
120 // Generate Json::JsonValue for this object
121 Json::Value Bars::JsonValue() {
122 
123  // Create root json object
124  Json::Value root = EffectBase::JsonValue(); // get parent properties
125  root["type"] = info.class_name;
126  root["color"] = color.JsonValue();
127  root["left"] = left.JsonValue();
128  root["top"] = top.JsonValue();
129  root["right"] = right.JsonValue();
130  root["bottom"] = bottom.JsonValue();
131 
132  // return JsonValue
133  return root;
134 }
135 
136 // Load JSON string into this object
137 void Bars::SetJson(string value) {
138 
139  // Parse JSON string into JSON objects
140  Json::Value root;
141  Json::Reader reader;
142  bool success = reader.parse( value, root );
143  if (!success)
144  // Raise exception
145  throw InvalidJSON("JSON could not be parsed (or is invalid)", "");
146 
147  try
148  {
149  // Set all values that match
150  SetJsonValue(root);
151  }
152  catch (exception e)
153  {
154  // Error parsing JSON (or missing keys)
155  throw InvalidJSON("JSON is invalid (missing keys or invalid data types)", "");
156  }
157 }
158 
159 // Load Json::JsonValue into this object
160 void Bars::SetJsonValue(Json::Value root) {
161 
162  // Set parent data
164 
165  // Set data from Json (if key is found)
166  if (!root["color"].isNull())
167  color.SetJsonValue(root["color"]);
168  if (!root["left"].isNull())
169  left.SetJsonValue(root["left"]);
170  if (!root["top"].isNull())
171  top.SetJsonValue(root["top"]);
172  if (!root["right"].isNull())
173  right.SetJsonValue(root["right"]);
174  if (!root["bottom"].isNull())
175  bottom.SetJsonValue(root["bottom"]);
176 }
177 
178 // Get all properties for a specific frame
179 string Bars::PropertiesJSON(int64_t requested_frame) {
180 
181  // Generate JSON properties list
182  Json::Value root;
183  root["id"] = add_property_json("ID", 0.0, "string", Id(), NULL, -1, -1, true, requested_frame);
184  root["position"] = add_property_json("Position", Position(), "float", "", NULL, 0, 1000 * 60 * 30, false, requested_frame);
185  root["layer"] = add_property_json("Track", Layer(), "int", "", NULL, 0, 20, false, requested_frame);
186  root["start"] = add_property_json("Start", Start(), "float", "", NULL, 0, 1000 * 60 * 30, false, requested_frame);
187  root["end"] = add_property_json("End", End(), "float", "", NULL, 0, 1000 * 60 * 30, false, requested_frame);
188  root["duration"] = add_property_json("Duration", Duration(), "float", "", NULL, 0, 1000 * 60 * 30, true, requested_frame);
189 
190  // Keyframes
191  root["color"] = add_property_json("Bar Color", 0.0, "color", "", NULL, 0, 255, false, requested_frame);
192  root["color"]["red"] = add_property_json("Red", color.red.GetValue(requested_frame), "float", "", &color.red, 0, 255, false, requested_frame);
193  root["color"]["blue"] = add_property_json("Blue", color.blue.GetValue(requested_frame), "float", "", &color.blue, 0, 255, false, requested_frame);
194  root["color"]["green"] = add_property_json("Green", color.green.GetValue(requested_frame), "float", "", &color.green, 0, 255, false, requested_frame);
195  root["left"] = add_property_json("Left Size", left.GetValue(requested_frame), "float", "", &left, 0.0, 0.5, false, requested_frame);
196  root["top"] = add_property_json("Top Size", top.GetValue(requested_frame), "float", "", &top, 0.0, 0.5, false, requested_frame);
197  root["right"] = add_property_json("Right Size", right.GetValue(requested_frame), "float", "", &right, 0.0, 0.5, false, requested_frame);
198  root["bottom"] = add_property_json("Bottom Size", bottom.GetValue(requested_frame), "float", "", &bottom, 0.0, 0.5, false, requested_frame);
199 
200  // Return formatted string
201  return root.toStyledString();
202 }
203 
Keyframe right
Size of right bar.
Definition: Bars.h:64
Json::Value JsonValue()
Generate Json::JsonValue for this object.
Definition: Color.cpp:92
Keyframe green
Curve representing the green value (0 - 255)
Definition: Color.h:46
string PropertiesJSON(int64_t requested_frame)
Definition: Bars.cpp:179
Color color
Color of bars.
Definition: Bars.h:61
Json::Value JsonValue()
Generate Json::JsonValue for this object.
Definition: KeyFrame.cpp:321
std::shared_ptr< Frame > GetFrame(std::shared_ptr< Frame > frame, int64_t frame_number)
This method is required for all derived classes of EffectBase, and returns a modified openshot::Frame...
Definition: Bars.cpp:62
Keyframe red
Curve representing the red value (0 - 255)
Definition: Color.h:45
string GetColorHex(int64_t frame_number)
Get the HEX value of a color at a specific frame.
Definition: Color.cpp:64
float End()
Get end position (in seconds) of clip (trim end of video)
Definition: ClipBase.h:86
Json::Value add_property_json(string name, float value, string type, string memo, Keyframe *keyframe, float min_value, float max_value, bool readonly, int64_t requested_frame)
Generate JSON for a property.
Definition: ClipBase.cpp:65
int Layer()
Get layer of clip on timeline (lower number is covered by higher numbers)
Definition: ClipBase.h:84
Json::Value JsonValue()
Generate Json::JsonValue for this object.
Definition: Bars.cpp:121
string class_name
The class name of the effect.
Definition: EffectBase.h:51
virtual Json::Value JsonValue()=0
Generate Json::JsonValue for this object.
Definition: EffectBase.cpp:81
void SetJsonValue(Json::Value root)
Load Json::JsonValue into this object.
Definition: KeyFrame.cpp:362
bool has_audio
Determines if this effect manipulates the audio of a frame.
Definition: EffectBase.h:56
void SetJson(string value)
Load JSON string into this object.
Definition: Bars.cpp:137
Keyframe top
Size of top bar.
Definition: Bars.h:63
Keyframe blue
Curve representing the red value (0 - 255)
Definition: Color.h:47
string Json()
Get and Set JSON methods.
Definition: Bars.cpp:114
string Id()
Get basic properties.
Definition: ClipBase.h:82
float Position()
Get position on timeline (in seconds)
Definition: ClipBase.h:83
string name
The name of the effect.
Definition: EffectBase.h:53
string description
The description of this effect and what it does.
Definition: EffectBase.h:54
virtual void SetJsonValue(Json::Value root)=0
Load Json::JsonValue into this object.
Definition: EffectBase.cpp:121
This class represents a color (used on the timeline and clips)
Definition: Color.h:42
double GetValue(int64_t index)
Get the value at a specific index.
Definition: KeyFrame.cpp:226
void SetJsonValue(Json::Value root)
Load Json::JsonValue into this object.
Definition: Bars.cpp:160
Keyframe left
Size of left bar.
Definition: Bars.h:62
bool has_video
Determines if this effect manipulates the image of a frame.
Definition: EffectBase.h:55
Exception for invalid JSON.
Definition: Exceptions.h:152
void SetJsonValue(Json::Value root)
Load Json::JsonValue into this object.
Definition: Color.cpp:129
Keyframe bottom
Size of bottom bar.
Definition: Bars.h:65
A Keyframe is a collection of Point instances, which is used to vary a number or property over time...
Definition: KeyFrame.h:64
float Duration()
Get the length of this clip (in seconds)
Definition: ClipBase.h:87
float Start()
Get start position (in seconds) of clip (trim start of video)
Definition: ClipBase.h:85
EffectInfoStruct info
Information about the current effect.
Definition: EffectBase.h:73
Bars()
Blank constructor, useful when using Json to load the effect properties.
Definition: Bars.cpp:33