123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258 |
- #include "sys-defines.h"
- #include "extern.h"
- #ifndef LIBPLOTTER
- const Plotter _pl_t_default_plotter =
- {
-
- _pl_t_initialize, _pl_t_terminate,
-
- _pl_t_begin_page, _pl_t_erase_page, _pl_t_end_page,
-
- _pl_g_push_state, _pl_g_pop_state,
-
- _pl_g_paint_path, _pl_g_paint_paths, _pl_t_path_is_flushable, _pl_t_maybe_prepaint_segments,
-
- _pl_g_paint_marker, _pl_t_paint_point,
-
- _pl_g_paint_text_string_with_escapes, _pl_g_paint_text_string,
- _pl_g_get_text_width,
-
- _pl_g_retrieve_font,
-
- _pl_g_flush_output,
-
- _pl_g_warning,
- _pl_g_error,
- };
- #endif
- void
- _pl_t_initialize (S___(Plotter *_plotter))
- {
- #ifndef LIBPLOTTER
-
- _pl_g_initialize (S___(_plotter));
- #endif
-
- #ifndef LIBPLOTTER
-
- _plotter->data->type = PL_TEK;
- #endif
-
- _plotter->data->output_model = PL_OUTPUT_VIA_CUSTOM_ROUTINES_IN_REAL_TIME;
-
- _plotter->data->have_wide_lines = 0;
- _plotter->data->have_dash_array = 0;
- _plotter->data->have_solid_fill = 0;
- _plotter->data->have_odd_winding_fill = 1;
- _plotter->data->have_nonzero_winding_fill = 1;
- _plotter->data->have_settable_bg = 0;
- _plotter->data->have_escaped_string_support = 0;
- _plotter->data->have_ps_fonts = 0;
- _plotter->data->have_pcl_fonts = 0;
- _plotter->data->have_stick_fonts = 0;
- _plotter->data->have_extra_stick_fonts = 0;
- _plotter->data->have_other_fonts = 0;
-
- _plotter->data->default_font_type = PL_F_HERSHEY;
- _plotter->data->pcl_before_ps = false;
- _plotter->data->have_horizontal_justification = false;
- _plotter->data->have_vertical_justification = false;
- _plotter->data->issue_font_warning = true;
-
- _plotter->data->max_unfilled_path_length = PL_MAX_UNFILLED_PATH_LENGTH;
- _plotter->data->have_mixed_paths = false;
- _plotter->data->allowed_arc_scaling = AS_NONE;
- _plotter->data->allowed_ellarc_scaling = AS_NONE;
- _plotter->data->allowed_quad_scaling = AS_NONE;
- _plotter->data->allowed_cubic_scaling = AS_NONE;
- _plotter->data->allowed_box_scaling = AS_NONE;
- _plotter->data->allowed_circle_scaling = AS_NONE;
- _plotter->data->allowed_ellipse_scaling = AS_NONE;
-
- _plotter->data->display_model_type = (int)DISP_MODEL_VIRTUAL;
- _plotter->data->display_coors_type = (int)DISP_DEVICE_COORS_INTEGER_NON_LIBXMI;
- _plotter->data->flipped_y = false;
- _plotter->data->imin = 488;
- _plotter->data->imax = 3607;
- _plotter->data->jmin = 0;
- _plotter->data->jmax = 3119;
- _plotter->data->xmin = 0.0;
- _plotter->data->xmax = 0.0;
- _plotter->data->ymin = 0.0;
- _plotter->data->ymax = 0.0;
- _plotter->data->page_data = (plPageData *)NULL;
-
- _compute_ndc_to_device_map (_plotter->data);
-
- _plotter->tek_display_type = TEK_DPY_GENERIC;
- _plotter->tek_mode = TEK_MODE_ALPHA;
- _plotter->tek_line_type = PL_L_SOLID;
- _plotter->tek_mode_is_unknown = true;
- _plotter->tek_line_type_is_unknown = true;
- _plotter->tek_kermit_fgcolor = -1;
- _plotter->tek_kermit_bgcolor = -1;
- _plotter->tek_position_is_unknown = true;
- _plotter->tek_pos.x = 0;
- _plotter->tek_pos.y = 0;
-
-
- {
- const char* term_type;
-
- term_type = (const char *)_get_plot_param (_plotter->data, "TERM");
- if (term_type != NULL)
- {
- if (strncmp (term_type, "xterm", 5) == 0
- || strncmp (term_type, "nxterm", 6) == 0
- || strncmp (term_type, "kterm", 5) == 0)
- _plotter->tek_display_type = TEK_DPY_XTERM;
- else if (strncmp (term_type, "ansi.sys", 8) == 0
- || strncmp (term_type, "nansi.sys", 9) == 0
- || strncmp (term_type, "ansisys", 7) == 0
- || strncmp (term_type, "kermit", 6) == 0)
- _plotter->tek_display_type = TEK_DPY_KERMIT;
- else
- _plotter->tek_display_type = TEK_DPY_GENERIC;
- }
- else
- _plotter->tek_display_type = TEK_DPY_GENERIC;
- }
- }
- void
- _pl_t_terminate (S___(Plotter *_plotter))
- {
- #ifndef LIBPLOTTER
-
- _pl_g_terminate (S___(_plotter));
- #endif
- }
- #ifdef LIBPLOTTER
- TekPlotter::TekPlotter (FILE *infile, FILE *outfile, FILE *errfile)
- :Plotter (infile, outfile, errfile)
- {
- _pl_t_initialize ();
- }
- TekPlotter::TekPlotter (FILE *outfile)
- :Plotter (outfile)
- {
- _pl_t_initialize ();
- }
- TekPlotter::TekPlotter (istream& in, ostream& out, ostream& err)
- : Plotter (in, out, err)
- {
- _pl_t_initialize ();
- }
- TekPlotter::TekPlotter (ostream& out)
- : Plotter (out)
- {
- _pl_t_initialize ();
- }
- TekPlotter::TekPlotter ()
- {
- _pl_t_initialize ();
- }
- TekPlotter::TekPlotter (FILE *infile, FILE *outfile, FILE *errfile, PlotterParams ¶meters)
- :Plotter (infile, outfile, errfile, parameters)
- {
- _pl_t_initialize ();
- }
- TekPlotter::TekPlotter (FILE *outfile, PlotterParams ¶meters)
- :Plotter (outfile, parameters)
- {
- _pl_t_initialize ();
- }
- TekPlotter::TekPlotter (istream& in, ostream& out, ostream& err, PlotterParams ¶meters)
- : Plotter (in, out, err, parameters)
- {
- _pl_t_initialize ();
- }
- TekPlotter::TekPlotter (ostream& out, PlotterParams ¶meters)
- : Plotter (out, parameters)
- {
- _pl_t_initialize ();
- }
- TekPlotter::TekPlotter (PlotterParams ¶meters)
- : Plotter (parameters)
- {
- _pl_t_initialize ();
- }
- TekPlotter::~TekPlotter ()
- {
- _pl_t_terminate ();
- }
- #endif
|