1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
|
/*****************************************************************************
** FILE IDENTIFICATION
**
** Name: ezplot.h
** Purpose: Header file for EZplot library
**
** This is part of the CTSim program
** Copyright (c) 1983-2001 Kevin Rosenberg
**
** $Id: ezplot.h 7061 2003-09-07 06:34:45Z kevin $
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License (version 2) as
** published by the Free Software Foundation.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
******************************************************************************/
#ifndef __H_EZPLOT
#define __H_EZPLOT
#include <cstdio>
#include <cctype>
#include <cmath>
#include <stddef.h>
#include "ctsupport.h"
#include "sgp.h"
#include "pol.h"
class EZPlotCurve {
public:
double *x;
double *y;
int m_iPointCount;
EZPlotCurve (const double* x, const double* y, int n);
~EZPlotCurve();
};
//----------------------------------------------------------------------
// GLOBAL VARIABLES
//----------------------------------------------------------------------
// axis definitions
enum {
LINEAR = 1, // linear axis
LOG, // logrithmic axis
NOAXIS, // don't plot axis
};
// tick definitions
enum {
ABOVE = 1,
BELOW,
RIGHT,
LEFT,
};
// line types
enum {
NOLINE = 0,
SOLID,
DASH,
DASH1,
DASH2,
DASH3,
DASH4,
};
// symbol definitions
enum {
SB_CROSS = 1,
SB_PLUS,
SB_BOX,
SB_CIRCLE,
SB_ERRORBAR,
SB_POINT,
MAXSYMBOL,
};
enum {
INSIDE = 1, // values of o_legendbox
OUTSIDE,
NOLEGEND,
};
struct KeywordCodeTable {
char* keyword;
int code;
};
/*-----------------------------------------------------------------------------
* GLOBAL VARIABLES
*
* Naming Convention:
* i_ Internal variable
* Not user changable
* o_ Option variable
* Normal variable that is user modifiable
* These variables must always have a valid value
* d_ Device variable
* Variables controlling devices
* clr_ Color variable
* Holds a color value
* c_ Character string variable
* Contains a character string
* v_ Value variable
* User modifiable variable associated with the set variable (s_)
* These variables do not always have a valid value
* These variables change assumption EZPLOT makes about the plot
* s_ Set variable.
* TRUE if associated value variable (v_) has been set by the user
*---------------------------------------------------------------------------*/
#include <vector>
typedef std::vector<EZPlotCurve*>::iterator EZPlotCurveIterator;
typedef std::vector<EZPlotCurve*>::const_iterator EZPlotCurveConstIterator;
class SGP;
class EZPlot {
private:
//----------------------------------------------------------------------
// POL Codes
//----------------------------------------------------------------------
enum {
S_DATA = 2,
S_HELP,
S_EXIT,
S_CURVE,
S_SOLID,
S_DASH,
S_NOLINE,
S_BLACK,
S_RED,
S_GREEN,
S_BLUE,
S_SYMBOL,
S_PEN,
S_EVERY,
S_NONE,
S_LEGEND,
S_XLEGEND,
S_YLEGEND,
S_XLIN,
S_YLIN,
S_XLOG,
S_YLOG,
S_XLABEL,
S_YLABEL,
S_XLENGTH,
S_YLENGTH,
S_XTICKS,
S_YTICKS,
S_ABOVE,
S_LABEL,
S_BELOW,
S_NOLABEL,
S_RIGHT,
S_LEFT,
S_XAUTOSCALE,
S_YAUTOSCALE,
S_XMIN,
S_YMIN,
S_XMAX,
S_YMAX,
S_LXFRAC,
S_LYFRAC,
S_XCROSS,
S_YCROSS,
S_NOXAXIS,
S_NOYAXIS,
S_XPORIGIN,
S_YPORIGIN,
S_TITLE,
S_XTITLE,
S_YTITLE,
S_REPLOT,
S_CLEAR,
S_STORE,
S_RESTORE,
S_AMARK,
S_NO,
S_INTERACTIVE,
S_UNITS,
S_INCHES,
S_USER,
S_BOX,
S_NOBOX,
S_GRID,
S_NOGRID,
S_MAJOR,
S_MINOR,
S_COLOR,
S_LEGENDBOX,
S_TAG,
S_TEXTSIZE,
};
static const struct KeywordCodeTable m_sKeywords[];
static const int NKEYS;
std::vector<class EZPlotCurve*> m_vecCurves;
std::vector<int> m_veciColor;
std::vector<bool> m_vecbColorSet;
std::vector<int> m_veciSymbol;
std::vector<bool> m_vecbSymbolSet;
std::vector<int> m_veciSymbolFreq;
std::vector<bool> m_vecbSymbolFreqSet;
std::vector<int> m_veciLinestyle;
std::vector<bool> m_vecbLinestyleSet;
std::vector<std::string> m_vecsLegend;
std::vector<bool> m_vecbLegendSet;
int getColor (unsigned int iCurve) const;
int getSymbol (unsigned int iCurve) const;
const std::string* getLegend (unsigned int iCurve) const;
int getSymbolFreq (unsigned int iCurve) const;
int getLinestyle (unsigned int iCurve) const;
void setColor (unsigned int iCurve, int iColor);
void setSymbol (unsigned int iCurve, int iSymbol);
void setSymbolFreq (unsigned int iCurve, int iSymbolFreq);
void setLinestyle (unsigned int iCurve, int iLinestyle);
void setLegend (unsigned int iCurve, const std::string& strLegend);
void setLegend (unsigned int iCurve, const char* const pszLegend);
int m_iCurrentCurve;
// Colors
int clr_axis; // color of all axis lines
int clr_title; // color of main title
int clr_label; // color of axis labels
int clr_legend; // color of legend box
int clr_grid; // color of grid lines
int clr_number; // color of axis number labels
// Options
double o_xporigin, o_yporigin; // origin of plot frame in NDC
double o_xlength, o_ylength; // length of plot frame in NDC
std::string c_xlabel; // label for x axis
std::string c_ylabel; // label for y axis
std::string c_title; // title to print above graph
int o_linestyle, o_color; // style to use for curves all subsequent curves to EZPLOT
int o_xaxis, o_yaxis; // Specifies where axis & labels are drawn
bool o_grid; // Flag to draw a grid at major ticks
bool o_box; // Flag to draw a box around the graph
int o_xticks, o_yticks; // direction to draw tick marks
bool o_xtlabel, o_ytlabel; // TRUE if label tick marks
int o_xmajortick, o_ymajortick; // number of major ticks to draw
int o_xminortick, o_yminortick; // number of minor ticks between major ticks
int o_symbol; // Symbol type, (0 = no symbol)
int o_symfreq; // frequency to draw symbols at curve points
int o_legendbox; // controls whether legend is inside or outside of the axis extents
int o_tag; // controls whether to draw tag at end of axes
// VALUE & SET variables
double v_xmin, v_xmax, v_ymin, v_ymax; // user supplied axis endpoints
bool s_xmin, s_xmax, s_ymin, s_ymax; // TRUE is endpoint has been set
double v_xtitle, v_ytitle; // NDC position to plot title
bool s_xtitle, s_ytitle; // TRUE if set position for title
double v_xcross, v_ycross; // position that axes cross
bool s_xcross, s_ycross; // TRUE if set axes cross position
double v_xlegend, v_ylegend; // upper-left position of legend box in NDC
bool s_xlegend, s_ylegend; // TRUE if set position of legend box
int v_lxfrac, v_lyfrac; // number of digits to right of decimal place
bool s_lxfrac, s_lyfrac; // TRUE if set number of fractional digits
double v_textsize; // size of text in NDC
bool s_textsize; // TRUE if user set size of text
// Global variables
double charheight; // Height of characters in NDC
double charwidth; // Height of characters in NDC
double xp_min, xp_max, yp_min, yp_max; // boundry of plot frame in NDC
double xa_min, xa_max, ya_min, ya_max; // extent of axes in NDC
double xgw_min, xgw_max, ygw_min, ygw_max; // boundary of graph in input coords
double xgn_min, xgn_max, ygn_min, ygn_max; // boundy of graph in NDC
double xt_min, xt_max, yt_min, yt_max; // boundary of axis ticks
double xl_min, xl_max, yl_min, yl_max; // boundary of legend box
double title_row; // y-coord of title row
double xtl_ofs; // Offset y-coord of x tick labels from axis
double ytl_ofs; // Offset x-coord of y tick labels from axis
double xlbl_row; // row of x label in world coord
double ylbl_col; // column of y label in world coord
double xw_tickinc, yw_tickinc; // increment between major ticks in WC
double xn_tickinc, yn_tickinc; // increment between major ticks in NDC
int x_nint, y_nint; // number of intervals along x & y axes
int x_fldwid, x_frac; // numeric field sizes & number of digits
int y_fldwid, y_frac; // in fraction of number, used for printf()
double xtl_wid, ytl_wid; // length of ticks labels in NDC
double tl_height; // height of tick labels in NDC
char x_numfmt[20]; // format to print x tick labels
char y_numfmt[20]; // format to print y tick labels
double m_dVP_xmin, m_dVP_ymin;
double m_dVP_xmax, m_dVP_ymax;
double m_dVP_xscale, m_dVP_yscale;
double m_xWorldScale, m_yWorldScale;
void drawAxes();
void symbol (int sym, double symwidth, double symheight);
void make_numfmt(char *fmtstr, int *fldwid, int *nfrac, double min, double max, int nint);
int axis_scale (double min, double max, int nint, double *minp, double *maxp, int *nintp);
SGP* m_pSGP;
POL m_pol;
void clearCurves ();
bool ezcmd (const char* const comm);
bool do_cmd(int lx);
void bad_option(char *opt);
void initPlotSettings();
void initKeywords ();
double convertWorldToNDC_X (double x)
{ return xgn_min + (x - xgw_min) * m_xWorldScale; }
double convertWorldToNDC_Y (double y)
{ return ygn_min + (y - ygw_min) * m_yWorldScale; }
public:
EZPlot ();
~EZPlot ();
bool ezset (const std::string& command);
bool ezset (const char* const command);
void addCurve (const float* x, const double* y, int num);
void addCurve (const double* x, const float* y, int num);
void addCurve (const double* x, const double* y, int num);
void addCurve (const double* y, int n);
void addCurve (const float* y, int n);
void plot (SGP* pSGP);
};
#endif
|