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.h
|
|
|
|
/// @see spline.cpp
|
|
|
|
/// @ingroup visual_ts
|
|
|
|
///
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2009-09-11 04:36:34 +02:00
|
|
|
#ifndef AGI_PRE
|
2007-07-05 04:01:12 +02:00
|
|
|
#include <list>
|
|
|
|
#include <vector>
|
|
|
|
|
2009-09-11 04:36:34 +02:00
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "spline_curve.h"
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
class VisualToolBase;
|
2010-05-16 08:39:11 +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
|
|
|
/// DOCME
|
|
|
|
/// @class Spline
|
|
|
|
/// @brief DOCME
|
2010-06-08 08:09:19 +02:00
|
|
|
class Spline : private std::list<SplineCurve> {
|
2012-01-26 01:29:08 +01:00
|
|
|
/// Visual tool to do the conversion between script and video pixels
|
|
|
|
const VisualToolBase &coord_translator;
|
|
|
|
/// Spline scale
|
|
|
|
int scale;
|
|
|
|
int raw_scale;
|
|
|
|
|
|
|
|
/// Video coordinates -> Script coordinates
|
|
|
|
Vector2D ToScript(Vector2D vec) const;
|
|
|
|
|
|
|
|
/// Script coordinates -> Video coordinates
|
|
|
|
Vector2D FromScript(Vector2D vec) const;
|
2007-07-05 06:32:46 +02:00
|
|
|
public:
|
2011-11-06 18:18:20 +01:00
|
|
|
Spline(const VisualToolBase &scale);
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
/// Encode to an ASS vector drawing
|
2012-03-20 01:39:10 +01:00
|
|
|
wxString EncodeToASS() const;
|
2011-11-06 18:18:20 +01:00
|
|
|
|
|
|
|
/// Decode an ASS vector drawing
|
2007-07-05 04:01:12 +02:00
|
|
|
void DecodeFromASS(wxString str);
|
|
|
|
|
2012-01-26 01:29:08 +01:00
|
|
|
/// Set the scale
|
|
|
|
/// @param new_scale Power-of-two to scale coordinates by
|
|
|
|
void SetScale(int new_scale);
|
|
|
|
/// Get the current scale
|
|
|
|
int GetScale() const { return raw_scale; }
|
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
/// @brief Moves a specific point in the spline
|
|
|
|
/// @param curve Curve which the point is in
|
|
|
|
/// @param point Index in the curve
|
|
|
|
/// @param pos New position
|
|
|
|
void MovePoint(iterator curve, int point, Vector2D pos);
|
|
|
|
|
|
|
|
/// Smooth the spline
|
2007-07-07 07:51:18 +02:00
|
|
|
void Smooth(float smooth=1.0f);
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
/// Gets a list of points in the curve
|
2010-06-08 08:09:19 +02:00
|
|
|
void GetPointList(std::vector<float>& points, std::vector<int>& first, std::vector<int>& count);
|
2011-11-06 18:18:20 +01:00
|
|
|
/// Gets a list of points in the curve
|
2010-06-08 08:09:19 +02:00
|
|
|
void GetPointList(std::vector<float> &points, iterator curve);
|
|
|
|
|
2011-11-06 18:18:20 +01:00
|
|
|
/// Get t value and curve of the point closest to reference
|
|
|
|
void GetClosestParametricPoint(Vector2D reference, iterator& curve, float &t, Vector2D &point);
|
|
|
|
/// Get closest point on the curve to reference
|
|
|
|
Vector2D GetClosestPoint(Vector2D reference);
|
|
|
|
Vector2D GetClosestControlPoint(Vector2D reference);
|
2010-06-08 08:09:19 +02:00
|
|
|
|
|
|
|
// This list intentionally excludes things specific to std::list
|
|
|
|
using std::list<SplineCurve>::value_type;
|
|
|
|
using std::list<SplineCurve>::pointer;
|
|
|
|
using std::list<SplineCurve>::reference;
|
|
|
|
using std::list<SplineCurve>::const_reference;
|
|
|
|
using std::list<SplineCurve>::size_type;
|
|
|
|
using std::list<SplineCurve>::difference_type;
|
|
|
|
using std::list<SplineCurve>::iterator;
|
|
|
|
using std::list<SplineCurve>::const_iterator;
|
|
|
|
using std::list<SplineCurve>::reverse_iterator;
|
|
|
|
using std::list<SplineCurve>::const_reverse_iterator;
|
2007-07-05 04:01:12 +02:00
|
|
|
|
2010-06-08 08:09:19 +02:00
|
|
|
using std::list<SplineCurve>::begin;
|
|
|
|
using std::list<SplineCurve>::end;
|
|
|
|
using std::list<SplineCurve>::rbegin;
|
|
|
|
using std::list<SplineCurve>::rend;
|
|
|
|
using std::list<SplineCurve>::size;
|
|
|
|
using std::list<SplineCurve>::empty;
|
|
|
|
using std::list<SplineCurve>::front;
|
|
|
|
using std::list<SplineCurve>::back;
|
|
|
|
using std::list<SplineCurve>::push_front;
|
|
|
|
using std::list<SplineCurve>::push_back;
|
|
|
|
using std::list<SplineCurve>::pop_front;
|
|
|
|
using std::list<SplineCurve>::pop_back;
|
|
|
|
using std::list<SplineCurve>::insert;
|
|
|
|
using std::list<SplineCurve>::erase;
|
|
|
|
using std::list<SplineCurve>::clear;
|
2007-07-05 04:01:12 +02:00
|
|
|
};
|