Files
libopenshot/src/Coordinate.cpp

78 lines
1.9 KiB
C++
Raw Normal View History

2011-10-11 08:44:27 -05:00
/**
* @file
* @brief Source file for Coordinate class
* @author Jonathan Thomas <jonathan@openshot.org>
*
* @ref License
*/
// Copyright (c) 2008-2019 OpenShot Studios, LLC
//
// SPDX-License-Identifier: LGPL-3.0-or-later
2011-10-11 08:44:27 -05:00
#include "Coordinate.h"
2020-11-21 15:19:08 -05:00
#include "Exceptions.h"
2011-10-11 08:44:27 -05:00
using namespace openshot;
2020-12-04 10:04:56 -05:00
// Default constructor for a coordinate, delegating to the full signature
2021-08-09 09:54:59 -04:00
Coordinate::Coordinate() : Coordinate::Coordinate(0, 0) {}
2011-10-11 08:44:27 -05:00
// Constructor which also allows the user to set the X and Y
2021-08-09 09:54:59 -04:00
Coordinate::Coordinate(double x, double y) : X(x), Y(y) {}
2020-12-04 10:04:56 -05:00
// Constructor which accepts a std::pair for (X, Y)
Coordinate::Coordinate(const std::pair<double, double>& co)
2021-08-09 09:54:59 -04:00
: X(co.first), Y(co.second) {}
// Generate JSON string of this object
std::string Coordinate::Json() const {
// Return formatted string
return JsonValue().toStyledString();
}
// Generate Json::Value for this object
Json::Value Coordinate::JsonValue() const {
// Create root json object
Json::Value root;
root["X"] = X;
root["Y"] = Y;
//root["increasing"] = increasing;
//root["repeated"] = Json::Value(Json::objectValue);
//root["repeated"]["num"] = repeated.num;
//root["repeated"]["den"] = repeated.den;
//root["delta"] = delta;
// return JsonValue
return root;
}
// Load JSON string into this object
void Coordinate::SetJson(const std::string value) {
// Parse JSON string into JSON objects
try
{
const Json::Value root = openshot::stringToJson(value);
// Set all values that match
SetJsonValue(root);
}
2019-07-03 12:58:02 -04:00
catch (const std::exception& e)
{
// Error parsing JSON (or missing keys)
throw InvalidJSON("JSON is invalid (missing keys or invalid data types)");
}
}
// Load Json::Value into this object
void Coordinate::SetJsonValue(const Json::Value root) {
// Set data from Json (if key is found)
if (!root["X"].isNull())
X = root["X"].asDouble();
if (!root["Y"].isNull())
Y = root["Y"].asDouble();
}