2007-07-05 04:01:12 +02:00
|
|
|
// Copyright (c) 2007, Rodrigo Braz Monteiro
|
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
2007-07-05 04:01:12 +02:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file spline.cpp
|
|
|
|
/// @brief Manage vector drawings for visual typesetting tools
|
|
|
|
/// @ingroup visual_ts
|
|
|
|
///
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#ifndef AGI_PRE
|
2011-11-06 18:18:20 +01:00
|
|
|
#include <limits>
|
|
|
|
|
2007-07-05 06:32:46 +02:00
|
|
|
#include <wx/tokenzr.h>
|
2009-09-10 15:06:40 +02:00
|
|
|
#endif
|
|
|
|
|
2007-07-05 04:01:12 +02:00
|
|
|
#include "spline.h"
|
2011-11-06 18:18:20 +01:00
|
|
|
|
2007-07-07 07:51:18 +02:00
|
|
|
#include "utils.h"
|
2011-11-06 18:18:20 +01:00
|
|
|
#include "visual_tool.h"
|
2007-07-05 16:30:28 +02:00
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
Spline::Spline(const VisualToolBase &scale) : scale(scale) {
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
/// @brief Encode to ASS
|
2007-07-05 04:01:12 +02:00
|
|
|
wxString Spline::EncodeToASS() {
|
|
|
|
wxString result;
|
2011-11-06 18:18:20 +01:00
|
|
|
result.reserve(size() * 10);
|
|
|
|
char last = 0;
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
for (iterator cur = begin(); cur != end(); ++cur) {
|
2007-07-05 04:01:12 +02:00
|
|
|
switch (cur->type) {
|
2011-11-06 18:18:20 +01:00
|
|
|
case SplineCurve::POINT:
|
|
|
|
if (last != 'm') {
|
2011-09-28 21:43:11 +02:00
|
|
|
result += "m ";
|
2011-11-06 18:18:20 +01:00
|
|
|
last = 'm';
|
2010-06-08 08:09:19 +02:00
|
|
|
}
|
2011-11-06 18:18:20 +01:00
|
|
|
result += scale.ToScriptCoords(cur->p1).DStr(' ');
|
2010-06-08 08:09:19 +02:00
|
|
|
break;
|
2011-11-06 18:18:20 +01:00
|
|
|
|
|
|
|
case SplineCurve::LINE:
|
|
|
|
if (last != 'l') {
|
2011-09-28 21:43:11 +02:00
|
|
|
result += "l ";
|
2011-11-06 18:18:20 +01:00
|
|
|
last = 'l';
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
2011-11-06 18:18:20 +01:00
|
|
|
result += scale.ToScriptCoords(cur->p2).DStr(' ');
|
2007-07-05 04:01:12 +02:00
|
|
|
break;
|
2011-11-06 18:18:20 +01:00
|
|
|
|
|
|
|
case SplineCurve::BICUBIC:
|
|
|
|
if (last != 'b') {
|
2011-09-28 21:43:11 +02:00
|
|
|
result += "b ";
|
2011-11-06 18:18:20 +01:00
|
|
|
last = 'b';
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
2011-12-06 19:08:23 +01:00
|
|
|
result += scale.ToScriptCoords(cur->p2).DStr(' ') + " ";
|
|
|
|
result += scale.ToScriptCoords(cur->p3).DStr(' ') + " ";
|
2011-11-06 18:18:20 +01:00
|
|
|
result += scale.ToScriptCoords(cur->p4).DStr(' ');
|
2007-07-05 04:01:12 +02:00
|
|
|
break;
|
2011-11-06 18:18:20 +01:00
|
|
|
|
2007-07-05 04:01:12 +02:00
|
|
|
default: break;
|
|
|
|
}
|
2011-11-06 18:18:20 +01:00
|
|
|
result += " ";
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Spline::DecodeFromASS(wxString str) {
|
|
|
|
// Clear current
|
2010-06-08 08:09:19 +02:00
|
|
|
clear();
|
2011-11-06 18:18:20 +01:00
|
|
|
std::vector<float> stack;
|
2007-07-05 06:32:46 +02:00
|
|
|
|
|
|
|
// Prepare
|
2011-11-06 18:18:20 +01:00
|
|
|
char command = 'm';
|
|
|
|
Vector2D pt;
|
2007-07-05 06:32:46 +02:00
|
|
|
|
|
|
|
// Tokenize the string
|
2011-11-06 18:18:20 +01:00
|
|
|
wxStringTokenizer tkn(str, " ");
|
2007-07-05 06:32:46 +02:00
|
|
|
while (tkn.HasMoreTokens()) {
|
|
|
|
wxString token = tkn.GetNextToken();
|
2011-11-06 18:18:20 +01:00
|
|
|
double n;
|
|
|
|
if (token.ToCDouble(&n)) {
|
2007-07-05 06:32:46 +02:00
|
|
|
stack.push_back(n);
|
|
|
|
|
|
|
|
// Move
|
2011-11-06 18:18:20 +01:00
|
|
|
if (stack.size() == 2 && command == 'm') {
|
|
|
|
pt = scale.FromScriptCoords(Vector2D(stack[0], stack[1]));
|
2007-07-05 06:32:46 +02:00
|
|
|
stack.clear();
|
2011-11-06 18:18:20 +01:00
|
|
|
|
|
|
|
push_back(pt);
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Line
|
2011-11-06 18:18:20 +01:00
|
|
|
if (stack.size() == 2 && command == 'l') {
|
|
|
|
SplineCurve curve(pt, scale.FromScriptCoords(Vector2D(stack[0], stack[1])));
|
2010-06-08 08:09:19 +02:00
|
|
|
push_back(curve);
|
2011-11-06 18:18:20 +01:00
|
|
|
|
|
|
|
pt = curve.p2;
|
|
|
|
stack.clear();
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Bicubic
|
2011-11-06 18:18:20 +01:00
|
|
|
else if (stack.size() == 6 && command == 'b') {
|
|
|
|
SplineCurve curve(pt,
|
|
|
|
scale.FromScriptCoords(Vector2D(stack[0], stack[1])),
|
|
|
|
scale.FromScriptCoords(Vector2D(stack[2], stack[3])),
|
|
|
|
scale.FromScriptCoords(Vector2D(stack[4], stack[5])));
|
2010-06-08 08:09:19 +02:00
|
|
|
push_back(curve);
|
2007-07-05 06:32:46 +02:00
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
pt = curve.p4;
|
2007-07-05 06:32:46 +02:00
|
|
|
stack.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Got something else
|
2011-11-06 18:18:20 +01:00
|
|
|
else if (token.size() == 1) {
|
|
|
|
command = token[0];
|
|
|
|
stack.clear();
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
}
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
void Spline::MovePoint(iterator curve,int point,Vector2D pos) {
|
2010-06-08 08:09:19 +02:00
|
|
|
iterator prev = curve;
|
|
|
|
if (curve != begin()) --prev;
|
|
|
|
iterator next = curve;
|
|
|
|
++next;
|
2011-11-06 18:18:20 +01:00
|
|
|
if (next != end() && next->type == SplineCurve::POINT)
|
|
|
|
next = end();
|
2007-07-05 06:32:46 +02:00
|
|
|
|
|
|
|
// Modify
|
|
|
|
if (point == 0) {
|
2010-06-08 08:09:19 +02:00
|
|
|
curve->p1 = pos;
|
2011-11-06 18:18:20 +01:00
|
|
|
if (curve != begin() && curve->type != SplineCurve::POINT)
|
|
|
|
prev->EndPoint() = pos;
|
|
|
|
if (next != end() && curve->type == SplineCurve::POINT)
|
|
|
|
next->p1 = pos;
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
else if (point == 1) {
|
2010-06-08 08:09:19 +02:00
|
|
|
curve->p2 = pos;
|
2011-11-06 18:18:20 +01:00
|
|
|
if (next != end() && curve->type == SplineCurve::LINE)
|
|
|
|
next->p1 = pos;
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
else if (point == 2) {
|
2010-06-08 08:09:19 +02:00
|
|
|
curve->p3 = pos;
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
else if (point == 3) {
|
2010-06-08 08:09:19 +02:00
|
|
|
curve->p4 = pos;
|
2011-11-06 18:18:20 +01:00
|
|
|
if (next != end())
|
|
|
|
next->p1 = pos;
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
static int render_bicubic(Spline::iterator cur, std::vector<float> &points) {
|
|
|
|
int len = int(
|
|
|
|
(cur->p2 - cur->p1).Len() +
|
|
|
|
(cur->p3 - cur->p2).Len() +
|
|
|
|
(cur->p4 - cur->p3).Len());
|
|
|
|
int steps = len/8;
|
|
|
|
|
|
|
|
for (int i = 0; i <= steps; ++i) {
|
|
|
|
// Get t and t-1 (u)
|
|
|
|
float t = i / float(steps);
|
|
|
|
Vector2D p = cur->GetPoint(t);
|
|
|
|
points.push_back(p.X());
|
|
|
|
points.push_back(p.Y());
|
|
|
|
}
|
|
|
|
|
|
|
|
return steps;
|
|
|
|
}
|
|
|
|
|
2010-06-08 08:09:19 +02:00
|
|
|
void Spline::GetPointList(std::vector<float>& points, std::vector<int>& first, std::vector<int>& count) {
|
2007-07-05 04:01:12 +02:00
|
|
|
points.clear();
|
2010-06-08 08:09:19 +02:00
|
|
|
first.clear();
|
|
|
|
count.clear();
|
|
|
|
|
|
|
|
points.reserve((size() + 1) * 2);
|
|
|
|
int curCount = 0;
|
2007-07-05 04:01:12 +02:00
|
|
|
|
|
|
|
// Generate points for each curve
|
2011-11-06 18:18:20 +01:00
|
|
|
for (iterator cur = begin(); cur != end(); ++cur) {
|
2010-06-08 08:09:19 +02:00
|
|
|
switch (cur->type) {
|
2011-11-06 18:18:20 +01:00
|
|
|
case SplineCurve::POINT:
|
|
|
|
if (curCount > 0)
|
2010-06-08 08:09:19 +02:00
|
|
|
count.push_back(curCount);
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2010-06-08 08:09:19 +02:00
|
|
|
// start new path
|
|
|
|
first.push_back(points.size() / 2);
|
2011-11-06 18:18:20 +01:00
|
|
|
points.push_back(cur->p1.X());
|
|
|
|
points.push_back(cur->p1.Y());
|
2010-06-08 08:09:19 +02:00
|
|
|
curCount = 1;
|
|
|
|
break;
|
2011-11-06 18:18:20 +01:00
|
|
|
|
|
|
|
case SplineCurve::LINE:
|
|
|
|
points.push_back(cur->p2.X());
|
|
|
|
points.push_back(cur->p2.Y());
|
|
|
|
++curCount;
|
2010-06-08 08:09:19 +02:00
|
|
|
break;
|
2011-11-06 18:18:20 +01:00
|
|
|
|
|
|
|
case SplineCurve::BICUBIC:
|
|
|
|
curCount += render_bicubic(cur, points);
|
2010-06-08 08:09:19 +02:00
|
|
|
break;
|
2011-11-06 18:18:20 +01:00
|
|
|
|
2010-06-08 08:09:19 +02:00
|
|
|
default: break;
|
2007-07-08 09:22:09 +02:00
|
|
|
}
|
2010-06-08 08:09:19 +02:00
|
|
|
}
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2010-06-08 08:09:19 +02:00
|
|
|
count.push_back(curCount);
|
|
|
|
}
|
2011-11-06 18:18:20 +01:00
|
|
|
|
2010-06-08 08:09:19 +02:00
|
|
|
void Spline::GetPointList(std::vector<float> &points, iterator curve) {
|
|
|
|
points.clear();
|
|
|
|
if (curve == end()) return;
|
|
|
|
switch (curve->type) {
|
2011-11-06 18:18:20 +01:00
|
|
|
case SplineCurve::LINE:
|
|
|
|
points.push_back(curve->p1.X());
|
|
|
|
points.push_back(curve->p1.Y());
|
|
|
|
points.push_back(curve->p2.X());
|
|
|
|
points.push_back(curve->p2.Y());
|
2010-06-08 08:09:19 +02:00
|
|
|
break;
|
2011-11-06 18:18:20 +01:00
|
|
|
|
|
|
|
case SplineCurve::BICUBIC:
|
|
|
|
render_bicubic(curve, points);
|
2010-06-08 08:09:19 +02:00
|
|
|
break;
|
2011-11-06 18:18:20 +01:00
|
|
|
|
2010-06-08 08:09:19 +02:00
|
|
|
default: break;
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
void Spline::GetClosestParametricPoint(Vector2D reference,iterator &curve,float &t,Vector2D &pt) {
|
2010-06-08 08:09:19 +02:00
|
|
|
curve = end();
|
|
|
|
t = 0.f;
|
|
|
|
if (empty()) return;
|
2007-07-07 10:53:11 +02:00
|
|
|
|
|
|
|
// Close the shape
|
2011-11-06 18:18:20 +01:00
|
|
|
push_back(SplineCurve(back().EndPoint(), front().p1));
|
2007-07-07 10:53:11 +02:00
|
|
|
|
2010-06-08 08:09:19 +02:00
|
|
|
float closest = std::numeric_limits<float>::infinity();
|
2011-11-06 18:18:20 +01:00
|
|
|
for (iterator cur = begin(); cur != end(); ++cur) {
|
2007-07-07 10:53:11 +02:00
|
|
|
float param = cur->GetClosestParam(reference);
|
|
|
|
Vector2D p1 = cur->GetPoint(param);
|
2010-06-08 08:09:19 +02:00
|
|
|
float dist = (p1-reference).SquareLen();
|
2007-07-07 10:53:11 +02:00
|
|
|
if (dist < closest) {
|
|
|
|
closest = dist;
|
|
|
|
t = param;
|
2010-06-08 08:09:19 +02:00
|
|
|
curve = cur;
|
2007-07-07 10:53:11 +02:00
|
|
|
pt = p1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-08 08:09:19 +02:00
|
|
|
if (&*curve == &back()) {
|
|
|
|
curve = end();
|
|
|
|
}
|
|
|
|
|
2007-07-07 10:53:11 +02:00
|
|
|
// Remove closing and return
|
2010-06-08 08:09:19 +02:00
|
|
|
pop_back();
|
2007-07-05 16:30:28 +02:00
|
|
|
}
|
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
Vector2D Spline::GetClosestPoint(Vector2D reference) {
|
2010-06-08 08:09:19 +02:00
|
|
|
iterator curve;
|
2007-07-07 10:53:11 +02:00
|
|
|
float t;
|
|
|
|
Vector2D point;
|
2011-11-06 18:18:20 +01:00
|
|
|
GetClosestParametricPoint(reference, curve, t, point);
|
2007-07-07 10:53:11 +02:00
|
|
|
return point;
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
|
|
|
|
2007-07-07 07:51:18 +02:00
|
|
|
void Spline::Smooth(float smooth) {
|
|
|
|
// See if there are enough curves
|
2010-06-08 08:09:19 +02:00
|
|
|
if (size() < 3) return;
|
2007-07-07 07:51:18 +02:00
|
|
|
|
|
|
|
// Smooth curve
|
2010-06-08 08:09:19 +02:00
|
|
|
iterator curve1 = end();
|
|
|
|
--curve1;
|
2011-11-06 18:18:20 +01:00
|
|
|
for (iterator cur = begin(); cur != end(); ) {
|
2010-06-08 08:09:19 +02:00
|
|
|
iterator curve0 = curve1;
|
|
|
|
curve1 = cur;
|
2011-11-06 18:18:20 +01:00
|
|
|
++cur;
|
2010-06-08 08:09:19 +02:00
|
|
|
iterator curve2 = cur == end() ? begin() : cur;
|
2007-07-07 07:51:18 +02:00
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
curve1->Smooth(curve0->p1, curve2->p2, smooth);
|
2007-07-07 07:51:18 +02:00
|
|
|
}
|
|
|
|
}
|