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
|
/**
* @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
#include "Coordinate.h"
#include "Exceptions.h"
using namespace openshot;
// Default constructor for a coordinate, delegating to the full signature
Coordinate::Coordinate() : Coordinate::Coordinate(0, 0) {}
// Constructor which also allows the user to set the X and Y
Coordinate::Coordinate(double x, double y) : X(x), Y(y) {}
// Constructor which accepts a std::pair for (X, Y)
Coordinate::Coordinate(const std::pair<double, double>& co)
: 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);
}
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();
}
|