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
|
|
|
|
|
|
|
|
|
|
|
///////////
|
|
|
|
// Headers
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2007-07-05 06:32:46 +02:00
|
|
|
#include <wx/tokenzr.h>
|
2007-07-05 04:01:12 +02:00
|
|
|
#include "spline.h"
|
2007-07-07 07:51:18 +02:00
|
|
|
#include "utils.h"
|
2007-07-05 16:30:28 +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 Spline constructor
|
|
|
|
///
|
2007-07-05 04:01:12 +02:00
|
|
|
Spline::Spline() {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-05 04:01:12 +02:00
|
|
|
wxString Spline::EncodeToASS() {
|
|
|
|
wxString result;
|
|
|
|
char lastCommand = 0;
|
|
|
|
|
|
|
|
// At least one element?
|
|
|
|
bool isFirst = true;
|
|
|
|
|
|
|
|
// Insert each element
|
2007-07-05 06:32:46 +02:00
|
|
|
for (std::list<SplineCurve>::iterator cur=curves.begin();cur!=curves.end();cur++) {
|
2007-07-05 04:01:12 +02:00
|
|
|
// Start of spline
|
|
|
|
if (isFirst) {
|
2007-07-05 16:15:28 +02:00
|
|
|
result = wxString::Format(_T("m %i %i "),(int)cur->p1.x,(int)cur->p1.y);
|
2007-07-05 04:01:12 +02:00
|
|
|
lastCommand = 'm';
|
|
|
|
isFirst = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Each curve
|
|
|
|
switch (cur->type) {
|
|
|
|
case CURVE_LINE:
|
|
|
|
if (lastCommand != 'l') {
|
|
|
|
result += _T("l ");
|
|
|
|
lastCommand = 'l';
|
|
|
|
}
|
2007-07-05 16:15:28 +02:00
|
|
|
result += wxString::Format(_T("%i %i "),(int)cur->p2.x,(int)cur->p2.y);
|
2007-07-05 04:01:12 +02:00
|
|
|
break;
|
|
|
|
case CURVE_BICUBIC:
|
|
|
|
if (lastCommand != 'b') {
|
|
|
|
result += _T("b ");
|
|
|
|
lastCommand = 'b';
|
|
|
|
}
|
2007-07-05 16:15:28 +02:00
|
|
|
result += wxString::Format(_T("%i %i %i %i %i %i "),(int)cur->p2.x,(int)cur->p2.y,(int)cur->p3.x,(int)cur->p3.y,(int)cur->p4.x,(int)cur->p4.y);
|
2007-07-05 04:01:12 +02:00
|
|
|
break;
|
|
|
|
default: break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Decode from ASS
|
|
|
|
/// @param str
|
|
|
|
///
|
2007-07-05 04:01:12 +02:00
|
|
|
void Spline::DecodeFromASS(wxString str) {
|
|
|
|
// Clear current
|
|
|
|
curves.clear();
|
2007-07-05 06:32:46 +02:00
|
|
|
std::vector<int> stack;
|
|
|
|
|
|
|
|
// Prepare
|
|
|
|
char lastCommand = 'm';
|
|
|
|
int x = 0;
|
|
|
|
int y = 0;
|
2007-07-07 08:41:14 +02:00
|
|
|
bool coordsSet = false;
|
2007-07-05 06:32:46 +02:00
|
|
|
|
|
|
|
// Tokenize the string
|
|
|
|
wxStringTokenizer tkn(str,_T(" "));
|
|
|
|
while (tkn.HasMoreTokens()) {
|
|
|
|
wxString token = tkn.GetNextToken();
|
|
|
|
|
|
|
|
// Got a number
|
|
|
|
if (token.IsNumber()) {
|
|
|
|
long n;
|
|
|
|
token.ToLong(&n);
|
|
|
|
stack.push_back(n);
|
|
|
|
|
|
|
|
// Move
|
|
|
|
if (stack.size() == 2 && lastCommand == 'm') {
|
|
|
|
x = stack[0];
|
|
|
|
y = stack[1];
|
2007-07-07 08:41:14 +02:00
|
|
|
coordsSet = true;
|
2007-07-05 06:32:46 +02:00
|
|
|
stack.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Line
|
|
|
|
if (stack.size() == 2 && lastCommand == 'l') {
|
|
|
|
SplineCurve curve;
|
2007-07-05 16:15:28 +02:00
|
|
|
curve.p1.x = x;
|
|
|
|
curve.p1.y = y;
|
|
|
|
curve.p2.x = stack[0];
|
|
|
|
curve.p2.y = stack[1];
|
2007-07-05 06:32:46 +02:00
|
|
|
curve.type = CURVE_LINE;
|
2008-03-13 21:27:25 +01:00
|
|
|
x = (int)curve.p2.x;
|
|
|
|
y = (int)curve.p2.y;
|
2007-07-05 06:32:46 +02:00
|
|
|
stack.clear();
|
|
|
|
AppendCurve(curve);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bicubic
|
|
|
|
else if (stack.size() == 6 && lastCommand == 'b') {
|
|
|
|
SplineCurve curve;
|
2007-07-05 16:15:28 +02:00
|
|
|
curve.p1.x = x;
|
|
|
|
curve.p1.y = y;
|
|
|
|
curve.p2.x = stack[0];
|
|
|
|
curve.p2.y = stack[1];
|
|
|
|
curve.p3.x = stack[2];
|
|
|
|
curve.p3.y = stack[3];
|
|
|
|
curve.p4.x = stack[4];
|
|
|
|
curve.p4.y = stack[5];
|
2007-07-05 06:32:46 +02:00
|
|
|
curve.type = CURVE_BICUBIC;
|
2008-03-13 21:27:25 +01:00
|
|
|
x = (int)curve.p4.x;
|
|
|
|
y = (int)curve.p4.y;
|
2007-07-05 06:32:46 +02:00
|
|
|
stack.clear();
|
|
|
|
AppendCurve(curve);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close
|
|
|
|
else if (lastCommand == 'c') {
|
|
|
|
stack.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Got something else
|
|
|
|
else {
|
|
|
|
if (token == _T("m")) lastCommand = 'm';
|
|
|
|
else if (token == _T("l")) lastCommand = 'l';
|
|
|
|
else if (token == _T("b")) lastCommand = 'b';
|
|
|
|
else if (token == _T("n")) lastCommand = 'n';
|
|
|
|
else if (token == _T("s")) lastCommand = 's';
|
|
|
|
else if (token == _T("c")) lastCommand = 'c';
|
|
|
|
}
|
|
|
|
}
|
2007-07-07 08:41:14 +02:00
|
|
|
|
|
|
|
// Got coordinates, but list is empty
|
|
|
|
if (curves.size() == 0 && coordsSet) {
|
|
|
|
SplineCurve curve;
|
|
|
|
curve.p1.x = x;
|
|
|
|
curve.p1.y = y;
|
|
|
|
curve.type = CURVE_POINT;
|
|
|
|
AppendCurve(curve);
|
|
|
|
}
|
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 Insert a curve to the spline
|
|
|
|
/// @param curve
|
|
|
|
/// @param index
|
|
|
|
///
|
2007-07-07 23:13:20 +02:00
|
|
|
void Spline::InsertCurve(SplineCurve &curve,int index) {
|
|
|
|
if (index == -1) curves.push_back(curve);
|
|
|
|
else {
|
|
|
|
std::list<SplineCurve>::iterator cur;
|
|
|
|
int i=0;
|
2009-07-14 23:28:49 +02:00
|
|
|
for (cur=curves.begin();cur!=curves.end() && i < index;cur++,i++) ;
|
2007-07-07 23:13:20 +02:00
|
|
|
curves.insert(cur,curve);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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 Get a specific curve
|
|
|
|
/// @param index
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-07 23:13:20 +02:00
|
|
|
SplineCurve *Spline::GetCurve(int index) {
|
|
|
|
int i=0;
|
|
|
|
for (std::list<SplineCurve>::iterator cur=curves.begin();cur!=curves.end() && i <= index;cur++,i++) {
|
|
|
|
if (i==index) return &(*cur);
|
|
|
|
}
|
|
|
|
return NULL;
|
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 Moves a specific point in the spline
|
|
|
|
/// @param curveIndex
|
|
|
|
/// @param point
|
|
|
|
/// @param pos
|
|
|
|
///
|
2007-07-05 04:01:12 +02:00
|
|
|
void Spline::MovePoint(int curveIndex,int point,wxPoint pos) {
|
2007-07-05 06:32:46 +02:00
|
|
|
// Curves
|
2007-07-05 04:01:12 +02:00
|
|
|
int i = 0;
|
2007-07-05 06:32:46 +02:00
|
|
|
SplineCurve *c0 = NULL;
|
|
|
|
SplineCurve *c1 = NULL;
|
|
|
|
SplineCurve *c2 = NULL;
|
|
|
|
|
|
|
|
// Indices
|
2007-07-05 06:56:56 +02:00
|
|
|
//int size = curves.size();
|
2007-07-05 06:32:46 +02:00
|
|
|
int i0 = curveIndex-1;
|
|
|
|
int i1 = curveIndex;
|
|
|
|
int i2 = curveIndex+1;
|
|
|
|
//if (i0 < 0) i0 = size-1;
|
|
|
|
//if (i2 >= size) i2 = 0;
|
|
|
|
|
|
|
|
// Get the curves
|
2007-07-05 04:01:12 +02:00
|
|
|
for (std::list<SplineCurve>::iterator cur = curves.begin();cur!=curves.end();cur++) {
|
2007-07-05 06:32:46 +02:00
|
|
|
if (i == i0) c0 = &(*cur);
|
|
|
|
if (i == i1) c1 = &(*cur);
|
|
|
|
if (i == i2) c2 = &(*cur);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Modify
|
|
|
|
if (point == 0) {
|
2007-07-05 16:15:28 +02:00
|
|
|
c1->p1.x = pos.x;
|
|
|
|
c1->p1.y = pos.y;
|
2007-07-05 06:32:46 +02:00
|
|
|
if (c0) {
|
|
|
|
if (c0->type == CURVE_BICUBIC) {
|
2007-07-05 16:15:28 +02:00
|
|
|
c0->p4.x = pos.x;
|
|
|
|
c0->p4.y = pos.y;
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
else {
|
2007-07-05 16:15:28 +02:00
|
|
|
c0->p2.x = pos.x;
|
|
|
|
c0->p2.y = pos.y;
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
|
|
|
}
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
else if (point == 1) {
|
2007-07-05 16:15:28 +02:00
|
|
|
c1->p2.x = pos.x;
|
|
|
|
c1->p2.y = pos.y;
|
2007-07-05 06:32:46 +02:00
|
|
|
if (c2 && c1->type != CURVE_BICUBIC) {
|
2007-07-05 16:15:28 +02:00
|
|
|
c2->p1.x = pos.x;
|
|
|
|
c2->p1.y = pos.y;
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (point == 2) {
|
2007-07-05 16:15:28 +02:00
|
|
|
c1->p3.x = pos.x;
|
|
|
|
c1->p3.y = pos.y;
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
|
|
|
else if (point == 3) {
|
2007-07-05 16:15:28 +02:00
|
|
|
c1->p4.x = pos.x;
|
|
|
|
c1->p4.y = pos.y;
|
2007-07-05 06:32:46 +02:00
|
|
|
if (c2 && c1->type == CURVE_BICUBIC) {
|
2007-07-05 16:15:28 +02:00
|
|
|
c2->p1.x = pos.x;
|
|
|
|
c2->p1.y = pos.y;
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
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 Gets a list of points in the curve
|
|
|
|
/// @param points
|
|
|
|
/// @param pointCurve
|
|
|
|
///
|
2007-07-08 09:22:09 +02:00
|
|
|
void Spline::GetPointList(std::vector<Vector2D> &points,std::vector<int> &pointCurve) {
|
2007-07-05 04:01:12 +02:00
|
|
|
// Prepare
|
|
|
|
points.clear();
|
2007-07-08 09:22:09 +02:00
|
|
|
pointCurve.clear();
|
2007-07-05 16:15:28 +02:00
|
|
|
Vector2D pt;
|
2007-07-05 04:01:12 +02:00
|
|
|
bool isFirst = true;
|
2007-07-08 09:22:09 +02:00
|
|
|
int curve = 0;
|
2007-07-05 04:01:12 +02:00
|
|
|
|
|
|
|
// Generate points for each curve
|
2007-07-08 09:22:09 +02:00
|
|
|
for (std::list<SplineCurve>::iterator cur = curves.begin();cur!=curves.end();cur++,curve++) {
|
2007-07-05 04:01:12 +02:00
|
|
|
// First point
|
2007-07-08 09:22:09 +02:00
|
|
|
if (isFirst) {
|
|
|
|
points.push_back(cur->p1);
|
|
|
|
pointCurve.push_back(curve);
|
|
|
|
}
|
2007-07-05 04:01:12 +02:00
|
|
|
|
|
|
|
// Line
|
2007-07-08 09:22:09 +02:00
|
|
|
if (cur->type == CURVE_LINE) {
|
|
|
|
points.push_back(cur->p2);
|
|
|
|
pointCurve.push_back(curve);
|
|
|
|
}
|
2007-07-05 04:01:12 +02:00
|
|
|
|
|
|
|
// Bicubic
|
|
|
|
else if (cur->type == CURVE_BICUBIC) {
|
|
|
|
// Get the control points
|
2007-07-05 16:15:28 +02:00
|
|
|
Vector2D p1 = cur->p1;
|
|
|
|
Vector2D p2 = cur->p2;
|
|
|
|
Vector2D p3 = cur->p3;
|
|
|
|
Vector2D p4 = cur->p4;
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2007-07-05 06:56:56 +02:00
|
|
|
// Find number of steps
|
2008-03-13 21:27:25 +01:00
|
|
|
int len = (int)((p2-p1).Len() + (p3-p2).Len() + (p4-p3).Len());
|
2007-07-05 06:56:56 +02:00
|
|
|
int steps = len/8;
|
|
|
|
|
|
|
|
// Render curve
|
2007-07-07 23:13:20 +02:00
|
|
|
for (int i=1;i<=steps;i++) {
|
2007-07-05 04:01:12 +02:00
|
|
|
// Get t and t-1 (u)
|
|
|
|
float t = float(i)/float(steps);
|
2007-07-07 10:53:11 +02:00
|
|
|
points.push_back(cur->GetPoint(t));
|
2007-07-08 09:22:09 +02:00
|
|
|
pointCurve.push_back(curve);
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-07-05 06:32:46 +02:00
|
|
|
|
|
|
|
// Insert a copy of the first point at the end
|
|
|
|
if (points.size()) {
|
|
|
|
points.push_back(points[0]);
|
2007-07-08 09:22:09 +02:00
|
|
|
pointCurve.push_back(curve);
|
2007-07-05 06:32:46 +02:00
|
|
|
}
|
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 t value and curve of the point closest to reference
|
|
|
|
/// @param reference
|
|
|
|
/// @param curve
|
|
|
|
/// @param t
|
|
|
|
/// @param pt
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-07 10:53:11 +02:00
|
|
|
void Spline::GetClosestParametricPoint(Vector2D reference,int &curve,float &t,Vector2D &pt) {
|
|
|
|
// Has at least one curve?
|
2007-07-08 09:22:09 +02:00
|
|
|
curve = -1;
|
2007-07-07 10:53:11 +02:00
|
|
|
t = 0.0f;
|
|
|
|
if (curves.size() == 0) return;
|
|
|
|
|
|
|
|
// Close the shape
|
|
|
|
SplineCurve pad;
|
|
|
|
pad.p1 = curves.back().GetEndPoint();
|
|
|
|
pad.p2 = curves.front().p1;
|
|
|
|
pad.type = CURVE_LINE;
|
|
|
|
curves.push_back(pad);
|
|
|
|
|
|
|
|
// Prepare
|
|
|
|
float closest = 8000000.0f;
|
|
|
|
int i = 0;
|
|
|
|
for (std::list<SplineCurve>::iterator cur = curves.begin();cur!=curves.end();cur++,i++) {
|
|
|
|
float param = cur->GetClosestParam(reference);
|
|
|
|
Vector2D p1 = cur->GetPoint(param);
|
|
|
|
float dist = (p1-reference).Len();
|
|
|
|
if (dist < closest) {
|
|
|
|
closest = dist;
|
|
|
|
t = param;
|
|
|
|
curve = i;
|
|
|
|
pt = p1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove closing and return
|
|
|
|
curves.pop_back();
|
2007-07-05 16:30:28 +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 Point closest to reference
|
|
|
|
/// @param reference
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-05 16:15:28 +02:00
|
|
|
Vector2D Spline::GetClosestPoint(Vector2D reference) {
|
2007-07-07 10:53:11 +02:00
|
|
|
int curve;
|
|
|
|
float t;
|
|
|
|
Vector2D point;
|
|
|
|
GetClosestParametricPoint(reference,curve,t,point);
|
|
|
|
return point;
|
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 Control point closest to reference
|
|
|
|
/// @param reference
|
|
|
|
/// @return
|
|
|
|
///
|
2007-07-05 16:15:28 +02:00
|
|
|
Vector2D Spline::GetClosestControlPoint(Vector2D reference) {
|
2007-07-05 16:30:28 +02:00
|
|
|
// TODO
|
2007-07-05 16:15:28 +02:00
|
|
|
return Vector2D(-1,-1);
|
2007-07-05 04:01:12 +02:00
|
|
|
}
|
2007-07-07 07:51:18 +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 Smoothes the spline
|
|
|
|
/// @param smooth
|
|
|
|
///
|
2007-07-07 07:51:18 +02:00
|
|
|
void Spline::Smooth(float smooth) {
|
|
|
|
// See if there are enough curves
|
|
|
|
if (curves.size() < 3) return;
|
|
|
|
|
|
|
|
// Smooth curve
|
|
|
|
SplineCurve *curve0 = NULL;
|
|
|
|
SplineCurve *curve1 = &curves.back();
|
|
|
|
SplineCurve *curve2 = NULL;
|
|
|
|
for (std::list<SplineCurve>::iterator cur=curves.begin();cur!=curves.end();) {
|
|
|
|
// Get curves
|
|
|
|
curve0 = curve1;
|
|
|
|
curve1 = &(*cur);
|
|
|
|
cur++;
|
|
|
|
if (cur == curves.end()) curve2 = &curves.front();
|
|
|
|
else curve2 = &(*cur);
|
|
|
|
|
|
|
|
// Smooth curve
|
|
|
|
curve1->Smooth(curve0->p1,curve2->p2,smooth);
|
|
|
|
}
|
|
|
|
}
|
2009-07-29 07:43:02 +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
|
|
|
|