qucs_s/qucs/diagrams/graph.cpp
2004-08-25 19:46:13 +00:00

271 lines
7.4 KiB
C++

/***************************************************************************
graph.cpp - description
-------------------
begin : Thu Oct 2 2003
copyright : (C) 2003 by Michael Margraf
email : michael.margraf@alumni.tu-berlin.de
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "graph.h"
#include <math.h>
#include <stdlib.h>
Graph::Graph(const QString& _Line)
{
Type = isGraph;
Var = _Line;
countY = 0; // no points in graph
Thick = numMode = 0;
Color = 0x0000ff; // blue
Style = 0; // solid line
Precision = 3;
isSelected = false;
cPointsY = 0;
Points.clear();
Markers.setAutoDelete(true);
cPointsX.setAutoDelete(true);
}
Graph::~Graph()
{
if(Points != 0) free(Points);
if(cPointsY != 0) delete[] cPointsY;
}
// ---------------------------------------------------------------------
void Graph::paint(QPainter *p, int x0, int y0)
{
// draw markers
for(Marker *pm = Markers.first(); pm != 0; pm = Markers.next())
pm->paint(p, x0, y0);
if(Points.isEmpty()) {
p->setPen(QPen(QColor(Color))); // set color for xlabel text
return;
}
int n1, pos = 0;
if(isSelected) {
p->setPen(QPen(QPen::darkGray,Thick+4));
for(n1=countY; n1>0; n1--) {
p->drawPoint(x0+Points[pos], y0-Points[pos+1]);
do {
pos += 2;
if(Points[pos] > -2)
do {
p->drawLine(x0+Points[pos-2], y0-Points[pos-1],
x0+Points[pos], y0-Points[pos+1]);
pos += 2;
} while(Points[pos] > -2); // until end of stroke
if(Points[pos] < -9) break; // end of line ?
pos++;
} while(Points[pos] > -9);
pos++;
}
pos = 0;
p->setPen(QPen(QPen::white, Thick, Qt::SolidLine));
for(n1=countY; n1>0; n1--) {
p->drawPoint(x0+Points[pos], y0-Points[pos+1]);
do {
pos += 2;
if(Points[pos] > -2)
do {
p->drawLine(x0+Points[pos-2], y0-Points[pos-1],
x0+Points[pos], y0-Points[pos+1]);
pos += 2;
} while(Points[pos] > -2); // until end of stroke
if(Points[pos] < -9) break; // end of line ?
pos++;
} while(Points[pos] > -9);
pos++;
}
p->setPen(QPen(QColor(Color))); // set color for xlabel text
return;
}
// **** not selected ****
p->setPen(QPen(QColor(Color), Thick, Qt::SolidLine));
for(n1=countY; n1>0; n1--) {
p->drawPoint(x0+Points[pos], y0-Points[pos+1]);
do {
pos += 2;
if(Points[pos] > -2)
do {
p->drawLine(x0+Points[pos-2], y0-Points[pos-1],
x0+Points[pos], y0-Points[pos+1]);
pos += 2;
} while(Points[pos] > -2); // until end of stroke
if(Points[pos] < -9) break; // end of line ?
pos++;
} while(Points[pos] > -9);
pos++;
}
}
// ---------------------------------------------------------------------
QString Graph::save()
{
QString s = "\t<\""+Var+"\" "+Color.name()+
" "+QString::number(Thick)+" "+QString::number(Precision)+
" "+QString::number(numMode)+" "+QString::number(Style)+">";
for(Marker *pm=Markers.first(); pm != 0; pm=Markers.next())
s += "\n\t "+pm->save();
return s;
}
// ---------------------------------------------------------------------
bool Graph::load(const QString& _s)
{
bool ok;
QString s = _s;
if(s.at(0) != '<') return false;
if(s.at(s.length()-1) != '>') return false;
s = s.mid(1, s.length()-2); // cut off start and end character
if(s.at(0) == '"') Var = s.section('"',1,1); // Var, the new style
else Var = s.section(' ',0,0); // Var, the old style
QString n;
n = s.section(' ',1,1); // Color
Color.setNamedColor(n);
if(!Color.isValid()) return false;
n = s.section(' ',2,2); // Thick
Thick = n.toInt(&ok);
if(!ok) return false;
n = s.section(' ',3,3); // Precision
if(n.isEmpty()) return true; // backward compatible
Precision = n.toInt(&ok);
if(!ok) return false;
n = s.section(' ',4,4); // numMode
numMode = n.toInt(&ok);
if(!ok) return false;
n = s.section(' ',5,5); // Style
if(n.isEmpty()) return true; // backward compatible
Style = n.toInt(&ok);
if(!ok) return false;
return true;
}
// -----------------------------------------------------------------------
// Checks if the coordinates x/y point to the graph. x/y are relative to
// diagram cx/cy. 5 is the precision the user must point onto the graph.
int Graph::getSelected(int x, int y)
{
if(Points.isEmpty()) return -1;
int A, zi, pos = 0;
int dx, dx2, x1;
int dy, dy2, y1;
int countX = cPointsX.getFirst()->count;
for(int z=0; z<countY; z++) {
zi = 0;
do {
x1 = Points[pos++]; y1 = Points[pos++];
zi++;
dx = x - x1;
dx2 = Points[pos];
if(dx2 < -1) {
if(dx2 < -9) break;
dx2 = Points[++pos];
if(dx2 < -9) break;
zi -= 2; // because of space (edge-values)
}
if(dx < -5) { if(x < dx2-5) continue; } // point between x coordinates ?
else { if(x > 5) if(x > dx2+5) continue; }
dy = y - y1;
dy2 = Points[pos+1];
if(dy < -5) { if(y < dy2-5) continue; } // point between y coordinates ?
else { if(y > 5) if(y > dy2+5) continue; }
dx2 -= x1;
dy2 -= y1;
A = dx2*dy - dx*dy2; // calculate the rectangle area spanned
A *= A; // avoid the need for square root
A -= 25*(dx2*dx2 + dy2*dy2); // substract selectable area
if(A <= 0) return z*countX + zi; // lies x/y onto the graph line ?
} while(true);
pos++;
}
return -1;
/* ------------------------------------------------------------
This algorithm is not bad, but not very fast.
------------------------------------------------------------
double x_double, y_double, phi, sin_phi, cos_phi;
int len, xn, yn;
int x2, x1 = *(pp++);
int y2, y1 = *(pp++);
for(int n=1; n<count; n++) { // count-1 runs (need 2 points per run)
x2 = (*pp) - x1;
y2 = (*(pp+1)) - y1;
x_double = double(x-x1);
y_double = double(y-y1);
phi = -atan2(double(y2), double(x2));
sin_phi = sin(phi);
cos_phi = cos(phi);
len = int( sqrt(double( x2*x2 + y2*y2 )) )+5;
xn = int(x_double*cos_phi - y_double*sin_phi);
yn = int(x_double*sin_phi + y_double*cos_phi);
// lies x/y onto the graph line ?
if(xn > -5) if(xn < len) if(yn > -5) if(yn < 5) return n;
x1 = *(pp++); y1 = *(pp++);
}
return -1;
------------------------------------------------------------ */
}
// -----------------------------------------------------------------------
// Creates a new graph and copies all the properties into it.
Graph* Graph::sameNewOne()
{
Graph *pg = new Graph(Var);
pg->Color = Color;
pg->Thick = Thick;
pg->Style = Style;
pg->Precision = Precision;
pg->numMode = numMode;
for(Marker *pm = Markers.first(); pm != 0; pm = Markers.next())
pg->Markers.append(pm->sameNewOne(pg));
return pg;
}