Replaced spline stuff with Vector2D

Originally committed to SVN as r1370.
This commit is contained in:
Rodrigo Braz Monteiro 2007-07-05 14:15:28 +00:00
parent 1212de942b
commit 28b7264d3b
3 changed files with 69 additions and 77 deletions

View file

@ -43,7 +43,6 @@
///////////////////// /////////////////////
// Curve constructor // Curve constructor
SplineCurve::SplineCurve() { SplineCurve::SplineCurve() {
x1=x2=x3=x4=y1=y2=y3=y4=0;
type = CURVE_INVALID; type = CURVE_INVALID;
} }
@ -67,7 +66,7 @@ wxString Spline::EncodeToASS() {
for (std::list<SplineCurve>::iterator cur=curves.begin();cur!=curves.end();cur++) { for (std::list<SplineCurve>::iterator cur=curves.begin();cur!=curves.end();cur++) {
// Start of spline // Start of spline
if (isFirst) { if (isFirst) {
result = wxString::Format(_T("m %i %i "),cur->x1,cur->y1); result = wxString::Format(_T("m %i %i "),(int)cur->p1.x,(int)cur->p1.y);
lastCommand = 'm'; lastCommand = 'm';
isFirst = false; isFirst = false;
} }
@ -79,14 +78,14 @@ wxString Spline::EncodeToASS() {
result += _T("l "); result += _T("l ");
lastCommand = 'l'; lastCommand = 'l';
} }
result += wxString::Format(_T("%i %i "),cur->x2,cur->y2); result += wxString::Format(_T("%i %i "),(int)cur->p2.x,(int)cur->p2.y);
break; break;
case CURVE_BICUBIC: case CURVE_BICUBIC:
if (lastCommand != 'b') { if (lastCommand != 'b') {
result += _T("b "); result += _T("b ");
lastCommand = 'b'; lastCommand = 'b';
} }
result += wxString::Format(_T("%i %i %i %i %i %i "),cur->x2,cur->y2,cur->x3,cur->y3,cur->x4,cur->y4); 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);
break; break;
default: break; default: break;
} }
@ -128,13 +127,13 @@ void Spline::DecodeFromASS(wxString str) {
// Line // Line
if (stack.size() == 2 && lastCommand == 'l') { if (stack.size() == 2 && lastCommand == 'l') {
SplineCurve curve; SplineCurve curve;
curve.x1 = x; curve.p1.x = x;
curve.y1 = y; curve.p1.y = y;
curve.x2 = stack[0]; curve.p2.x = stack[0];
curve.y2 = stack[1]; curve.p2.y = stack[1];
curve.type = CURVE_LINE; curve.type = CURVE_LINE;
x = curve.x2; x = curve.p2.x;
y = curve.y2; y = curve.p2.y;
stack.clear(); stack.clear();
AppendCurve(curve); AppendCurve(curve);
} }
@ -142,17 +141,17 @@ void Spline::DecodeFromASS(wxString str) {
// Bicubic // Bicubic
else if (stack.size() == 6 && lastCommand == 'b') { else if (stack.size() == 6 && lastCommand == 'b') {
SplineCurve curve; SplineCurve curve;
curve.x1 = x; curve.p1.x = x;
curve.y1 = y; curve.p1.y = y;
curve.x2 = stack[0]; curve.p2.x = stack[0];
curve.y2 = stack[1]; curve.p2.y = stack[1];
curve.x3 = stack[2]; curve.p3.x = stack[2];
curve.y3 = stack[3]; curve.p3.y = stack[3];
curve.x4 = stack[4]; curve.p4.x = stack[4];
curve.y4 = stack[5]; curve.p4.y = stack[5];
curve.type = CURVE_BICUBIC; curve.type = CURVE_BICUBIC;
x = curve.x4; x = curve.p4.x;
y = curve.y4; y = curve.p4.y;
stack.clear(); stack.clear();
AppendCurve(curve); AppendCurve(curve);
} }
@ -210,37 +209,37 @@ void Spline::MovePoint(int curveIndex,int point,wxPoint pos) {
// Modify // Modify
if (point == 0) { if (point == 0) {
c1->x1 = pos.x; c1->p1.x = pos.x;
c1->y1 = pos.y; c1->p1.y = pos.y;
if (c0) { if (c0) {
if (c0->type == CURVE_BICUBIC) { if (c0->type == CURVE_BICUBIC) {
c0->x4 = pos.x; c0->p4.x = pos.x;
c0->y4 = pos.y; c0->p4.y = pos.y;
} }
else { else {
c0->x2 = pos.x; c0->p2.x = pos.x;
c0->y2 = pos.y; c0->p2.y = pos.y;
} }
} }
} }
else if (point == 1) { else if (point == 1) {
c1->x2 = pos.x; c1->p2.x = pos.x;
c1->y2 = pos.y; c1->p2.y = pos.y;
if (c2 && c1->type != CURVE_BICUBIC) { if (c2 && c1->type != CURVE_BICUBIC) {
c2->x1 = pos.x; c2->p1.x = pos.x;
c2->y1 = pos.y; c2->p1.y = pos.y;
} }
} }
else if (point == 2) { else if (point == 2) {
c1->x3 = pos.x; c1->p3.x = pos.x;
c1->y3 = pos.y; c1->p3.y = pos.y;
} }
else if (point == 3) { else if (point == 3) {
c1->x4 = pos.x; c1->p4.x = pos.x;
c1->y4 = pos.y; c1->p4.y = pos.y;
if (c2 && c1->type == CURVE_BICUBIC) { if (c2 && c1->type == CURVE_BICUBIC) {
c2->x1 = pos.x; c2->p1.x = pos.x;
c2->y1 = pos.y; c2->p1.y = pos.y;
} }
} }
} }
@ -248,42 +247,38 @@ void Spline::MovePoint(int curveIndex,int point,wxPoint pos) {
////////////////////////////////////// //////////////////////////////////////
// Gets a list of points in the curve // Gets a list of points in the curve
void Spline::GetPointList(std::vector<wxPoint> &points) { void Spline::GetPointList(std::vector<Vector2D> &points) {
// Prepare // Prepare
points.clear(); points.clear();
wxPoint pt; Vector2D pt;
bool isFirst = true; bool isFirst = true;
// Generate points for each curve // Generate points for each curve
for (std::list<SplineCurve>::iterator cur = curves.begin();cur!=curves.end();cur++) { for (std::list<SplineCurve>::iterator cur = curves.begin();cur!=curves.end();cur++) {
// First point // First point
if (isFirst) { if (isFirst) {
pt.x = cur->x1; pt.x = cur->p1.x;
pt.y = cur->y1; pt.y = cur->p1.y;
points.push_back(pt); points.push_back(pt);
} }
// Line // Line
if (cur->type == CURVE_LINE) { if (cur->type == CURVE_LINE) {
pt.x = cur->x2; pt.x = cur->p2.x;
pt.y = cur->y2; pt.y = cur->p2.y;
points.push_back(pt); points.push_back(pt);
} }
// Bicubic // Bicubic
else if (cur->type == CURVE_BICUBIC) { else if (cur->type == CURVE_BICUBIC) {
// Get the control points // Get the control points
int x1 = cur->x1; Vector2D p1 = cur->p1;
int x2 = cur->x2; Vector2D p2 = cur->p2;
int x3 = cur->x3; Vector2D p3 = cur->p3;
int x4 = cur->x4; Vector2D p4 = cur->p4;
int y1 = cur->y1;
int y2 = cur->y2;
int y3 = cur->y3;
int y4 = cur->y4;
// Find number of steps // Find number of steps
int len = sqrt(double((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2))) + sqrt(double((x2-x3)*(x2-x3)+(y2-y3)*(y2-y3))) + sqrt(double((x3-x4)*(x3-x4)+(y3-y4)*(y3-y4))); int len = (p2-p1).Len() + (p3-p2).Len() + (p4-p3).Len();
int steps = len/8; int steps = len/8;
// Render curve // Render curve
@ -293,8 +288,7 @@ void Spline::GetPointList(std::vector<wxPoint> &points) {
float u = 1.0f-t; float u = 1.0f-t;
// Calculate the point and insert it // Calculate the point and insert it
pt.x = x1*u*u*u + 3*x2*t*u*u + 3*x3*t*t*u + x4*t*t*t; pt = p1*u*u*u + 3*p2*t*u*u + 3*p3*t*t*u + p4*t*t*t;
pt.y = y1*u*u*u + 3*y2*t*u*u + 3*y3*t*t*u + y4*t*t*t;
points.push_back(pt); points.push_back(pt);
} }
} }
@ -309,13 +303,13 @@ void Spline::GetPointList(std::vector<wxPoint> &points) {
////////////////////////////// //////////////////////////////
// Point closest to reference // Point closest to reference
wxPoint Spline::GetClosestPoint(wxPoint reference) { Vector2D Spline::GetClosestPoint(Vector2D reference) {
return wxPoint(-1,-1); return Vector2D(-1,-1);
} }
////////////////////////////////////// //////////////////////////////////////
// Control point closest to reference // Control point closest to reference
wxPoint Spline::GetClosestControlPoint(wxPoint reference) { Vector2D Spline::GetClosestControlPoint(Vector2D reference) {
return wxPoint(-1,-1); return Vector2D(-1,-1);
} }

View file

@ -42,6 +42,7 @@
#include <wx/wxprec.h> #include <wx/wxprec.h>
#include <list> #include <list>
#include <vector> #include <vector>
#include "vector2d.h"
/////////////// ///////////////
@ -58,10 +59,7 @@ enum CurveType {
// Spline curve // Spline curve
class SplineCurve { class SplineCurve {
public: public:
int x1,y1; Vector2D p1,p2,p3,p4;
int x2,y2;
int x3,y3;
int x4,y4;
CurveType type; CurveType type;
SplineCurve(); SplineCurve();
@ -82,8 +80,8 @@ public:
void AppendCurve(SplineCurve &curve); void AppendCurve(SplineCurve &curve);
void MovePoint(int curveIndex,int point,wxPoint pos); void MovePoint(int curveIndex,int point,wxPoint pos);
void GetPointList(std::vector<wxPoint> &points); void GetPointList(std::vector<Vector2D> &points);
wxPoint GetClosestPoint(wxPoint reference); Vector2D GetClosestPoint(Vector2D reference);
wxPoint GetClosestControlPoint(wxPoint reference); Vector2D GetClosestControlPoint(Vector2D reference);
}; };

View file

@ -111,7 +111,7 @@ void VisualToolVectorClip::Draw() {
if (!line) return; if (!line) return;
// Parse vector // Parse vector
std::vector<wxPoint> points; std::vector<Vector2D> points;
spline.GetPointList(points); spline.GetPointList(points);
// Draw lines // Draw lines
@ -150,8 +150,8 @@ void VisualToolVectorClip::Draw() {
SetLineColour(colour[3],0.9f,1); SetLineColour(colour[3],0.9f,1);
for (std::list<SplineCurve>::iterator cur=spline.curves.begin();cur!=spline.curves.end();cur++) { for (std::list<SplineCurve>::iterator cur=spline.curves.begin();cur!=spline.curves.end();cur++) {
if (cur->type == CURVE_BICUBIC) { if (cur->type == CURVE_BICUBIC) {
DrawDashedLine(cur->x1,cur->y1,cur->x2,cur->y2,6); DrawDashedLine(cur->p1.x,cur->p1.y,cur->p2.x,cur->p2.y,6);
DrawDashedLine(cur->x3,cur->y3,cur->x4,cur->y4,6); DrawDashedLine(cur->p3.x,cur->p3.y,cur->p4.x,cur->p4.y,6);
} }
} }
} }
@ -171,8 +171,8 @@ void VisualToolVectorClip::PopulateFeatureList() {
// First point // First point
if (isFirst) { if (isFirst) {
isFirst = false; isFirst = false;
feat.x = cur->x1; feat.x = cur->p1.x;
feat.y = cur->y1; feat.y = cur->p1.y;
feat.type = DRAG_SMALL_CIRCLE; feat.type = DRAG_SMALL_CIRCLE;
feat.value = i; feat.value = i;
feat.value2 = 0; feat.value2 = 0;
@ -181,8 +181,8 @@ void VisualToolVectorClip::PopulateFeatureList() {
// Line // Line
if (cur->type == CURVE_LINE) { if (cur->type == CURVE_LINE) {
feat.x = cur->x2; feat.x = cur->p2.x;
feat.y = cur->y2; feat.y = cur->p2.y;
feat.type = DRAG_SMALL_CIRCLE; feat.type = DRAG_SMALL_CIRCLE;
feat.value = i; feat.value = i;
feat.value2 = 1; feat.value2 = 1;
@ -195,22 +195,22 @@ void VisualToolVectorClip::PopulateFeatureList() {
int size = features.size(); int size = features.size();
// Control points // Control points
feat.x = cur->x2; feat.x = cur->p2.x;
feat.y = cur->y2; feat.y = cur->p2.y;
feat.value = i; feat.value = i;
feat.value2 = 1; feat.value2 = 1;
feat.brother[0] = size-1; feat.brother[0] = size-1;
feat.type = DRAG_SMALL_SQUARE; feat.type = DRAG_SMALL_SQUARE;
features.push_back(feat); features.push_back(feat);
feat.x = cur->x3; feat.x = cur->p3.x;
feat.y = cur->y3; feat.y = cur->p3.y;
feat.value2 = 2; feat.value2 = 2;
feat.brother[0] = size+2; feat.brother[0] = size+2;
features.push_back(feat); features.push_back(feat);
// End point // End point
feat.x = cur->x4; feat.x = cur->p4.x;
feat.y = cur->y4; feat.y = cur->p4.y;
feat.type = DRAG_SMALL_CIRCLE; feat.type = DRAG_SMALL_CIRCLE;
feat.value2 = 3; feat.value2 = 3;
features.push_back(feat); features.push_back(feat);